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>
25 #include <common/defaults.h>
26 #include <common/common.h>
27 #include <common/sessiond-comm/sessiond-comm.h>
28 #include <common/relayd/relayd.h>
29 #include <common/utils.h>
30 #include <common/compat/string.h>
31 #include <common/kernel-ctl/kernel-ctl.h>
32 #include <common/dynamic-buffer.h>
33 #include <common/buffer-view.h>
34 #include <lttng/trigger/trigger-internal.h>
35 #include <lttng/condition/condition.h>
36 #include <lttng/action/action.h>
37 #include <lttng/channel-internal.h>
38 #include <common/string-utils/string-utils.h>
43 #include "health-sessiond.h"
45 #include "kernel-consumer.h"
46 #include "lttng-sessiond.h"
50 #include "buffer-registry.h"
51 #include "notification-thread.h"
52 #include "notification-thread-commands.h"
57 * Used to keep a unique index for each relayd socket created where this value
58 * is associated with streams on the consumer so it can match the right relayd
59 * to send to. It must be accessed with the relayd_net_seq_idx_lock
62 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
63 static uint64_t relayd_net_seq_idx
;
65 static int validate_ust_event_name(const char *);
66 static int cmd_enable_event_internal(struct ltt_session
*session
,
67 struct lttng_domain
*domain
,
68 char *channel_name
, struct lttng_event
*event
,
69 char *filter_expression
,
70 struct lttng_filter_bytecode
*filter
,
71 struct lttng_event_exclusion
*exclusion
,
75 * Create a session path used by list_lttng_sessions for the case that the
76 * session consumer is on the network.
78 static int build_network_session_path(char *dst
, size_t size
,
79 struct ltt_session
*session
)
81 int ret
, kdata_port
, udata_port
;
82 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
83 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
88 memset(tmp_urls
, 0, sizeof(tmp_urls
));
89 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
91 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
93 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
94 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
95 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
98 if (session
->ust_session
&& session
->ust_session
->consumer
) {
99 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
100 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
103 if (uuri
== NULL
&& kuri
== NULL
) {
104 uri
= &session
->consumer
->dst
.net
.control
;
105 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
106 } else if (kuri
&& uuri
) {
107 ret
= uri_compare(kuri
, uuri
);
111 /* Build uuri URL string */
112 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
119 } else if (kuri
&& uuri
== NULL
) {
121 } else if (uuri
&& kuri
== NULL
) {
125 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
131 * Do we have a UST url set. If yes, this means we have both kernel and UST
134 if (*tmp_uurl
!= '\0') {
135 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
136 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
139 if (kuri
|| (!kuri
&& !uuri
)) {
142 /* No kernel URI, use the UST port. */
145 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
153 * Get run-time attributes if the session has been started (discarded events,
156 static int get_kernel_runtime_stats(struct ltt_session
*session
,
157 struct ltt_kernel_channel
*kchan
, uint64_t *discarded_events
,
158 uint64_t *lost_packets
)
162 if (!session
->has_been_started
) {
164 *discarded_events
= 0;
169 ret
= consumer_get_discarded_events(session
->id
, kchan
->fd
,
170 session
->kernel_session
->consumer
,
176 ret
= consumer_get_lost_packets(session
->id
, kchan
->fd
,
177 session
->kernel_session
->consumer
,
188 * Get run-time attributes if the session has been started (discarded events,
191 static int get_ust_runtime_stats(struct ltt_session
*session
,
192 struct ltt_ust_channel
*uchan
, uint64_t *discarded_events
,
193 uint64_t *lost_packets
)
196 struct ltt_ust_session
*usess
;
198 if (!discarded_events
|| !lost_packets
) {
203 usess
= session
->ust_session
;
204 assert(discarded_events
);
205 assert(lost_packets
);
207 if (!usess
|| !session
->has_been_started
) {
208 *discarded_events
= 0;
214 if (usess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
215 ret
= ust_app_uid_get_channel_runtime_stats(usess
->id
,
216 &usess
->buffer_reg_uid_list
,
217 usess
->consumer
, uchan
->id
,
218 uchan
->attr
.overwrite
,
221 } else if (usess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
222 ret
= ust_app_pid_get_channel_runtime_stats(usess
,
223 uchan
, usess
->consumer
,
224 uchan
->attr
.overwrite
,
230 *discarded_events
+= uchan
->per_pid_closed_app_discarded
;
231 *lost_packets
+= uchan
->per_pid_closed_app_lost
;
233 ERR("Unsupported buffer type");
244 * Fill lttng_channel array of all channels.
246 static void list_lttng_channels(enum lttng_domain_type domain
,
247 struct ltt_session
*session
, struct lttng_channel
*channels
,
248 struct lttng_channel_extended
*chan_exts
)
251 struct ltt_kernel_channel
*kchan
;
253 DBG("Listing channels for session %s", session
->name
);
256 case LTTNG_DOMAIN_KERNEL
:
257 /* Kernel channels */
258 if (session
->kernel_session
!= NULL
) {
259 cds_list_for_each_entry(kchan
,
260 &session
->kernel_session
->channel_list
.head
, list
) {
261 uint64_t discarded_events
, lost_packets
;
262 struct lttng_channel_extended
*extended
;
264 extended
= (struct lttng_channel_extended
*)
265 kchan
->channel
->attr
.extended
.ptr
;
267 ret
= get_kernel_runtime_stats(session
, kchan
,
268 &discarded_events
, &lost_packets
);
272 /* Copy lttng_channel struct to array */
273 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
274 channels
[i
].enabled
= kchan
->enabled
;
275 chan_exts
[i
].discarded_events
=
277 chan_exts
[i
].lost_packets
= lost_packets
;
278 chan_exts
[i
].monitor_timer_interval
=
279 extended
->monitor_timer_interval
;
284 case LTTNG_DOMAIN_UST
:
286 struct lttng_ht_iter iter
;
287 struct ltt_ust_channel
*uchan
;
290 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
291 &iter
.iter
, uchan
, node
.node
) {
292 uint64_t discarded_events
= 0, lost_packets
= 0;
294 if (lttng_strncpy(channels
[i
].name
, uchan
->name
,
295 LTTNG_SYMBOL_NAME_LEN
)) {
298 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
299 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
300 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
301 channels
[i
].attr
.switch_timer_interval
=
302 uchan
->attr
.switch_timer_interval
;
303 channels
[i
].attr
.read_timer_interval
=
304 uchan
->attr
.read_timer_interval
;
305 channels
[i
].enabled
= uchan
->enabled
;
306 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
307 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
310 * Map enum lttng_ust_output to enum lttng_event_output.
312 switch (uchan
->attr
.output
) {
314 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
318 * LTTNG_UST_MMAP is the only supported UST
325 ret
= get_ust_runtime_stats(session
, uchan
,
326 &discarded_events
, &lost_packets
);
330 chan_exts
[i
].discarded_events
= discarded_events
;
331 chan_exts
[i
].lost_packets
= lost_packets
;
332 chan_exts
[i
].monitor_timer_interval
=
333 uchan
->monitor_timer_interval
;
347 static void increment_extended_len(const char *filter_expression
,
348 struct lttng_event_exclusion
*exclusion
, size_t *extended_len
)
350 *extended_len
+= sizeof(struct lttcomm_event_extended_header
);
352 if (filter_expression
) {
353 *extended_len
+= strlen(filter_expression
) + 1;
357 *extended_len
+= exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
;
361 static void append_extended_info(const char *filter_expression
,
362 struct lttng_event_exclusion
*exclusion
, void **extended_at
)
364 struct lttcomm_event_extended_header extended_header
;
365 size_t filter_len
= 0;
366 size_t nb_exclusions
= 0;
368 if (filter_expression
) {
369 filter_len
= strlen(filter_expression
) + 1;
373 nb_exclusions
= exclusion
->count
;
376 /* Set header fields */
377 extended_header
.filter_len
= filter_len
;
378 extended_header
.nb_exclusions
= nb_exclusions
;
381 memcpy(*extended_at
, &extended_header
, sizeof(extended_header
));
382 *extended_at
+= sizeof(extended_header
);
384 /* Copy filter string */
385 if (filter_expression
) {
386 memcpy(*extended_at
, filter_expression
, filter_len
);
387 *extended_at
+= filter_len
;
390 /* Copy exclusion names */
392 size_t len
= nb_exclusions
* LTTNG_SYMBOL_NAME_LEN
;
394 memcpy(*extended_at
, &exclusion
->names
, len
);
400 * Create a list of agent domain events.
402 * Return number of events in list on success or else a negative value.
404 static int list_lttng_agent_events(struct agent
*agt
,
405 struct lttng_event
**events
, size_t *total_size
)
408 unsigned int nb_event
= 0;
409 struct agent_event
*event
;
410 struct lttng_event
*tmp_events
;
411 struct lttng_ht_iter iter
;
412 size_t extended_len
= 0;
418 DBG3("Listing agent events");
421 nb_event
= lttng_ht_get_count(agt
->events
);
429 /* Compute required extended infos size */
430 extended_len
= nb_event
* sizeof(struct lttcomm_event_extended_header
);
433 * This is only valid because the commands which add events are
434 * processed in the same thread as the listing.
437 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
438 increment_extended_len(event
->filter_expression
, NULL
,
443 *total_size
= nb_event
* sizeof(*tmp_events
) + extended_len
;
444 tmp_events
= zmalloc(*total_size
);
446 PERROR("zmalloc agent events session");
447 ret
= -LTTNG_ERR_FATAL
;
451 extended_at
= ((uint8_t *) tmp_events
) +
452 nb_event
* sizeof(struct lttng_event
);
455 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
456 strncpy(tmp_events
[i
].name
, event
->name
, sizeof(tmp_events
[i
].name
));
457 tmp_events
[i
].name
[sizeof(tmp_events
[i
].name
) - 1] = '\0';
458 tmp_events
[i
].enabled
= event
->enabled
;
459 tmp_events
[i
].loglevel
= event
->loglevel_value
;
460 tmp_events
[i
].loglevel_type
= event
->loglevel_type
;
463 /* Append extended info */
464 append_extended_info(event
->filter_expression
, NULL
,
469 *events
= tmp_events
;
473 assert(nb_event
== i
);
478 * Create a list of ust global domain events.
480 static int list_lttng_ust_global_events(char *channel_name
,
481 struct ltt_ust_domain_global
*ust_global
,
482 struct lttng_event
**events
, size_t *total_size
)
485 unsigned int nb_event
= 0;
486 struct lttng_ht_iter iter
;
487 struct lttng_ht_node_str
*node
;
488 struct ltt_ust_channel
*uchan
;
489 struct ltt_ust_event
*uevent
;
490 struct lttng_event
*tmp
;
491 size_t extended_len
= 0;
494 DBG("Listing UST global events for channel %s", channel_name
);
498 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
499 node
= lttng_ht_iter_get_node_str(&iter
);
501 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
505 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
507 nb_event
= lttng_ht_get_count(uchan
->events
);
514 DBG3("Listing UST global %d events", nb_event
);
516 /* Compute required extended infos size */
517 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
518 if (uevent
->internal
) {
523 increment_extended_len(uevent
->filter_expression
,
524 uevent
->exclusion
, &extended_len
);
527 /* All events are internal, skip. */
533 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
534 tmp
= zmalloc(*total_size
);
536 ret
= -LTTNG_ERR_FATAL
;
540 extended_at
= ((uint8_t *) tmp
) + nb_event
* sizeof(struct lttng_event
);
542 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
543 if (uevent
->internal
) {
544 /* This event should remain hidden from clients */
547 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
548 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
549 tmp
[i
].enabled
= uevent
->enabled
;
551 switch (uevent
->attr
.instrumentation
) {
552 case LTTNG_UST_TRACEPOINT
:
553 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
555 case LTTNG_UST_PROBE
:
556 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
558 case LTTNG_UST_FUNCTION
:
559 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
563 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
564 switch (uevent
->attr
.loglevel_type
) {
565 case LTTNG_UST_LOGLEVEL_ALL
:
566 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
568 case LTTNG_UST_LOGLEVEL_RANGE
:
569 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
571 case LTTNG_UST_LOGLEVEL_SINGLE
:
572 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
575 if (uevent
->filter
) {
578 if (uevent
->exclusion
) {
579 tmp
[i
].exclusion
= 1;
583 /* Append extended info */
584 append_extended_info(uevent
->filter_expression
,
585 uevent
->exclusion
, &extended_at
);
596 * Fill lttng_event array of all kernel events in the channel.
598 static int list_lttng_kernel_events(char *channel_name
,
599 struct ltt_kernel_session
*kernel_session
,
600 struct lttng_event
**events
, size_t *total_size
)
603 unsigned int nb_event
;
604 struct ltt_kernel_event
*event
;
605 struct ltt_kernel_channel
*kchan
;
606 size_t extended_len
= 0;
609 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
611 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
615 nb_event
= kchan
->event_count
;
617 DBG("Listing events for channel %s", kchan
->channel
->name
);
625 /* Compute required extended infos size */
626 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
627 increment_extended_len(event
->filter_expression
, NULL
,
631 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
632 *events
= zmalloc(*total_size
);
633 if (*events
== NULL
) {
634 ret
= LTTNG_ERR_FATAL
;
638 extended_at
= ((void *) *events
) +
639 nb_event
* sizeof(struct lttng_event
);
641 /* Kernel channels */
642 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
643 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
644 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
645 (*events
)[i
].enabled
= event
->enabled
;
646 (*events
)[i
].filter
=
647 (unsigned char) !!event
->filter_expression
;
649 switch (event
->event
->instrumentation
) {
650 case LTTNG_KERNEL_TRACEPOINT
:
651 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
653 case LTTNG_KERNEL_KRETPROBE
:
654 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
655 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
656 sizeof(struct lttng_kernel_kprobe
));
658 case LTTNG_KERNEL_KPROBE
:
659 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
660 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
661 sizeof(struct lttng_kernel_kprobe
));
663 case LTTNG_KERNEL_FUNCTION
:
664 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
665 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
666 sizeof(struct lttng_kernel_function
));
668 case LTTNG_KERNEL_NOOP
:
669 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
671 case LTTNG_KERNEL_SYSCALL
:
672 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
674 case LTTNG_KERNEL_ALL
:
680 /* Append extended info */
681 append_extended_info(event
->filter_expression
, NULL
,
689 /* Negate the error code to differentiate the size from an error */
694 * Add URI so the consumer output object. Set the correct path depending on the
695 * domain adding the default trace directory.
697 static int add_uri_to_consumer(struct consumer_output
*consumer
,
698 struct lttng_uri
*uri
, enum lttng_domain_type domain
,
699 const char *session_name
)
702 const char *default_trace_dir
;
706 if (consumer
== NULL
) {
707 DBG("No consumer detected. Don't add URI. Stopping.");
708 ret
= LTTNG_ERR_NO_CONSUMER
;
713 case LTTNG_DOMAIN_KERNEL
:
714 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
716 case LTTNG_DOMAIN_UST
:
717 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
721 * This case is possible is we try to add the URI to the global tracing
722 * session consumer object which in this case there is no subdir.
724 default_trace_dir
= "";
727 switch (uri
->dtype
) {
730 DBG2("Setting network URI to consumer");
732 if (consumer
->type
== CONSUMER_DST_NET
) {
733 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
734 consumer
->dst
.net
.control_isset
) ||
735 (uri
->stype
== LTTNG_STREAM_DATA
&&
736 consumer
->dst
.net
.data_isset
)) {
737 ret
= LTTNG_ERR_URL_EXIST
;
741 memset(&consumer
->dst
.net
, 0, sizeof(consumer
->dst
.net
));
744 consumer
->type
= CONSUMER_DST_NET
;
746 /* Set URI into consumer output object */
747 ret
= consumer_set_network_uri(consumer
, uri
);
751 } else if (ret
== 1) {
753 * URI was the same in the consumer so we do not append the subdir
754 * again so to not duplicate output dir.
760 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
761 ret
= consumer_set_subdir(consumer
, session_name
);
763 ret
= LTTNG_ERR_FATAL
;
768 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
769 /* On a new subdir, reappend the default trace dir. */
770 strncat(consumer
->subdir
, default_trace_dir
,
771 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
772 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
777 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
778 memset(consumer
->dst
.trace_path
, 0,
779 sizeof(consumer
->dst
.trace_path
));
780 /* Explicit length checks for strcpy and strcat. */
781 if (strlen(uri
->dst
.path
) + strlen(default_trace_dir
)
782 >= sizeof(consumer
->dst
.trace_path
)) {
783 ret
= LTTNG_ERR_FATAL
;
786 strcpy(consumer
->dst
.trace_path
, uri
->dst
.path
);
787 /* Append default trace dir */
788 strcat(consumer
->dst
.trace_path
, default_trace_dir
);
789 /* Flag consumer as local. */
790 consumer
->type
= CONSUMER_DST_LOCAL
;
801 * Init tracing by creating trace directory and sending fds kernel consumer.
803 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
806 struct lttng_ht_iter iter
;
807 struct consumer_socket
*socket
;
813 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
814 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
816 pthread_mutex_lock(socket
->lock
);
817 ret
= kernel_consumer_send_session(socket
, session
);
818 pthread_mutex_unlock(socket
->lock
);
820 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
832 * Create a socket to the relayd using the URI.
834 * On success, the relayd_sock pointer is set to the created socket.
835 * Else, it's stays untouched and a lttcomm error code is returned.
837 static int create_connect_relayd(struct lttng_uri
*uri
,
838 struct lttcomm_relayd_sock
**relayd_sock
,
839 struct consumer_output
*consumer
)
842 struct lttcomm_relayd_sock
*rsock
;
844 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
845 RELAYD_VERSION_COMM_MINOR
);
847 ret
= LTTNG_ERR_FATAL
;
852 * Connect to relayd so we can proceed with a session creation. This call
853 * can possibly block for an arbitrary amount of time to set the health
854 * state to be in poll execution.
857 ret
= relayd_connect(rsock
);
860 ERR("Unable to reach lttng-relayd");
861 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
865 /* Create socket for control stream. */
866 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
867 DBG3("Creating relayd stream socket from URI");
869 /* Check relayd version */
870 ret
= relayd_version_check(rsock
);
872 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
875 consumer
->relay_major_version
= rsock
->major
;
876 consumer
->relay_minor_version
= rsock
->minor
;
877 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
878 DBG3("Creating relayd data socket from URI");
880 /* Command is not valid */
881 ERR("Relayd invalid stream type: %d", uri
->stype
);
882 ret
= LTTNG_ERR_INVALID
;
886 *relayd_sock
= rsock
;
891 /* The returned value is not useful since we are on an error path. */
892 (void) relayd_close(rsock
);
900 * Connect to the relayd using URI and send the socket to the right consumer.
902 static int send_consumer_relayd_socket(enum lttng_domain_type domain
,
903 unsigned int session_id
, struct lttng_uri
*relayd_uri
,
904 struct consumer_output
*consumer
,
905 struct consumer_socket
*consumer_sock
,
906 char *session_name
, char *hostname
, int session_live_timer
)
909 struct lttcomm_relayd_sock
*rsock
= NULL
;
911 /* Connect to relayd and make version check if uri is the control. */
912 ret
= create_connect_relayd(relayd_uri
, &rsock
, consumer
);
913 if (ret
!= LTTNG_OK
) {
918 /* Set the network sequence index if not set. */
919 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
920 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
922 * Increment net_seq_idx because we are about to transfer the
923 * new relayd socket to the consumer.
924 * Assign unique key so the consumer can match streams.
926 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
927 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
930 /* Send relayd socket to consumer. */
931 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
932 relayd_uri
->stype
, session_id
,
933 session_name
, hostname
, session_live_timer
);
935 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
939 /* Flag that the corresponding socket was sent. */
940 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
941 consumer_sock
->control_sock_sent
= 1;
942 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
943 consumer_sock
->data_sock_sent
= 1;
949 * Close socket which was dup on the consumer side. The session daemon does
950 * NOT keep track of the relayd socket(s) once transfer to the consumer.
954 (void) relayd_close(rsock
);
958 if (ret
!= LTTNG_OK
) {
960 * The consumer output for this session should not be used anymore
961 * since the relayd connection failed thus making any tracing or/and
962 * streaming not usable.
964 consumer
->enabled
= 0;
970 * Send both relayd sockets to a specific consumer and domain. This is a
971 * helper function to facilitate sending the information to the consumer for a
974 static int send_consumer_relayd_sockets(enum lttng_domain_type domain
,
975 unsigned int session_id
, struct consumer_output
*consumer
,
976 struct consumer_socket
*sock
, char *session_name
,
977 char *hostname
, int session_live_timer
)
984 /* Sending control relayd socket. */
985 if (!sock
->control_sock_sent
) {
986 ret
= send_consumer_relayd_socket(domain
, session_id
,
987 &consumer
->dst
.net
.control
, consumer
, sock
,
988 session_name
, hostname
, session_live_timer
);
989 if (ret
!= LTTNG_OK
) {
994 /* Sending data relayd socket. */
995 if (!sock
->data_sock_sent
) {
996 ret
= send_consumer_relayd_socket(domain
, session_id
,
997 &consumer
->dst
.net
.data
, consumer
, sock
,
998 session_name
, hostname
, session_live_timer
);
999 if (ret
!= LTTNG_OK
) {
1009 * Setup relayd connections for a tracing session. First creates the socket to
1010 * the relayd and send them to the right domain consumer. Consumer type MUST be
1013 int cmd_setup_relayd(struct ltt_session
*session
)
1016 struct ltt_ust_session
*usess
;
1017 struct ltt_kernel_session
*ksess
;
1018 struct consumer_socket
*socket
;
1019 struct lttng_ht_iter iter
;
1023 usess
= session
->ust_session
;
1024 ksess
= session
->kernel_session
;
1026 DBG("Setting relayd for session %s", session
->name
);
1030 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
1031 && usess
->consumer
->enabled
) {
1032 /* For each consumer socket, send relayd sockets */
1033 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
1034 socket
, node
.node
) {
1035 pthread_mutex_lock(socket
->lock
);
1036 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
1037 usess
->consumer
, socket
,
1038 session
->name
, session
->hostname
,
1039 session
->live_timer
);
1040 pthread_mutex_unlock(socket
->lock
);
1041 if (ret
!= LTTNG_OK
) {
1044 /* Session is now ready for network streaming. */
1045 session
->net_handle
= 1;
1047 session
->consumer
->relay_major_version
=
1048 usess
->consumer
->relay_major_version
;
1049 session
->consumer
->relay_minor_version
=
1050 usess
->consumer
->relay_minor_version
;
1053 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
1054 && ksess
->consumer
->enabled
) {
1055 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
1056 socket
, node
.node
) {
1057 pthread_mutex_lock(socket
->lock
);
1058 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
1059 ksess
->consumer
, socket
,
1060 session
->name
, session
->hostname
,
1061 session
->live_timer
);
1062 pthread_mutex_unlock(socket
->lock
);
1063 if (ret
!= LTTNG_OK
) {
1066 /* Session is now ready for network streaming. */
1067 session
->net_handle
= 1;
1069 session
->consumer
->relay_major_version
=
1070 ksess
->consumer
->relay_major_version
;
1071 session
->consumer
->relay_minor_version
=
1072 ksess
->consumer
->relay_minor_version
;
1081 * Start a kernel session by opening all necessary streams.
1083 static int start_kernel_session(struct ltt_kernel_session
*ksess
, int wpipe
)
1086 struct ltt_kernel_channel
*kchan
;
1088 /* Open kernel metadata */
1089 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
1090 ret
= kernel_open_metadata(ksess
);
1092 ret
= LTTNG_ERR_KERN_META_FAIL
;
1097 /* Open kernel metadata stream */
1098 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
1099 ret
= kernel_open_metadata_stream(ksess
);
1101 ERR("Kernel create metadata stream failed");
1102 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1107 /* For each channel */
1108 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1109 if (kchan
->stream_count
== 0) {
1110 ret
= kernel_open_channel_stream(kchan
);
1112 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1115 /* Update the stream global counter */
1116 ksess
->stream_count_global
+= ret
;
1120 /* Setup kernel consumer socket and send fds to it */
1121 ret
= init_kernel_tracing(ksess
);
1123 ret
= LTTNG_ERR_KERN_START_FAIL
;
1127 /* This start the kernel tracing */
1128 ret
= kernel_start_session(ksess
);
1130 ret
= LTTNG_ERR_KERN_START_FAIL
;
1134 /* Quiescent wait after starting trace */
1135 kernel_wait_quiescent(kernel_tracer_fd
);
1146 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1148 int cmd_disable_channel(struct ltt_session
*session
,
1149 enum lttng_domain_type domain
, char *channel_name
)
1152 struct ltt_ust_session
*usess
;
1154 usess
= session
->ust_session
;
1159 case LTTNG_DOMAIN_KERNEL
:
1161 ret
= channel_kernel_disable(session
->kernel_session
,
1163 if (ret
!= LTTNG_OK
) {
1167 kernel_wait_quiescent(kernel_tracer_fd
);
1170 case LTTNG_DOMAIN_UST
:
1172 struct ltt_ust_channel
*uchan
;
1173 struct lttng_ht
*chan_ht
;
1175 chan_ht
= usess
->domain_global
.channels
;
1177 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
1178 if (uchan
== NULL
) {
1179 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1183 ret
= channel_ust_disable(usess
, uchan
);
1184 if (ret
!= LTTNG_OK
) {
1190 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1202 * Command LTTNG_TRACK_PID processed by the client thread.
1204 * Called with session lock held.
1206 int cmd_track_pid(struct ltt_session
*session
, enum lttng_domain_type domain
,
1214 case LTTNG_DOMAIN_KERNEL
:
1216 struct ltt_kernel_session
*ksess
;
1218 ksess
= session
->kernel_session
;
1220 ret
= kernel_track_pid(ksess
, pid
);
1221 if (ret
!= LTTNG_OK
) {
1225 kernel_wait_quiescent(kernel_tracer_fd
);
1228 case LTTNG_DOMAIN_UST
:
1230 struct ltt_ust_session
*usess
;
1232 usess
= session
->ust_session
;
1234 ret
= trace_ust_track_pid(usess
, pid
);
1235 if (ret
!= LTTNG_OK
) {
1241 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1253 * Command LTTNG_UNTRACK_PID processed by the client thread.
1255 * Called with session lock held.
1257 int cmd_untrack_pid(struct ltt_session
*session
, enum lttng_domain_type domain
,
1265 case LTTNG_DOMAIN_KERNEL
:
1267 struct ltt_kernel_session
*ksess
;
1269 ksess
= session
->kernel_session
;
1271 ret
= kernel_untrack_pid(ksess
, pid
);
1272 if (ret
!= LTTNG_OK
) {
1276 kernel_wait_quiescent(kernel_tracer_fd
);
1279 case LTTNG_DOMAIN_UST
:
1281 struct ltt_ust_session
*usess
;
1283 usess
= session
->ust_session
;
1285 ret
= trace_ust_untrack_pid(usess
, pid
);
1286 if (ret
!= LTTNG_OK
) {
1292 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1304 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1306 * The wpipe arguments is used as a notifier for the kernel thread.
1308 int cmd_enable_channel(struct ltt_session
*session
,
1309 struct lttng_domain
*domain
, struct lttng_channel
*attr
, int wpipe
)
1312 struct ltt_ust_session
*usess
= session
->ust_session
;
1313 struct lttng_ht
*chan_ht
;
1320 len
= lttng_strnlen(attr
->name
, sizeof(attr
->name
));
1322 /* Validate channel name */
1323 if (attr
->name
[0] == '.' ||
1324 memchr(attr
->name
, '/', len
) != NULL
) {
1325 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1329 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
1334 * Don't try to enable a channel if the session has been started at
1335 * some point in time before. The tracer does not allow it.
1337 if (session
->has_been_started
) {
1338 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1343 * If the session is a live session, remove the switch timer, the
1344 * live timer does the same thing but sends also synchronisation
1345 * beacons for inactive streams.
1347 if (session
->live_timer
> 0) {
1348 attr
->attr
.live_timer_interval
= session
->live_timer
;
1349 attr
->attr
.switch_timer_interval
= 0;
1352 switch (domain
->type
) {
1353 case LTTNG_DOMAIN_KERNEL
:
1355 struct ltt_kernel_channel
*kchan
;
1357 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
1358 session
->kernel_session
);
1359 if (kchan
== NULL
) {
1360 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
1361 if (attr
->name
[0] != '\0') {
1362 session
->kernel_session
->has_non_default_channel
= 1;
1365 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1368 if (ret
!= LTTNG_OK
) {
1372 kernel_wait_quiescent(kernel_tracer_fd
);
1375 case LTTNG_DOMAIN_UST
:
1376 case LTTNG_DOMAIN_JUL
:
1377 case LTTNG_DOMAIN_LOG4J
:
1378 case LTTNG_DOMAIN_PYTHON
:
1380 struct ltt_ust_channel
*uchan
;
1385 * Current agent implementation limitations force us to allow
1386 * only one channel at once in "agent" subdomains. Each
1387 * subdomain has a default channel name which must be strictly
1390 if (domain
->type
== LTTNG_DOMAIN_JUL
) {
1391 if (strncmp(attr
->name
, DEFAULT_JUL_CHANNEL_NAME
,
1392 LTTNG_SYMBOL_NAME_LEN
)) {
1393 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1396 } else if (domain
->type
== LTTNG_DOMAIN_LOG4J
) {
1397 if (strncmp(attr
->name
, DEFAULT_LOG4J_CHANNEL_NAME
,
1398 LTTNG_SYMBOL_NAME_LEN
)) {
1399 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1402 } else if (domain
->type
== LTTNG_DOMAIN_PYTHON
) {
1403 if (strncmp(attr
->name
, DEFAULT_PYTHON_CHANNEL_NAME
,
1404 LTTNG_SYMBOL_NAME_LEN
)) {
1405 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1410 chan_ht
= usess
->domain_global
.channels
;
1412 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
1413 if (uchan
== NULL
) {
1414 ret
= channel_ust_create(usess
, attr
, domain
->buf_type
);
1415 if (attr
->name
[0] != '\0') {
1416 usess
->has_non_default_channel
= 1;
1419 ret
= channel_ust_enable(usess
, uchan
);
1424 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1435 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1437 int cmd_disable_event(struct ltt_session
*session
,
1438 enum lttng_domain_type domain
, char *channel_name
,
1439 struct lttng_event
*event
)
1444 DBG("Disable event command for event \'%s\'", event
->name
);
1446 event_name
= event
->name
;
1448 /* Error out on unhandled search criteria */
1449 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1450 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1451 ret
= LTTNG_ERR_UNK
;
1458 case LTTNG_DOMAIN_KERNEL
:
1460 struct ltt_kernel_channel
*kchan
;
1461 struct ltt_kernel_session
*ksess
;
1463 ksess
= session
->kernel_session
;
1466 * If a non-default channel has been created in the
1467 * session, explicitely require that -c chan_name needs
1470 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1471 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1475 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1476 if (kchan
== NULL
) {
1477 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1481 switch (event
->type
) {
1482 case LTTNG_EVENT_ALL
:
1483 case LTTNG_EVENT_TRACEPOINT
:
1484 case LTTNG_EVENT_SYSCALL
:
1485 case LTTNG_EVENT_PROBE
:
1486 case LTTNG_EVENT_FUNCTION
:
1487 case LTTNG_EVENT_FUNCTION_ENTRY
:/* fall-through */
1488 if (event_name
[0] == '\0') {
1489 ret
= event_kernel_disable_event(kchan
,
1492 ret
= event_kernel_disable_event(kchan
,
1493 event_name
, event
->type
);
1495 if (ret
!= LTTNG_OK
) {
1500 ret
= LTTNG_ERR_UNK
;
1504 kernel_wait_quiescent(kernel_tracer_fd
);
1507 case LTTNG_DOMAIN_UST
:
1509 struct ltt_ust_channel
*uchan
;
1510 struct ltt_ust_session
*usess
;
1512 usess
= session
->ust_session
;
1514 if (validate_ust_event_name(event_name
)) {
1515 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1520 * If a non-default channel has been created in the
1521 * session, explicitly require that -c chan_name needs
1524 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1525 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1529 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1531 if (uchan
== NULL
) {
1532 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1536 switch (event
->type
) {
1537 case LTTNG_EVENT_ALL
:
1539 * An empty event name means that everything
1540 * should be disabled.
1542 if (event
->name
[0] == '\0') {
1543 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1545 ret
= event_ust_disable_tracepoint(usess
, uchan
,
1548 if (ret
!= LTTNG_OK
) {
1553 ret
= LTTNG_ERR_UNK
;
1557 DBG3("Disable UST event %s in channel %s completed", event_name
,
1561 case LTTNG_DOMAIN_LOG4J
:
1562 case LTTNG_DOMAIN_JUL
:
1563 case LTTNG_DOMAIN_PYTHON
:
1566 struct ltt_ust_session
*usess
= session
->ust_session
;
1570 switch (event
->type
) {
1571 case LTTNG_EVENT_ALL
:
1574 ret
= LTTNG_ERR_UNK
;
1578 agt
= trace_ust_find_agent(usess
, domain
);
1580 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1584 * An empty event name means that everything
1585 * should be disabled.
1587 if (event
->name
[0] == '\0') {
1588 ret
= event_agent_disable_all(usess
, agt
);
1590 ret
= event_agent_disable(usess
, agt
, event_name
);
1592 if (ret
!= LTTNG_OK
) {
1599 ret
= LTTNG_ERR_UND
;
1612 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1614 int cmd_add_context(struct ltt_session
*session
, enum lttng_domain_type domain
,
1615 char *channel_name
, struct lttng_event_context
*ctx
, int kwpipe
)
1617 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1618 char *app_ctx_provider_name
= NULL
, *app_ctx_name
= NULL
;
1620 if (ctx
->ctx
== LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
1621 app_ctx_provider_name
= ctx
->u
.app_ctx
.provider_name
;
1622 app_ctx_name
= ctx
->u
.app_ctx
.ctx_name
;
1626 case LTTNG_DOMAIN_KERNEL
:
1627 assert(session
->kernel_session
);
1629 if (session
->kernel_session
->channel_count
== 0) {
1630 /* Create default channel */
1631 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1632 if (ret
!= LTTNG_OK
) {
1635 chan_kern_created
= 1;
1637 /* Add kernel context to kernel tracer */
1638 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1639 if (ret
!= LTTNG_OK
) {
1643 case LTTNG_DOMAIN_JUL
:
1644 case LTTNG_DOMAIN_LOG4J
:
1647 * Validate channel name.
1648 * If no channel name is given and the domain is JUL or LOG4J,
1649 * set it to the appropriate domain-specific channel name. If
1650 * a name is provided but does not match the expexted channel
1651 * name, return an error.
1653 if (domain
== LTTNG_DOMAIN_JUL
&& *channel_name
&&
1654 strcmp(channel_name
,
1655 DEFAULT_JUL_CHANNEL_NAME
)) {
1656 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1658 } else if (domain
== LTTNG_DOMAIN_LOG4J
&& *channel_name
&&
1659 strcmp(channel_name
,
1660 DEFAULT_LOG4J_CHANNEL_NAME
)) {
1661 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1664 /* break is _not_ missing here. */
1666 case LTTNG_DOMAIN_UST
:
1668 struct ltt_ust_session
*usess
= session
->ust_session
;
1669 unsigned int chan_count
;
1673 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1674 if (chan_count
== 0) {
1675 struct lttng_channel
*attr
;
1676 /* Create default channel */
1677 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1679 ret
= LTTNG_ERR_FATAL
;
1683 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1684 if (ret
!= LTTNG_OK
) {
1688 channel_attr_destroy(attr
);
1689 chan_ust_created
= 1;
1692 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1693 free(app_ctx_provider_name
);
1695 app_ctx_name
= NULL
;
1696 app_ctx_provider_name
= NULL
;
1697 if (ret
!= LTTNG_OK
) {
1703 ret
= LTTNG_ERR_UND
;
1711 if (chan_kern_created
) {
1712 struct ltt_kernel_channel
*kchan
=
1713 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1714 session
->kernel_session
);
1715 /* Created previously, this should NOT fail. */
1717 kernel_destroy_channel(kchan
);
1720 if (chan_ust_created
) {
1721 struct ltt_ust_channel
*uchan
=
1722 trace_ust_find_channel_by_name(
1723 session
->ust_session
->domain_global
.channels
,
1724 DEFAULT_CHANNEL_NAME
);
1725 /* Created previously, this should NOT fail. */
1727 /* Remove from the channel list of the session. */
1728 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1730 trace_ust_destroy_channel(uchan
);
1733 free(app_ctx_provider_name
);
1738 static inline bool name_starts_with(const char *name
, const char *prefix
)
1740 const size_t max_cmp_len
= min(strlen(prefix
), LTTNG_SYMBOL_NAME_LEN
);
1742 return !strncmp(name
, prefix
, max_cmp_len
);
1745 /* Perform userspace-specific event name validation */
1746 static int validate_ust_event_name(const char *name
)
1756 * Check name against all internal UST event component namespaces used
1759 if (name_starts_with(name
, DEFAULT_JUL_EVENT_COMPONENT
) ||
1760 name_starts_with(name
, DEFAULT_LOG4J_EVENT_COMPONENT
) ||
1761 name_starts_with(name
, DEFAULT_PYTHON_EVENT_COMPONENT
)) {
1770 * Internal version of cmd_enable_event() with a supplemental
1771 * "internal_event" flag which is used to enable internal events which should
1772 * be hidden from clients. Such events are used in the agent implementation to
1773 * enable the events through which all "agent" events are funeled.
1775 static int _cmd_enable_event(struct ltt_session
*session
,
1776 struct lttng_domain
*domain
,
1777 char *channel_name
, struct lttng_event
*event
,
1778 char *filter_expression
,
1779 struct lttng_filter_bytecode
*filter
,
1780 struct lttng_event_exclusion
*exclusion
,
1781 int wpipe
, bool internal_event
)
1783 int ret
= 0, channel_created
= 0;
1784 struct lttng_channel
*attr
= NULL
;
1788 assert(channel_name
);
1790 /* If we have a filter, we must have its filter expression */
1791 assert(!(!!filter_expression
^ !!filter
));
1793 /* Normalize event name as a globbing pattern */
1794 strutils_normalize_star_glob_pattern(event
->name
);
1796 /* Normalize exclusion names as globbing patterns */
1800 for (i
= 0; i
< exclusion
->count
; i
++) {
1801 char *name
= LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
1803 strutils_normalize_star_glob_pattern(name
);
1807 DBG("Enable event command for event \'%s\'", event
->name
);
1811 switch (domain
->type
) {
1812 case LTTNG_DOMAIN_KERNEL
:
1814 struct ltt_kernel_channel
*kchan
;
1817 * If a non-default channel has been created in the
1818 * session, explicitely require that -c chan_name needs
1821 if (session
->kernel_session
->has_non_default_channel
1822 && channel_name
[0] == '\0') {
1823 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1827 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1828 session
->kernel_session
);
1829 if (kchan
== NULL
) {
1830 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1831 LTTNG_BUFFER_GLOBAL
);
1833 ret
= LTTNG_ERR_FATAL
;
1836 if (lttng_strncpy(attr
->name
, channel_name
,
1837 sizeof(attr
->name
))) {
1838 ret
= LTTNG_ERR_INVALID
;
1842 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1843 if (ret
!= LTTNG_OK
) {
1846 channel_created
= 1;
1849 /* Get the newly created kernel channel pointer */
1850 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1851 session
->kernel_session
);
1852 if (kchan
== NULL
) {
1853 /* This sould not happen... */
1854 ret
= LTTNG_ERR_FATAL
;
1858 switch (event
->type
) {
1859 case LTTNG_EVENT_ALL
:
1861 char *filter_expression_a
= NULL
;
1862 struct lttng_filter_bytecode
*filter_a
= NULL
;
1865 * We need to duplicate filter_expression and filter,
1866 * because ownership is passed to first enable
1869 if (filter_expression
) {
1870 filter_expression_a
= strdup(filter_expression
);
1871 if (!filter_expression_a
) {
1872 ret
= LTTNG_ERR_FATAL
;
1877 filter_a
= zmalloc(sizeof(*filter_a
) + filter
->len
);
1879 free(filter_expression_a
);
1880 ret
= LTTNG_ERR_FATAL
;
1883 memcpy(filter_a
, filter
, sizeof(*filter_a
) + filter
->len
);
1885 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
1886 ret
= event_kernel_enable_event(kchan
, event
,
1887 filter_expression
, filter
);
1888 /* We have passed ownership */
1889 filter_expression
= NULL
;
1891 if (ret
!= LTTNG_OK
) {
1892 if (channel_created
) {
1893 /* Let's not leak a useless channel. */
1894 kernel_destroy_channel(kchan
);
1896 free(filter_expression_a
);
1900 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
1901 ret
= event_kernel_enable_event(kchan
, event
,
1902 filter_expression_a
, filter_a
);
1903 /* We have passed ownership */
1904 filter_expression_a
= NULL
;
1906 if (ret
!= LTTNG_OK
) {
1911 case LTTNG_EVENT_PROBE
:
1912 case LTTNG_EVENT_FUNCTION
:
1913 case LTTNG_EVENT_FUNCTION_ENTRY
:
1914 case LTTNG_EVENT_TRACEPOINT
:
1915 ret
= event_kernel_enable_event(kchan
, event
,
1916 filter_expression
, filter
);
1917 /* We have passed ownership */
1918 filter_expression
= NULL
;
1920 if (ret
!= LTTNG_OK
) {
1921 if (channel_created
) {
1922 /* Let's not leak a useless channel. */
1923 kernel_destroy_channel(kchan
);
1928 case LTTNG_EVENT_SYSCALL
:
1929 ret
= event_kernel_enable_event(kchan
, event
,
1930 filter_expression
, filter
);
1931 /* We have passed ownership */
1932 filter_expression
= NULL
;
1934 if (ret
!= LTTNG_OK
) {
1939 ret
= LTTNG_ERR_UNK
;
1943 kernel_wait_quiescent(kernel_tracer_fd
);
1946 case LTTNG_DOMAIN_UST
:
1948 struct ltt_ust_channel
*uchan
;
1949 struct ltt_ust_session
*usess
= session
->ust_session
;
1954 * If a non-default channel has been created in the
1955 * session, explicitely require that -c chan_name needs
1958 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1959 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1963 /* Get channel from global UST domain */
1964 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1966 if (uchan
== NULL
) {
1967 /* Create default channel */
1968 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
1969 usess
->buffer_type
);
1971 ret
= LTTNG_ERR_FATAL
;
1974 if (lttng_strncpy(attr
->name
, channel_name
,
1975 sizeof(attr
->name
))) {
1976 ret
= LTTNG_ERR_INVALID
;
1980 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1981 if (ret
!= LTTNG_OK
) {
1985 /* Get the newly created channel reference back */
1986 uchan
= trace_ust_find_channel_by_name(
1987 usess
->domain_global
.channels
, channel_name
);
1991 if (uchan
->domain
!= LTTNG_DOMAIN_UST
&& !internal_event
) {
1993 * Don't allow users to add UST events to channels which
1994 * are assigned to a userspace subdomain (JUL, Log4J,
1997 ret
= LTTNG_ERR_INVALID_CHANNEL_DOMAIN
;
2001 if (!internal_event
) {
2003 * Ensure the event name is not reserved for internal
2006 ret
= validate_ust_event_name(event
->name
);
2008 WARN("Userspace event name %s failed validation.",
2010 event
->name
: "NULL");
2011 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
2016 /* At this point, the session and channel exist on the tracer */
2017 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
2018 filter_expression
, filter
, exclusion
,
2020 /* We have passed ownership */
2021 filter_expression
= NULL
;
2024 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2025 goto already_enabled
;
2026 } else if (ret
!= LTTNG_OK
) {
2031 case LTTNG_DOMAIN_LOG4J
:
2032 case LTTNG_DOMAIN_JUL
:
2033 case LTTNG_DOMAIN_PYTHON
:
2035 const char *default_event_name
, *default_chan_name
;
2037 struct lttng_event uevent
;
2038 struct lttng_domain tmp_dom
;
2039 struct ltt_ust_session
*usess
= session
->ust_session
;
2043 agt
= trace_ust_find_agent(usess
, domain
->type
);
2045 agt
= agent_create(domain
->type
);
2047 ret
= LTTNG_ERR_NOMEM
;
2050 agent_add(agt
, usess
->agents
);
2053 /* Create the default tracepoint. */
2054 memset(&uevent
, 0, sizeof(uevent
));
2055 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
2056 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2057 default_event_name
= event_get_default_agent_ust_name(
2059 if (!default_event_name
) {
2060 ret
= LTTNG_ERR_FATAL
;
2063 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
2064 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
2067 * The domain type is changed because we are about to enable the
2068 * default channel and event for the JUL domain that are hardcoded.
2069 * This happens in the UST domain.
2071 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
2072 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
2074 switch (domain
->type
) {
2075 case LTTNG_DOMAIN_LOG4J
:
2076 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
2078 case LTTNG_DOMAIN_JUL
:
2079 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
2081 case LTTNG_DOMAIN_PYTHON
:
2082 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
2085 /* The switch/case we are in makes this impossible */
2090 char *filter_expression_copy
= NULL
;
2091 struct lttng_filter_bytecode
*filter_copy
= NULL
;
2094 const size_t filter_size
= sizeof(
2095 struct lttng_filter_bytecode
)
2098 filter_copy
= zmalloc(filter_size
);
2100 ret
= LTTNG_ERR_NOMEM
;
2103 memcpy(filter_copy
, filter
, filter_size
);
2105 filter_expression_copy
=
2106 strdup(filter_expression
);
2107 if (!filter_expression
) {
2108 ret
= LTTNG_ERR_NOMEM
;
2111 if (!filter_expression_copy
|| !filter_copy
) {
2112 free(filter_expression_copy
);
2118 ret
= cmd_enable_event_internal(session
, &tmp_dom
,
2119 (char *) default_chan_name
,
2120 &uevent
, filter_expression_copy
,
2121 filter_copy
, NULL
, wpipe
);
2124 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2125 goto already_enabled
;
2126 } else if (ret
!= LTTNG_OK
) {
2130 /* The wild card * means that everything should be enabled. */
2131 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
2132 ret
= event_agent_enable_all(usess
, agt
, event
, filter
,
2135 ret
= event_agent_enable(usess
, agt
, event
, filter
,
2139 filter_expression
= NULL
;
2140 if (ret
!= LTTNG_OK
) {
2147 ret
= LTTNG_ERR_UND
;
2155 free(filter_expression
);
2158 channel_attr_destroy(attr
);
2164 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2165 * We own filter, exclusion, and filter_expression.
2167 int cmd_enable_event(struct ltt_session
*session
, struct lttng_domain
*domain
,
2168 char *channel_name
, struct lttng_event
*event
,
2169 char *filter_expression
,
2170 struct lttng_filter_bytecode
*filter
,
2171 struct lttng_event_exclusion
*exclusion
,
2174 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2175 filter_expression
, filter
, exclusion
, wpipe
, false);
2179 * Enable an event which is internal to LTTng. An internal should
2180 * never be made visible to clients and are immune to checks such as
2183 static int cmd_enable_event_internal(struct ltt_session
*session
,
2184 struct lttng_domain
*domain
,
2185 char *channel_name
, struct lttng_event
*event
,
2186 char *filter_expression
,
2187 struct lttng_filter_bytecode
*filter
,
2188 struct lttng_event_exclusion
*exclusion
,
2191 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2192 filter_expression
, filter
, exclusion
, wpipe
, true);
2196 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2198 ssize_t
cmd_list_tracepoints(enum lttng_domain_type domain
,
2199 struct lttng_event
**events
)
2202 ssize_t nb_events
= 0;
2205 case LTTNG_DOMAIN_KERNEL
:
2206 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
2207 if (nb_events
< 0) {
2208 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2212 case LTTNG_DOMAIN_UST
:
2213 nb_events
= ust_app_list_events(events
);
2214 if (nb_events
< 0) {
2215 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2219 case LTTNG_DOMAIN_LOG4J
:
2220 case LTTNG_DOMAIN_JUL
:
2221 case LTTNG_DOMAIN_PYTHON
:
2222 nb_events
= agent_list_events(events
, domain
);
2223 if (nb_events
< 0) {
2224 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2229 ret
= LTTNG_ERR_UND
;
2236 /* Return negative value to differentiate return code */
2241 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2243 ssize_t
cmd_list_tracepoint_fields(enum lttng_domain_type domain
,
2244 struct lttng_event_field
**fields
)
2247 ssize_t nb_fields
= 0;
2250 case LTTNG_DOMAIN_UST
:
2251 nb_fields
= ust_app_list_event_fields(fields
);
2252 if (nb_fields
< 0) {
2253 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2257 case LTTNG_DOMAIN_KERNEL
:
2258 default: /* fall-through */
2259 ret
= LTTNG_ERR_UND
;
2266 /* Return negative value to differentiate return code */
2270 ssize_t
cmd_list_syscalls(struct lttng_event
**events
)
2272 return syscall_table_list(events
);
2276 * Command LTTNG_LIST_TRACKER_PIDS processed by the client thread.
2278 * Called with session lock held.
2280 ssize_t
cmd_list_tracker_pids(struct ltt_session
*session
,
2281 enum lttng_domain_type domain
, int32_t **pids
)
2284 ssize_t nr_pids
= 0;
2287 case LTTNG_DOMAIN_KERNEL
:
2289 struct ltt_kernel_session
*ksess
;
2291 ksess
= session
->kernel_session
;
2292 nr_pids
= kernel_list_tracker_pids(ksess
, pids
);
2294 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2299 case LTTNG_DOMAIN_UST
:
2301 struct ltt_ust_session
*usess
;
2303 usess
= session
->ust_session
;
2304 nr_pids
= trace_ust_list_tracker_pids(usess
, pids
);
2306 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2311 case LTTNG_DOMAIN_LOG4J
:
2312 case LTTNG_DOMAIN_JUL
:
2313 case LTTNG_DOMAIN_PYTHON
:
2315 ret
= LTTNG_ERR_UND
;
2322 /* Return negative value to differentiate return code */
2327 * Command LTTNG_START_TRACE processed by the client thread.
2329 * Called with session mutex held.
2331 int cmd_start_trace(struct ltt_session
*session
)
2334 unsigned long nb_chan
= 0;
2335 struct ltt_kernel_session
*ksession
;
2336 struct ltt_ust_session
*usess
;
2340 /* Ease our life a bit ;) */
2341 ksession
= session
->kernel_session
;
2342 usess
= session
->ust_session
;
2344 /* Is the session already started? */
2345 if (session
->active
) {
2346 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2351 * Starting a session without channel is useless since after that it's not
2352 * possible to enable channel thus inform the client.
2354 if (usess
&& usess
->domain_global
.channels
) {
2355 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
2358 nb_chan
+= ksession
->channel_count
;
2361 ret
= LTTNG_ERR_NO_CHANNEL
;
2365 /* Kernel tracing */
2366 if (ksession
!= NULL
) {
2367 ret
= start_kernel_session(ksession
, kernel_tracer_fd
);
2368 if (ret
!= LTTNG_OK
) {
2373 /* Flag session that trace should start automatically */
2376 * Even though the start trace might fail, flag this session active so
2377 * other application coming in are started by default.
2381 ret
= ust_app_start_trace_all(usess
);
2383 ret
= LTTNG_ERR_UST_START_FAIL
;
2388 /* Flag this after a successful start. */
2389 session
->has_been_started
= 1;
2390 session
->active
= 1;
2399 * Command LTTNG_STOP_TRACE processed by the client thread.
2401 int cmd_stop_trace(struct ltt_session
*session
)
2404 struct ltt_kernel_channel
*kchan
;
2405 struct ltt_kernel_session
*ksession
;
2406 struct ltt_ust_session
*usess
;
2411 ksession
= session
->kernel_session
;
2412 usess
= session
->ust_session
;
2414 /* Session is not active. Skip everythong and inform the client. */
2415 if (!session
->active
) {
2416 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2421 if (ksession
&& ksession
->active
) {
2422 DBG("Stop kernel tracing");
2424 ret
= kernel_stop_session(ksession
);
2426 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
2430 kernel_wait_quiescent(kernel_tracer_fd
);
2432 /* Flush metadata after stopping (if exists) */
2433 if (ksession
->metadata_stream_fd
>= 0) {
2434 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
2436 ERR("Kernel metadata flush failed");
2440 /* Flush all buffers after stopping */
2441 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
2442 ret
= kernel_flush_buffer(kchan
);
2444 ERR("Kernel flush buffer error");
2448 ksession
->active
= 0;
2451 if (usess
&& usess
->active
) {
2453 * Even though the stop trace might fail, flag this session inactive so
2454 * other application coming in are not started by default.
2458 ret
= ust_app_stop_trace_all(usess
);
2460 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2465 /* Flag inactive after a successful stop. */
2466 session
->active
= 0;
2474 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2476 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2477 struct lttng_uri
*uris
)
2480 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2481 struct ltt_ust_session
*usess
= session
->ust_session
;
2487 /* Can't set consumer URI if the session is active. */
2488 if (session
->active
) {
2489 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2493 /* Set the "global" consumer URIs */
2494 for (i
= 0; i
< nb_uri
; i
++) {
2495 ret
= add_uri_to_consumer(session
->consumer
,
2496 &uris
[i
], 0, session
->name
);
2497 if (ret
!= LTTNG_OK
) {
2502 /* Set UST session URIs */
2503 if (session
->ust_session
) {
2504 for (i
= 0; i
< nb_uri
; i
++) {
2505 ret
= add_uri_to_consumer(
2506 session
->ust_session
->consumer
,
2507 &uris
[i
], LTTNG_DOMAIN_UST
,
2509 if (ret
!= LTTNG_OK
) {
2515 /* Set kernel session URIs */
2516 if (session
->kernel_session
) {
2517 for (i
= 0; i
< nb_uri
; i
++) {
2518 ret
= add_uri_to_consumer(
2519 session
->kernel_session
->consumer
,
2520 &uris
[i
], LTTNG_DOMAIN_KERNEL
,
2522 if (ret
!= LTTNG_OK
) {
2529 * Make sure to set the session in output mode after we set URI since a
2530 * session can be created without URL (thus flagged in no output mode).
2532 session
->output_traces
= 1;
2534 ksess
->output_traces
= 1;
2538 usess
->output_traces
= 1;
2549 * Command LTTNG_CREATE_SESSION processed by the client thread.
2551 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
2552 size_t nb_uri
, lttng_sock_cred
*creds
, unsigned int live_timer
)
2555 struct ltt_session
*session
;
2561 * Verify if the session already exist
2563 * XXX: There is no need for the session lock list here since the caller
2564 * (process_client_msg) is holding it. We might want to change that so a
2565 * single command does not lock the entire session list.
2567 session
= session_find_by_name(name
);
2568 if (session
!= NULL
) {
2569 ret
= LTTNG_ERR_EXIST_SESS
;
2573 /* Create tracing session in the registry */
2574 ret
= session_create(name
, LTTNG_SOCK_GET_UID_CRED(creds
),
2575 LTTNG_SOCK_GET_GID_CRED(creds
));
2576 if (ret
!= LTTNG_OK
) {
2581 * Get the newly created session pointer back
2583 * XXX: There is no need for the session lock list here since the caller
2584 * (process_client_msg) is holding it. We might want to change that so a
2585 * single command does not lock the entire session list.
2587 session
= session_find_by_name(name
);
2590 session
->live_timer
= live_timer
;
2591 /* Create default consumer output for the session not yet created. */
2592 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
2593 if (session
->consumer
== NULL
) {
2594 ret
= LTTNG_ERR_FATAL
;
2595 goto consumer_error
;
2599 ret
= cmd_set_consumer_uri(session
, nb_uri
, uris
);
2600 if (ret
!= LTTNG_OK
) {
2601 goto consumer_error
;
2603 session
->output_traces
= 1;
2605 session
->output_traces
= 0;
2606 DBG2("Session %s created with no output", session
->name
);
2609 session
->consumer
->enabled
= 1;
2614 session_destroy(session
);
2621 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
2623 int cmd_create_session_snapshot(char *name
, struct lttng_uri
*uris
,
2624 size_t nb_uri
, lttng_sock_cred
*creds
)
2627 struct ltt_session
*session
;
2628 struct snapshot_output
*new_output
= NULL
;
2634 * Create session in no output mode with URIs set to NULL. The uris we've
2635 * received are for a default snapshot output if one.
2637 ret
= cmd_create_session_uri(name
, NULL
, 0, creds
, 0);
2638 if (ret
!= LTTNG_OK
) {
2642 /* Get the newly created session pointer back. This should NEVER fail. */
2643 session
= session_find_by_name(name
);
2646 /* Flag session for snapshot mode. */
2647 session
->snapshot_mode
= 1;
2649 /* Skip snapshot output creation if no URI is given. */
2654 new_output
= snapshot_output_alloc();
2656 ret
= LTTNG_ERR_NOMEM
;
2657 goto error_snapshot_alloc
;
2660 ret
= snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE
, NULL
,
2661 uris
, nb_uri
, session
->consumer
, new_output
, &session
->snapshot
);
2663 if (ret
== -ENOMEM
) {
2664 ret
= LTTNG_ERR_NOMEM
;
2666 ret
= LTTNG_ERR_INVALID
;
2668 goto error_snapshot
;
2672 snapshot_add_output(&session
->snapshot
, new_output
);
2679 snapshot_output_destroy(new_output
);
2680 error_snapshot_alloc
:
2681 session_destroy(session
);
2687 * Command LTTNG_DESTROY_SESSION processed by the client thread.
2689 * Called with session lock held.
2691 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
2694 struct ltt_ust_session
*usess
;
2695 struct ltt_kernel_session
*ksess
;
2700 usess
= session
->ust_session
;
2701 ksess
= session
->kernel_session
;
2703 /* Clean kernel session teardown */
2704 kernel_destroy_session(ksess
);
2706 /* UST session teardown */
2708 /* Close any relayd session */
2709 consumer_output_send_destroy_relayd(usess
->consumer
);
2711 /* Destroy every UST application related to this session. */
2712 ret
= ust_app_destroy_trace_all(usess
);
2714 ERR("Error in ust_app_destroy_trace_all");
2717 /* Clean up the rest. */
2718 trace_ust_destroy_session(usess
);
2722 * Must notify the kernel thread here to update it's poll set in order to
2723 * remove the channel(s)' fd just destroyed.
2725 ret
= notify_thread_pipe(wpipe
);
2727 PERROR("write kernel poll pipe");
2730 ret
= session_destroy(session
);
2736 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2738 int cmd_register_consumer(struct ltt_session
*session
,
2739 enum lttng_domain_type domain
, const char *sock_path
,
2740 struct consumer_data
*cdata
)
2743 struct consumer_socket
*socket
= NULL
;
2750 case LTTNG_DOMAIN_KERNEL
:
2752 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2756 /* Can't register a consumer if there is already one */
2757 if (ksess
->consumer_fds_sent
!= 0) {
2758 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2762 sock
= lttcomm_connect_unix_sock(sock_path
);
2764 ret
= LTTNG_ERR_CONNECT_FAIL
;
2767 cdata
->cmd_sock
= sock
;
2769 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
2770 if (socket
== NULL
) {
2773 PERROR("close register consumer");
2775 cdata
->cmd_sock
= -1;
2776 ret
= LTTNG_ERR_FATAL
;
2780 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
2781 if (socket
->lock
== NULL
) {
2782 PERROR("zmalloc pthread mutex");
2783 ret
= LTTNG_ERR_FATAL
;
2786 pthread_mutex_init(socket
->lock
, NULL
);
2787 socket
->registered
= 1;
2790 consumer_add_socket(socket
, ksess
->consumer
);
2793 pthread_mutex_lock(&cdata
->pid_mutex
);
2795 pthread_mutex_unlock(&cdata
->pid_mutex
);
2800 /* TODO: Userspace tracing */
2801 ret
= LTTNG_ERR_UND
;
2809 consumer_destroy_socket(socket
);
2815 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2817 ssize_t
cmd_list_domains(struct ltt_session
*session
,
2818 struct lttng_domain
**domains
)
2823 struct lttng_ht_iter iter
;
2825 if (session
->kernel_session
!= NULL
) {
2826 DBG3("Listing domains found kernel domain");
2830 if (session
->ust_session
!= NULL
) {
2831 DBG3("Listing domains found UST global domain");
2835 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
2837 if (agt
->being_used
) {
2848 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
2849 if (*domains
== NULL
) {
2850 ret
= LTTNG_ERR_FATAL
;
2854 if (session
->kernel_session
!= NULL
) {
2855 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
2857 /* Kernel session buffer type is always GLOBAL */
2858 (*domains
)[index
].buf_type
= LTTNG_BUFFER_GLOBAL
;
2863 if (session
->ust_session
!= NULL
) {
2864 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
2865 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2869 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
2871 if (agt
->being_used
) {
2872 (*domains
)[index
].type
= agt
->domain
;
2873 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2883 /* Return negative value to differentiate return code */
2889 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2891 ssize_t
cmd_list_channels(enum lttng_domain_type domain
,
2892 struct ltt_session
*session
, struct lttng_channel
**channels
)
2894 ssize_t nb_chan
= 0, payload_size
= 0, ret
;
2897 case LTTNG_DOMAIN_KERNEL
:
2898 if (session
->kernel_session
!= NULL
) {
2899 nb_chan
= session
->kernel_session
->channel_count
;
2901 DBG3("Number of kernel channels %zd", nb_chan
);
2903 ret
= -LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
2907 case LTTNG_DOMAIN_UST
:
2908 if (session
->ust_session
!= NULL
) {
2910 nb_chan
= lttng_ht_get_count(
2911 session
->ust_session
->domain_global
.channels
);
2914 DBG3("Number of UST global channels %zd", nb_chan
);
2916 ret
= -LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2921 ret
= -LTTNG_ERR_UND
;
2926 const size_t channel_size
= sizeof(struct lttng_channel
) +
2927 sizeof(struct lttng_channel_extended
);
2928 struct lttng_channel_extended
*channel_exts
;
2930 payload_size
= nb_chan
* channel_size
;
2931 *channels
= zmalloc(payload_size
);
2932 if (*channels
== NULL
) {
2933 ret
= -LTTNG_ERR_FATAL
;
2937 channel_exts
= ((void *) *channels
) +
2938 (nb_chan
* sizeof(struct lttng_channel
));
2939 list_lttng_channels(domain
, session
, *channels
, channel_exts
);
2950 * Command LTTNG_LIST_EVENTS processed by the client thread.
2952 ssize_t
cmd_list_events(enum lttng_domain_type domain
,
2953 struct ltt_session
*session
, char *channel_name
,
2954 struct lttng_event
**events
, size_t *total_size
)
2957 ssize_t nb_event
= 0;
2960 case LTTNG_DOMAIN_KERNEL
:
2961 if (session
->kernel_session
!= NULL
) {
2962 nb_event
= list_lttng_kernel_events(channel_name
,
2963 session
->kernel_session
, events
,
2967 case LTTNG_DOMAIN_UST
:
2969 if (session
->ust_session
!= NULL
) {
2970 nb_event
= list_lttng_ust_global_events(channel_name
,
2971 &session
->ust_session
->domain_global
, events
,
2976 case LTTNG_DOMAIN_LOG4J
:
2977 case LTTNG_DOMAIN_JUL
:
2978 case LTTNG_DOMAIN_PYTHON
:
2979 if (session
->ust_session
) {
2980 struct lttng_ht_iter iter
;
2984 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
2985 &iter
.iter
, agt
, node
.node
) {
2986 if (agt
->domain
== domain
) {
2987 nb_event
= list_lttng_agent_events(
2997 ret
= LTTNG_ERR_UND
;
3004 /* Return negative value to differentiate return code */
3009 * Using the session list, filled a lttng_session array to send back to the
3010 * client for session listing.
3012 * The session list lock MUST be acquired before calling this function. Use
3013 * session_lock_list() and session_unlock_list().
3015 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
3020 struct ltt_session
*session
;
3021 struct ltt_session_list
*list
= session_get_list();
3023 DBG("Getting all available session for UID %d GID %d",
3026 * Iterate over session list and append data after the control struct in
3029 cds_list_for_each_entry(session
, &list
->head
, list
) {
3031 * Only list the sessions the user can control.
3033 if (!session_access_ok(session
, uid
, gid
)) {
3037 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3038 struct ltt_ust_session
*usess
= session
->ust_session
;
3040 if (session
->consumer
->type
== CONSUMER_DST_NET
||
3041 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
3042 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
3043 ret
= build_network_session_path(sessions
[i
].path
,
3044 sizeof(sessions
[i
].path
), session
);
3046 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
3047 session
->consumer
->dst
.trace_path
);
3050 PERROR("snprintf session path");
3054 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
3055 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
3056 sessions
[i
].enabled
= session
->active
;
3057 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
3058 sessions
[i
].live_timer_interval
= session
->live_timer
;
3064 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
3065 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
3067 int cmd_data_pending(struct ltt_session
*session
)
3070 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3071 struct ltt_ust_session
*usess
= session
->ust_session
;
3075 /* Session MUST be stopped to ask for data availability. */
3076 if (session
->active
) {
3077 ret
= LTTNG_ERR_SESSION_STARTED
;
3081 * If stopped, just make sure we've started before else the above call
3082 * will always send that there is data pending.
3084 * The consumer assumes that when the data pending command is received,
3085 * the trace has been started before or else no output data is written
3086 * by the streams which is a condition for data pending. So, this is
3087 * *VERY* important that we don't ask the consumer before a start
3090 if (!session
->has_been_started
) {
3096 if (ksess
&& ksess
->consumer
) {
3097 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
3099 /* Data is still being extracted for the kernel. */
3104 if (usess
&& usess
->consumer
) {
3105 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
3107 /* Data is still being extracted for the kernel. */
3112 /* Data is ready to be read by a viewer */
3120 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
3122 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3124 int cmd_snapshot_add_output(struct ltt_session
*session
,
3125 struct lttng_snapshot_output
*output
, uint32_t *id
)
3128 struct snapshot_output
*new_output
;
3133 DBG("Cmd snapshot add output for session %s", session
->name
);
3136 * Can't create an output if the session is not set in no-output mode.
3138 if (session
->output_traces
) {
3139 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3143 /* Only one output is allowed until we have the "tee" feature. */
3144 if (session
->snapshot
.nb_output
== 1) {
3145 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
3149 new_output
= snapshot_output_alloc();
3151 ret
= LTTNG_ERR_NOMEM
;
3155 ret
= snapshot_output_init(output
->max_size
, output
->name
,
3156 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
3157 &session
->snapshot
);
3159 if (ret
== -ENOMEM
) {
3160 ret
= LTTNG_ERR_NOMEM
;
3162 ret
= LTTNG_ERR_INVALID
;
3168 snapshot_add_output(&session
->snapshot
, new_output
);
3170 *id
= new_output
->id
;
3177 snapshot_output_destroy(new_output
);
3183 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
3185 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3187 int cmd_snapshot_del_output(struct ltt_session
*session
,
3188 struct lttng_snapshot_output
*output
)
3191 struct snapshot_output
*sout
= NULL
;
3199 * Permission denied to create an output if the session is not
3200 * set in no output mode.
3202 if (session
->output_traces
) {
3203 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3208 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
3210 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
3211 } else if (*output
->name
!= '\0') {
3212 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
3214 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
3217 ret
= LTTNG_ERR_INVALID
;
3221 snapshot_delete_output(&session
->snapshot
, sout
);
3222 snapshot_output_destroy(sout
);
3231 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
3233 * If no output is available, outputs is untouched and 0 is returned.
3235 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
3237 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
3238 struct lttng_snapshot_output
**outputs
)
3241 struct lttng_snapshot_output
*list
= NULL
;
3242 struct lttng_ht_iter iter
;
3243 struct snapshot_output
*output
;
3248 DBG("Cmd snapshot list outputs for session %s", session
->name
);
3251 * Permission denied to create an output if the session is not
3252 * set in no output mode.
3254 if (session
->output_traces
) {
3255 ret
= -LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3259 if (session
->snapshot
.nb_output
== 0) {
3264 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
3266 ret
= -LTTNG_ERR_NOMEM
;
3270 /* Copy list from session to the new list object. */
3272 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
3273 output
, node
.node
) {
3274 assert(output
->consumer
);
3275 list
[idx
].id
= output
->id
;
3276 list
[idx
].max_size
= output
->max_size
;
3277 if (lttng_strncpy(list
[idx
].name
, output
->name
,
3278 sizeof(list
[idx
].name
))) {
3279 ret
= -LTTNG_ERR_INVALID
;
3282 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
3283 if (lttng_strncpy(list
[idx
].ctrl_url
,
3284 output
->consumer
->dst
.trace_path
,
3285 sizeof(list
[idx
].ctrl_url
))) {
3286 ret
= -LTTNG_ERR_INVALID
;
3291 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
3292 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
3294 ret
= -LTTNG_ERR_NOMEM
;
3299 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
3300 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
3302 ret
= -LTTNG_ERR_NOMEM
;
3311 ret
= session
->snapshot
.nb_output
;
3320 * Check if we can regenerate the metadata for this session.
3321 * Only kernel, UST per-uid and non-live sessions are supported.
3323 * Return 0 if the metadata can be generated, a LTTNG_ERR code otherwise.
3326 int check_regenerate_metadata_support(struct ltt_session
*session
)
3332 if (session
->live_timer
!= 0) {
3333 ret
= LTTNG_ERR_LIVE_SESSION
;
3336 if (!session
->active
) {
3337 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
3340 if (session
->ust_session
) {
3341 switch (session
->ust_session
->buffer_type
) {
3342 case LTTNG_BUFFER_PER_UID
:
3344 case LTTNG_BUFFER_PER_PID
:
3345 ret
= LTTNG_ERR_PER_PID_SESSION
;
3349 ret
= LTTNG_ERR_UNK
;
3353 if (session
->consumer
->type
== CONSUMER_DST_NET
&&
3354 session
->consumer
->relay_minor_version
< 8) {
3355 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
3365 int clear_metadata_file(int fd
)
3369 ret
= lseek(fd
, 0, SEEK_SET
);
3375 ret
= ftruncate(fd
, 0);
3377 PERROR("ftruncate");
3386 int ust_regenerate_metadata(struct ltt_ust_session
*usess
)
3389 struct buffer_reg_uid
*uid_reg
= NULL
;
3390 struct buffer_reg_session
*session_reg
= NULL
;
3393 cds_list_for_each_entry(uid_reg
, &usess
->buffer_reg_uid_list
, lnode
) {
3394 struct ust_registry_session
*registry
;
3395 struct ust_registry_channel
*chan
;
3396 struct lttng_ht_iter iter_chan
;
3398 session_reg
= uid_reg
->registry
;
3399 registry
= session_reg
->reg
.ust
;
3401 pthread_mutex_lock(®istry
->lock
);
3402 registry
->metadata_len_sent
= 0;
3403 memset(registry
->metadata
, 0, registry
->metadata_alloc_len
);
3404 registry
->metadata_len
= 0;
3405 registry
->metadata_version
++;
3406 if (registry
->metadata_fd
> 0) {
3407 /* Clear the metadata file's content. */
3408 ret
= clear_metadata_file(registry
->metadata_fd
);
3410 pthread_mutex_unlock(®istry
->lock
);
3415 ret
= ust_metadata_session_statedump(registry
, NULL
,
3416 registry
->major
, registry
->minor
);
3418 pthread_mutex_unlock(®istry
->lock
);
3419 ERR("Failed to generate session metadata (err = %d)",
3423 cds_lfht_for_each_entry(registry
->channels
->ht
, &iter_chan
.iter
,
3425 struct ust_registry_event
*event
;
3426 struct lttng_ht_iter iter_event
;
3428 ret
= ust_metadata_channel_statedump(registry
, chan
);
3430 pthread_mutex_unlock(®istry
->lock
);
3431 ERR("Failed to generate channel metadata "
3435 cds_lfht_for_each_entry(chan
->ht
->ht
, &iter_event
.iter
,
3437 ret
= ust_metadata_event_statedump(registry
,
3440 pthread_mutex_unlock(®istry
->lock
);
3441 ERR("Failed to generate event metadata "
3447 pthread_mutex_unlock(®istry
->lock
);
3456 * Command LTTNG_REGENERATE_METADATA from the lttng-ctl library.
3458 * Ask the consumer to truncate the existing metadata file(s) and
3459 * then regenerate the metadata. Live and per-pid sessions are not
3460 * supported and return an error.
3462 * Return 0 on success or else a LTTNG_ERR code.
3464 int cmd_regenerate_metadata(struct ltt_session
*session
)
3470 ret
= check_regenerate_metadata_support(session
);
3475 if (session
->kernel_session
) {
3476 ret
= kernctl_session_regenerate_metadata(
3477 session
->kernel_session
->fd
);
3479 ERR("Failed to regenerate the kernel metadata");
3484 if (session
->ust_session
) {
3485 ret
= ust_regenerate_metadata(session
->ust_session
);
3487 ERR("Failed to regenerate the UST metadata");
3491 DBG("Cmd metadata regenerate for session %s", session
->name
);
3499 * Command LTTNG_REGENERATE_STATEDUMP from the lttng-ctl library.
3501 * Ask the tracer to regenerate a new statedump.
3503 * Return 0 on success or else a LTTNG_ERR code.
3505 int cmd_regenerate_statedump(struct ltt_session
*session
)
3511 if (!session
->active
) {
3512 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
3517 if (session
->kernel_session
) {
3518 ret
= kernctl_session_regenerate_statedump(
3519 session
->kernel_session
->fd
);
3521 * Currently, the statedump in kernel can only fail if out
3525 if (ret
== -ENOMEM
) {
3526 ret
= LTTNG_ERR_REGEN_STATEDUMP_NOMEM
;
3528 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
3530 ERR("Failed to regenerate the kernel statedump");
3535 if (session
->ust_session
) {
3536 ret
= ust_app_regenerate_statedump_all(session
->ust_session
);
3538 * Currently, the statedump in UST always returns 0.
3541 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
3542 ERR("Failed to regenerate the UST statedump");
3546 DBG("Cmd regenerate statedump for session %s", session
->name
);
3553 int cmd_register_trigger(struct command_ctx
*cmd_ctx
, int sock
,
3554 struct notification_thread_handle
*notification_thread
)
3558 ssize_t sock_recv_len
;
3559 struct lttng_trigger
*trigger
= NULL
;
3560 struct lttng_buffer_view view
;
3561 struct lttng_dynamic_buffer trigger_buffer
;
3563 lttng_dynamic_buffer_init(&trigger_buffer
);
3564 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
3565 ret
= lttng_dynamic_buffer_set_size(&trigger_buffer
, trigger_len
);
3567 ret
= LTTNG_ERR_NOMEM
;
3571 sock_recv_len
= lttcomm_recv_unix_sock(sock
, trigger_buffer
.data
,
3573 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
3574 ERR("Failed to receive \"register trigger\" command payload");
3575 /* TODO: should this be a new error enum ? */
3576 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3580 view
= lttng_buffer_view_from_dynamic_buffer(&trigger_buffer
, 0, -1);
3581 if (lttng_trigger_create_from_buffer(&view
, &trigger
) !=
3583 ERR("Invalid trigger payload received in \"register trigger\" command");
3584 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3588 ret
= notification_thread_command_register_trigger(notification_thread
,
3590 /* Ownership of trigger was transferred. */
3593 lttng_trigger_destroy(trigger
);
3594 lttng_dynamic_buffer_reset(&trigger_buffer
);
3598 int cmd_unregister_trigger(struct command_ctx
*cmd_ctx
, int sock
,
3599 struct notification_thread_handle
*notification_thread
)
3603 ssize_t sock_recv_len
;
3604 struct lttng_trigger
*trigger
= NULL
;
3605 struct lttng_buffer_view view
;
3606 struct lttng_dynamic_buffer trigger_buffer
;
3608 lttng_dynamic_buffer_init(&trigger_buffer
);
3609 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
3610 ret
= lttng_dynamic_buffer_set_size(&trigger_buffer
, trigger_len
);
3612 ret
= LTTNG_ERR_NOMEM
;
3616 sock_recv_len
= lttcomm_recv_unix_sock(sock
, trigger_buffer
.data
,
3618 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
3619 ERR("Failed to receive \"unregister trigger\" command payload");
3620 /* TODO: should this be a new error enum ? */
3621 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3625 view
= lttng_buffer_view_from_dynamic_buffer(&trigger_buffer
, 0, -1);
3626 if (lttng_trigger_create_from_buffer(&view
, &trigger
) !=
3628 ERR("Invalid trigger payload received in \"unregister trigger\" command");
3629 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3633 ret
= notification_thread_command_unregister_trigger(notification_thread
,
3636 lttng_trigger_destroy(trigger
);
3637 lttng_dynamic_buffer_reset(&trigger_buffer
);
3642 * Send relayd sockets from snapshot output to consumer. Ignore request if the
3643 * snapshot output is *not* set with a remote destination.
3645 * Return 0 on success or a LTTNG_ERR code.
3647 static int set_relayd_for_snapshot(struct consumer_output
*consumer
,
3648 struct snapshot_output
*snap_output
, struct ltt_session
*session
)
3651 struct lttng_ht_iter iter
;
3652 struct consumer_socket
*socket
;
3655 assert(snap_output
);
3658 DBG2("Set relayd object from snapshot output");
3660 /* Ignore if snapshot consumer output is not network. */
3661 if (snap_output
->consumer
->type
!= CONSUMER_DST_NET
) {
3666 * For each consumer socket, create and send the relayd object of the
3670 cds_lfht_for_each_entry(snap_output
->consumer
->socks
->ht
, &iter
.iter
,
3671 socket
, node
.node
) {
3672 ret
= send_consumer_relayd_sockets(0, session
->id
,
3673 snap_output
->consumer
, socket
,
3674 session
->name
, session
->hostname
,
3675 session
->live_timer
);
3676 if (ret
!= LTTNG_OK
) {
3688 * Record a kernel snapshot.
3690 * Return LTTNG_OK on success or a LTTNG_ERR code.
3692 static int record_kernel_snapshot(struct ltt_kernel_session
*ksess
,
3693 struct snapshot_output
*output
, struct ltt_session
*session
,
3694 int wait
, uint64_t nb_packets_per_stream
)
3704 * Copy kernel session sockets so we can communicate with the right
3705 * consumer for the snapshot record command.
3707 ret
= consumer_copy_sockets(output
->consumer
, ksess
->consumer
);
3709 ret
= LTTNG_ERR_NOMEM
;
3713 ret
= set_relayd_for_snapshot(ksess
->consumer
, output
, session
);
3714 if (ret
!= LTTNG_OK
) {
3715 goto error_snapshot
;
3718 ret
= kernel_snapshot_record(ksess
, output
, wait
, nb_packets_per_stream
);
3719 if (ret
!= LTTNG_OK
) {
3720 goto error_snapshot
;
3727 /* Clean up copied sockets so this output can use some other later on. */
3728 consumer_destroy_output_sockets(output
->consumer
);
3735 * Record a UST snapshot.
3737 * Return 0 on success or a LTTNG_ERR error code.
3739 static int record_ust_snapshot(struct ltt_ust_session
*usess
,
3740 struct snapshot_output
*output
, struct ltt_session
*session
,
3741 int wait
, uint64_t nb_packets_per_stream
)
3750 * Copy UST session sockets so we can communicate with the right
3751 * consumer for the snapshot record command.
3753 ret
= consumer_copy_sockets(output
->consumer
, usess
->consumer
);
3755 ret
= LTTNG_ERR_NOMEM
;
3759 ret
= set_relayd_for_snapshot(usess
->consumer
, output
, session
);
3760 if (ret
!= LTTNG_OK
) {
3761 goto error_snapshot
;
3764 ret
= ust_app_snapshot_record(usess
, output
, wait
, nb_packets_per_stream
);
3768 ret
= LTTNG_ERR_INVALID
;
3771 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
3774 goto error_snapshot
;
3780 /* Clean up copied sockets so this output can use some other later on. */
3781 consumer_destroy_output_sockets(output
->consumer
);
3787 uint64_t get_session_size_one_more_packet_per_stream(struct ltt_session
*session
,
3788 uint64_t cur_nr_packets
)
3790 uint64_t tot_size
= 0;
3792 if (session
->kernel_session
) {
3793 struct ltt_kernel_channel
*chan
;
3794 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3796 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
3797 if (cur_nr_packets
>= chan
->channel
->attr
.num_subbuf
) {
3799 * Don't take channel into account if we
3800 * already grab all its packets.
3804 tot_size
+= chan
->channel
->attr
.subbuf_size
3805 * chan
->stream_count
;
3809 if (session
->ust_session
) {
3810 struct ltt_ust_session
*usess
= session
->ust_session
;
3812 tot_size
+= ust_app_get_size_one_more_packet_per_stream(usess
,
3820 * Calculate the number of packets we can grab from each stream that
3821 * fits within the overall snapshot max size.
3823 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
3824 * the number of packets per stream.
3826 * TODO: this approach is not perfect: we consider the worse case
3827 * (packet filling the sub-buffers) as an upper bound, but we could do
3828 * better if we do this calculation while we actually grab the packet
3829 * content: we would know how much padding we don't actually store into
3832 * This algorithm is currently bounded by the number of packets per
3835 * Since we call this algorithm before actually grabbing the data, it's
3836 * an approximation: for instance, applications could appear/disappear
3837 * in between this call and actually grabbing data.
3840 int64_t get_session_nb_packets_per_stream(struct ltt_session
*session
, uint64_t max_size
)
3843 uint64_t cur_nb_packets
= 0;
3846 return 0; /* Infinite */
3849 size_left
= max_size
;
3851 uint64_t one_more_packet_tot_size
;
3853 one_more_packet_tot_size
= get_session_size_one_more_packet_per_stream(session
,
3855 if (!one_more_packet_tot_size
) {
3856 /* We are already grabbing all packets. */
3859 size_left
-= one_more_packet_tot_size
;
3860 if (size_left
< 0) {
3865 if (!cur_nb_packets
) {
3866 /* Not enough room to grab one packet of each stream, error. */
3869 return cur_nb_packets
;
3873 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
3875 * The wait parameter is ignored so this call always wait for the snapshot to
3876 * complete before returning.
3878 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3880 int cmd_snapshot_record(struct ltt_session
*session
,
3881 struct lttng_snapshot_output
*output
, int wait
)
3884 unsigned int use_tmp_output
= 0;
3885 struct snapshot_output tmp_output
;
3886 unsigned int snapshot_success
= 0;
3892 DBG("Cmd snapshot record for session %s", session
->name
);
3894 /* Get the datetime for the snapshot output directory. */
3895 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", datetime
,
3898 ret
= LTTNG_ERR_INVALID
;
3903 * Permission denied to create an output if the session is not
3904 * set in no output mode.
3906 if (session
->output_traces
) {
3907 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3911 /* The session needs to be started at least once. */
3912 if (!session
->has_been_started
) {
3913 ret
= LTTNG_ERR_START_SESSION_ONCE
;
3917 /* Use temporary output for the session. */
3918 if (*output
->ctrl_url
!= '\0') {
3919 ret
= snapshot_output_init(output
->max_size
, output
->name
,
3920 output
->ctrl_url
, output
->data_url
, session
->consumer
,
3923 if (ret
== -ENOMEM
) {
3924 ret
= LTTNG_ERR_NOMEM
;
3926 ret
= LTTNG_ERR_INVALID
;
3930 /* Use the global session count for the temporary snapshot. */
3931 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3933 /* Use the global datetime */
3934 memcpy(tmp_output
.datetime
, datetime
, sizeof(datetime
));
3938 if (use_tmp_output
) {
3939 int64_t nb_packets_per_stream
;
3941 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3942 tmp_output
.max_size
);
3943 if (nb_packets_per_stream
< 0) {
3944 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3948 if (session
->kernel_session
) {
3949 ret
= record_kernel_snapshot(session
->kernel_session
,
3950 &tmp_output
, session
,
3951 wait
, nb_packets_per_stream
);
3952 if (ret
!= LTTNG_OK
) {
3957 if (session
->ust_session
) {
3958 ret
= record_ust_snapshot(session
->ust_session
,
3959 &tmp_output
, session
,
3960 wait
, nb_packets_per_stream
);
3961 if (ret
!= LTTNG_OK
) {
3966 snapshot_success
= 1;
3968 struct snapshot_output
*sout
;
3969 struct lttng_ht_iter iter
;
3972 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
3973 &iter
.iter
, sout
, node
.node
) {
3974 int64_t nb_packets_per_stream
;
3977 * Make a local copy of the output and assign the possible
3978 * temporary value given by the caller.
3980 memset(&tmp_output
, 0, sizeof(tmp_output
));
3981 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
3983 if (output
->max_size
!= (uint64_t) -1ULL) {
3984 tmp_output
.max_size
= output
->max_size
;
3987 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3988 tmp_output
.max_size
);
3989 if (nb_packets_per_stream
< 0) {
3990 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3995 /* Use temporary name. */
3996 if (*output
->name
!= '\0') {
3997 if (lttng_strncpy(tmp_output
.name
, output
->name
,
3998 sizeof(tmp_output
.name
))) {
3999 ret
= LTTNG_ERR_INVALID
;
4005 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
4006 memcpy(tmp_output
.datetime
, datetime
, sizeof(datetime
));
4008 if (session
->kernel_session
) {
4009 ret
= record_kernel_snapshot(session
->kernel_session
,
4010 &tmp_output
, session
,
4011 wait
, nb_packets_per_stream
);
4012 if (ret
!= LTTNG_OK
) {
4018 if (session
->ust_session
) {
4019 ret
= record_ust_snapshot(session
->ust_session
,
4020 &tmp_output
, session
,
4021 wait
, nb_packets_per_stream
);
4022 if (ret
!= LTTNG_OK
) {
4027 snapshot_success
= 1;
4032 if (snapshot_success
) {
4033 session
->snapshot
.nb_snapshot
++;
4035 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
4043 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
4045 int cmd_set_session_shm_path(struct ltt_session
*session
,
4046 const char *shm_path
)
4052 * Can only set shm path before session is started.
4054 if (session
->has_been_started
) {
4055 return LTTNG_ERR_SESSION_STARTED
;
4058 strncpy(session
->shm_path
, shm_path
,
4059 sizeof(session
->shm_path
));
4060 session
->shm_path
[sizeof(session
->shm_path
) - 1] = '\0';
4066 * Init command subsystem.
4071 * Set network sequence index to 1 for streams to match a relayd
4072 * socket on the consumer side.
4074 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
4075 relayd_net_seq_idx
= 1;
4076 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
4078 DBG("Command subsystem initialized");