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 "lttng/lttng-error.h"
11 #include "lttng/tracker.h"
15 #include <urcu/list.h>
16 #include <urcu/uatomic.h>
20 #include <common/defaults.h>
21 #include <common/common.h>
22 #include <common/sessiond-comm/sessiond-comm.h>
23 #include <common/relayd/relayd.h>
24 #include <common/utils.h>
25 #include <common/compat/string.h>
26 #include <common/kernel-ctl/kernel-ctl.h>
27 #include <common/dynamic-buffer.h>
28 #include <common/buffer-view.h>
29 #include <common/payload.h>
30 #include <common/payload-view.h>
31 #include <common/trace-chunk.h>
32 #include <lttng/location-internal.h>
33 #include <lttng/trigger/trigger-internal.h>
34 #include <lttng/condition/condition.h>
35 #include <lttng/action/action.h>
36 #include <lttng/channel.h>
37 #include <lttng/channel-internal.h>
38 #include <lttng/rotate-internal.h>
39 #include <lttng/location-internal.h>
40 #include <lttng/session-internal.h>
41 #include <lttng/userspace-probe-internal.h>
42 #include <lttng/session-descriptor-internal.h>
43 #include <common/string-utils/string-utils.h>
48 #include "health-sessiond.h"
50 #include "kernel-consumer.h"
51 #include "lttng-sessiond.h"
53 #include "lttng-syscall.h"
55 #include "buffer-registry.h"
56 #include "notification-thread.h"
57 #include "notification-thread-commands.h"
59 #include "rotation-thread.h"
61 #include "agent-thread.h"
65 /* Sleep for 100ms between each check for the shm path's deletion. */
66 #define SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US 100000
68 struct cmd_destroy_session_reply_context
{
70 bool implicit_rotation_on_destroy
;
72 * Indicates whether or not an error occurred while launching the
73 * destruction of a session.
75 enum lttng_error_code destruction_status
;
78 static enum lttng_error_code
wait_on_path(void *path
);
81 * Command completion handler that is used by the destroy command
82 * when a session that has a non-default shm_path is being destroyed.
84 * See comment in cmd_destroy_session() for the rationale.
86 static struct destroy_completion_handler
{
87 struct cmd_completion_handler handler
;
88 char shm_path
[member_sizeof(struct ltt_session
, shm_path
)];
89 } destroy_completion_handler
= {
92 .data
= destroy_completion_handler
.shm_path
97 static struct cmd_completion_handler
*current_completion_handler
;
100 * Used to keep a unique index for each relayd socket created where this value
101 * is associated with streams on the consumer so it can match the right relayd
102 * to send to. It must be accessed with the relayd_net_seq_idx_lock
105 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
106 static uint64_t relayd_net_seq_idx
;
108 static int validate_ust_event_name(const char *);
109 static int cmd_enable_event_internal(struct ltt_session
*session
,
110 const struct lttng_domain
*domain
,
111 char *channel_name
, struct lttng_event
*event
,
112 char *filter_expression
,
113 struct lttng_filter_bytecode
*filter
,
114 struct lttng_event_exclusion
*exclusion
,
118 * Create a session path used by list_lttng_sessions for the case that the
119 * session consumer is on the network.
121 static int build_network_session_path(char *dst
, size_t size
,
122 struct ltt_session
*session
)
124 int ret
, kdata_port
, udata_port
;
125 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
126 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
131 memset(tmp_urls
, 0, sizeof(tmp_urls
));
132 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
134 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
136 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
137 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
138 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
141 if (session
->ust_session
&& session
->ust_session
->consumer
) {
142 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
143 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
146 if (uuri
== NULL
&& kuri
== NULL
) {
147 uri
= &session
->consumer
->dst
.net
.control
;
148 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
149 } else if (kuri
&& uuri
) {
150 ret
= uri_compare(kuri
, uuri
);
154 /* Build uuri URL string */
155 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
162 } else if (kuri
&& uuri
== NULL
) {
164 } else if (uuri
&& kuri
== NULL
) {
168 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
174 * Do we have a UST url set. If yes, this means we have both kernel and UST
177 if (*tmp_uurl
!= '\0') {
178 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
179 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
182 if (kuri
|| (!kuri
&& !uuri
)) {
185 /* No kernel URI, use the UST port. */
188 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
196 * Get run-time attributes if the session has been started (discarded events,
199 static int get_kernel_runtime_stats(struct ltt_session
*session
,
200 struct ltt_kernel_channel
*kchan
, uint64_t *discarded_events
,
201 uint64_t *lost_packets
)
205 if (!session
->has_been_started
) {
207 *discarded_events
= 0;
212 ret
= consumer_get_discarded_events(session
->id
, kchan
->key
,
213 session
->kernel_session
->consumer
,
219 ret
= consumer_get_lost_packets(session
->id
, kchan
->key
,
220 session
->kernel_session
->consumer
,
231 * Get run-time attributes if the session has been started (discarded events,
234 static int get_ust_runtime_stats(struct ltt_session
*session
,
235 struct ltt_ust_channel
*uchan
, uint64_t *discarded_events
,
236 uint64_t *lost_packets
)
239 struct ltt_ust_session
*usess
;
241 if (!discarded_events
|| !lost_packets
) {
246 usess
= session
->ust_session
;
247 assert(discarded_events
);
248 assert(lost_packets
);
250 if (!usess
|| !session
->has_been_started
) {
251 *discarded_events
= 0;
257 if (usess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
258 ret
= ust_app_uid_get_channel_runtime_stats(usess
->id
,
259 &usess
->buffer_reg_uid_list
,
260 usess
->consumer
, uchan
->id
,
261 uchan
->attr
.overwrite
,
264 } else if (usess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
265 ret
= ust_app_pid_get_channel_runtime_stats(usess
,
266 uchan
, usess
->consumer
,
267 uchan
->attr
.overwrite
,
273 *discarded_events
+= uchan
->per_pid_closed_app_discarded
;
274 *lost_packets
+= uchan
->per_pid_closed_app_lost
;
276 ERR("Unsupported buffer type");
287 * Fill lttng_channel array of all channels.
289 static ssize_t
list_lttng_channels(enum lttng_domain_type domain
,
290 struct ltt_session
*session
, struct lttng_channel
*channels
,
291 struct lttng_channel_extended
*chan_exts
)
294 struct ltt_kernel_channel
*kchan
;
296 DBG("Listing channels for session %s", session
->name
);
299 case LTTNG_DOMAIN_KERNEL
:
300 /* Kernel channels */
301 if (session
->kernel_session
!= NULL
) {
302 cds_list_for_each_entry(kchan
,
303 &session
->kernel_session
->channel_list
.head
, list
) {
304 uint64_t discarded_events
, lost_packets
;
305 struct lttng_channel_extended
*extended
;
307 extended
= (struct lttng_channel_extended
*)
308 kchan
->channel
->attr
.extended
.ptr
;
310 ret
= get_kernel_runtime_stats(session
, kchan
,
311 &discarded_events
, &lost_packets
);
315 /* Copy lttng_channel struct to array */
316 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
317 channels
[i
].enabled
= kchan
->enabled
;
318 chan_exts
[i
].discarded_events
=
320 chan_exts
[i
].lost_packets
= lost_packets
;
321 chan_exts
[i
].monitor_timer_interval
=
322 extended
->monitor_timer_interval
;
323 chan_exts
[i
].blocking_timeout
= 0;
328 case LTTNG_DOMAIN_UST
:
330 struct lttng_ht_iter iter
;
331 struct ltt_ust_channel
*uchan
;
334 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
335 &iter
.iter
, uchan
, node
.node
) {
336 uint64_t discarded_events
= 0, lost_packets
= 0;
338 if (lttng_strncpy(channels
[i
].name
, uchan
->name
,
339 LTTNG_SYMBOL_NAME_LEN
)) {
342 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
343 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
344 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
345 channels
[i
].attr
.switch_timer_interval
=
346 uchan
->attr
.switch_timer_interval
;
347 channels
[i
].attr
.read_timer_interval
=
348 uchan
->attr
.read_timer_interval
;
349 channels
[i
].enabled
= uchan
->enabled
;
350 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
351 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
354 * Map enum lttng_ust_output to enum lttng_event_output.
356 switch (uchan
->attr
.output
) {
358 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
362 * LTTNG_UST_MMAP is the only supported UST
369 chan_exts
[i
].monitor_timer_interval
=
370 uchan
->monitor_timer_interval
;
371 chan_exts
[i
].blocking_timeout
=
372 uchan
->attr
.u
.s
.blocking_timeout
;
374 ret
= get_ust_runtime_stats(session
, uchan
,
375 &discarded_events
, &lost_packets
);
379 chan_exts
[i
].discarded_events
= discarded_events
;
380 chan_exts
[i
].lost_packets
= lost_packets
;
392 return -LTTNG_ERR_FATAL
;
398 static int append_extended_info(const char *filter_expression
,
399 struct lttng_event_exclusion
*exclusion
,
400 struct lttng_userspace_probe_location
*probe_location
,
401 struct lttng_payload
*payload
)
404 size_t filter_len
= 0;
405 size_t nb_exclusions
= 0;
406 size_t userspace_probe_location_len
= 0;
407 struct lttcomm_event_extended_header extended_header
= {};
408 struct lttcomm_event_extended_header
*p_extended_header
;
409 const size_t original_payload_size
= payload
->buffer
.size
;
411 ret
= lttng_dynamic_buffer_append(&payload
->buffer
, &extended_header
,
412 sizeof(extended_header
));
417 if (filter_expression
) {
418 filter_len
= strlen(filter_expression
) + 1;
419 ret
= lttng_dynamic_buffer_append(&payload
->buffer
,
420 filter_expression
, filter_len
);
427 const size_t len
= exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
;
429 nb_exclusions
= exclusion
->count
;
431 ret
= lttng_dynamic_buffer_append(
432 &payload
->buffer
, &exclusion
->names
, len
);
438 if (probe_location
) {
439 const size_t size_before_probe
= payload
->buffer
.size
;
441 ret
= lttng_userspace_probe_location_serialize(probe_location
,
448 userspace_probe_location_len
=
449 payload
->buffer
.size
- size_before_probe
;
452 /* Set header fields */
453 p_extended_header
= (struct lttcomm_event_extended_header
*)
454 (payload
->buffer
.data
+ original_payload_size
);
456 p_extended_header
->filter_len
= filter_len
;
457 p_extended_header
->nb_exclusions
= nb_exclusions
;
458 p_extended_header
->userspace_probe_location_len
=
459 userspace_probe_location_len
;
467 * Create a list of agent domain events.
469 * Return number of events in list on success or else a negative value.
471 static int list_lttng_agent_events(struct agent
*agt
,
472 struct lttng_payload
*payload
)
474 int nb_events
= 0, ret
= 0;
475 const struct agent_event
*agent_event
;
476 struct lttng_ht_iter iter
;
480 DBG3("Listing agent events");
483 cds_lfht_for_each_entry (
484 agt
->events
->ht
, &iter
.iter
, agent_event
, node
.node
) {
485 struct lttng_event event
= {
486 .enabled
= agent_event
->enabled
,
487 .loglevel
= agent_event
->loglevel_value
,
488 .loglevel_type
= agent_event
->loglevel_type
,
491 strncpy(event
.name
, agent_event
->name
, sizeof(event
.name
));
492 event
.name
[sizeof(event
.name
) - 1] = '\0';
494 ret
= lttng_dynamic_buffer_append(
495 &payload
->buffer
, &event
, sizeof(event
));
497 ERR("Failed to append event to payload");
498 ret
= -LTTNG_ERR_NOMEM
;
505 cds_lfht_for_each_entry (
506 agt
->events
->ht
, &iter
.iter
, agent_event
, node
.node
) {
507 /* Append extended info. */
508 ret
= append_extended_info(agent_event
->filter_expression
, NULL
,
511 ERR("Failed to append extended event info to payload");
512 ret
= -LTTNG_ERR_NOMEM
;
524 * Create a list of ust global domain events.
526 static int list_lttng_ust_global_events(char *channel_name
,
527 struct ltt_ust_domain_global
*ust_global
,
528 struct lttng_payload
*payload
)
531 unsigned int nb_events
= 0;
532 struct lttng_ht_iter iter
;
533 const struct lttng_ht_node_str
*node
;
534 const struct ltt_ust_channel
*uchan
;
535 const struct ltt_ust_event
*uevent
;
537 DBG("Listing UST global events for channel %s", channel_name
);
541 lttng_ht_lookup(ust_global
->channels
, (void *) channel_name
, &iter
);
542 node
= lttng_ht_iter_get_node_str(&iter
);
544 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
548 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
550 DBG3("Listing UST global events");
552 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
553 struct lttng_event event
= {};
555 if (uevent
->internal
) {
559 strncpy(event
.name
, uevent
->attr
.name
, sizeof(event
.name
));
560 event
.name
[sizeof(event
.name
) - 1] = '\0';
562 event
.enabled
= uevent
->enabled
;
564 switch (uevent
->attr
.instrumentation
) {
565 case LTTNG_UST_TRACEPOINT
:
566 event
.type
= LTTNG_EVENT_TRACEPOINT
;
568 case LTTNG_UST_PROBE
:
569 event
.type
= LTTNG_EVENT_PROBE
;
571 case LTTNG_UST_FUNCTION
:
572 event
.type
= LTTNG_EVENT_FUNCTION
;
576 event
.loglevel
= uevent
->attr
.loglevel
;
577 switch (uevent
->attr
.loglevel_type
) {
578 case LTTNG_UST_LOGLEVEL_ALL
:
579 event
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
581 case LTTNG_UST_LOGLEVEL_RANGE
:
582 event
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
584 case LTTNG_UST_LOGLEVEL_SINGLE
:
585 event
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
589 if (uevent
->filter
) {
593 if (uevent
->exclusion
) {
597 ret
= lttng_dynamic_buffer_append(&payload
->buffer
, &event
, sizeof(event
));
599 ERR("Failed to append event to payload");
600 ret
= -LTTNG_ERR_NOMEM
;
607 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
608 /* Append extended info. */
609 ret
= append_extended_info(uevent
->filter_expression
,
610 uevent
->exclusion
, NULL
, payload
);
612 ERR("Failed to append extended event info to payload");
613 ret
= -LTTNG_ERR_FATAL
;
625 * Fill lttng_event array of all kernel events in the channel.
627 static int list_lttng_kernel_events(char *channel_name
,
628 struct ltt_kernel_session
*kernel_session
,
629 struct lttng_payload
*payload
)
632 unsigned int nb_event
;
633 const struct ltt_kernel_event
*kevent
;
634 const struct ltt_kernel_channel
*kchan
;
636 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
638 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
642 nb_event
= kchan
->event_count
;
644 DBG("Listing events for channel %s", kchan
->channel
->name
);
646 /* Kernel channels */
647 cds_list_for_each_entry(kevent
, &kchan
->events_list
.head
, list
) {
648 struct lttng_event event
= {};
650 strncpy(event
.name
, kevent
->event
->name
, sizeof(event
.name
));
651 event
.name
[sizeof(event
.name
) - 1] = '\0';
652 event
.enabled
= kevent
->enabled
;
653 event
.filter
= (unsigned char) !!kevent
->filter_expression
;
655 switch (kevent
->event
->instrumentation
) {
656 case LTTNG_KERNEL_TRACEPOINT
:
657 event
.type
= LTTNG_EVENT_TRACEPOINT
;
659 case LTTNG_KERNEL_KRETPROBE
:
660 event
.type
= LTTNG_EVENT_FUNCTION
;
661 memcpy(&event
.attr
.probe
, &kevent
->event
->u
.kprobe
,
662 sizeof(struct lttng_kernel_kprobe
));
664 case LTTNG_KERNEL_KPROBE
:
665 event
.type
= LTTNG_EVENT_PROBE
;
666 memcpy(&event
.attr
.probe
, &kevent
->event
->u
.kprobe
,
667 sizeof(struct lttng_kernel_kprobe
));
669 case LTTNG_KERNEL_UPROBE
:
670 event
.type
= LTTNG_EVENT_USERSPACE_PROBE
;
672 case LTTNG_KERNEL_FUNCTION
:
673 event
.type
= LTTNG_EVENT_FUNCTION
;
674 memcpy(&event
.attr
.ftrace
, &kevent
->event
->u
.ftrace
,
675 sizeof(struct lttng_kernel_function
));
677 case LTTNG_KERNEL_NOOP
:
678 event
.type
= LTTNG_EVENT_NOOP
;
680 case LTTNG_KERNEL_SYSCALL
:
681 event
.type
= LTTNG_EVENT_SYSCALL
;
683 case LTTNG_KERNEL_ALL
:
690 ret
= lttng_dynamic_buffer_append(
691 &payload
->buffer
, &event
, sizeof(event
));
693 ERR("Failed to append event to payload");
694 ret
= -LTTNG_ERR_NOMEM
;
699 cds_list_for_each_entry(kevent
, &kchan
->events_list
.head
, list
) {
700 /* Append extended info. */
701 ret
= append_extended_info(kevent
->filter_expression
, NULL
,
702 kevent
->userspace_probe_location
, payload
);
704 DBG("Error appending extended info message");
705 ret
= -LTTNG_ERR_FATAL
;
717 * Add URI so the consumer output object. Set the correct path depending on the
718 * domain adding the default trace directory.
720 static enum lttng_error_code
add_uri_to_consumer(
721 const struct ltt_session
*session
,
722 struct consumer_output
*consumer
,
723 struct lttng_uri
*uri
, enum lttng_domain_type domain
)
726 enum lttng_error_code ret_code
= LTTNG_OK
;
730 if (consumer
== NULL
) {
731 DBG("No consumer detected. Don't add URI. Stopping.");
732 ret_code
= LTTNG_ERR_NO_CONSUMER
;
737 case LTTNG_DOMAIN_KERNEL
:
738 ret
= lttng_strncpy(consumer
->domain_subdir
,
739 DEFAULT_KERNEL_TRACE_DIR
,
740 sizeof(consumer
->domain_subdir
));
742 case LTTNG_DOMAIN_UST
:
743 ret
= lttng_strncpy(consumer
->domain_subdir
,
744 DEFAULT_UST_TRACE_DIR
,
745 sizeof(consumer
->domain_subdir
));
749 * This case is possible is we try to add the URI to the global
750 * tracing session consumer object which in this case there is
753 memset(consumer
->domain_subdir
, 0,
754 sizeof(consumer
->domain_subdir
));
758 ERR("Failed to initialize consumer output domain subdirectory");
759 ret_code
= LTTNG_ERR_FATAL
;
763 switch (uri
->dtype
) {
766 DBG2("Setting network URI to consumer");
768 if (consumer
->type
== CONSUMER_DST_NET
) {
769 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
770 consumer
->dst
.net
.control_isset
) ||
771 (uri
->stype
== LTTNG_STREAM_DATA
&&
772 consumer
->dst
.net
.data_isset
)) {
773 ret_code
= LTTNG_ERR_URL_EXIST
;
777 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
780 /* Set URI into consumer output object */
781 ret
= consumer_set_network_uri(session
, consumer
, uri
);
785 } else if (ret
== 1) {
787 * URI was the same in the consumer so we do not append the subdir
788 * again so to not duplicate output dir.
795 if (*uri
->dst
.path
!= '/' || strstr(uri
->dst
.path
, "../")) {
796 ret_code
= LTTNG_ERR_INVALID
;
799 DBG2("Setting trace directory path from URI to %s",
801 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
803 ret
= lttng_strncpy(consumer
->dst
.session_root_path
,
805 sizeof(consumer
->dst
.session_root_path
));
807 ret_code
= LTTNG_ERR_FATAL
;
810 consumer
->type
= CONSUMER_DST_LOCAL
;
820 * Init tracing by creating trace directory and sending fds kernel consumer.
822 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
825 struct lttng_ht_iter iter
;
826 struct consumer_socket
*socket
;
832 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
833 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
835 pthread_mutex_lock(socket
->lock
);
836 ret
= kernel_consumer_send_session(socket
, session
);
837 pthread_mutex_unlock(socket
->lock
);
839 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
851 * Create a socket to the relayd using the URI.
853 * On success, the relayd_sock pointer is set to the created socket.
854 * Else, it remains untouched and an LTTng error code is returned.
856 static enum lttng_error_code
create_connect_relayd(struct lttng_uri
*uri
,
857 struct lttcomm_relayd_sock
**relayd_sock
,
858 struct consumer_output
*consumer
)
861 enum lttng_error_code status
= LTTNG_OK
;
862 struct lttcomm_relayd_sock
*rsock
;
864 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
865 RELAYD_VERSION_COMM_MINOR
);
867 status
= LTTNG_ERR_FATAL
;
872 * Connect to relayd so we can proceed with a session creation. This call
873 * can possibly block for an arbitrary amount of time to set the health
874 * state to be in poll execution.
877 ret
= relayd_connect(rsock
);
880 ERR("Unable to reach lttng-relayd");
881 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
885 /* Create socket for control stream. */
886 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
887 uint64_t result_flags
;
889 DBG3("Creating relayd stream socket from URI");
891 /* Check relayd version */
892 ret
= relayd_version_check(rsock
);
893 if (ret
== LTTNG_ERR_RELAYD_VERSION_FAIL
) {
894 status
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
896 } else if (ret
< 0) {
897 ERR("Unable to reach lttng-relayd");
898 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
901 consumer
->relay_major_version
= rsock
->major
;
902 consumer
->relay_minor_version
= rsock
->minor
;
903 ret
= relayd_get_configuration(rsock
, 0,
906 ERR("Unable to get relayd configuration");
907 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
910 if (result_flags
& LTTCOMM_RELAYD_CONFIGURATION_FLAG_CLEAR_ALLOWED
) {
911 consumer
->relay_allows_clear
= true;
913 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
914 DBG3("Creating relayd data socket from URI");
916 /* Command is not valid */
917 ERR("Relayd invalid stream type: %d", uri
->stype
);
918 status
= LTTNG_ERR_INVALID
;
922 *relayd_sock
= rsock
;
927 /* The returned value is not useful since we are on an error path. */
928 (void) relayd_close(rsock
);
936 * Connect to the relayd using URI and send the socket to the right consumer.
938 * The consumer socket lock must be held by the caller.
940 * Returns LTTNG_OK on success or an LTTng error code on failure.
942 static enum lttng_error_code
send_consumer_relayd_socket(
943 unsigned int session_id
,
944 struct lttng_uri
*relayd_uri
,
945 struct consumer_output
*consumer
,
946 struct consumer_socket
*consumer_sock
,
947 const char *session_name
, const char *hostname
,
948 const char *base_path
, int session_live_timer
,
949 const uint64_t *current_chunk_id
,
950 time_t session_creation_time
,
951 bool session_name_contains_creation_time
)
954 struct lttcomm_relayd_sock
*rsock
= NULL
;
955 enum lttng_error_code status
;
957 /* Connect to relayd and make version check if uri is the control. */
958 status
= create_connect_relayd(relayd_uri
, &rsock
, consumer
);
959 if (status
!= LTTNG_OK
) {
960 goto relayd_comm_error
;
964 /* Set the network sequence index if not set. */
965 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
966 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
968 * Increment net_seq_idx because we are about to transfer the
969 * new relayd socket to the consumer.
970 * Assign unique key so the consumer can match streams.
972 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
973 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
976 /* Send relayd socket to consumer. */
977 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
978 relayd_uri
->stype
, session_id
,
979 session_name
, hostname
, base_path
,
980 session_live_timer
, current_chunk_id
,
981 session_creation_time
, session_name_contains_creation_time
);
983 status
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
987 /* Flag that the corresponding socket was sent. */
988 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
989 consumer_sock
->control_sock_sent
= 1;
990 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
991 consumer_sock
->data_sock_sent
= 1;
995 * Close socket which was dup on the consumer side. The session daemon does
996 * NOT keep track of the relayd socket(s) once transfer to the consumer.
1000 if (status
!= LTTNG_OK
) {
1002 * The consumer output for this session should not be used anymore
1003 * since the relayd connection failed thus making any tracing or/and
1004 * streaming not usable.
1006 consumer
->enabled
= 0;
1008 (void) relayd_close(rsock
);
1016 * Send both relayd sockets to a specific consumer and domain. This is a
1017 * helper function to facilitate sending the information to the consumer for a
1020 * The consumer socket lock must be held by the caller.
1022 * Returns LTTNG_OK, or an LTTng error code on failure.
1024 static enum lttng_error_code
send_consumer_relayd_sockets(
1025 enum lttng_domain_type domain
,
1026 unsigned int session_id
, struct consumer_output
*consumer
,
1027 struct consumer_socket
*sock
, const char *session_name
,
1028 const char *hostname
, const char *base_path
, int session_live_timer
,
1029 const uint64_t *current_chunk_id
, time_t session_creation_time
,
1030 bool session_name_contains_creation_time
)
1032 enum lttng_error_code status
= LTTNG_OK
;
1037 /* Sending control relayd socket. */
1038 if (!sock
->control_sock_sent
) {
1039 status
= send_consumer_relayd_socket(session_id
,
1040 &consumer
->dst
.net
.control
, consumer
, sock
,
1041 session_name
, hostname
, base_path
, session_live_timer
,
1042 current_chunk_id
, session_creation_time
,
1043 session_name_contains_creation_time
);
1044 if (status
!= LTTNG_OK
) {
1049 /* Sending data relayd socket. */
1050 if (!sock
->data_sock_sent
) {
1051 status
= send_consumer_relayd_socket(session_id
,
1052 &consumer
->dst
.net
.data
, consumer
, sock
,
1053 session_name
, hostname
, base_path
, session_live_timer
,
1054 current_chunk_id
, session_creation_time
,
1055 session_name_contains_creation_time
);
1056 if (status
!= LTTNG_OK
) {
1066 * Setup relayd connections for a tracing session. First creates the socket to
1067 * the relayd and send them to the right domain consumer. Consumer type MUST be
1070 int cmd_setup_relayd(struct ltt_session
*session
)
1073 struct ltt_ust_session
*usess
;
1074 struct ltt_kernel_session
*ksess
;
1075 struct consumer_socket
*socket
;
1076 struct lttng_ht_iter iter
;
1077 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
1081 usess
= session
->ust_session
;
1082 ksess
= session
->kernel_session
;
1084 DBG("Setting relayd for session %s", session
->name
);
1087 if (session
->current_trace_chunk
) {
1088 enum lttng_trace_chunk_status status
= lttng_trace_chunk_get_id(
1089 session
->current_trace_chunk
, ¤t_chunk_id
.value
);
1091 if (status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
1092 current_chunk_id
.is_set
= true;
1094 ERR("Failed to get current trace chunk id");
1095 ret
= LTTNG_ERR_UNK
;
1100 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
1101 && usess
->consumer
->enabled
) {
1102 /* For each consumer socket, send relayd sockets */
1103 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
1104 socket
, node
.node
) {
1105 pthread_mutex_lock(socket
->lock
);
1106 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
1107 usess
->consumer
, socket
,
1108 session
->name
, session
->hostname
,
1110 session
->live_timer
,
1111 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1112 session
->creation_time
,
1113 session
->name_contains_creation_time
);
1114 pthread_mutex_unlock(socket
->lock
);
1115 if (ret
!= LTTNG_OK
) {
1118 /* Session is now ready for network streaming. */
1119 session
->net_handle
= 1;
1121 session
->consumer
->relay_major_version
=
1122 usess
->consumer
->relay_major_version
;
1123 session
->consumer
->relay_minor_version
=
1124 usess
->consumer
->relay_minor_version
;
1125 session
->consumer
->relay_allows_clear
=
1126 usess
->consumer
->relay_allows_clear
;
1129 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
1130 && ksess
->consumer
->enabled
) {
1131 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
1132 socket
, node
.node
) {
1133 pthread_mutex_lock(socket
->lock
);
1134 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
1135 ksess
->consumer
, socket
,
1136 session
->name
, session
->hostname
,
1138 session
->live_timer
,
1139 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1140 session
->creation_time
,
1141 session
->name_contains_creation_time
);
1142 pthread_mutex_unlock(socket
->lock
);
1143 if (ret
!= LTTNG_OK
) {
1146 /* Session is now ready for network streaming. */
1147 session
->net_handle
= 1;
1149 session
->consumer
->relay_major_version
=
1150 ksess
->consumer
->relay_major_version
;
1151 session
->consumer
->relay_minor_version
=
1152 ksess
->consumer
->relay_minor_version
;
1153 session
->consumer
->relay_allows_clear
=
1154 ksess
->consumer
->relay_allows_clear
;
1163 * Start a kernel session by opening all necessary streams.
1165 int start_kernel_session(struct ltt_kernel_session
*ksess
)
1168 struct ltt_kernel_channel
*kchan
;
1170 /* Open kernel metadata */
1171 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
1172 ret
= kernel_open_metadata(ksess
);
1174 ret
= LTTNG_ERR_KERN_META_FAIL
;
1179 /* Open kernel metadata stream */
1180 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
1181 ret
= kernel_open_metadata_stream(ksess
);
1183 ERR("Kernel create metadata stream failed");
1184 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1189 /* For each channel */
1190 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1191 if (kchan
->stream_count
== 0) {
1192 ret
= kernel_open_channel_stream(kchan
);
1194 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1197 /* Update the stream global counter */
1198 ksess
->stream_count_global
+= ret
;
1202 /* Setup kernel consumer socket and send fds to it */
1203 ret
= init_kernel_tracing(ksess
);
1205 ret
= LTTNG_ERR_KERN_START_FAIL
;
1209 /* This start the kernel tracing */
1210 ret
= kernel_start_session(ksess
);
1212 ret
= LTTNG_ERR_KERN_START_FAIL
;
1216 /* Quiescent wait after starting trace */
1217 kernel_wait_quiescent();
1227 int stop_kernel_session(struct ltt_kernel_session
*ksess
)
1229 struct ltt_kernel_channel
*kchan
;
1230 bool error_occurred
= false;
1233 if (!ksess
|| !ksess
->active
) {
1236 DBG("Stopping kernel tracing");
1238 ret
= kernel_stop_session(ksess
);
1240 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1244 kernel_wait_quiescent();
1246 /* Flush metadata after stopping (if exists) */
1247 if (ksess
->metadata_stream_fd
>= 0) {
1248 ret
= kernel_metadata_flush_buffer(ksess
->metadata_stream_fd
);
1250 ERR("Kernel metadata flush failed");
1251 error_occurred
= true;
1255 /* Flush all buffers after stopping */
1256 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1257 ret
= kernel_flush_buffer(kchan
);
1259 ERR("Kernel flush buffer error");
1260 error_occurred
= true;
1265 if (error_occurred
) {
1266 ret
= LTTNG_ERR_UNK
;
1275 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1277 int cmd_disable_channel(struct ltt_session
*session
,
1278 enum lttng_domain_type domain
, char *channel_name
)
1281 struct ltt_ust_session
*usess
;
1283 usess
= session
->ust_session
;
1288 case LTTNG_DOMAIN_KERNEL
:
1290 ret
= channel_kernel_disable(session
->kernel_session
,
1292 if (ret
!= LTTNG_OK
) {
1296 kernel_wait_quiescent();
1299 case LTTNG_DOMAIN_UST
:
1301 struct ltt_ust_channel
*uchan
;
1302 struct lttng_ht
*chan_ht
;
1304 chan_ht
= usess
->domain_global
.channels
;
1306 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
1307 if (uchan
== NULL
) {
1308 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1312 ret
= channel_ust_disable(usess
, uchan
);
1313 if (ret
!= LTTNG_OK
) {
1319 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1331 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1333 * The wpipe arguments is used as a notifier for the kernel thread.
1335 int cmd_enable_channel(struct ltt_session
*session
,
1336 const struct lttng_domain
*domain
, const struct lttng_channel
*_attr
, int wpipe
)
1339 struct ltt_ust_session
*usess
= session
->ust_session
;
1340 struct lttng_ht
*chan_ht
;
1342 struct lttng_channel attr
;
1349 len
= lttng_strnlen(attr
.name
, sizeof(attr
.name
));
1351 /* Validate channel name */
1352 if (attr
.name
[0] == '.' ||
1353 memchr(attr
.name
, '/', len
) != NULL
) {
1354 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1358 DBG("Enabling channel %s for session %s", attr
.name
, session
->name
);
1363 * Don't try to enable a channel if the session has been started at
1364 * some point in time before. The tracer does not allow it.
1366 if (session
->has_been_started
) {
1367 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1372 * If the session is a live session, remove the switch timer, the
1373 * live timer does the same thing but sends also synchronisation
1374 * beacons for inactive streams.
1376 if (session
->live_timer
> 0) {
1377 attr
.attr
.live_timer_interval
= session
->live_timer
;
1378 attr
.attr
.switch_timer_interval
= 0;
1381 /* Check for feature support */
1382 switch (domain
->type
) {
1383 case LTTNG_DOMAIN_KERNEL
:
1385 if (kernel_supports_ring_buffer_snapshot_sample_positions() != 1) {
1386 /* Sampling position of buffer is not supported */
1387 WARN("Kernel tracer does not support buffer monitoring. "
1388 "Setting the monitor interval timer to 0 "
1389 "(disabled) for channel '%s' of session '%s'",
1390 attr
.name
, session
->name
);
1391 lttng_channel_set_monitor_timer_interval(&attr
, 0);
1395 case LTTNG_DOMAIN_UST
:
1397 case LTTNG_DOMAIN_JUL
:
1398 case LTTNG_DOMAIN_LOG4J
:
1399 case LTTNG_DOMAIN_PYTHON
:
1400 if (!agent_tracing_is_enabled()) {
1401 DBG("Attempted to enable a channel in an agent domain but the agent thread is not running");
1402 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
1407 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1411 switch (domain
->type
) {
1412 case LTTNG_DOMAIN_KERNEL
:
1414 struct ltt_kernel_channel
*kchan
;
1416 kchan
= trace_kernel_get_channel_by_name(attr
.name
,
1417 session
->kernel_session
);
1418 if (kchan
== NULL
) {
1419 if (session
->snapshot
.nb_output
> 0 ||
1420 session
->snapshot_mode
) {
1421 /* Enforce mmap output for snapshot sessions. */
1422 attr
.attr
.output
= LTTNG_EVENT_MMAP
;
1424 ret
= channel_kernel_create(session
->kernel_session
, &attr
, wpipe
);
1425 if (attr
.name
[0] != '\0') {
1426 session
->kernel_session
->has_non_default_channel
= 1;
1429 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1432 if (ret
!= LTTNG_OK
) {
1436 kernel_wait_quiescent();
1439 case LTTNG_DOMAIN_UST
:
1440 case LTTNG_DOMAIN_JUL
:
1441 case LTTNG_DOMAIN_LOG4J
:
1442 case LTTNG_DOMAIN_PYTHON
:
1444 struct ltt_ust_channel
*uchan
;
1449 * Current agent implementation limitations force us to allow
1450 * only one channel at once in "agent" subdomains. Each
1451 * subdomain has a default channel name which must be strictly
1454 if (domain
->type
== LTTNG_DOMAIN_JUL
) {
1455 if (strncmp(attr
.name
, DEFAULT_JUL_CHANNEL_NAME
,
1456 LTTNG_SYMBOL_NAME_LEN
)) {
1457 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1460 } else if (domain
->type
== LTTNG_DOMAIN_LOG4J
) {
1461 if (strncmp(attr
.name
, DEFAULT_LOG4J_CHANNEL_NAME
,
1462 LTTNG_SYMBOL_NAME_LEN
)) {
1463 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1466 } else if (domain
->type
== LTTNG_DOMAIN_PYTHON
) {
1467 if (strncmp(attr
.name
, DEFAULT_PYTHON_CHANNEL_NAME
,
1468 LTTNG_SYMBOL_NAME_LEN
)) {
1469 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1474 chan_ht
= usess
->domain_global
.channels
;
1476 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
.name
);
1477 if (uchan
== NULL
) {
1478 ret
= channel_ust_create(usess
, &attr
, domain
->buf_type
);
1479 if (attr
.name
[0] != '\0') {
1480 usess
->has_non_default_channel
= 1;
1483 ret
= channel_ust_enable(usess
, uchan
);
1488 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1492 if (ret
== LTTNG_OK
&& attr
.attr
.output
!= LTTNG_EVENT_MMAP
) {
1493 session
->has_non_mmap_channel
= true;
1501 enum lttng_error_code
cmd_process_attr_tracker_get_tracking_policy(
1502 struct ltt_session
*session
,
1503 enum lttng_domain_type domain
,
1504 enum lttng_process_attr process_attr
,
1505 enum lttng_tracking_policy
*policy
)
1507 enum lttng_error_code ret_code
= LTTNG_OK
;
1508 const struct process_attr_tracker
*tracker
;
1511 case LTTNG_DOMAIN_KERNEL
:
1512 if (!session
->kernel_session
) {
1513 ret_code
= LTTNG_ERR_INVALID
;
1516 tracker
= kernel_get_process_attr_tracker(
1517 session
->kernel_session
, process_attr
);
1519 case LTTNG_DOMAIN_UST
:
1520 if (!session
->ust_session
) {
1521 ret_code
= LTTNG_ERR_INVALID
;
1524 tracker
= trace_ust_get_process_attr_tracker(
1525 session
->ust_session
, process_attr
);
1528 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1532 *policy
= process_attr_tracker_get_tracking_policy(tracker
);
1534 ret_code
= LTTNG_ERR_INVALID
;
1540 enum lttng_error_code
cmd_process_attr_tracker_set_tracking_policy(
1541 struct ltt_session
*session
,
1542 enum lttng_domain_type domain
,
1543 enum lttng_process_attr process_attr
,
1544 enum lttng_tracking_policy policy
)
1546 enum lttng_error_code ret_code
= LTTNG_OK
;
1549 case LTTNG_TRACKING_POLICY_INCLUDE_SET
:
1550 case LTTNG_TRACKING_POLICY_EXCLUDE_ALL
:
1551 case LTTNG_TRACKING_POLICY_INCLUDE_ALL
:
1554 ret_code
= LTTNG_ERR_INVALID
;
1559 case LTTNG_DOMAIN_KERNEL
:
1560 if (!session
->kernel_session
) {
1561 ret_code
= LTTNG_ERR_INVALID
;
1564 ret_code
= kernel_process_attr_tracker_set_tracking_policy(
1565 session
->kernel_session
, process_attr
, policy
);
1567 case LTTNG_DOMAIN_UST
:
1568 if (!session
->ust_session
) {
1569 ret_code
= LTTNG_ERR_INVALID
;
1572 ret_code
= trace_ust_process_attr_tracker_set_tracking_policy(
1573 session
->ust_session
, process_attr
, policy
);
1576 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1583 enum lttng_error_code
cmd_process_attr_tracker_inclusion_set_add_value(
1584 struct ltt_session
*session
,
1585 enum lttng_domain_type domain
,
1586 enum lttng_process_attr process_attr
,
1587 const struct process_attr_value
*value
)
1589 enum lttng_error_code ret_code
= LTTNG_OK
;
1592 case LTTNG_DOMAIN_KERNEL
:
1593 if (!session
->kernel_session
) {
1594 ret_code
= LTTNG_ERR_INVALID
;
1597 ret_code
= kernel_process_attr_tracker_inclusion_set_add_value(
1598 session
->kernel_session
, process_attr
, value
);
1600 case LTTNG_DOMAIN_UST
:
1601 if (!session
->ust_session
) {
1602 ret_code
= LTTNG_ERR_INVALID
;
1605 ret_code
= trace_ust_process_attr_tracker_inclusion_set_add_value(
1606 session
->ust_session
, process_attr
, value
);
1609 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1616 enum lttng_error_code
cmd_process_attr_tracker_inclusion_set_remove_value(
1617 struct ltt_session
*session
,
1618 enum lttng_domain_type domain
,
1619 enum lttng_process_attr process_attr
,
1620 const struct process_attr_value
*value
)
1622 enum lttng_error_code ret_code
= LTTNG_OK
;
1625 case LTTNG_DOMAIN_KERNEL
:
1626 if (!session
->kernel_session
) {
1627 ret_code
= LTTNG_ERR_INVALID
;
1630 ret_code
= kernel_process_attr_tracker_inclusion_set_remove_value(
1631 session
->kernel_session
, process_attr
, value
);
1633 case LTTNG_DOMAIN_UST
:
1634 if (!session
->ust_session
) {
1635 ret_code
= LTTNG_ERR_INVALID
;
1638 ret_code
= trace_ust_process_attr_tracker_inclusion_set_remove_value(
1639 session
->ust_session
, process_attr
, value
);
1642 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1649 enum lttng_error_code
cmd_process_attr_tracker_get_inclusion_set(
1650 struct ltt_session
*session
,
1651 enum lttng_domain_type domain
,
1652 enum lttng_process_attr process_attr
,
1653 struct lttng_process_attr_values
**values
)
1655 enum lttng_error_code ret_code
= LTTNG_OK
;
1656 const struct process_attr_tracker
*tracker
;
1657 enum process_attr_tracker_status status
;
1660 case LTTNG_DOMAIN_KERNEL
:
1661 if (!session
->kernel_session
) {
1662 ret_code
= LTTNG_ERR_INVALID
;
1665 tracker
= kernel_get_process_attr_tracker(
1666 session
->kernel_session
, process_attr
);
1668 case LTTNG_DOMAIN_UST
:
1669 if (!session
->ust_session
) {
1670 ret_code
= LTTNG_ERR_INVALID
;
1673 tracker
= trace_ust_get_process_attr_tracker(
1674 session
->ust_session
, process_attr
);
1677 ret_code
= LTTNG_ERR_UNSUPPORTED_DOMAIN
;
1682 ret_code
= LTTNG_ERR_INVALID
;
1686 status
= process_attr_tracker_get_inclusion_set(tracker
, values
);
1688 case PROCESS_ATTR_TRACKER_STATUS_OK
:
1689 ret_code
= LTTNG_OK
;
1691 case PROCESS_ATTR_TRACKER_STATUS_INVALID_TRACKING_POLICY
:
1692 ret_code
= LTTNG_ERR_PROCESS_ATTR_TRACKER_INVALID_TRACKING_POLICY
;
1694 case PROCESS_ATTR_TRACKER_STATUS_ERROR
:
1695 ret_code
= LTTNG_ERR_NOMEM
;
1698 ret_code
= LTTNG_ERR_UNK
;
1707 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1709 int cmd_disable_event(struct ltt_session
*session
,
1710 enum lttng_domain_type domain
, const char *channel_name
,
1711 const struct lttng_event
*event
)
1714 const char *event_name
;
1716 DBG("Disable event command for event \'%s\'", event
->name
);
1718 event_name
= event
->name
;
1720 /* Error out on unhandled search criteria */
1721 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1722 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1723 ret
= LTTNG_ERR_UNK
;
1730 case LTTNG_DOMAIN_KERNEL
:
1732 struct ltt_kernel_channel
*kchan
;
1733 struct ltt_kernel_session
*ksess
;
1735 ksess
= session
->kernel_session
;
1738 * If a non-default channel has been created in the
1739 * session, explicitely require that -c chan_name needs
1742 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1743 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1747 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1748 if (kchan
== NULL
) {
1749 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1753 switch (event
->type
) {
1754 case LTTNG_EVENT_ALL
:
1755 case LTTNG_EVENT_TRACEPOINT
:
1756 case LTTNG_EVENT_SYSCALL
:
1757 case LTTNG_EVENT_PROBE
:
1758 case LTTNG_EVENT_FUNCTION
:
1759 case LTTNG_EVENT_FUNCTION_ENTRY
:/* fall-through */
1760 if (event_name
[0] == '\0') {
1761 ret
= event_kernel_disable_event(kchan
,
1764 ret
= event_kernel_disable_event(kchan
,
1765 event_name
, event
->type
);
1767 if (ret
!= LTTNG_OK
) {
1772 ret
= LTTNG_ERR_UNK
;
1776 kernel_wait_quiescent();
1779 case LTTNG_DOMAIN_UST
:
1781 struct ltt_ust_channel
*uchan
;
1782 struct ltt_ust_session
*usess
;
1784 usess
= session
->ust_session
;
1786 if (validate_ust_event_name(event_name
)) {
1787 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1792 * If a non-default channel has been created in the
1793 * session, explicitly require that -c chan_name needs
1796 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1797 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1801 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1803 if (uchan
== NULL
) {
1804 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1808 switch (event
->type
) {
1809 case LTTNG_EVENT_ALL
:
1811 * An empty event name means that everything
1812 * should be disabled.
1814 if (event
->name
[0] == '\0') {
1815 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1817 ret
= event_ust_disable_tracepoint(usess
, uchan
,
1820 if (ret
!= LTTNG_OK
) {
1825 ret
= LTTNG_ERR_UNK
;
1829 DBG3("Disable UST event %s in channel %s completed", event_name
,
1833 case LTTNG_DOMAIN_LOG4J
:
1834 case LTTNG_DOMAIN_JUL
:
1835 case LTTNG_DOMAIN_PYTHON
:
1838 struct ltt_ust_session
*usess
= session
->ust_session
;
1842 switch (event
->type
) {
1843 case LTTNG_EVENT_ALL
:
1846 ret
= LTTNG_ERR_UNK
;
1850 agt
= trace_ust_find_agent(usess
, domain
);
1852 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1856 * An empty event name means that everything
1857 * should be disabled.
1859 if (event
->name
[0] == '\0') {
1860 ret
= event_agent_disable_all(usess
, agt
);
1862 ret
= event_agent_disable(usess
, agt
, event_name
);
1864 if (ret
!= LTTNG_OK
) {
1871 ret
= LTTNG_ERR_UND
;
1884 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1886 int cmd_add_context(struct ltt_session
*session
, enum lttng_domain_type domain
,
1887 char *channel_name
, const struct lttng_event_context
*ctx
, int kwpipe
)
1889 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1890 char *app_ctx_provider_name
= NULL
, *app_ctx_name
= NULL
;
1893 * Don't try to add a context if the session has been started at
1894 * some point in time before. The tracer does not allow it and would
1895 * result in a corrupted trace.
1897 if (session
->has_been_started
) {
1898 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1902 if (ctx
->ctx
== LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
1903 app_ctx_provider_name
= ctx
->u
.app_ctx
.provider_name
;
1904 app_ctx_name
= ctx
->u
.app_ctx
.ctx_name
;
1908 case LTTNG_DOMAIN_KERNEL
:
1909 assert(session
->kernel_session
);
1911 if (session
->kernel_session
->channel_count
== 0) {
1912 /* Create default channel */
1913 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1914 if (ret
!= LTTNG_OK
) {
1917 chan_kern_created
= 1;
1919 /* Add kernel context to kernel tracer */
1920 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1921 if (ret
!= LTTNG_OK
) {
1925 case LTTNG_DOMAIN_JUL
:
1926 case LTTNG_DOMAIN_LOG4J
:
1929 * Validate channel name.
1930 * If no channel name is given and the domain is JUL or LOG4J,
1931 * set it to the appropriate domain-specific channel name. If
1932 * a name is provided but does not match the expexted channel
1933 * name, return an error.
1935 if (domain
== LTTNG_DOMAIN_JUL
&& *channel_name
&&
1936 strcmp(channel_name
,
1937 DEFAULT_JUL_CHANNEL_NAME
)) {
1938 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1940 } else if (domain
== LTTNG_DOMAIN_LOG4J
&& *channel_name
&&
1941 strcmp(channel_name
,
1942 DEFAULT_LOG4J_CHANNEL_NAME
)) {
1943 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1946 /* break is _not_ missing here. */
1948 case LTTNG_DOMAIN_UST
:
1950 struct ltt_ust_session
*usess
= session
->ust_session
;
1951 unsigned int chan_count
;
1955 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1956 if (chan_count
== 0) {
1957 struct lttng_channel
*attr
;
1958 /* Create default channel */
1959 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1961 ret
= LTTNG_ERR_FATAL
;
1965 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1966 if (ret
!= LTTNG_OK
) {
1970 channel_attr_destroy(attr
);
1971 chan_ust_created
= 1;
1974 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1975 free(app_ctx_provider_name
);
1977 app_ctx_name
= NULL
;
1978 app_ctx_provider_name
= NULL
;
1979 if (ret
!= LTTNG_OK
) {
1985 ret
= LTTNG_ERR_UND
;
1993 if (chan_kern_created
) {
1994 struct ltt_kernel_channel
*kchan
=
1995 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1996 session
->kernel_session
);
1997 /* Created previously, this should NOT fail. */
1999 kernel_destroy_channel(kchan
);
2002 if (chan_ust_created
) {
2003 struct ltt_ust_channel
*uchan
=
2004 trace_ust_find_channel_by_name(
2005 session
->ust_session
->domain_global
.channels
,
2006 DEFAULT_CHANNEL_NAME
);
2007 /* Created previously, this should NOT fail. */
2009 /* Remove from the channel list of the session. */
2010 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
2012 trace_ust_destroy_channel(uchan
);
2015 free(app_ctx_provider_name
);
2020 static inline bool name_starts_with(const char *name
, const char *prefix
)
2022 const size_t max_cmp_len
= min(strlen(prefix
), LTTNG_SYMBOL_NAME_LEN
);
2024 return !strncmp(name
, prefix
, max_cmp_len
);
2027 /* Perform userspace-specific event name validation */
2028 static int validate_ust_event_name(const char *name
)
2038 * Check name against all internal UST event component namespaces used
2041 if (name_starts_with(name
, DEFAULT_JUL_EVENT_COMPONENT
) ||
2042 name_starts_with(name
, DEFAULT_LOG4J_EVENT_COMPONENT
) ||
2043 name_starts_with(name
, DEFAULT_PYTHON_EVENT_COMPONENT
)) {
2052 * Internal version of cmd_enable_event() with a supplemental
2053 * "internal_event" flag which is used to enable internal events which should
2054 * be hidden from clients. Such events are used in the agent implementation to
2055 * enable the events through which all "agent" events are funeled.
2057 static int _cmd_enable_event(struct ltt_session
*session
,
2058 const struct lttng_domain
*domain
,
2059 char *channel_name
, struct lttng_event
*event
,
2060 char *filter_expression
,
2061 struct lttng_filter_bytecode
*filter
,
2062 struct lttng_event_exclusion
*exclusion
,
2063 int wpipe
, bool internal_event
)
2065 int ret
= 0, channel_created
= 0;
2066 struct lttng_channel
*attr
= NULL
;
2070 assert(channel_name
);
2072 /* If we have a filter, we must have its filter expression */
2073 assert(!(!!filter_expression
^ !!filter
));
2075 /* Normalize event name as a globbing pattern */
2076 strutils_normalize_star_glob_pattern(event
->name
);
2078 /* Normalize exclusion names as globbing patterns */
2082 for (i
= 0; i
< exclusion
->count
; i
++) {
2083 char *name
= LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
2085 strutils_normalize_star_glob_pattern(name
);
2089 DBG("Enable event command for event \'%s\'", event
->name
);
2093 switch (domain
->type
) {
2094 case LTTNG_DOMAIN_KERNEL
:
2096 struct ltt_kernel_channel
*kchan
;
2099 * If a non-default channel has been created in the
2100 * session, explicitely require that -c chan_name needs
2103 if (session
->kernel_session
->has_non_default_channel
2104 && channel_name
[0] == '\0') {
2105 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2109 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2110 session
->kernel_session
);
2111 if (kchan
== NULL
) {
2112 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
2113 LTTNG_BUFFER_GLOBAL
);
2115 ret
= LTTNG_ERR_FATAL
;
2118 if (lttng_strncpy(attr
->name
, channel_name
,
2119 sizeof(attr
->name
))) {
2120 ret
= LTTNG_ERR_INVALID
;
2124 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2125 if (ret
!= LTTNG_OK
) {
2128 channel_created
= 1;
2131 /* Get the newly created kernel channel pointer */
2132 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2133 session
->kernel_session
);
2134 if (kchan
== NULL
) {
2135 /* This sould not happen... */
2136 ret
= LTTNG_ERR_FATAL
;
2140 switch (event
->type
) {
2141 case LTTNG_EVENT_ALL
:
2143 char *filter_expression_a
= NULL
;
2144 struct lttng_filter_bytecode
*filter_a
= NULL
;
2147 * We need to duplicate filter_expression and filter,
2148 * because ownership is passed to first enable
2151 if (filter_expression
) {
2152 filter_expression_a
= strdup(filter_expression
);
2153 if (!filter_expression_a
) {
2154 ret
= LTTNG_ERR_FATAL
;
2159 filter_a
= zmalloc(sizeof(*filter_a
) + filter
->len
);
2161 free(filter_expression_a
);
2162 ret
= LTTNG_ERR_FATAL
;
2165 memcpy(filter_a
, filter
, sizeof(*filter_a
) + filter
->len
);
2167 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
2168 ret
= event_kernel_enable_event(kchan
, event
,
2169 filter_expression
, filter
);
2170 /* We have passed ownership */
2171 filter_expression
= NULL
;
2173 if (ret
!= LTTNG_OK
) {
2174 if (channel_created
) {
2175 /* Let's not leak a useless channel. */
2176 kernel_destroy_channel(kchan
);
2178 free(filter_expression_a
);
2182 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
2183 ret
= event_kernel_enable_event(kchan
, event
,
2184 filter_expression_a
, filter_a
);
2185 /* We have passed ownership */
2186 filter_expression_a
= NULL
;
2188 if (ret
!= LTTNG_OK
) {
2193 case LTTNG_EVENT_PROBE
:
2194 case LTTNG_EVENT_USERSPACE_PROBE
:
2195 case LTTNG_EVENT_FUNCTION
:
2196 case LTTNG_EVENT_FUNCTION_ENTRY
:
2197 case LTTNG_EVENT_TRACEPOINT
:
2198 ret
= event_kernel_enable_event(kchan
, event
,
2199 filter_expression
, filter
);
2200 /* We have passed ownership */
2201 filter_expression
= NULL
;
2203 if (ret
!= LTTNG_OK
) {
2204 if (channel_created
) {
2205 /* Let's not leak a useless channel. */
2206 kernel_destroy_channel(kchan
);
2211 case LTTNG_EVENT_SYSCALL
:
2212 ret
= event_kernel_enable_event(kchan
, event
,
2213 filter_expression
, filter
);
2214 /* We have passed ownership */
2215 filter_expression
= NULL
;
2217 if (ret
!= LTTNG_OK
) {
2222 ret
= LTTNG_ERR_UNK
;
2226 kernel_wait_quiescent();
2229 case LTTNG_DOMAIN_UST
:
2231 struct ltt_ust_channel
*uchan
;
2232 struct ltt_ust_session
*usess
= session
->ust_session
;
2237 * If a non-default channel has been created in the
2238 * session, explicitely require that -c chan_name needs
2241 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
2242 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2246 /* Get channel from global UST domain */
2247 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2249 if (uchan
== NULL
) {
2250 /* Create default channel */
2251 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
2252 usess
->buffer_type
);
2254 ret
= LTTNG_ERR_FATAL
;
2257 if (lttng_strncpy(attr
->name
, channel_name
,
2258 sizeof(attr
->name
))) {
2259 ret
= LTTNG_ERR_INVALID
;
2263 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2264 if (ret
!= LTTNG_OK
) {
2268 /* Get the newly created channel reference back */
2269 uchan
= trace_ust_find_channel_by_name(
2270 usess
->domain_global
.channels
, channel_name
);
2274 if (uchan
->domain
!= LTTNG_DOMAIN_UST
&& !internal_event
) {
2276 * Don't allow users to add UST events to channels which
2277 * are assigned to a userspace subdomain (JUL, Log4J,
2280 ret
= LTTNG_ERR_INVALID_CHANNEL_DOMAIN
;
2284 if (!internal_event
) {
2286 * Ensure the event name is not reserved for internal
2289 ret
= validate_ust_event_name(event
->name
);
2291 WARN("Userspace event name %s failed validation.",
2293 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
2298 /* At this point, the session and channel exist on the tracer */
2299 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
2300 filter_expression
, filter
, exclusion
,
2302 /* We have passed ownership */
2303 filter_expression
= NULL
;
2306 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2307 goto already_enabled
;
2308 } else if (ret
!= LTTNG_OK
) {
2313 case LTTNG_DOMAIN_LOG4J
:
2314 case LTTNG_DOMAIN_JUL
:
2315 case LTTNG_DOMAIN_PYTHON
:
2317 const char *default_event_name
, *default_chan_name
;
2319 struct lttng_event uevent
;
2320 struct lttng_domain tmp_dom
;
2321 struct ltt_ust_session
*usess
= session
->ust_session
;
2325 if (!agent_tracing_is_enabled()) {
2326 DBG("Attempted to enable an event in an agent domain but the agent thread is not running");
2327 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
2331 agt
= trace_ust_find_agent(usess
, domain
->type
);
2333 agt
= agent_create(domain
->type
);
2335 ret
= LTTNG_ERR_NOMEM
;
2338 agent_add(agt
, usess
->agents
);
2341 /* Create the default tracepoint. */
2342 memset(&uevent
, 0, sizeof(uevent
));
2343 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
2344 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2345 default_event_name
= event_get_default_agent_ust_name(
2347 if (!default_event_name
) {
2348 ret
= LTTNG_ERR_FATAL
;
2351 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
2352 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
2355 * The domain type is changed because we are about to enable the
2356 * default channel and event for the JUL domain that are hardcoded.
2357 * This happens in the UST domain.
2359 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
2360 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
2362 switch (domain
->type
) {
2363 case LTTNG_DOMAIN_LOG4J
:
2364 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
2366 case LTTNG_DOMAIN_JUL
:
2367 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
2369 case LTTNG_DOMAIN_PYTHON
:
2370 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
2373 /* The switch/case we are in makes this impossible */
2378 char *filter_expression_copy
= NULL
;
2379 struct lttng_filter_bytecode
*filter_copy
= NULL
;
2382 const size_t filter_size
= sizeof(
2383 struct lttng_filter_bytecode
)
2386 filter_copy
= zmalloc(filter_size
);
2388 ret
= LTTNG_ERR_NOMEM
;
2391 memcpy(filter_copy
, filter
, filter_size
);
2393 filter_expression_copy
=
2394 strdup(filter_expression
);
2395 if (!filter_expression
) {
2396 ret
= LTTNG_ERR_NOMEM
;
2399 if (!filter_expression_copy
|| !filter_copy
) {
2400 free(filter_expression_copy
);
2406 ret
= cmd_enable_event_internal(session
, &tmp_dom
,
2407 (char *) default_chan_name
,
2408 &uevent
, filter_expression_copy
,
2409 filter_copy
, NULL
, wpipe
);
2412 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2413 goto already_enabled
;
2414 } else if (ret
!= LTTNG_OK
) {
2418 /* The wild card * means that everything should be enabled. */
2419 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
2420 ret
= event_agent_enable_all(usess
, agt
, event
, filter
,
2423 ret
= event_agent_enable(usess
, agt
, event
, filter
,
2427 filter_expression
= NULL
;
2428 if (ret
!= LTTNG_OK
) {
2435 ret
= LTTNG_ERR_UND
;
2443 free(filter_expression
);
2446 channel_attr_destroy(attr
);
2452 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2453 * We own filter, exclusion, and filter_expression.
2455 int cmd_enable_event(struct ltt_session
*session
,
2456 const struct lttng_domain
*domain
,
2457 char *channel_name
, struct lttng_event
*event
,
2458 char *filter_expression
,
2459 struct lttng_filter_bytecode
*filter
,
2460 struct lttng_event_exclusion
*exclusion
,
2463 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2464 filter_expression
, filter
, exclusion
, wpipe
, false);
2468 * Enable an event which is internal to LTTng. An internal should
2469 * never be made visible to clients and are immune to checks such as
2472 static int cmd_enable_event_internal(struct ltt_session
*session
,
2473 const struct lttng_domain
*domain
,
2474 char *channel_name
, struct lttng_event
*event
,
2475 char *filter_expression
,
2476 struct lttng_filter_bytecode
*filter
,
2477 struct lttng_event_exclusion
*exclusion
,
2480 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2481 filter_expression
, filter
, exclusion
, wpipe
, true);
2485 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2487 ssize_t
cmd_list_tracepoints(enum lttng_domain_type domain
,
2488 struct lttng_event
**events
)
2491 ssize_t nb_events
= 0;
2494 case LTTNG_DOMAIN_KERNEL
:
2495 nb_events
= kernel_list_events(events
);
2496 if (nb_events
< 0) {
2497 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2501 case LTTNG_DOMAIN_UST
:
2502 nb_events
= ust_app_list_events(events
);
2503 if (nb_events
< 0) {
2504 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2508 case LTTNG_DOMAIN_LOG4J
:
2509 case LTTNG_DOMAIN_JUL
:
2510 case LTTNG_DOMAIN_PYTHON
:
2511 nb_events
= agent_list_events(events
, domain
);
2512 if (nb_events
< 0) {
2513 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2518 ret
= LTTNG_ERR_UND
;
2525 /* Return negative value to differentiate return code */
2530 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2532 ssize_t
cmd_list_tracepoint_fields(enum lttng_domain_type domain
,
2533 struct lttng_event_field
**fields
)
2536 ssize_t nb_fields
= 0;
2539 case LTTNG_DOMAIN_UST
:
2540 nb_fields
= ust_app_list_event_fields(fields
);
2541 if (nb_fields
< 0) {
2542 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2546 case LTTNG_DOMAIN_KERNEL
:
2547 default: /* fall-through */
2548 ret
= LTTNG_ERR_UND
;
2555 /* Return negative value to differentiate return code */
2559 ssize_t
cmd_list_syscalls(struct lttng_event
**events
)
2561 return syscall_table_list(events
);
2565 * Command LTTNG_START_TRACE processed by the client thread.
2567 * Called with session mutex held.
2569 int cmd_start_trace(struct ltt_session
*session
)
2571 enum lttng_error_code ret
;
2572 unsigned long nb_chan
= 0;
2573 struct ltt_kernel_session
*ksession
;
2574 struct ltt_ust_session
*usess
;
2575 const bool session_rotated_after_last_stop
=
2576 session
->rotated_after_last_stop
;
2577 const bool session_cleared_after_last_stop
=
2578 session
->cleared_after_last_stop
;
2582 /* Ease our life a bit ;) */
2583 ksession
= session
->kernel_session
;
2584 usess
= session
->ust_session
;
2586 /* Is the session already started? */
2587 if (session
->active
) {
2588 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2589 /* Perform nothing */
2593 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
&&
2594 !session
->current_trace_chunk
) {
2596 * A rotation was launched while the session was stopped and
2597 * it has not been completed yet. It is not possible to start
2598 * the session since starting the session here would require a
2599 * rotation from "NULL" to a new trace chunk. That rotation
2600 * would overlap with the ongoing rotation, which is not
2603 WARN("Refusing to start session \"%s\" as a rotation launched after the last \"stop\" is still ongoing",
2605 ret
= LTTNG_ERR_ROTATION_PENDING
;
2610 * Starting a session without channel is useless since after that it's not
2611 * possible to enable channel thus inform the client.
2613 if (usess
&& usess
->domain_global
.channels
) {
2614 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
2617 nb_chan
+= ksession
->channel_count
;
2620 ret
= LTTNG_ERR_NO_CHANNEL
;
2624 session
->active
= 1;
2625 session
->rotated_after_last_stop
= false;
2626 session
->cleared_after_last_stop
= false;
2627 if (session
->output_traces
&& !session
->current_trace_chunk
) {
2628 if (!session
->has_been_started
) {
2629 struct lttng_trace_chunk
*trace_chunk
;
2631 DBG("Creating initial trace chunk of session \"%s\"",
2633 trace_chunk
= session_create_new_trace_chunk(
2634 session
, NULL
, NULL
, NULL
);
2636 ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
2639 assert(!session
->current_trace_chunk
);
2640 ret
= session_set_trace_chunk(session
, trace_chunk
,
2642 lttng_trace_chunk_put(trace_chunk
);
2644 ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
2648 DBG("Rotating session \"%s\" from its current \"NULL\" trace chunk to a new chunk",
2651 * Rotate existing streams into the new chunk.
2652 * This is a "quiet" rotation has no client has
2653 * explicitly requested this operation.
2655 * There is also no need to wait for the rotation
2656 * to complete as it will happen immediately. No data
2657 * was produced as the session was stopped, so the
2658 * rotation should happen on reception of the command.
2660 ret
= cmd_rotate_session(session
, NULL
, true,
2661 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
);
2662 if (ret
!= LTTNG_OK
) {
2668 /* Kernel tracing */
2669 if (ksession
!= NULL
) {
2670 DBG("Start kernel tracing session %s", session
->name
);
2671 ret
= start_kernel_session(ksession
);
2672 if (ret
!= LTTNG_OK
) {
2677 /* Flag session that trace should start automatically */
2679 int int_ret
= ust_app_start_trace_all(usess
);
2682 ret
= LTTNG_ERR_UST_START_FAIL
;
2688 * Open a packet in every stream of the session to ensure that viewers
2689 * can correctly identify the boundaries of the periods during which
2690 * tracing was active for this session.
2692 ret
= session_open_packets(session
);
2693 if (ret
!= LTTNG_OK
) {
2698 * Clear the flag that indicates that a rotation was done while the
2699 * session was stopped.
2701 session
->rotated_after_last_stop
= false;
2703 if (session
->rotate_timer_period
) {
2704 int int_ret
= timer_session_rotation_schedule_timer_start(
2705 session
, session
->rotate_timer_period
);
2708 ERR("Failed to enable rotate timer");
2709 ret
= LTTNG_ERR_UNK
;
2717 if (ret
== LTTNG_OK
) {
2718 /* Flag this after a successful start. */
2719 session
->has_been_started
|= 1;
2721 session
->active
= 0;
2722 /* Restore initial state on error. */
2723 session
->rotated_after_last_stop
=
2724 session_rotated_after_last_stop
;
2725 session
->cleared_after_last_stop
=
2726 session_cleared_after_last_stop
;
2733 * Command LTTNG_STOP_TRACE processed by the client thread.
2735 int cmd_stop_trace(struct ltt_session
*session
)
2738 struct ltt_kernel_session
*ksession
;
2739 struct ltt_ust_session
*usess
;
2743 DBG("Begin stop session \"%s\" (id %" PRIu64
")", session
->name
, session
->id
);
2745 ksession
= session
->kernel_session
;
2746 usess
= session
->ust_session
;
2748 /* Session is not active. Skip everythong and inform the client. */
2749 if (!session
->active
) {
2750 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2754 ret
= stop_kernel_session(ksession
);
2755 if (ret
!= LTTNG_OK
) {
2759 if (usess
&& usess
->active
) {
2760 ret
= ust_app_stop_trace_all(usess
);
2762 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2767 DBG("Completed stop session \"%s\" (id %" PRIu64
")", session
->name
,
2769 /* Flag inactive after a successful stop. */
2770 session
->active
= 0;
2778 * Set the base_path of the session only if subdir of a control uris is set.
2779 * Return LTTNG_OK on success, otherwise LTTNG_ERR_*.
2781 static int set_session_base_path_from_uris(struct ltt_session
*session
,
2783 struct lttng_uri
*uris
)
2788 for (i
= 0; i
< nb_uri
; i
++) {
2789 if (uris
[i
].stype
!= LTTNG_STREAM_CONTROL
||
2790 uris
[i
].subdir
[0] == '\0') {
2791 /* Not interested in these URIs */
2795 if (session
->base_path
!= NULL
) {
2796 free(session
->base_path
);
2797 session
->base_path
= NULL
;
2800 /* Set session base_path */
2801 session
->base_path
= strdup(uris
[i
].subdir
);
2802 if (!session
->base_path
) {
2803 PERROR("Failed to copy base path \"%s\" to session \"%s\"",
2804 uris
[i
].subdir
, session
->name
);
2805 ret
= LTTNG_ERR_NOMEM
;
2808 DBG2("Setting base path \"%s\" for session \"%s\"",
2809 session
->base_path
, session
->name
);
2817 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2819 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2820 struct lttng_uri
*uris
)
2823 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2824 struct ltt_ust_session
*usess
= session
->ust_session
;
2830 /* Can't set consumer URI if the session is active. */
2831 if (session
->active
) {
2832 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2837 * Set the session base path if any. This is done inside
2838 * cmd_set_consumer_uri to preserve backward compatibility of the
2839 * previous session creation api vs the session descriptor api.
2841 ret
= set_session_base_path_from_uris(session
, nb_uri
, uris
);
2842 if (ret
!= LTTNG_OK
) {
2846 /* Set the "global" consumer URIs */
2847 for (i
= 0; i
< nb_uri
; i
++) {
2848 ret
= add_uri_to_consumer(session
, session
->consumer
, &uris
[i
],
2850 if (ret
!= LTTNG_OK
) {
2855 /* Set UST session URIs */
2856 if (session
->ust_session
) {
2857 for (i
= 0; i
< nb_uri
; i
++) {
2858 ret
= add_uri_to_consumer(session
,
2859 session
->ust_session
->consumer
,
2860 &uris
[i
], LTTNG_DOMAIN_UST
);
2861 if (ret
!= LTTNG_OK
) {
2867 /* Set kernel session URIs */
2868 if (session
->kernel_session
) {
2869 for (i
= 0; i
< nb_uri
; i
++) {
2870 ret
= add_uri_to_consumer(session
,
2871 session
->kernel_session
->consumer
,
2872 &uris
[i
], LTTNG_DOMAIN_KERNEL
);
2873 if (ret
!= LTTNG_OK
) {
2880 * Make sure to set the session in output mode after we set URI since a
2881 * session can be created without URL (thus flagged in no output mode).
2883 session
->output_traces
= 1;
2885 ksess
->output_traces
= 1;
2889 usess
->output_traces
= 1;
2900 enum lttng_error_code
set_session_output_from_descriptor(
2901 struct ltt_session
*session
,
2902 const struct lttng_session_descriptor
*descriptor
)
2905 enum lttng_error_code ret_code
= LTTNG_OK
;
2906 enum lttng_session_descriptor_type session_type
=
2907 lttng_session_descriptor_get_type(descriptor
);
2908 enum lttng_session_descriptor_output_type output_type
=
2909 lttng_session_descriptor_get_output_type(descriptor
);
2910 struct lttng_uri uris
[2] = {};
2911 size_t uri_count
= 0;
2913 switch (output_type
) {
2914 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
2916 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
2917 lttng_session_descriptor_get_local_output_uri(descriptor
,
2921 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
2922 lttng_session_descriptor_get_network_output_uris(descriptor
,
2923 &uris
[0], &uris
[1]);
2927 ret_code
= LTTNG_ERR_INVALID
;
2931 switch (session_type
) {
2932 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
2934 struct snapshot_output
*new_output
= NULL
;
2936 new_output
= snapshot_output_alloc();
2938 ret_code
= LTTNG_ERR_NOMEM
;
2942 ret
= snapshot_output_init_with_uri(session
,
2943 DEFAULT_SNAPSHOT_MAX_SIZE
,
2944 NULL
, uris
, uri_count
, session
->consumer
,
2945 new_output
, &session
->snapshot
);
2947 ret_code
= (ret
== -ENOMEM
) ?
2948 LTTNG_ERR_NOMEM
: LTTNG_ERR_INVALID
;
2949 snapshot_output_destroy(new_output
);
2952 snapshot_add_output(&session
->snapshot
, new_output
);
2955 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
2956 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
2958 ret_code
= cmd_set_consumer_uri(session
, uri_count
, uris
);
2962 ret_code
= LTTNG_ERR_INVALID
;
2970 enum lttng_error_code
cmd_create_session_from_descriptor(
2971 struct lttng_session_descriptor
*descriptor
,
2972 const lttng_sock_cred
*creds
,
2973 const char *home_path
)
2976 enum lttng_error_code ret_code
;
2977 const char *session_name
;
2978 struct ltt_session
*new_session
= NULL
;
2979 enum lttng_session_descriptor_status descriptor_status
;
2981 session_lock_list();
2983 if (*home_path
!= '/') {
2984 ERR("Home path provided by client is not absolute");
2985 ret_code
= LTTNG_ERR_INVALID
;
2990 descriptor_status
= lttng_session_descriptor_get_session_name(
2991 descriptor
, &session_name
);
2992 switch (descriptor_status
) {
2993 case LTTNG_SESSION_DESCRIPTOR_STATUS_OK
:
2995 case LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
:
2996 session_name
= NULL
;
2999 ret_code
= LTTNG_ERR_INVALID
;
3003 ret_code
= session_create(session_name
, creds
->uid
, creds
->gid
,
3005 if (ret_code
!= LTTNG_OK
) {
3009 if (!session_name
) {
3010 ret
= lttng_session_descriptor_set_session_name(descriptor
,
3013 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3018 if (!lttng_session_descriptor_is_output_destination_initialized(
3021 * Only include the session's creation time in the output
3022 * destination if the name of the session itself was
3023 * not auto-generated.
3025 ret_code
= lttng_session_descriptor_set_default_output(
3027 session_name
? &new_session
->creation_time
: NULL
,
3029 if (ret_code
!= LTTNG_OK
) {
3033 new_session
->has_user_specified_directory
=
3034 lttng_session_descriptor_has_output_directory(
3038 switch (lttng_session_descriptor_get_type(descriptor
)) {
3039 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3040 new_session
->snapshot_mode
= 1;
3042 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3043 new_session
->live_timer
=
3044 lttng_session_descriptor_live_get_timer_interval(
3051 ret_code
= set_session_output_from_descriptor(new_session
, descriptor
);
3052 if (ret_code
!= LTTNG_OK
) {
3055 new_session
->consumer
->enabled
= 1;
3056 ret_code
= LTTNG_OK
;
3058 /* Release reference provided by the session_create function. */
3059 session_put(new_session
);
3060 if (ret_code
!= LTTNG_OK
&& new_session
) {
3061 /* Release the global reference on error. */
3062 session_destroy(new_session
);
3064 session_unlock_list();
3068 enum lttng_error_code
cmd_create_session(struct command_ctx
*cmd_ctx
, int sock
,
3069 struct lttng_session_descriptor
**return_descriptor
)
3072 size_t payload_size
;
3073 struct lttng_dynamic_buffer payload
;
3074 struct lttng_buffer_view home_dir_view
;
3075 struct lttng_buffer_view session_descriptor_view
;
3076 struct lttng_session_descriptor
*session_descriptor
= NULL
;
3077 enum lttng_error_code ret_code
;
3079 lttng_dynamic_buffer_init(&payload
);
3080 if (cmd_ctx
->lsm
.u
.create_session
.home_dir_size
>=
3082 ret_code
= LTTNG_ERR_INVALID
;
3085 if (cmd_ctx
->lsm
.u
.create_session
.session_descriptor_size
>
3086 LTTNG_SESSION_DESCRIPTOR_MAX_LEN
) {
3087 ret_code
= LTTNG_ERR_INVALID
;
3091 payload_size
= cmd_ctx
->lsm
.u
.create_session
.home_dir_size
+
3092 cmd_ctx
->lsm
.u
.create_session
.session_descriptor_size
;
3093 ret
= lttng_dynamic_buffer_set_size(&payload
, payload_size
);
3095 ret_code
= LTTNG_ERR_NOMEM
;
3099 ret
= lttcomm_recv_unix_sock(sock
, payload
.data
, payload
.size
);
3101 ERR("Reception of session descriptor failed, aborting.");
3102 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3106 home_dir_view
= lttng_buffer_view_from_dynamic_buffer(
3109 cmd_ctx
->lsm
.u
.create_session
.home_dir_size
);
3110 session_descriptor_view
= lttng_buffer_view_from_dynamic_buffer(
3112 cmd_ctx
->lsm
.u
.create_session
.home_dir_size
,
3113 cmd_ctx
->lsm
.u
.create_session
.session_descriptor_size
);
3115 ret
= lttng_session_descriptor_create_from_buffer(
3116 &session_descriptor_view
, &session_descriptor
);
3118 ERR("Failed to create session descriptor from payload of \"create session\" command");
3119 ret_code
= LTTNG_ERR_INVALID
;
3124 * Sets the descriptor's auto-generated properties (name, output) if
3127 ret_code
= cmd_create_session_from_descriptor(session_descriptor
,
3129 home_dir_view
.size
? home_dir_view
.data
: NULL
);
3130 if (ret_code
!= LTTNG_OK
) {
3134 ret_code
= LTTNG_OK
;
3135 *return_descriptor
= session_descriptor
;
3136 session_descriptor
= NULL
;
3138 lttng_dynamic_buffer_reset(&payload
);
3139 lttng_session_descriptor_destroy(session_descriptor
);
3144 void cmd_destroy_session_reply(const struct ltt_session
*session
,
3145 void *_reply_context
)
3149 const struct cmd_destroy_session_reply_context
*reply_context
=
3151 struct lttng_dynamic_buffer payload
;
3152 struct lttcomm_session_destroy_command_header cmd_header
;
3153 struct lttng_trace_archive_location
*location
= NULL
;
3154 struct lttcomm_lttng_msg llm
= {
3155 .cmd_type
= LTTNG_DESTROY_SESSION
,
3156 .ret_code
= reply_context
->destruction_status
,
3159 sizeof(struct lttcomm_session_destroy_command_header
),
3162 size_t payload_size_before_location
;
3164 lttng_dynamic_buffer_init(&payload
);
3166 ret
= lttng_dynamic_buffer_append(&payload
, &llm
, sizeof(llm
));
3168 ERR("Failed to append session destruction message");
3172 cmd_header
.rotation_state
=
3173 (int32_t) (reply_context
->implicit_rotation_on_destroy
?
3174 session
->rotation_state
:
3175 LTTNG_ROTATION_STATE_NO_ROTATION
);
3176 ret
= lttng_dynamic_buffer_append(&payload
, &cmd_header
,
3177 sizeof(cmd_header
));
3179 ERR("Failed to append session destruction command header");
3183 if (!reply_context
->implicit_rotation_on_destroy
) {
3184 DBG("No implicit rotation performed during the destruction of session \"%s\", sending reply",
3188 if (session
->rotation_state
!= LTTNG_ROTATION_STATE_COMPLETED
) {
3189 DBG("Rotation state of session \"%s\" is not \"completed\", sending session destruction reply",
3194 location
= session_get_trace_archive_location(session
);
3196 ERR("Failed to get the location of the trace archive produced during the destruction of session \"%s\"",
3201 payload_size_before_location
= payload
.size
;
3202 comm_ret
= lttng_trace_archive_location_serialize(location
,
3205 ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
3209 /* Update the message to indicate the location's length. */
3210 ((struct lttcomm_lttng_msg
*) payload
.data
)->data_size
=
3211 payload
.size
- payload_size_before_location
;
3213 comm_ret
= lttcomm_send_unix_sock(reply_context
->reply_sock_fd
,
3214 payload
.data
, payload
.size
);
3215 if (comm_ret
!= (ssize_t
) payload
.size
) {
3216 ERR("Failed to send result of the destruction of session \"%s\" to client",
3220 ret
= close(reply_context
->reply_sock_fd
);
3222 PERROR("Failed to close client socket in deferred session destroy reply");
3224 lttng_dynamic_buffer_reset(&payload
);
3225 free(_reply_context
);
3229 * Command LTTNG_DESTROY_SESSION processed by the client thread.
3231 * Called with session lock held.
3233 int cmd_destroy_session(struct ltt_session
*session
,
3234 struct notification_thread_handle
*notification_thread_handle
,
3238 enum lttng_error_code destruction_last_error
= LTTNG_OK
;
3239 struct cmd_destroy_session_reply_context
*reply_context
= NULL
;
3242 reply_context
= zmalloc(sizeof(*reply_context
));
3243 if (!reply_context
) {
3244 ret
= LTTNG_ERR_NOMEM
;