2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License, version 2 only, as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 51
16 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <urcu/list.h>
23 #include <urcu/uatomic.h>
27 #include <common/defaults.h>
28 #include <common/common.h>
29 #include <common/sessiond-comm/sessiond-comm.h>
30 #include <common/relayd/relayd.h>
31 #include <common/utils.h>
32 #include <common/compat/string.h>
33 #include <common/kernel-ctl/kernel-ctl.h>
34 #include <common/dynamic-buffer.h>
35 #include <common/buffer-view.h>
36 #include <common/trace-chunk.h>
37 #include <lttng/location-internal.h>
38 #include <lttng/trigger/trigger-internal.h>
39 #include <lttng/condition/condition.h>
40 #include <lttng/action/action.h>
41 #include <lttng/channel.h>
42 #include <lttng/channel-internal.h>
43 #include <lttng/rotate-internal.h>
44 #include <lttng/location-internal.h>
45 #include <lttng/session-internal.h>
46 #include <lttng/userspace-probe-internal.h>
47 #include <lttng/session-descriptor-internal.h>
48 #include <common/string-utils/string-utils.h>
53 #include "health-sessiond.h"
55 #include "kernel-consumer.h"
56 #include "lttng-sessiond.h"
58 #include "lttng-syscall.h"
60 #include "buffer-registry.h"
61 #include "notification-thread.h"
62 #include "notification-thread-commands.h"
64 #include "rotation-thread.h"
66 #include "agent-thread.h"
70 /* Sleep for 100ms between each check for the shm path's deletion. */
71 #define SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US 100000
73 struct cmd_destroy_session_reply_context
{
75 bool implicit_rotation_on_destroy
;
77 * Indicates whether or not an error occurred while launching the
78 * destruction of a session.
80 enum lttng_error_code destruction_status
;
83 static enum lttng_error_code
wait_on_path(void *path
);
86 * Command completion handler that is used by the destroy command
87 * when a session that has a non-default shm_path is being destroyed.
89 * See comment in cmd_destroy_session() for the rationale.
91 static struct destroy_completion_handler
{
92 struct cmd_completion_handler handler
;
93 char shm_path
[member_sizeof(struct ltt_session
, shm_path
)];
94 } destroy_completion_handler
= {
97 .data
= destroy_completion_handler
.shm_path
102 static struct cmd_completion_handler
*current_completion_handler
;
105 * Used to keep a unique index for each relayd socket created where this value
106 * is associated with streams on the consumer so it can match the right relayd
107 * to send to. It must be accessed with the relayd_net_seq_idx_lock
110 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
111 static uint64_t relayd_net_seq_idx
;
113 static int validate_ust_event_name(const char *);
114 static int cmd_enable_event_internal(struct ltt_session
*session
,
115 const struct lttng_domain
*domain
,
116 char *channel_name
, struct lttng_event
*event
,
117 char *filter_expression
,
118 struct lttng_filter_bytecode
*filter
,
119 struct lttng_event_exclusion
*exclusion
,
123 * Create a session path used by list_lttng_sessions for the case that the
124 * session consumer is on the network.
126 static int build_network_session_path(char *dst
, size_t size
,
127 struct ltt_session
*session
)
129 int ret
, kdata_port
, udata_port
;
130 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
131 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
136 memset(tmp_urls
, 0, sizeof(tmp_urls
));
137 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
139 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
141 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
142 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
143 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
146 if (session
->ust_session
&& session
->ust_session
->consumer
) {
147 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
148 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
151 if (uuri
== NULL
&& kuri
== NULL
) {
152 uri
= &session
->consumer
->dst
.net
.control
;
153 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
154 } else if (kuri
&& uuri
) {
155 ret
= uri_compare(kuri
, uuri
);
159 /* Build uuri URL string */
160 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
167 } else if (kuri
&& uuri
== NULL
) {
169 } else if (uuri
&& kuri
== NULL
) {
173 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
179 * Do we have a UST url set. If yes, this means we have both kernel and UST
182 if (*tmp_uurl
!= '\0') {
183 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
184 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
187 if (kuri
|| (!kuri
&& !uuri
)) {
190 /* No kernel URI, use the UST port. */
193 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
201 * Get run-time attributes if the session has been started (discarded events,
204 static int get_kernel_runtime_stats(struct ltt_session
*session
,
205 struct ltt_kernel_channel
*kchan
, uint64_t *discarded_events
,
206 uint64_t *lost_packets
)
210 if (!session
->has_been_started
) {
212 *discarded_events
= 0;
217 ret
= consumer_get_discarded_events(session
->id
, kchan
->key
,
218 session
->kernel_session
->consumer
,
224 ret
= consumer_get_lost_packets(session
->id
, kchan
->key
,
225 session
->kernel_session
->consumer
,
236 * Get run-time attributes if the session has been started (discarded events,
239 static int get_ust_runtime_stats(struct ltt_session
*session
,
240 struct ltt_ust_channel
*uchan
, uint64_t *discarded_events
,
241 uint64_t *lost_packets
)
244 struct ltt_ust_session
*usess
;
246 if (!discarded_events
|| !lost_packets
) {
251 usess
= session
->ust_session
;
252 assert(discarded_events
);
253 assert(lost_packets
);
255 if (!usess
|| !session
->has_been_started
) {
256 *discarded_events
= 0;
262 if (usess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
263 ret
= ust_app_uid_get_channel_runtime_stats(usess
->id
,
264 &usess
->buffer_reg_uid_list
,
265 usess
->consumer
, uchan
->id
,
266 uchan
->attr
.overwrite
,
269 } else if (usess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
270 ret
= ust_app_pid_get_channel_runtime_stats(usess
,
271 uchan
, usess
->consumer
,
272 uchan
->attr
.overwrite
,
278 *discarded_events
+= uchan
->per_pid_closed_app_discarded
;
279 *lost_packets
+= uchan
->per_pid_closed_app_lost
;
281 ERR("Unsupported buffer type");
292 * Fill lttng_channel array of all channels.
294 static ssize_t
list_lttng_channels(enum lttng_domain_type domain
,
295 struct ltt_session
*session
, struct lttng_channel
*channels
,
296 struct lttng_channel_extended
*chan_exts
)
299 struct ltt_kernel_channel
*kchan
;
301 DBG("Listing channels for session %s", session
->name
);
304 case LTTNG_DOMAIN_KERNEL
:
305 /* Kernel channels */
306 if (session
->kernel_session
!= NULL
) {
307 cds_list_for_each_entry(kchan
,
308 &session
->kernel_session
->channel_list
.head
, list
) {
309 uint64_t discarded_events
, lost_packets
;
310 struct lttng_channel_extended
*extended
;
312 extended
= (struct lttng_channel_extended
*)
313 kchan
->channel
->attr
.extended
.ptr
;
315 ret
= get_kernel_runtime_stats(session
, kchan
,
316 &discarded_events
, &lost_packets
);
320 /* Copy lttng_channel struct to array */
321 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
322 channels
[i
].enabled
= kchan
->enabled
;
323 chan_exts
[i
].discarded_events
=
325 chan_exts
[i
].lost_packets
= lost_packets
;
326 chan_exts
[i
].monitor_timer_interval
=
327 extended
->monitor_timer_interval
;
328 chan_exts
[i
].blocking_timeout
= 0;
333 case LTTNG_DOMAIN_UST
:
335 struct lttng_ht_iter iter
;
336 struct ltt_ust_channel
*uchan
;
339 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
340 &iter
.iter
, uchan
, node
.node
) {
341 uint64_t discarded_events
= 0, lost_packets
= 0;
343 if (lttng_strncpy(channels
[i
].name
, uchan
->name
,
344 LTTNG_SYMBOL_NAME_LEN
)) {
347 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
348 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
349 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
350 channels
[i
].attr
.switch_timer_interval
=
351 uchan
->attr
.switch_timer_interval
;
352 channels
[i
].attr
.read_timer_interval
=
353 uchan
->attr
.read_timer_interval
;
354 channels
[i
].enabled
= uchan
->enabled
;
355 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
356 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
359 * Map enum lttng_ust_output to enum lttng_event_output.
361 switch (uchan
->attr
.output
) {
363 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
367 * LTTNG_UST_MMAP is the only supported UST
374 chan_exts
[i
].monitor_timer_interval
=
375 uchan
->monitor_timer_interval
;
376 chan_exts
[i
].blocking_timeout
=
377 uchan
->attr
.u
.s
.blocking_timeout
;
379 ret
= get_ust_runtime_stats(session
, uchan
,
380 &discarded_events
, &lost_packets
);
384 chan_exts
[i
].discarded_events
= discarded_events
;
385 chan_exts
[i
].lost_packets
= lost_packets
;
397 return -LTTNG_ERR_FATAL
;
403 static int increment_extended_len(const char *filter_expression
,
404 struct lttng_event_exclusion
*exclusion
,
405 const struct lttng_userspace_probe_location
*probe_location
,
406 size_t *extended_len
)
410 *extended_len
+= sizeof(struct lttcomm_event_extended_header
);
412 if (filter_expression
) {
413 *extended_len
+= strlen(filter_expression
) + 1;
417 *extended_len
+= exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
;
420 if (probe_location
) {
421 ret
= lttng_userspace_probe_location_serialize(probe_location
,
426 *extended_len
+= ret
;
433 static int append_extended_info(const char *filter_expression
,
434 struct lttng_event_exclusion
*exclusion
,
435 struct lttng_userspace_probe_location
*probe_location
,
439 size_t filter_len
= 0;
440 size_t nb_exclusions
= 0;
441 size_t userspace_probe_location_len
= 0;
442 struct lttng_dynamic_buffer location_buffer
;
443 struct lttcomm_event_extended_header extended_header
;
445 if (filter_expression
) {
446 filter_len
= strlen(filter_expression
) + 1;
450 nb_exclusions
= exclusion
->count
;
453 if (probe_location
) {
454 lttng_dynamic_buffer_init(&location_buffer
);
455 ret
= lttng_userspace_probe_location_serialize(probe_location
,
456 &location_buffer
, NULL
);
461 userspace_probe_location_len
= location_buffer
.size
;
464 /* Set header fields */
465 extended_header
.filter_len
= filter_len
;
466 extended_header
.nb_exclusions
= nb_exclusions
;
467 extended_header
.userspace_probe_location_len
= userspace_probe_location_len
;
470 memcpy(*extended_at
, &extended_header
, sizeof(extended_header
));
471 *extended_at
+= sizeof(extended_header
);
473 /* Copy filter string */
474 if (filter_expression
) {
475 memcpy(*extended_at
, filter_expression
, filter_len
);
476 *extended_at
+= filter_len
;
479 /* Copy exclusion names */
481 size_t len
= nb_exclusions
* LTTNG_SYMBOL_NAME_LEN
;
483 memcpy(*extended_at
, &exclusion
->names
, len
);
487 if (probe_location
) {
488 memcpy(*extended_at
, location_buffer
.data
, location_buffer
.size
);
489 *extended_at
+= location_buffer
.size
;
490 lttng_dynamic_buffer_reset(&location_buffer
);
498 * Create a list of agent domain events.
500 * Return number of events in list on success or else a negative value.
502 static int list_lttng_agent_events(struct agent
*agt
,
503 struct lttng_event
**events
, size_t *total_size
)
506 unsigned int nb_event
= 0;
507 struct agent_event
*event
;
508 struct lttng_event
*tmp_events
= NULL
;
509 struct lttng_ht_iter iter
;
510 size_t extended_len
= 0;
516 DBG3("Listing agent events");
519 nb_event
= lttng_ht_get_count(agt
->events
);
527 /* Compute required extended infos size */
528 extended_len
= nb_event
* sizeof(struct lttcomm_event_extended_header
);
531 * This is only valid because the commands which add events are
532 * processed in the same thread as the listing.
535 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
536 ret
= increment_extended_len(event
->filter_expression
, NULL
, NULL
,
539 DBG("Error computing the length of extended info message");
540 ret
= -LTTNG_ERR_FATAL
;
546 *total_size
= nb_event
* sizeof(*tmp_events
) + extended_len
;
547 tmp_events
= zmalloc(*total_size
);
549 PERROR("zmalloc agent events session");
550 ret
= -LTTNG_ERR_FATAL
;
554 extended_at
= ((uint8_t *) tmp_events
) +
555 nb_event
* sizeof(struct lttng_event
);
558 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
559 strncpy(tmp_events
[i
].name
, event
->name
, sizeof(tmp_events
[i
].name
));
560 tmp_events
[i
].name
[sizeof(tmp_events
[i
].name
) - 1] = '\0';
561 tmp_events
[i
].enabled
= event
->enabled
;
562 tmp_events
[i
].loglevel
= event
->loglevel_value
;
563 tmp_events
[i
].loglevel_type
= event
->loglevel_type
;
566 /* Append extended info */
567 ret
= append_extended_info(event
->filter_expression
, NULL
, NULL
,
570 DBG("Error appending extended info message");
571 ret
= -LTTNG_ERR_FATAL
;
576 *events
= tmp_events
;
578 assert(nb_event
== i
);
589 * Create a list of ust global domain events.
591 static int list_lttng_ust_global_events(char *channel_name
,
592 struct ltt_ust_domain_global
*ust_global
,
593 struct lttng_event
**events
, size_t *total_size
)
596 unsigned int nb_event
= 0;
597 struct lttng_ht_iter iter
;
598 struct lttng_ht_node_str
*node
;
599 struct ltt_ust_channel
*uchan
;
600 struct ltt_ust_event
*uevent
;
601 struct lttng_event
*tmp
;
602 size_t extended_len
= 0;
605 DBG("Listing UST global events for channel %s", channel_name
);
609 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
610 node
= lttng_ht_iter_get_node_str(&iter
);
612 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
616 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
618 nb_event
= lttng_ht_get_count(uchan
->events
);
625 DBG3("Listing UST global %d events", nb_event
);
627 /* Compute required extended infos size */
628 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
629 if (uevent
->internal
) {
634 ret
= increment_extended_len(uevent
->filter_expression
,
635 uevent
->exclusion
, NULL
, &extended_len
);
637 DBG("Error computing the length of extended info message");
638 ret
= -LTTNG_ERR_FATAL
;
643 /* All events are internal, skip. */
649 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
650 tmp
= zmalloc(*total_size
);
652 ret
= -LTTNG_ERR_FATAL
;
656 extended_at
= ((uint8_t *) tmp
) + nb_event
* sizeof(struct lttng_event
);
658 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
659 if (uevent
->internal
) {
660 /* This event should remain hidden from clients */
663 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
664 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
665 tmp
[i
].enabled
= uevent
->enabled
;
667 switch (uevent
->attr
.instrumentation
) {
668 case LTTNG_UST_TRACEPOINT
:
669 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
671 case LTTNG_UST_PROBE
:
672 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
674 case LTTNG_UST_FUNCTION
:
675 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
679 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
680 switch (uevent
->attr
.loglevel_type
) {
681 case LTTNG_UST_LOGLEVEL_ALL
:
682 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
684 case LTTNG_UST_LOGLEVEL_RANGE
:
685 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
687 case LTTNG_UST_LOGLEVEL_SINGLE
:
688 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
691 if (uevent
->filter
) {
694 if (uevent
->exclusion
) {
695 tmp
[i
].exclusion
= 1;
699 /* Append extended info */
700 ret
= append_extended_info(uevent
->filter_expression
,
701 uevent
->exclusion
, NULL
, &extended_at
);
703 DBG("Error appending extended info message");
704 ret
= -LTTNG_ERR_FATAL
;
717 * Fill lttng_event array of all kernel events in the channel.
719 static int list_lttng_kernel_events(char *channel_name
,
720 struct ltt_kernel_session
*kernel_session
,
721 struct lttng_event
**events
, size_t *total_size
)
724 unsigned int nb_event
;
725 struct ltt_kernel_event
*event
;
726 struct ltt_kernel_channel
*kchan
;
727 size_t extended_len
= 0;
730 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
732 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
736 nb_event
= kchan
->event_count
;
738 DBG("Listing events for channel %s", kchan
->channel
->name
);
746 /* Compute required extended infos size */
747 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
748 ret
= increment_extended_len(event
->filter_expression
, NULL
,
749 event
->userspace_probe_location
,
752 DBG("Error computing the length of extended info message");
753 ret
= -LTTNG_ERR_FATAL
;
758 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
759 *events
= zmalloc(*total_size
);
760 if (*events
== NULL
) {
761 ret
= -LTTNG_ERR_FATAL
;
765 extended_at
= ((void *) *events
) +
766 nb_event
* sizeof(struct lttng_event
);
768 /* Kernel channels */
769 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
770 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
771 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
772 (*events
)[i
].enabled
= event
->enabled
;
773 (*events
)[i
].filter
=
774 (unsigned char) !!event
->filter_expression
;
776 switch (event
->event
->instrumentation
) {
777 case LTTNG_KERNEL_TRACEPOINT
:
778 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
780 case LTTNG_KERNEL_KRETPROBE
:
781 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
782 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
783 sizeof(struct lttng_kernel_kprobe
));
785 case LTTNG_KERNEL_KPROBE
:
786 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
787 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
788 sizeof(struct lttng_kernel_kprobe
));
790 case LTTNG_KERNEL_UPROBE
:
791 (*events
)[i
].type
= LTTNG_EVENT_USERSPACE_PROBE
;
793 case LTTNG_KERNEL_FUNCTION
:
794 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
795 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
796 sizeof(struct lttng_kernel_function
));
798 case LTTNG_KERNEL_NOOP
:
799 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
801 case LTTNG_KERNEL_SYSCALL
:
802 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
804 case LTTNG_KERNEL_ALL
:
812 /* Append extended info */
813 ret
= append_extended_info(event
->filter_expression
, NULL
,
814 event
->userspace_probe_location
, &extended_at
);
816 DBG("Error appending extended info message");
817 ret
= -LTTNG_ERR_FATAL
;
826 /* Negate the error code to differentiate the size from an error */
831 * Add URI so the consumer output object. Set the correct path depending on the
832 * domain adding the default trace directory.
834 static enum lttng_error_code
add_uri_to_consumer(
835 const struct ltt_session
*session
,
836 struct consumer_output
*consumer
,
837 struct lttng_uri
*uri
, enum lttng_domain_type domain
)
840 enum lttng_error_code ret_code
= LTTNG_OK
;
844 if (consumer
== NULL
) {
845 DBG("No consumer detected. Don't add URI. Stopping.");
846 ret_code
= LTTNG_ERR_NO_CONSUMER
;
851 case LTTNG_DOMAIN_KERNEL
:
852 ret
= lttng_strncpy(consumer
->domain_subdir
,
853 DEFAULT_KERNEL_TRACE_DIR
,
854 sizeof(consumer
->domain_subdir
));
856 case LTTNG_DOMAIN_UST
:
857 ret
= lttng_strncpy(consumer
->domain_subdir
,
858 DEFAULT_UST_TRACE_DIR
,
859 sizeof(consumer
->domain_subdir
));
863 * This case is possible is we try to add the URI to the global
864 * tracing session consumer object which in this case there is
867 memset(consumer
->domain_subdir
, 0,
868 sizeof(consumer
->domain_subdir
));
872 ERR("Failed to initialize consumer output domain subdirectory");
873 ret_code
= LTTNG_ERR_FATAL
;
877 switch (uri
->dtype
) {
880 DBG2("Setting network URI to consumer");
882 if (consumer
->type
== CONSUMER_DST_NET
) {
883 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
884 consumer
->dst
.net
.control_isset
) ||
885 (uri
->stype
== LTTNG_STREAM_DATA
&&
886 consumer
->dst
.net
.data_isset
)) {
887 ret_code
= LTTNG_ERR_URL_EXIST
;
891 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
894 /* Set URI into consumer output object */
895 ret
= consumer_set_network_uri(session
, consumer
, uri
);
899 } else if (ret
== 1) {
901 * URI was the same in the consumer so we do not append the subdir
902 * again so to not duplicate output dir.
909 if (*uri
->dst
.path
!= '/' || strstr(uri
->dst
.path
, "../")) {
910 ret_code
= LTTNG_ERR_INVALID
;
913 DBG2("Setting trace directory path from URI to %s",
915 memset(&consumer
->dst
, 0, sizeof(consumer
->dst
));
917 ret
= lttng_strncpy(consumer
->dst
.session_root_path
,
919 sizeof(consumer
->dst
.session_root_path
));
921 ret_code
= LTTNG_ERR_FATAL
;
924 consumer
->type
= CONSUMER_DST_LOCAL
;
934 * Init tracing by creating trace directory and sending fds kernel consumer.
936 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
939 struct lttng_ht_iter iter
;
940 struct consumer_socket
*socket
;
946 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
947 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
949 pthread_mutex_lock(socket
->lock
);
950 ret
= kernel_consumer_send_session(socket
, session
);
951 pthread_mutex_unlock(socket
->lock
);
953 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
965 * Create a socket to the relayd using the URI.
967 * On success, the relayd_sock pointer is set to the created socket.
968 * Else, it remains untouched and an LTTng error code is returned.
970 static enum lttng_error_code
create_connect_relayd(struct lttng_uri
*uri
,
971 struct lttcomm_relayd_sock
**relayd_sock
,
972 struct consumer_output
*consumer
)
975 enum lttng_error_code status
= LTTNG_OK
;
976 struct lttcomm_relayd_sock
*rsock
;
978 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
979 RELAYD_VERSION_COMM_MINOR
);
981 status
= LTTNG_ERR_FATAL
;
986 * Connect to relayd so we can proceed with a session creation. This call
987 * can possibly block for an arbitrary amount of time to set the health
988 * state to be in poll execution.
991 ret
= relayd_connect(rsock
);
994 ERR("Unable to reach lttng-relayd");
995 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
999 /* Create socket for control stream. */
1000 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
1001 DBG3("Creating relayd stream socket from URI");
1003 /* Check relayd version */
1004 ret
= relayd_version_check(rsock
);
1005 if (ret
== LTTNG_ERR_RELAYD_VERSION_FAIL
) {
1006 status
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
1008 } else if (ret
< 0) {
1009 ERR("Unable to reach lttng-relayd");
1010 status
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
1013 consumer
->relay_major_version
= rsock
->major
;
1014 consumer
->relay_minor_version
= rsock
->minor
;
1015 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
1016 DBG3("Creating relayd data socket from URI");
1018 /* Command is not valid */
1019 ERR("Relayd invalid stream type: %d", uri
->stype
);
1020 status
= LTTNG_ERR_INVALID
;
1024 *relayd_sock
= rsock
;
1029 /* The returned value is not useful since we are on an error path. */
1030 (void) relayd_close(rsock
);
1038 * Connect to the relayd using URI and send the socket to the right consumer.
1040 * The consumer socket lock must be held by the caller.
1042 * Returns LTTNG_OK on success or an LTTng error code on failure.
1044 static enum lttng_error_code
send_consumer_relayd_socket(
1045 unsigned int session_id
,
1046 struct lttng_uri
*relayd_uri
,
1047 struct consumer_output
*consumer
,
1048 struct consumer_socket
*consumer_sock
,
1049 const char *session_name
, const char *hostname
,
1050 const char *base_path
, int session_live_timer
,
1051 const uint64_t *current_chunk_id
,
1052 time_t session_creation_time
,
1053 bool session_name_contains_creation_time
)
1056 struct lttcomm_relayd_sock
*rsock
= NULL
;
1057 enum lttng_error_code status
;
1059 /* Connect to relayd and make version check if uri is the control. */
1060 status
= create_connect_relayd(relayd_uri
, &rsock
, consumer
);
1061 if (status
!= LTTNG_OK
) {
1062 goto relayd_comm_error
;
1066 /* Set the network sequence index if not set. */
1067 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
1068 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
1070 * Increment net_seq_idx because we are about to transfer the
1071 * new relayd socket to the consumer.
1072 * Assign unique key so the consumer can match streams.
1074 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
1075 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
1078 /* Send relayd socket to consumer. */
1079 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
1080 relayd_uri
->stype
, session_id
,
1081 session_name
, hostname
, base_path
,
1082 session_live_timer
, current_chunk_id
,
1083 session_creation_time
, session_name_contains_creation_time
);
1085 status
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
1089 /* Flag that the corresponding socket was sent. */
1090 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
1091 consumer_sock
->control_sock_sent
= 1;
1092 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
1093 consumer_sock
->data_sock_sent
= 1;
1097 * Close socket which was dup on the consumer side. The session daemon does
1098 * NOT keep track of the relayd socket(s) once transfer to the consumer.
1102 if (status
!= LTTNG_OK
) {
1104 * The consumer output for this session should not be used anymore
1105 * since the relayd connection failed thus making any tracing or/and
1106 * streaming not usable.
1108 consumer
->enabled
= 0;
1110 (void) relayd_close(rsock
);
1118 * Send both relayd sockets to a specific consumer and domain. This is a
1119 * helper function to facilitate sending the information to the consumer for a
1122 * The consumer socket lock must be held by the caller.
1124 * Returns LTTNG_OK, or an LTTng error code on failure.
1126 static enum lttng_error_code
send_consumer_relayd_sockets(
1127 enum lttng_domain_type domain
,
1128 unsigned int session_id
, struct consumer_output
*consumer
,
1129 struct consumer_socket
*sock
, const char *session_name
,
1130 const char *hostname
, const char *base_path
, int session_live_timer
,
1131 const uint64_t *current_chunk_id
, time_t session_creation_time
,
1132 bool session_name_contains_creation_time
)
1134 enum lttng_error_code status
= LTTNG_OK
;
1139 /* Sending control relayd socket. */
1140 if (!sock
->control_sock_sent
) {
1141 status
= send_consumer_relayd_socket(session_id
,
1142 &consumer
->dst
.net
.control
, consumer
, sock
,
1143 session_name
, hostname
, base_path
, session_live_timer
,
1144 current_chunk_id
, session_creation_time
,
1145 session_name_contains_creation_time
);
1146 if (status
!= LTTNG_OK
) {
1151 /* Sending data relayd socket. */
1152 if (!sock
->data_sock_sent
) {
1153 status
= send_consumer_relayd_socket(session_id
,
1154 &consumer
->dst
.net
.data
, consumer
, sock
,
1155 session_name
, hostname
, base_path
, session_live_timer
,
1156 current_chunk_id
, session_creation_time
,
1157 session_name_contains_creation_time
);
1158 if (status
!= LTTNG_OK
) {
1168 * Setup relayd connections for a tracing session. First creates the socket to
1169 * the relayd and send them to the right domain consumer. Consumer type MUST be
1172 int cmd_setup_relayd(struct ltt_session
*session
)
1175 struct ltt_ust_session
*usess
;
1176 struct ltt_kernel_session
*ksess
;
1177 struct consumer_socket
*socket
;
1178 struct lttng_ht_iter iter
;
1179 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
1183 usess
= session
->ust_session
;
1184 ksess
= session
->kernel_session
;
1186 DBG("Setting relayd for session %s", session
->name
);
1188 if (session
->current_trace_chunk
) {
1189 enum lttng_trace_chunk_status status
= lttng_trace_chunk_get_id(
1190 session
->current_trace_chunk
, ¤t_chunk_id
.value
);
1192 if (status
== LTTNG_TRACE_CHUNK_STATUS_OK
) {
1193 current_chunk_id
.is_set
= true;
1195 ERR("Failed to get current trace chunk id");
1196 ret
= LTTNG_ERR_UNK
;
1203 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
1204 && usess
->consumer
->enabled
) {
1205 /* For each consumer socket, send relayd sockets */
1206 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
1207 socket
, node
.node
) {
1208 pthread_mutex_lock(socket
->lock
);
1209 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
1210 usess
->consumer
, socket
,
1211 session
->name
, session
->hostname
,
1213 session
->live_timer
,
1214 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1215 session
->creation_time
,
1216 session
->name_contains_creation_time
);
1217 pthread_mutex_unlock(socket
->lock
);
1218 if (ret
!= LTTNG_OK
) {
1221 /* Session is now ready for network streaming. */
1222 session
->net_handle
= 1;
1224 session
->consumer
->relay_major_version
=
1225 usess
->consumer
->relay_major_version
;
1226 session
->consumer
->relay_minor_version
=
1227 usess
->consumer
->relay_minor_version
;
1230 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
1231 && ksess
->consumer
->enabled
) {
1232 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
1233 socket
, node
.node
) {
1234 pthread_mutex_lock(socket
->lock
);
1235 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
1236 ksess
->consumer
, socket
,
1237 session
->name
, session
->hostname
,
1239 session
->live_timer
,
1240 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1241 session
->creation_time
,
1242 session
->name_contains_creation_time
);
1243 pthread_mutex_unlock(socket
->lock
);
1244 if (ret
!= LTTNG_OK
) {
1247 /* Session is now ready for network streaming. */
1248 session
->net_handle
= 1;
1250 session
->consumer
->relay_major_version
=
1251 ksess
->consumer
->relay_major_version
;
1252 session
->consumer
->relay_minor_version
=
1253 ksess
->consumer
->relay_minor_version
;
1262 * Start a kernel session by opening all necessary streams.
1264 static int start_kernel_session(struct ltt_kernel_session
*ksess
)
1267 struct ltt_kernel_channel
*kchan
;
1269 /* Open kernel metadata */
1270 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
1271 ret
= kernel_open_metadata(ksess
);
1273 ret
= LTTNG_ERR_KERN_META_FAIL
;
1278 /* Open kernel metadata stream */
1279 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
1280 ret
= kernel_open_metadata_stream(ksess
);
1282 ERR("Kernel create metadata stream failed");
1283 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1288 /* For each channel */
1289 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1290 if (kchan
->stream_count
== 0) {
1291 ret
= kernel_open_channel_stream(kchan
);
1293 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1296 /* Update the stream global counter */
1297 ksess
->stream_count_global
+= ret
;
1301 /* Setup kernel consumer socket and send fds to it */
1302 ret
= init_kernel_tracing(ksess
);
1304 ret
= LTTNG_ERR_KERN_START_FAIL
;
1308 /* This start the kernel tracing */
1309 ret
= kernel_start_session(ksess
);
1311 ret
= LTTNG_ERR_KERN_START_FAIL
;
1315 /* Quiescent wait after starting trace */
1316 kernel_wait_quiescent();
1327 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1329 int cmd_disable_channel(struct ltt_session
*session
,
1330 enum lttng_domain_type domain
, char *channel_name
)
1333 struct ltt_ust_session
*usess
;
1335 usess
= session
->ust_session
;
1340 case LTTNG_DOMAIN_KERNEL
:
1342 ret
= channel_kernel_disable(session
->kernel_session
,
1344 if (ret
!= LTTNG_OK
) {
1348 kernel_wait_quiescent();
1351 case LTTNG_DOMAIN_UST
:
1353 struct ltt_ust_channel
*uchan
;
1354 struct lttng_ht
*chan_ht
;
1356 chan_ht
= usess
->domain_global
.channels
;
1358 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
1359 if (uchan
== NULL
) {
1360 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1364 ret
= channel_ust_disable(usess
, uchan
);
1365 if (ret
!= LTTNG_OK
) {
1371 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1383 * Command LTTNG_TRACK_PID processed by the client thread.
1385 * Called with session lock held.
1387 int cmd_track_pid(struct ltt_session
*session
, enum lttng_domain_type domain
,
1395 case LTTNG_DOMAIN_KERNEL
:
1397 struct ltt_kernel_session
*ksess
;
1399 ksess
= session
->kernel_session
;
1401 ret
= kernel_track_pid(ksess
, pid
);
1402 if (ret
!= LTTNG_OK
) {
1406 kernel_wait_quiescent();
1409 case LTTNG_DOMAIN_UST
:
1411 struct ltt_ust_session
*usess
;
1413 usess
= session
->ust_session
;
1415 ret
= trace_ust_track_pid(usess
, pid
);
1416 if (ret
!= LTTNG_OK
) {
1422 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1434 * Command LTTNG_UNTRACK_PID processed by the client thread.
1436 * Called with session lock held.
1438 int cmd_untrack_pid(struct ltt_session
*session
, enum lttng_domain_type domain
,
1446 case LTTNG_DOMAIN_KERNEL
:
1448 struct ltt_kernel_session
*ksess
;
1450 ksess
= session
->kernel_session
;
1452 ret
= kernel_untrack_pid(ksess
, pid
);
1453 if (ret
!= LTTNG_OK
) {
1457 kernel_wait_quiescent();
1460 case LTTNG_DOMAIN_UST
:
1462 struct ltt_ust_session
*usess
;
1464 usess
= session
->ust_session
;
1466 ret
= trace_ust_untrack_pid(usess
, pid
);
1467 if (ret
!= LTTNG_OK
) {
1473 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1485 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1487 * The wpipe arguments is used as a notifier for the kernel thread.
1489 int cmd_enable_channel(struct ltt_session
*session
,
1490 const struct lttng_domain
*domain
, const struct lttng_channel
*_attr
, int wpipe
)
1493 struct ltt_ust_session
*usess
= session
->ust_session
;
1494 struct lttng_ht
*chan_ht
;
1496 struct lttng_channel attr
;
1503 len
= lttng_strnlen(attr
.name
, sizeof(attr
.name
));
1505 /* Validate channel name */
1506 if (attr
.name
[0] == '.' ||
1507 memchr(attr
.name
, '/', len
) != NULL
) {
1508 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1512 DBG("Enabling channel %s for session %s", attr
.name
, session
->name
);
1517 * Don't try to enable a channel if the session has been started at
1518 * some point in time before. The tracer does not allow it.
1520 if (session
->has_been_started
) {
1521 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1526 * If the session is a live session, remove the switch timer, the
1527 * live timer does the same thing but sends also synchronisation
1528 * beacons for inactive streams.
1530 if (session
->live_timer
> 0) {
1531 attr
.attr
.live_timer_interval
= session
->live_timer
;
1532 attr
.attr
.switch_timer_interval
= 0;
1535 /* Check for feature support */
1536 switch (domain
->type
) {
1537 case LTTNG_DOMAIN_KERNEL
:
1539 if (kernel_supports_ring_buffer_snapshot_sample_positions() != 1) {
1540 /* Sampling position of buffer is not supported */
1541 WARN("Kernel tracer does not support buffer monitoring. "
1542 "Setting the monitor interval timer to 0 "
1543 "(disabled) for channel '%s' of session '%s'",
1544 attr
.name
, session
->name
);
1545 lttng_channel_set_monitor_timer_interval(&attr
, 0);
1549 case LTTNG_DOMAIN_UST
:
1551 case LTTNG_DOMAIN_JUL
:
1552 case LTTNG_DOMAIN_LOG4J
:
1553 case LTTNG_DOMAIN_PYTHON
:
1554 if (!agent_tracing_is_enabled()) {
1555 DBG("Attempted to enable a channel in an agent domain but the agent thread is not running");
1556 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
1561 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1565 switch (domain
->type
) {
1566 case LTTNG_DOMAIN_KERNEL
:
1568 struct ltt_kernel_channel
*kchan
;
1570 kchan
= trace_kernel_get_channel_by_name(attr
.name
,
1571 session
->kernel_session
);
1572 if (kchan
== NULL
) {
1573 if (session
->snapshot
.nb_output
> 0 ||
1574 session
->snapshot_mode
) {
1575 /* Enforce mmap output for snapshot sessions. */
1576 attr
.attr
.output
= LTTNG_EVENT_MMAP
;
1578 ret
= channel_kernel_create(session
->kernel_session
, &attr
, wpipe
);
1579 if (attr
.name
[0] != '\0') {
1580 session
->kernel_session
->has_non_default_channel
= 1;
1583 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1586 if (ret
!= LTTNG_OK
) {
1590 kernel_wait_quiescent();
1593 case LTTNG_DOMAIN_UST
:
1594 case LTTNG_DOMAIN_JUL
:
1595 case LTTNG_DOMAIN_LOG4J
:
1596 case LTTNG_DOMAIN_PYTHON
:
1598 struct ltt_ust_channel
*uchan
;
1603 * Current agent implementation limitations force us to allow
1604 * only one channel at once in "agent" subdomains. Each
1605 * subdomain has a default channel name which must be strictly
1608 if (domain
->type
== LTTNG_DOMAIN_JUL
) {
1609 if (strncmp(attr
.name
, DEFAULT_JUL_CHANNEL_NAME
,
1610 LTTNG_SYMBOL_NAME_LEN
)) {
1611 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1614 } else if (domain
->type
== LTTNG_DOMAIN_LOG4J
) {
1615 if (strncmp(attr
.name
, DEFAULT_LOG4J_CHANNEL_NAME
,
1616 LTTNG_SYMBOL_NAME_LEN
)) {
1617 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1620 } else if (domain
->type
== LTTNG_DOMAIN_PYTHON
) {
1621 if (strncmp(attr
.name
, DEFAULT_PYTHON_CHANNEL_NAME
,
1622 LTTNG_SYMBOL_NAME_LEN
)) {
1623 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1628 chan_ht
= usess
->domain_global
.channels
;
1630 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
.name
);
1631 if (uchan
== NULL
) {
1632 ret
= channel_ust_create(usess
, &attr
, domain
->buf_type
);
1633 if (attr
.name
[0] != '\0') {
1634 usess
->has_non_default_channel
= 1;
1637 ret
= channel_ust_enable(usess
, uchan
);
1642 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1646 if (ret
== LTTNG_OK
&& attr
.attr
.output
!= LTTNG_EVENT_MMAP
) {
1647 session
->has_non_mmap_channel
= true;
1656 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1658 int cmd_disable_event(struct ltt_session
*session
,
1659 enum lttng_domain_type domain
, const char *channel_name
,
1660 const struct lttng_event
*event
)
1663 const char *event_name
;
1665 DBG("Disable event command for event \'%s\'", event
->name
);
1667 event_name
= event
->name
;
1669 /* Error out on unhandled search criteria */
1670 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1671 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1672 ret
= LTTNG_ERR_UNK
;
1679 case LTTNG_DOMAIN_KERNEL
:
1681 struct ltt_kernel_channel
*kchan
;
1682 struct ltt_kernel_session
*ksess
;
1684 ksess
= session
->kernel_session
;
1687 * If a non-default channel has been created in the
1688 * session, explicitely require that -c chan_name needs
1691 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1692 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1696 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1697 if (kchan
== NULL
) {
1698 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1702 switch (event
->type
) {
1703 case LTTNG_EVENT_ALL
:
1704 case LTTNG_EVENT_TRACEPOINT
:
1705 case LTTNG_EVENT_SYSCALL
:
1706 case LTTNG_EVENT_PROBE
:
1707 case LTTNG_EVENT_FUNCTION
:
1708 case LTTNG_EVENT_FUNCTION_ENTRY
:/* fall-through */
1709 if (event_name
[0] == '\0') {
1710 ret
= event_kernel_disable_event(kchan
,
1713 ret
= event_kernel_disable_event(kchan
,
1714 event_name
, event
->type
);
1716 if (ret
!= LTTNG_OK
) {
1721 ret
= LTTNG_ERR_UNK
;
1725 kernel_wait_quiescent();
1728 case LTTNG_DOMAIN_UST
:
1730 struct ltt_ust_channel
*uchan
;
1731 struct ltt_ust_session
*usess
;
1733 usess
= session
->ust_session
;
1735 if (validate_ust_event_name(event_name
)) {
1736 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1741 * If a non-default channel has been created in the
1742 * session, explicitly require that -c chan_name needs
1745 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1746 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1750 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1752 if (uchan
== NULL
) {
1753 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1757 switch (event
->type
) {
1758 case LTTNG_EVENT_ALL
:
1760 * An empty event name means that everything
1761 * should be disabled.
1763 if (event
->name
[0] == '\0') {
1764 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1766 ret
= event_ust_disable_tracepoint(usess
, uchan
,
1769 if (ret
!= LTTNG_OK
) {
1774 ret
= LTTNG_ERR_UNK
;
1778 DBG3("Disable UST event %s in channel %s completed", event_name
,
1782 case LTTNG_DOMAIN_LOG4J
:
1783 case LTTNG_DOMAIN_JUL
:
1784 case LTTNG_DOMAIN_PYTHON
:
1787 struct ltt_ust_session
*usess
= session
->ust_session
;
1791 switch (event
->type
) {
1792 case LTTNG_EVENT_ALL
:
1795 ret
= LTTNG_ERR_UNK
;
1799 agt
= trace_ust_find_agent(usess
, domain
);
1801 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1805 * An empty event name means that everything
1806 * should be disabled.
1808 if (event
->name
[0] == '\0') {
1809 ret
= event_agent_disable_all(usess
, agt
);
1811 ret
= event_agent_disable(usess
, agt
, event_name
);
1813 if (ret
!= LTTNG_OK
) {
1820 ret
= LTTNG_ERR_UND
;
1833 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1835 int cmd_add_context(struct ltt_session
*session
, enum lttng_domain_type domain
,
1836 char *channel_name
, const struct lttng_event_context
*ctx
, int kwpipe
)
1838 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1839 char *app_ctx_provider_name
= NULL
, *app_ctx_name
= NULL
;
1842 * Don't try to add a context if the session has been started at
1843 * some point in time before. The tracer does not allow it and would
1844 * result in a corrupted trace.
1846 if (session
->has_been_started
) {
1847 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1851 if (ctx
->ctx
== LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
1852 app_ctx_provider_name
= ctx
->u
.app_ctx
.provider_name
;
1853 app_ctx_name
= ctx
->u
.app_ctx
.ctx_name
;
1857 case LTTNG_DOMAIN_KERNEL
:
1858 assert(session
->kernel_session
);
1860 if (session
->kernel_session
->channel_count
== 0) {
1861 /* Create default channel */
1862 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1863 if (ret
!= LTTNG_OK
) {
1866 chan_kern_created
= 1;
1868 /* Add kernel context to kernel tracer */
1869 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1870 if (ret
!= LTTNG_OK
) {
1874 case LTTNG_DOMAIN_JUL
:
1875 case LTTNG_DOMAIN_LOG4J
:
1878 * Validate channel name.
1879 * If no channel name is given and the domain is JUL or LOG4J,
1880 * set it to the appropriate domain-specific channel name. If
1881 * a name is provided but does not match the expexted channel
1882 * name, return an error.
1884 if (domain
== LTTNG_DOMAIN_JUL
&& *channel_name
&&
1885 strcmp(channel_name
,
1886 DEFAULT_JUL_CHANNEL_NAME
)) {
1887 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1889 } else if (domain
== LTTNG_DOMAIN_LOG4J
&& *channel_name
&&
1890 strcmp(channel_name
,
1891 DEFAULT_LOG4J_CHANNEL_NAME
)) {
1892 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1895 /* break is _not_ missing here. */
1897 case LTTNG_DOMAIN_UST
:
1899 struct ltt_ust_session
*usess
= session
->ust_session
;
1900 unsigned int chan_count
;
1904 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1905 if (chan_count
== 0) {
1906 struct lttng_channel
*attr
;
1907 /* Create default channel */
1908 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1910 ret
= LTTNG_ERR_FATAL
;
1914 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1915 if (ret
!= LTTNG_OK
) {
1919 channel_attr_destroy(attr
);
1920 chan_ust_created
= 1;
1923 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1924 free(app_ctx_provider_name
);
1926 app_ctx_name
= NULL
;
1927 app_ctx_provider_name
= NULL
;
1928 if (ret
!= LTTNG_OK
) {
1934 ret
= LTTNG_ERR_UND
;
1942 if (chan_kern_created
) {
1943 struct ltt_kernel_channel
*kchan
=
1944 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1945 session
->kernel_session
);
1946 /* Created previously, this should NOT fail. */
1948 kernel_destroy_channel(kchan
);
1951 if (chan_ust_created
) {
1952 struct ltt_ust_channel
*uchan
=
1953 trace_ust_find_channel_by_name(
1954 session
->ust_session
->domain_global
.channels
,
1955 DEFAULT_CHANNEL_NAME
);
1956 /* Created previously, this should NOT fail. */
1958 /* Remove from the channel list of the session. */
1959 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1961 trace_ust_destroy_channel(uchan
);
1964 free(app_ctx_provider_name
);
1969 static inline bool name_starts_with(const char *name
, const char *prefix
)
1971 const size_t max_cmp_len
= min(strlen(prefix
), LTTNG_SYMBOL_NAME_LEN
);
1973 return !strncmp(name
, prefix
, max_cmp_len
);
1976 /* Perform userspace-specific event name validation */
1977 static int validate_ust_event_name(const char *name
)
1987 * Check name against all internal UST event component namespaces used
1990 if (name_starts_with(name
, DEFAULT_JUL_EVENT_COMPONENT
) ||
1991 name_starts_with(name
, DEFAULT_LOG4J_EVENT_COMPONENT
) ||
1992 name_starts_with(name
, DEFAULT_PYTHON_EVENT_COMPONENT
)) {
2001 * Internal version of cmd_enable_event() with a supplemental
2002 * "internal_event" flag which is used to enable internal events which should
2003 * be hidden from clients. Such events are used in the agent implementation to
2004 * enable the events through which all "agent" events are funeled.
2006 static int _cmd_enable_event(struct ltt_session
*session
,
2007 const struct lttng_domain
*domain
,
2008 char *channel_name
, struct lttng_event
*event
,
2009 char *filter_expression
,
2010 struct lttng_filter_bytecode
*filter
,
2011 struct lttng_event_exclusion
*exclusion
,
2012 int wpipe
, bool internal_event
)
2014 int ret
= 0, channel_created
= 0;
2015 struct lttng_channel
*attr
= NULL
;
2019 assert(channel_name
);
2021 /* If we have a filter, we must have its filter expression */
2022 assert(!(!!filter_expression
^ !!filter
));
2024 /* Normalize event name as a globbing pattern */
2025 strutils_normalize_star_glob_pattern(event
->name
);
2027 /* Normalize exclusion names as globbing patterns */
2031 for (i
= 0; i
< exclusion
->count
; i
++) {
2032 char *name
= LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
2034 strutils_normalize_star_glob_pattern(name
);
2038 DBG("Enable event command for event \'%s\'", event
->name
);
2042 switch (domain
->type
) {
2043 case LTTNG_DOMAIN_KERNEL
:
2045 struct ltt_kernel_channel
*kchan
;
2048 * If a non-default channel has been created in the
2049 * session, explicitely require that -c chan_name needs
2052 if (session
->kernel_session
->has_non_default_channel
2053 && channel_name
[0] == '\0') {
2054 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2058 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2059 session
->kernel_session
);
2060 if (kchan
== NULL
) {
2061 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
2062 LTTNG_BUFFER_GLOBAL
);
2064 ret
= LTTNG_ERR_FATAL
;
2067 if (lttng_strncpy(attr
->name
, channel_name
,
2068 sizeof(attr
->name
))) {
2069 ret
= LTTNG_ERR_INVALID
;
2073 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2074 if (ret
!= LTTNG_OK
) {
2077 channel_created
= 1;
2080 /* Get the newly created kernel channel pointer */
2081 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2082 session
->kernel_session
);
2083 if (kchan
== NULL
) {
2084 /* This sould not happen... */
2085 ret
= LTTNG_ERR_FATAL
;
2089 switch (event
->type
) {
2090 case LTTNG_EVENT_ALL
:
2092 char *filter_expression_a
= NULL
;
2093 struct lttng_filter_bytecode
*filter_a
= NULL
;
2096 * We need to duplicate filter_expression and filter,
2097 * because ownership is passed to first enable
2100 if (filter_expression
) {
2101 filter_expression_a
= strdup(filter_expression
);
2102 if (!filter_expression_a
) {
2103 ret
= LTTNG_ERR_FATAL
;
2108 filter_a
= zmalloc(sizeof(*filter_a
) + filter
->len
);
2110 free(filter_expression_a
);
2111 ret
= LTTNG_ERR_FATAL
;
2114 memcpy(filter_a
, filter
, sizeof(*filter_a
) + filter
->len
);
2116 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
2117 ret
= event_kernel_enable_event(kchan
, event
,
2118 filter_expression
, filter
);
2119 /* We have passed ownership */
2120 filter_expression
= NULL
;
2122 if (ret
!= LTTNG_OK
) {
2123 if (channel_created
) {
2124 /* Let's not leak a useless channel. */
2125 kernel_destroy_channel(kchan
);
2127 free(filter_expression_a
);
2131 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
2132 ret
= event_kernel_enable_event(kchan
, event
,
2133 filter_expression_a
, filter_a
);
2134 /* We have passed ownership */
2135 filter_expression_a
= NULL
;
2137 if (ret
!= LTTNG_OK
) {
2142 case LTTNG_EVENT_PROBE
:
2143 case LTTNG_EVENT_USERSPACE_PROBE
:
2144 case LTTNG_EVENT_FUNCTION
:
2145 case LTTNG_EVENT_FUNCTION_ENTRY
:
2146 case LTTNG_EVENT_TRACEPOINT
:
2147 ret
= event_kernel_enable_event(kchan
, event
,
2148 filter_expression
, filter
);
2149 /* We have passed ownership */
2150 filter_expression
= NULL
;
2152 if (ret
!= LTTNG_OK
) {
2153 if (channel_created
) {
2154 /* Let's not leak a useless channel. */
2155 kernel_destroy_channel(kchan
);
2160 case LTTNG_EVENT_SYSCALL
:
2161 ret
= event_kernel_enable_event(kchan
, event
,
2162 filter_expression
, filter
);
2163 /* We have passed ownership */
2164 filter_expression
= NULL
;
2166 if (ret
!= LTTNG_OK
) {
2171 ret
= LTTNG_ERR_UNK
;
2175 kernel_wait_quiescent();
2178 case LTTNG_DOMAIN_UST
:
2180 struct ltt_ust_channel
*uchan
;
2181 struct ltt_ust_session
*usess
= session
->ust_session
;
2186 * If a non-default channel has been created in the
2187 * session, explicitely require that -c chan_name needs
2190 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
2191 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2195 /* Get channel from global UST domain */
2196 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2198 if (uchan
== NULL
) {
2199 /* Create default channel */
2200 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
2201 usess
->buffer_type
);
2203 ret
= LTTNG_ERR_FATAL
;
2206 if (lttng_strncpy(attr
->name
, channel_name
,
2207 sizeof(attr
->name
))) {
2208 ret
= LTTNG_ERR_INVALID
;
2212 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2213 if (ret
!= LTTNG_OK
) {
2217 /* Get the newly created channel reference back */
2218 uchan
= trace_ust_find_channel_by_name(
2219 usess
->domain_global
.channels
, channel_name
);
2223 if (uchan
->domain
!= LTTNG_DOMAIN_UST
&& !internal_event
) {
2225 * Don't allow users to add UST events to channels which
2226 * are assigned to a userspace subdomain (JUL, Log4J,
2229 ret
= LTTNG_ERR_INVALID_CHANNEL_DOMAIN
;
2233 if (!internal_event
) {
2235 * Ensure the event name is not reserved for internal
2238 ret
= validate_ust_event_name(event
->name
);
2240 WARN("Userspace event name %s failed validation.",
2242 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
2247 /* At this point, the session and channel exist on the tracer */
2248 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
2249 filter_expression
, filter
, exclusion
,
2251 /* We have passed ownership */
2252 filter_expression
= NULL
;
2255 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2256 goto already_enabled
;
2257 } else if (ret
!= LTTNG_OK
) {
2262 case LTTNG_DOMAIN_LOG4J
:
2263 case LTTNG_DOMAIN_JUL
:
2264 case LTTNG_DOMAIN_PYTHON
:
2266 const char *default_event_name
, *default_chan_name
;
2268 struct lttng_event uevent
;
2269 struct lttng_domain tmp_dom
;
2270 struct ltt_ust_session
*usess
= session
->ust_session
;
2274 if (!agent_tracing_is_enabled()) {
2275 DBG("Attempted to enable an event in an agent domain but the agent thread is not running");
2276 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
2280 agt
= trace_ust_find_agent(usess
, domain
->type
);
2282 agt
= agent_create(domain
->type
);
2284 ret
= LTTNG_ERR_NOMEM
;
2287 agent_add(agt
, usess
->agents
);
2290 /* Create the default tracepoint. */
2291 memset(&uevent
, 0, sizeof(uevent
));
2292 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
2293 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2294 default_event_name
= event_get_default_agent_ust_name(
2296 if (!default_event_name
) {
2297 ret
= LTTNG_ERR_FATAL
;
2300 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
2301 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
2304 * The domain type is changed because we are about to enable the
2305 * default channel and event for the JUL domain that are hardcoded.
2306 * This happens in the UST domain.
2308 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
2309 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
2311 switch (domain
->type
) {
2312 case LTTNG_DOMAIN_LOG4J
:
2313 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
2315 case LTTNG_DOMAIN_JUL
:
2316 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
2318 case LTTNG_DOMAIN_PYTHON
:
2319 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
2322 /* The switch/case we are in makes this impossible */
2327 char *filter_expression_copy
= NULL
;
2328 struct lttng_filter_bytecode
*filter_copy
= NULL
;
2331 const size_t filter_size
= sizeof(
2332 struct lttng_filter_bytecode
)
2335 filter_copy
= zmalloc(filter_size
);
2337 ret
= LTTNG_ERR_NOMEM
;
2340 memcpy(filter_copy
, filter
, filter_size
);
2342 filter_expression_copy
=
2343 strdup(filter_expression
);
2344 if (!filter_expression
) {
2345 ret
= LTTNG_ERR_NOMEM
;
2348 if (!filter_expression_copy
|| !filter_copy
) {
2349 free(filter_expression_copy
);
2355 ret
= cmd_enable_event_internal(session
, &tmp_dom
,
2356 (char *) default_chan_name
,
2357 &uevent
, filter_expression_copy
,
2358 filter_copy
, NULL
, wpipe
);
2361 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2362 goto already_enabled
;
2363 } else if (ret
!= LTTNG_OK
) {
2367 /* The wild card * means that everything should be enabled. */
2368 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
2369 ret
= event_agent_enable_all(usess
, agt
, event
, filter
,
2372 ret
= event_agent_enable(usess
, agt
, event
, filter
,
2376 filter_expression
= NULL
;
2377 if (ret
!= LTTNG_OK
) {
2384 ret
= LTTNG_ERR_UND
;
2392 free(filter_expression
);
2395 channel_attr_destroy(attr
);
2401 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2402 * We own filter, exclusion, and filter_expression.
2404 int cmd_enable_event(struct ltt_session
*session
,
2405 const struct lttng_domain
*domain
,
2406 char *channel_name
, struct lttng_event
*event
,
2407 char *filter_expression
,
2408 struct lttng_filter_bytecode
*filter
,
2409 struct lttng_event_exclusion
*exclusion
,
2412 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2413 filter_expression
, filter
, exclusion
, wpipe
, false);
2417 * Enable an event which is internal to LTTng. An internal should
2418 * never be made visible to clients and are immune to checks such as
2421 static int cmd_enable_event_internal(struct ltt_session
*session
,
2422 const struct lttng_domain
*domain
,
2423 char *channel_name
, struct lttng_event
*event
,
2424 char *filter_expression
,
2425 struct lttng_filter_bytecode
*filter
,
2426 struct lttng_event_exclusion
*exclusion
,
2429 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2430 filter_expression
, filter
, exclusion
, wpipe
, true);
2434 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2436 ssize_t
cmd_list_tracepoints(enum lttng_domain_type domain
,
2437 struct lttng_event
**events
)
2440 ssize_t nb_events
= 0;
2443 case LTTNG_DOMAIN_KERNEL
:
2444 nb_events
= kernel_list_events(events
);
2445 if (nb_events
< 0) {
2446 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2450 case LTTNG_DOMAIN_UST
:
2451 nb_events
= ust_app_list_events(events
);
2452 if (nb_events
< 0) {
2453 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2457 case LTTNG_DOMAIN_LOG4J
:
2458 case LTTNG_DOMAIN_JUL
:
2459 case LTTNG_DOMAIN_PYTHON
:
2460 nb_events
= agent_list_events(events
, domain
);
2461 if (nb_events
< 0) {
2462 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2467 ret
= LTTNG_ERR_UND
;
2474 /* Return negative value to differentiate return code */
2479 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2481 ssize_t
cmd_list_tracepoint_fields(enum lttng_domain_type domain
,
2482 struct lttng_event_field
**fields
)
2485 ssize_t nb_fields
= 0;
2488 case LTTNG_DOMAIN_UST
:
2489 nb_fields
= ust_app_list_event_fields(fields
);
2490 if (nb_fields
< 0) {
2491 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2495 case LTTNG_DOMAIN_KERNEL
:
2496 default: /* fall-through */
2497 ret
= LTTNG_ERR_UND
;
2504 /* Return negative value to differentiate return code */
2508 ssize_t
cmd_list_syscalls(struct lttng_event
**events
)
2510 return syscall_table_list(events
);
2514 * Command LTTNG_LIST_TRACKER_PIDS processed by the client thread.
2516 * Called with session lock held.
2518 ssize_t
cmd_list_tracker_pids(struct ltt_session
*session
,
2519 enum lttng_domain_type domain
, int32_t **pids
)
2522 ssize_t nr_pids
= 0;
2525 case LTTNG_DOMAIN_KERNEL
:
2527 struct ltt_kernel_session
*ksess
;
2529 ksess
= session
->kernel_session
;
2530 nr_pids
= kernel_list_tracker_pids(ksess
, pids
);
2532 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2537 case LTTNG_DOMAIN_UST
:
2539 struct ltt_ust_session
*usess
;
2541 usess
= session
->ust_session
;
2542 nr_pids
= trace_ust_list_tracker_pids(usess
, pids
);
2544 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2549 case LTTNG_DOMAIN_LOG4J
:
2550 case LTTNG_DOMAIN_JUL
:
2551 case LTTNG_DOMAIN_PYTHON
:
2553 ret
= LTTNG_ERR_UND
;
2560 /* Return negative value to differentiate return code */
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
;
2578 /* Ease our life a bit ;) */
2579 ksession
= session
->kernel_session
;
2580 usess
= session
->ust_session
;
2582 /* Is the session already started? */
2583 if (session
->active
) {
2584 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2589 * Starting a session without channel is useless since after that it's not
2590 * possible to enable channel thus inform the client.
2592 if (usess
&& usess
->domain_global
.channels
) {
2593 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
2596 nb_chan
+= ksession
->channel_count
;
2599 ret
= LTTNG_ERR_NO_CHANNEL
;
2603 if (session
->output_traces
&& !session
->current_trace_chunk
) {
2604 struct lttng_trace_chunk
*trace_chunk
;
2606 trace_chunk
= session_create_new_trace_chunk(
2607 session
, NULL
, NULL
, NULL
);
2609 ret
= LTTNG_ERR_CREATE_DIR_FAIL
;
2612 assert(!session
->current_trace_chunk
);
2613 ret
= session_set_trace_chunk(session
, trace_chunk
, NULL
);
2614 lttng_trace_chunk_put(trace_chunk
);
2616 ret
= LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
2621 /* Kernel tracing */
2622 if (ksession
!= NULL
) {
2623 DBG("Start kernel tracing session %s", session
->name
);
2624 ret
= start_kernel_session(ksession
);
2625 if (ret
!= LTTNG_OK
) {
2630 /* Flag session that trace should start automatically */
2632 int int_ret
= ust_app_start_trace_all(usess
);
2635 ret
= LTTNG_ERR_UST_START_FAIL
;
2640 /* Flag this after a successful start. */
2641 session
->has_been_started
= 1;
2642 session
->active
= 1;
2645 * Clear the flag that indicates that a rotation was done while the
2646 * session was stopped.
2648 session
->rotated_after_last_stop
= false;
2650 if (session
->rotate_timer_period
) {
2651 int int_ret
= timer_session_rotation_schedule_timer_start(
2652 session
, session
->rotate_timer_period
);
2655 ERR("Failed to enable rotate timer");
2656 ret
= LTTNG_ERR_UNK
;
2668 * Command LTTNG_STOP_TRACE processed by the client thread.
2670 int cmd_stop_trace(struct ltt_session
*session
)
2673 struct ltt_kernel_channel
*kchan
;
2674 struct ltt_kernel_session
*ksession
;
2675 struct ltt_ust_session
*usess
;
2676 bool error_occurred
= false;
2680 DBG("Begin stop session %s (id %" PRIu64
")", session
->name
, session
->id
);
2682 ksession
= session
->kernel_session
;
2683 usess
= session
->ust_session
;
2685 /* Session is not active. Skip everythong and inform the client. */
2686 if (!session
->active
) {
2687 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2692 if (ksession
&& ksession
->active
) {
2693 DBG("Stop kernel tracing");
2695 ret
= kernel_stop_session(ksession
);
2697 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
2701 kernel_wait_quiescent();
2703 /* Flush metadata after stopping (if exists) */
2704 if (ksession
->metadata_stream_fd
>= 0) {
2705 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
2707 ERR("Kernel metadata flush failed");
2708 error_occurred
= true;
2712 /* Flush all buffers after stopping */
2713 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
2714 ret
= kernel_flush_buffer(kchan
);
2716 ERR("Kernel flush buffer error");
2717 error_occurred
= true;
2721 ksession
->active
= 0;
2722 DBG("Kernel session stopped %s (id %" PRIu64
")", session
->name
,
2726 if (usess
&& usess
->active
) {
2727 ret
= ust_app_stop_trace_all(usess
);
2729 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2734 /* Flag inactive after a successful stop. */
2735 session
->active
= 0;
2736 ret
= !error_occurred
? LTTNG_OK
: LTTNG_ERR_UNK
;
2743 * Set the base_path of the session only if subdir of a control uris is set.
2744 * Return LTTNG_OK on success, otherwise LTTNG_ERR_*.
2746 static int set_session_base_path_from_uris(struct ltt_session
*session
,
2748 struct lttng_uri
*uris
)
2753 for (i
= 0; i
< nb_uri
; i
++) {
2754 if (uris
[i
].stype
!= LTTNG_STREAM_CONTROL
||
2755 uris
[i
].subdir
[0] == '\0') {
2756 /* Not interested in these URIs */
2760 if (session
->base_path
!= NULL
) {
2761 free(session
->base_path
);
2762 session
->base_path
= NULL
;
2765 /* Set session base_path */
2766 session
->base_path
= strdup(uris
[i
].subdir
);
2767 if (!session
->base_path
) {
2768 PERROR("Failed to copy base path \"%s\" to session \"%s\"",
2769 uris
[i
].subdir
, session
->name
);
2770 ret
= LTTNG_ERR_NOMEM
;
2773 DBG2("Setting base path \"%s\" for session \"%s\"",
2774 session
->base_path
, session
->name
);
2782 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2784 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2785 struct lttng_uri
*uris
)
2788 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2789 struct ltt_ust_session
*usess
= session
->ust_session
;
2795 /* Can't set consumer URI if the session is active. */
2796 if (session
->active
) {
2797 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2802 * Set the session base path if any. This is done inside
2803 * cmd_set_consumer_uri to preserve backward compatibility of the
2804 * previous session creation api vs the session descriptor api.
2806 ret
= set_session_base_path_from_uris(session
, nb_uri
, uris
);
2807 if (ret
!= LTTNG_OK
) {
2811 /* Set the "global" consumer URIs */
2812 for (i
= 0; i
< nb_uri
; i
++) {
2813 ret
= add_uri_to_consumer(session
, session
->consumer
, &uris
[i
],
2815 if (ret
!= LTTNG_OK
) {
2820 /* Set UST session URIs */
2821 if (session
->ust_session
) {
2822 for (i
= 0; i
< nb_uri
; i
++) {
2823 ret
= add_uri_to_consumer(session
,
2824 session
->ust_session
->consumer
,
2825 &uris
[i
], LTTNG_DOMAIN_UST
);
2826 if (ret
!= LTTNG_OK
) {
2832 /* Set kernel session URIs */
2833 if (session
->kernel_session
) {
2834 for (i
= 0; i
< nb_uri
; i
++) {
2835 ret
= add_uri_to_consumer(session
,
2836 session
->kernel_session
->consumer
,
2837 &uris
[i
], LTTNG_DOMAIN_KERNEL
);
2838 if (ret
!= LTTNG_OK
) {
2845 * Make sure to set the session in output mode after we set URI since a
2846 * session can be created without URL (thus flagged in no output mode).
2848 session
->output_traces
= 1;
2850 ksess
->output_traces
= 1;
2854 usess
->output_traces
= 1;
2865 enum lttng_error_code
set_session_output_from_descriptor(
2866 struct ltt_session
*session
,
2867 const struct lttng_session_descriptor
*descriptor
)
2870 enum lttng_error_code ret_code
= LTTNG_OK
;
2871 enum lttng_session_descriptor_type session_type
=
2872 lttng_session_descriptor_get_type(descriptor
);
2873 enum lttng_session_descriptor_output_type output_type
=
2874 lttng_session_descriptor_get_output_type(descriptor
);
2875 struct lttng_uri uris
[2] = {};
2876 size_t uri_count
= 0;
2878 switch (output_type
) {
2879 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
2881 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
2882 lttng_session_descriptor_get_local_output_uri(descriptor
,
2886 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
2887 lttng_session_descriptor_get_network_output_uris(descriptor
,
2888 &uris
[0], &uris
[1]);
2892 ret_code
= LTTNG_ERR_INVALID
;
2896 switch (session_type
) {
2897 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
2899 struct snapshot_output
*new_output
= NULL
;
2901 new_output
= snapshot_output_alloc();
2903 ret_code
= LTTNG_ERR_NOMEM
;
2907 ret
= snapshot_output_init_with_uri(session
,
2908 DEFAULT_SNAPSHOT_MAX_SIZE
,
2909 NULL
, uris
, uri_count
, session
->consumer
,
2910 new_output
, &session
->snapshot
);
2912 ret_code
= (ret
== -ENOMEM
) ?
2913 LTTNG_ERR_NOMEM
: LTTNG_ERR_INVALID
;
2914 snapshot_output_destroy(new_output
);
2917 snapshot_add_output(&session
->snapshot
, new_output
);
2920 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
2921 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
2923 ret_code
= cmd_set_consumer_uri(session
, uri_count
, uris
);
2927 ret_code
= LTTNG_ERR_INVALID
;
2935 enum lttng_error_code
cmd_create_session_from_descriptor(
2936 struct lttng_session_descriptor
*descriptor
,
2937 const lttng_sock_cred
*creds
,
2938 const char *home_path
)
2941 enum lttng_error_code ret_code
;
2942 const char *session_name
;
2943 struct ltt_session
*new_session
= NULL
;
2944 enum lttng_session_descriptor_status descriptor_status
;
2946 session_lock_list();
2948 if (*home_path
!= '/') {
2949 ERR("Home path provided by client is not absolute");
2950 ret_code
= LTTNG_ERR_INVALID
;
2955 descriptor_status
= lttng_session_descriptor_get_session_name(
2956 descriptor
, &session_name
);
2957 switch (descriptor_status
) {
2958 case LTTNG_SESSION_DESCRIPTOR_STATUS_OK
:
2960 case LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
:
2961 session_name
= NULL
;
2964 ret_code
= LTTNG_ERR_INVALID
;
2968 ret_code
= session_create(session_name
, creds
->uid
, creds
->gid
,
2970 if (ret_code
!= LTTNG_OK
) {
2974 if (!session_name
) {
2975 ret
= lttng_session_descriptor_set_session_name(descriptor
,
2978 ret_code
= LTTNG_ERR_SESSION_FAIL
;
2983 if (!lttng_session_descriptor_is_output_destination_initialized(
2986 * Only include the session's creation time in the output
2987 * destination if the name of the session itself was
2988 * not auto-generated.
2990 ret_code
= lttng_session_descriptor_set_default_output(
2992 session_name
? &new_session
->creation_time
: NULL
,
2994 if (ret_code
!= LTTNG_OK
) {
2998 new_session
->has_user_specified_directory
=
2999 lttng_session_descriptor_has_output_directory(
3003 switch (lttng_session_descriptor_get_type(descriptor
)) {
3004 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
3005 new_session
->snapshot_mode
= 1;
3007 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
3008 new_session
->live_timer
=
3009 lttng_session_descriptor_live_get_timer_interval(
3016 ret_code
= set_session_output_from_descriptor(new_session
, descriptor
);
3017 if (ret_code
!= LTTNG_OK
) {
3020 new_session
->consumer
->enabled
= 1;
3021 ret_code
= LTTNG_OK
;
3023 /* Release reference provided by the session_create function. */
3024 session_put(new_session
);
3025 if (ret_code
!= LTTNG_OK
&& new_session
) {
3026 /* Release the global reference on error. */
3027 session_destroy(new_session
);
3029 session_unlock_list();
3033 enum lttng_error_code
cmd_create_session(struct command_ctx
*cmd_ctx
, int sock
,
3034 struct lttng_session_descriptor
**return_descriptor
)
3037 size_t payload_size
;
3038 struct lttng_dynamic_buffer payload
;
3039 struct lttng_buffer_view home_dir_view
;
3040 struct lttng_buffer_view session_descriptor_view
;
3041 struct lttng_session_descriptor
*session_descriptor
= NULL
;
3042 enum lttng_error_code ret_code
;
3044 lttng_dynamic_buffer_init(&payload
);
3045 if (cmd_ctx
->lsm
->u
.create_session
.home_dir_size
>=
3047 ret_code
= LTTNG_ERR_INVALID
;
3050 if (cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
>
3051 LTTNG_SESSION_DESCRIPTOR_MAX_LEN
) {
3052 ret_code
= LTTNG_ERR_INVALID
;
3056 payload_size
= cmd_ctx
->lsm
->u
.create_session
.home_dir_size
+
3057 cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
;
3058 ret
= lttng_dynamic_buffer_set_size(&payload
, payload_size
);
3060 ret_code
= LTTNG_ERR_NOMEM
;
3064 ret
= lttcomm_recv_unix_sock(sock
, payload
.data
, payload
.size
);
3066 ERR("Reception of session descriptor failed, aborting.");
3067 ret_code
= LTTNG_ERR_SESSION_FAIL
;
3071 home_dir_view
= lttng_buffer_view_from_dynamic_buffer(
3074 cmd_ctx
->lsm
->u
.create_session
.home_dir_size
);
3075 session_descriptor_view
= lttng_buffer_view_from_dynamic_buffer(
3077 cmd_ctx
->lsm
->u
.create_session
.home_dir_size
,
3078 cmd_ctx
->lsm
->u
.create_session
.session_descriptor_size
);
3080 ret
= lttng_session_descriptor_create_from_buffer(
3081 &session_descriptor_view
, &session_descriptor
);
3083 ERR("Failed to create session descriptor from payload of \"create session\" command");
3084 ret_code
= LTTNG_ERR_INVALID
;
3089 * Sets the descriptor's auto-generated properties (name, output) if
3092 ret_code
= cmd_create_session_from_descriptor(session_descriptor
,
3094 home_dir_view
.size
? home_dir_view
.data
: NULL
);
3095 if (ret_code
!= LTTNG_OK
) {
3099 ret_code
= LTTNG_OK
;
3100 *return_descriptor
= session_descriptor
;
3101 session_descriptor
= NULL
;
3103 lttng_dynamic_buffer_reset(&payload
);
3104 lttng_session_descriptor_destroy(session_descriptor
);
3109 void cmd_destroy_session_reply(const struct ltt_session
*session
,
3110 void *_reply_context
)
3114 const struct cmd_destroy_session_reply_context
*reply_context
=
3116 struct lttng_dynamic_buffer payload
;
3117 struct lttcomm_session_destroy_command_header cmd_header
;
3118 struct lttng_trace_archive_location
*location
= NULL
;
3119 struct lttcomm_lttng_msg llm
= {
3120 .cmd_type
= LTTNG_DESTROY_SESSION
,
3121 .ret_code
= reply_context
->destruction_status
,
3124 sizeof(struct lttcomm_session_destroy_command_header
),
3127 size_t payload_size_before_location
;
3129 lttng_dynamic_buffer_init(&payload
);
3131 ret
= lttng_dynamic_buffer_append(&payload
, &llm
, sizeof(llm
));
3133 ERR("Failed to append session destruction message");
3137 cmd_header
.rotation_state
=
3138 (int32_t) (reply_context
->implicit_rotation_on_destroy
?
3139 session
->rotation_state
:
3140 LTTNG_ROTATION_STATE_NO_ROTATION
);
3141 ret
= lttng_dynamic_buffer_append(&payload
, &cmd_header
,
3142 sizeof(cmd_header
));
3144 ERR("Failed to append session destruction command header");
3148 if (!reply_context
->implicit_rotation_on_destroy
) {
3149 DBG("No implicit rotation performed during the destruction of session \"%s\", sending reply",
3153 if (session
->rotation_state
!= LTTNG_ROTATION_STATE_COMPLETED
) {
3154 DBG("Rotation state of session \"%s\" is not \"completed\", sending session destruction reply",
3159 location
= session_get_trace_archive_location(session
);
3161 ERR("Failed to get the location of the trace archive produced during the destruction of session \"%s\"",
3166 payload_size_before_location
= payload
.size
;
3167 comm_ret
= lttng_trace_archive_location_serialize(location
,
3170 ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
3174 /* Update the message to indicate the location's length. */
3175 ((struct lttcomm_lttng_msg
*) payload
.data
)->data_size
=
3176 payload
.size
- payload_size_before_location
;
3178 comm_ret
= lttcomm_send_unix_sock(reply_context
->reply_sock_fd
,
3179 payload
.data
, payload
.size
);
3180 if (comm_ret
!= (ssize_t
) payload
.size
) {
3181 ERR("Failed to send result of the destruction of session \"%s\" to client",
3185 ret
= close(reply_context
->reply_sock_fd
);
3187 PERROR("Failed to close client socket in deferred session destroy reply");
3189 lttng_dynamic_buffer_reset(&payload
);
3190 free(_reply_context
);
3194 * Command LTTNG_DESTROY_SESSION processed by the client thread.
3196 * Called with session lock held.
3198 int cmd_destroy_session(struct ltt_session
*session
,
3199 struct notification_thread_handle
*notification_thread_handle
,
3203 enum lttng_error_code destruction_last_error
= LTTNG_OK
;
3204 struct cmd_destroy_session_reply_context
*reply_context
= NULL
;
3207 reply_context
= zmalloc(sizeof(*reply_context
));
3208 if (!reply_context
) {
3209 ret
= LTTNG_ERR_NOMEM
;
3212 reply_context
->reply_sock_fd
= *sock_fd
;
3218 DBG("Begin destroy session %s (id %" PRIu64
")", session
->name
,
3220 if (session
->active
) {
3221 DBG("Session \"%s\" is active, attempting to stop it before destroying it",
3223 ret
= cmd_stop_trace(session
);
3224 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
3225 /* Carry on with the destruction of the session. */
3226 ERR("Failed to stop session \"%s\" as part of its destruction: %s",
3227 session
->name
, lttng_strerror(-ret
));
3228 destruction_last_error
= ret
;
3232 if (session
->rotation_schedule_timer_enabled
) {
3233 if (timer_session_rotation_schedule_timer_stop(
3235 ERR("Failed to stop the \"rotation schedule\" timer of session %s",
3237 destruction_last_error
= LTTNG_ERR_TIMER_STOP_ERROR
;
3241 if (session
->rotate_size
) {
3242 unsubscribe_session_consumed_size_rotation(session
, notification_thread_handle
);
3243 session
->rotate_size
= 0;
3246 if (session
->most_recent_chunk_id
.is_set
&&
3247 session
->most_recent_chunk_id
.value
!= 0 &&
3248 session
->current_trace_chunk
&& session
->output_traces
) {
3250 * Perform a last rotation on destruction if rotations have
3251 * occurred during the session's lifetime.
3253 ret
= cmd_rotate_session(session
, NULL
, false);
3254 if (ret
!= LTTNG_OK
) {
3255 ERR("Failed to perform an implicit rotation as part of the destruction of session \"%s\": %s",
3256 session
->name
, lttng_strerror(-ret
));
3257 destruction_last_error
= -ret
;
3259 if (reply_context
) {
3260 reply_context
->implicit_rotation_on_destroy
= true;
3262 } else if (session
->has_been_started
&& session
->current_trace_chunk
) {
3264 * The user has not triggered a session rotation. However, to
3265 * ensure all data has been consumed, the session is rotated
3266 * to a 'null' trace chunk before it is destroyed.
3268 * This is a "quiet" rotation meaning that no notification is
3269 * emitted and no renaming of the current trace chunk takes
3272 ret
= cmd_rotate_session(session
, NULL
, true);
3273 if (ret
!= LTTNG_OK
) {
3274 ERR("Failed to perform a quiet rotation as part of the destruction of session \"%s\": %s",
3275 session
->name
, lttng_strerror(-ret
));
3276 destruction_last_error
= -ret
;
3280 if (session
->shm_path
[0]) {
3282 * When a session is created with an explicit shm_path,
3283 * the consumer daemon will create its shared memory files
3284 * at that location and will *not* unlink them. This is normal
3285 * as the intention of that feature is to make it possible
3286 * to retrieve the content of those files should a crash occur.
3288 * To ensure the content of those files can be used, the
3289 * sessiond daemon will replicate the content of the metadata
3290 * cache in a metadata file.
3292 * On clean-up, it is expected that the consumer daemon will
3293 * unlink the shared memory files and that the session daemon
3294 * will unlink the metadata file. Then, the session's directory
3295 * in the shm path can be removed.
3297 * Unfortunately, a flaw in the design of the sessiond's and
3298 * consumerd's tear down of channels makes it impossible to
3299 * determine when the sessiond _and_ the consumerd have both
3300 * destroyed their representation of a channel. For one, the
3301 * unlinking, close, and rmdir happen in deferred 'call_rcu'
3302 * callbacks in both daemons.
3304 * However, it is also impossible for the sessiond to know when
3305 * the consumer daemon is done destroying its channel(s) since
3306 * it occurs as a reaction to the closing of the channel's file
3307 * descriptor. There is no resulting communication initiated
3308 * from the consumerd to the sessiond to confirm that the
3309 * operation is completed (and was successful).
3311 * Until this is all fixed, the session daemon checks for the
3312 * removal of the session's shm path which makes it possible
3313 * to safely advertise a session as having been destroyed.
3315 * Prior to this fix, it was not possible to reliably save
3316 * a session making use of the --shm-path option, destroy it,
3317 * and load it again. This is because the creation of the
3318 * session would fail upon seeing the session's shm path
3319 * already in existence.
3321 * Note that none of the error paths in the check for the
3322 * directory's existence return an error. This is normal
3323 * as there isn't much that can be done. The session will
3324 * be destroyed properly, except that we can't offer the
3325 * guarantee that the same session can be re-created.
3327 current_completion_handler
= &destroy_completion_handler
.handler
;
3328 ret
= lttng_strncpy(destroy_completion_handler
.shm_path
,
3330 sizeof(destroy_completion_handler
.shm_path
));
3335 * The session is destroyed. However, note that the command context
3336 * still holds a reference to the session, thus delaying its destruction
3337 * _at least_ up to the point when that reference is released.
3339 session_destroy(session
);
3340 if (reply_context
) {
3341 reply_context
->destruction_status
= destruction_last_error
;
3342 ret
= session_add_destroy_notifier(session
,
3343 cmd_destroy_session_reply
,
3344 (void *) reply_context
);
3346 ret
= LTTNG_ERR_FATAL
;
3358 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3360 int cmd_register_consumer(struct ltt_session
*session
,
3361 enum lttng_domain_type domain
, const char *sock_path
,
3362 struct consumer_data
*cdata
)
3365 struct consumer_socket
*socket
= NULL
;
3372 case LTTNG_DOMAIN_KERNEL
:
3374 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3378 /* Can't register a consumer if there is already one */
3379 if (ksess
->consumer_fds_sent
!= 0) {
3380 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3384 sock
= lttcomm_connect_unix_sock(sock_path
);
3386 ret
= LTTNG_ERR_CONNECT_FAIL
;
3389 cdata
->cmd_sock
= sock
;
3391 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
3392 if (socket
== NULL
) {
3395 PERROR("close register consumer");
3397 cdata
->cmd_sock
= -1;
3398 ret
= LTTNG_ERR_FATAL
;
3402 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
3403 if (socket
->lock
== NULL
) {
3404 PERROR("zmalloc pthread mutex");
3405 ret
= LTTNG_ERR_FATAL
;
3408 pthread_mutex_init(socket
->lock
, NULL
);
3409 socket
->registered
= 1;
3412 consumer_add_socket(socket
, ksess
->consumer
);
3415 pthread_mutex_lock(&cdata
->pid_mutex
);
3417 pthread_mutex_unlock(&cdata
->pid_mutex
);
3422 /* TODO: Userspace tracing */
3423 ret
= LTTNG_ERR_UND
;
3431 consumer_destroy_socket(socket
);
3437 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3439 ssize_t
cmd_list_domains(struct ltt_session
*session
,
3440 struct lttng_domain
**domains
)
3445 struct lttng_ht_iter iter
;
3447 if (session
->kernel_session
!= NULL
) {
3448 DBG3("Listing domains found kernel domain");
3452 if (session
->ust_session
!= NULL
) {
3453 DBG3("Listing domains found UST global domain");
3457 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3459 if (agt
->being_used
) {
3470 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
3471 if (*domains
== NULL
) {
3472 ret
= LTTNG_ERR_FATAL
;
3476 if (session
->kernel_session
!= NULL
) {
3477 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
3479 /* Kernel session buffer type is always GLOBAL */
3480 (*domains
)[index
].buf_type
= LTTNG_BUFFER_GLOBAL
;
3485 if (session
->ust_session
!= NULL
) {
3486 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
3487 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3491 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
3493 if (agt
->being_used
) {
3494 (*domains
)[index
].type
= agt
->domain
;
3495 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
3505 /* Return negative value to differentiate return code */
3511 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3513 ssize_t
cmd_list_channels(enum lttng_domain_type domain
,
3514 struct ltt_session
*session
, struct lttng_channel
**channels
)
3516 ssize_t nb_chan
= 0, payload_size
= 0, ret
;
3519 case LTTNG_DOMAIN_KERNEL
:
3520 if (session
->kernel_session
!= NULL
) {
3521 nb_chan
= session
->kernel_session
->channel_count
;
3523 DBG3("Number of kernel channels %zd", nb_chan
);
3525 ret
= -LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
3529 case LTTNG_DOMAIN_UST
:
3530 if (session
->ust_session
!= NULL
) {
3532 nb_chan
= lttng_ht_get_count(
3533 session
->ust_session
->domain_global
.channels
);
3536 DBG3("Number of UST global channels %zd", nb_chan
);
3538 ret
= -LTTNG_ERR_UST_CHAN_NOT_FOUND
;
3543 ret
= -LTTNG_ERR_UND
;
3548 const size_t channel_size
= sizeof(struct lttng_channel
) +
3549 sizeof(struct lttng_channel_extended
);
3550 struct lttng_channel_extended
*channel_exts
;
3552 payload_size
= nb_chan
* channel_size
;
3553 *channels
= zmalloc(payload_size
);
3554 if (*channels
== NULL
) {
3555 ret
= -LTTNG_ERR_FATAL
;
3559 channel_exts
= ((void *) *channels
) +
3560 (nb_chan
* sizeof(struct lttng_channel
));
3561 ret
= list_lttng_channels(domain
, session
, *channels
, channel_exts
);
3562 if (ret
!= LTTNG_OK
) {
3577 * Command LTTNG_LIST_EVENTS processed by the client thread.
3579 ssize_t
cmd_list_events(enum lttng_domain_type domain
,
3580 struct ltt_session
*session
, char *channel_name
,
3581 struct lttng_event
**events
, size_t *total_size
)
3584 ssize_t nb_event
= 0;
3587 case LTTNG_DOMAIN_KERNEL
:
3588 if (session
->kernel_session
!= NULL
) {
3589 nb_event
= list_lttng_kernel_events(channel_name
,
3590 session
->kernel_session
, events
,
3594 case LTTNG_DOMAIN_UST
:
3596 if (session
->ust_session
!= NULL
) {
3597 nb_event
= list_lttng_ust_global_events(channel_name
,
3598 &session
->ust_session
->domain_global
, events
,
3603 case LTTNG_DOMAIN_LOG4J
:
3604 case LTTNG_DOMAIN_JUL
:
3605 case LTTNG_DOMAIN_PYTHON
:
3606 if (session
->ust_session
) {
3607 struct lttng_ht_iter iter
;
3611 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
3612 &iter
.iter
, agt
, node
.node
) {
3613 if (agt
->domain
== domain
) {
3614 nb_event
= list_lttng_agent_events(
3624 ret
= LTTNG_ERR_UND
;
3631 /* Return negative value to differentiate return code */
3636 * Using the session list, filled a lttng_session array to send back to the
3637 * client for session listing.
3639 * The session list lock MUST be acquired before calling this function. Use
3640 * session_lock_list() and session_unlock_list().
3642 void cmd_list_lttng_sessions(struct lttng_session
*sessions
,
3643 size_t session_count
, uid_t uid
, gid_t gid
)
3647 struct ltt_session
*session
;
3648 struct ltt_session_list
*list
= session_get_list();
3649 struct lttng_session_extended
*extended
=
3650 (typeof(extended
)) (&sessions
[session_count
]);
3652 DBG("Getting all available session for UID %d GID %d",
3655 * Iterate over session list and append data after the control struct in
3658 cds_list_for_each_entry(session
, &list
->head
, list
) {
3659 if (!session_get(session
)) {
3663 * Only list the sessions the user can control.
3665 if (!session_access_ok(session
, uid
, gid
) ||
3666 session
->destroyed
) {
3667 session_put(session
);
3671 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3672 struct ltt_ust_session
*usess
= session
->ust_session
;
3674 if (session
->consumer
->type
== CONSUMER_DST_NET
||
3675 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
3676 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
3677 ret
= build_network_session_path(sessions
[i
].path
,
3678 sizeof(sessions
[i
].path
), session
);
3680 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
3681 session
->consumer
->dst
.session_root_path
);
3684 PERROR("snprintf session path");
3685 session_put(session
);
3689 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
3690 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
3691 sessions
[i
].enabled
= session
->active
;
3692 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
3693 sessions
[i
].live_timer_interval
= session
->live_timer
;
3694 extended
[i
].creation_time
.value
= (uint64_t) session
->creation_time
;
3695 extended
[i
].creation_time
.is_set
= 1;
3697 session_put(session
);
3702 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
3703 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
3705 int cmd_data_pending(struct ltt_session
*session
)
3708 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3709 struct ltt_ust_session
*usess
= session
->ust_session
;
3713 DBG("Data pending for session %s", session
->name
);
3715 /* Session MUST be stopped to ask for data availability. */
3716 if (session
->active
) {
3717 ret
= LTTNG_ERR_SESSION_STARTED
;
3721 * If stopped, just make sure we've started before else the above call
3722 * will always send that there is data pending.
3724 * The consumer assumes that when the data pending command is received,
3725 * the trace has been started before or else no output data is written
3726 * by the streams which is a condition for data pending. So, this is
3727 * *VERY* important that we don't ask the consumer before a start
3730 if (!session
->has_been_started
) {
3736 /* A rotation is still pending, we have to wait. */
3737 if (session
->rotation_state
== LTTNG_ROTATION_STATE_ONGOING
) {
3738 DBG("Rotate still pending for session %s", session
->name
);
3743 if (ksess
&& ksess
->consumer
) {
3744 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
3746 /* Data is still being extracted for the kernel. */
3751 if (usess
&& usess
->consumer
) {
3752 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
3754 /* Data is still being extracted for the kernel. */
3759 /* Data is ready to be read by a viewer */