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.h>
38 #include <lttng/channel-internal.h>
39 #include <common/string-utils/string-utils.h>
44 #include "health-sessiond.h"
46 #include "kernel-consumer.h"
47 #include "lttng-sessiond.h"
51 #include "buffer-registry.h"
52 #include "notification-thread.h"
53 #include "notification-thread-commands.h"
58 * Used to keep a unique index for each relayd socket created where this value
59 * is associated with streams on the consumer so it can match the right relayd
60 * to send to. It must be accessed with the relayd_net_seq_idx_lock
63 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
64 static uint64_t relayd_net_seq_idx
;
66 static int validate_ust_event_name(const char *);
67 static int cmd_enable_event_internal(struct ltt_session
*session
,
68 struct lttng_domain
*domain
,
69 char *channel_name
, struct lttng_event
*event
,
70 char *filter_expression
,
71 struct lttng_filter_bytecode
*filter
,
72 struct lttng_event_exclusion
*exclusion
,
76 * Create a session path used by list_lttng_sessions for the case that the
77 * session consumer is on the network.
79 static int build_network_session_path(char *dst
, size_t size
,
80 struct ltt_session
*session
)
82 int ret
, kdata_port
, udata_port
;
83 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
84 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
89 memset(tmp_urls
, 0, sizeof(tmp_urls
));
90 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
92 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
94 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
95 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
96 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
99 if (session
->ust_session
&& session
->ust_session
->consumer
) {
100 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
101 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
104 if (uuri
== NULL
&& kuri
== NULL
) {
105 uri
= &session
->consumer
->dst
.net
.control
;
106 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
107 } else if (kuri
&& uuri
) {
108 ret
= uri_compare(kuri
, uuri
);
112 /* Build uuri URL string */
113 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
120 } else if (kuri
&& uuri
== NULL
) {
122 } else if (uuri
&& kuri
== NULL
) {
126 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
132 * Do we have a UST url set. If yes, this means we have both kernel and UST
135 if (*tmp_uurl
!= '\0') {
136 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
137 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
140 if (kuri
|| (!kuri
&& !uuri
)) {
143 /* No kernel URI, use the UST port. */
146 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
154 * Get run-time attributes if the session has been started (discarded events,
157 static int get_kernel_runtime_stats(struct ltt_session
*session
,
158 struct ltt_kernel_channel
*kchan
, uint64_t *discarded_events
,
159 uint64_t *lost_packets
)
163 if (!session
->has_been_started
) {
165 *discarded_events
= 0;
170 ret
= consumer_get_discarded_events(session
->id
, kchan
->fd
,
171 session
->kernel_session
->consumer
,
177 ret
= consumer_get_lost_packets(session
->id
, kchan
->fd
,
178 session
->kernel_session
->consumer
,
189 * Get run-time attributes if the session has been started (discarded events,
192 static int get_ust_runtime_stats(struct ltt_session
*session
,
193 struct ltt_ust_channel
*uchan
, uint64_t *discarded_events
,
194 uint64_t *lost_packets
)
197 struct ltt_ust_session
*usess
;
199 if (!discarded_events
|| !lost_packets
) {
204 usess
= session
->ust_session
;
205 assert(discarded_events
);
206 assert(lost_packets
);
208 if (!usess
|| !session
->has_been_started
) {
209 *discarded_events
= 0;
215 if (usess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
216 ret
= ust_app_uid_get_channel_runtime_stats(usess
->id
,
217 &usess
->buffer_reg_uid_list
,
218 usess
->consumer
, uchan
->id
,
219 uchan
->attr
.overwrite
,
222 } else if (usess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
223 ret
= ust_app_pid_get_channel_runtime_stats(usess
,
224 uchan
, usess
->consumer
,
225 uchan
->attr
.overwrite
,
231 *discarded_events
+= uchan
->per_pid_closed_app_discarded
;
232 *lost_packets
+= uchan
->per_pid_closed_app_lost
;
234 ERR("Unsupported buffer type");
245 * Fill lttng_channel array of all channels.
247 static ssize_t
list_lttng_channels(enum lttng_domain_type domain
,
248 struct ltt_session
*session
, struct lttng_channel
*channels
,
249 struct lttng_channel_extended
*chan_exts
)
252 struct ltt_kernel_channel
*kchan
;
254 DBG("Listing channels for session %s", session
->name
);
257 case LTTNG_DOMAIN_KERNEL
:
258 /* Kernel channels */
259 if (session
->kernel_session
!= NULL
) {
260 cds_list_for_each_entry(kchan
,
261 &session
->kernel_session
->channel_list
.head
, list
) {
262 uint64_t discarded_events
, lost_packets
;
263 struct lttng_channel_extended
*extended
;
265 extended
= (struct lttng_channel_extended
*)
266 kchan
->channel
->attr
.extended
.ptr
;
268 ret
= get_kernel_runtime_stats(session
, kchan
,
269 &discarded_events
, &lost_packets
);
273 /* Copy lttng_channel struct to array */
274 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
275 channels
[i
].enabled
= kchan
->enabled
;
276 chan_exts
[i
].discarded_events
=
278 chan_exts
[i
].lost_packets
= lost_packets
;
279 chan_exts
[i
].monitor_timer_interval
=
280 extended
->monitor_timer_interval
;
281 chan_exts
[i
].blocking_timeout
= 0;
286 case LTTNG_DOMAIN_UST
:
288 struct lttng_ht_iter iter
;
289 struct ltt_ust_channel
*uchan
;
292 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
293 &iter
.iter
, uchan
, node
.node
) {
294 uint64_t discarded_events
= 0, lost_packets
= 0;
296 if (lttng_strncpy(channels
[i
].name
, uchan
->name
,
297 LTTNG_SYMBOL_NAME_LEN
)) {
300 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
301 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
302 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
303 channels
[i
].attr
.switch_timer_interval
=
304 uchan
->attr
.switch_timer_interval
;
305 channels
[i
].attr
.read_timer_interval
=
306 uchan
->attr
.read_timer_interval
;
307 channels
[i
].enabled
= uchan
->enabled
;
308 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
309 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
312 * Map enum lttng_ust_output to enum lttng_event_output.
314 switch (uchan
->attr
.output
) {
316 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
320 * LTTNG_UST_MMAP is the only supported UST
327 chan_exts
[i
].monitor_timer_interval
=
328 uchan
->monitor_timer_interval
;
329 chan_exts
[i
].blocking_timeout
=
330 uchan
->attr
.u
.s
.blocking_timeout
;
332 ret
= get_ust_runtime_stats(session
, uchan
,
333 &discarded_events
, &lost_packets
);
337 chan_exts
[i
].discarded_events
= discarded_events
;
338 chan_exts
[i
].lost_packets
= lost_packets
;
350 return -LTTNG_ERR_FATAL
;
356 static void increment_extended_len(const char *filter_expression
,
357 struct lttng_event_exclusion
*exclusion
, size_t *extended_len
)
359 *extended_len
+= sizeof(struct lttcomm_event_extended_header
);
361 if (filter_expression
) {
362 *extended_len
+= strlen(filter_expression
) + 1;
366 *extended_len
+= exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
;
370 static void append_extended_info(const char *filter_expression
,
371 struct lttng_event_exclusion
*exclusion
, void **extended_at
)
373 struct lttcomm_event_extended_header extended_header
;
374 size_t filter_len
= 0;
375 size_t nb_exclusions
= 0;
377 if (filter_expression
) {
378 filter_len
= strlen(filter_expression
) + 1;
382 nb_exclusions
= exclusion
->count
;
385 /* Set header fields */
386 extended_header
.filter_len
= filter_len
;
387 extended_header
.nb_exclusions
= nb_exclusions
;
390 memcpy(*extended_at
, &extended_header
, sizeof(extended_header
));
391 *extended_at
+= sizeof(extended_header
);
393 /* Copy filter string */
394 if (filter_expression
) {
395 memcpy(*extended_at
, filter_expression
, filter_len
);
396 *extended_at
+= filter_len
;
399 /* Copy exclusion names */
401 size_t len
= nb_exclusions
* LTTNG_SYMBOL_NAME_LEN
;
403 memcpy(*extended_at
, &exclusion
->names
, len
);
409 * Create a list of agent domain events.
411 * Return number of events in list on success or else a negative value.
413 static int list_lttng_agent_events(struct agent
*agt
,
414 struct lttng_event
**events
, size_t *total_size
)
417 unsigned int nb_event
= 0;
418 struct agent_event
*event
;
419 struct lttng_event
*tmp_events
;
420 struct lttng_ht_iter iter
;
421 size_t extended_len
= 0;
427 DBG3("Listing agent events");
430 nb_event
= lttng_ht_get_count(agt
->events
);
438 /* Compute required extended infos size */
439 extended_len
= nb_event
* sizeof(struct lttcomm_event_extended_header
);
442 * This is only valid because the commands which add events are
443 * processed in the same thread as the listing.
446 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
447 increment_extended_len(event
->filter_expression
, NULL
,
452 *total_size
= nb_event
* sizeof(*tmp_events
) + extended_len
;
453 tmp_events
= zmalloc(*total_size
);
455 PERROR("zmalloc agent events session");
456 ret
= -LTTNG_ERR_FATAL
;
460 extended_at
= ((uint8_t *) tmp_events
) +
461 nb_event
* sizeof(struct lttng_event
);
464 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
465 strncpy(tmp_events
[i
].name
, event
->name
, sizeof(tmp_events
[i
].name
));
466 tmp_events
[i
].name
[sizeof(tmp_events
[i
].name
) - 1] = '\0';
467 tmp_events
[i
].enabled
= event
->enabled
;
468 tmp_events
[i
].loglevel
= event
->loglevel_value
;
469 tmp_events
[i
].loglevel_type
= event
->loglevel_type
;
472 /* Append extended info */
473 append_extended_info(event
->filter_expression
, NULL
,
478 *events
= tmp_events
;
482 assert(nb_event
== i
);
487 * Create a list of ust global domain events.
489 static int list_lttng_ust_global_events(char *channel_name
,
490 struct ltt_ust_domain_global
*ust_global
,
491 struct lttng_event
**events
, size_t *total_size
)
494 unsigned int nb_event
= 0;
495 struct lttng_ht_iter iter
;
496 struct lttng_ht_node_str
*node
;
497 struct ltt_ust_channel
*uchan
;
498 struct ltt_ust_event
*uevent
;
499 struct lttng_event
*tmp
;
500 size_t extended_len
= 0;
503 DBG("Listing UST global events for channel %s", channel_name
);
507 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
508 node
= lttng_ht_iter_get_node_str(&iter
);
510 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
514 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
516 nb_event
= lttng_ht_get_count(uchan
->events
);
523 DBG3("Listing UST global %d events", nb_event
);
525 /* Compute required extended infos size */
526 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
527 if (uevent
->internal
) {
532 increment_extended_len(uevent
->filter_expression
,
533 uevent
->exclusion
, &extended_len
);
536 /* All events are internal, skip. */
542 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
543 tmp
= zmalloc(*total_size
);
545 ret
= -LTTNG_ERR_FATAL
;
549 extended_at
= ((uint8_t *) tmp
) + nb_event
* sizeof(struct lttng_event
);
551 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
552 if (uevent
->internal
) {
553 /* This event should remain hidden from clients */
556 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
557 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
558 tmp
[i
].enabled
= uevent
->enabled
;
560 switch (uevent
->attr
.instrumentation
) {
561 case LTTNG_UST_TRACEPOINT
:
562 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
564 case LTTNG_UST_PROBE
:
565 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
567 case LTTNG_UST_FUNCTION
:
568 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
572 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
573 switch (uevent
->attr
.loglevel_type
) {
574 case LTTNG_UST_LOGLEVEL_ALL
:
575 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
577 case LTTNG_UST_LOGLEVEL_RANGE
:
578 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
580 case LTTNG_UST_LOGLEVEL_SINGLE
:
581 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
584 if (uevent
->filter
) {
587 if (uevent
->exclusion
) {
588 tmp
[i
].exclusion
= 1;
592 /* Append extended info */
593 append_extended_info(uevent
->filter_expression
,
594 uevent
->exclusion
, &extended_at
);
605 * Fill lttng_event array of all kernel events in the channel.
607 static int list_lttng_kernel_events(char *channel_name
,
608 struct ltt_kernel_session
*kernel_session
,
609 struct lttng_event
**events
, size_t *total_size
)
612 unsigned int nb_event
;
613 struct ltt_kernel_event
*event
;
614 struct ltt_kernel_channel
*kchan
;
615 size_t extended_len
= 0;
618 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
620 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
624 nb_event
= kchan
->event_count
;
626 DBG("Listing events for channel %s", kchan
->channel
->name
);
634 /* Compute required extended infos size */
635 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
636 increment_extended_len(event
->filter_expression
, NULL
,
640 *total_size
= nb_event
* sizeof(struct lttng_event
) + extended_len
;
641 *events
= zmalloc(*total_size
);
642 if (*events
== NULL
) {
643 ret
= LTTNG_ERR_FATAL
;
647 extended_at
= ((void *) *events
) +
648 nb_event
* sizeof(struct lttng_event
);
650 /* Kernel channels */
651 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
652 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
653 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
654 (*events
)[i
].enabled
= event
->enabled
;
655 (*events
)[i
].filter
=
656 (unsigned char) !!event
->filter_expression
;
658 switch (event
->event
->instrumentation
) {
659 case LTTNG_KERNEL_TRACEPOINT
:
660 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
662 case LTTNG_KERNEL_KRETPROBE
:
663 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
664 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
665 sizeof(struct lttng_kernel_kprobe
));
667 case LTTNG_KERNEL_KPROBE
:
668 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
669 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
670 sizeof(struct lttng_kernel_kprobe
));
672 case LTTNG_KERNEL_FUNCTION
:
673 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
674 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
675 sizeof(struct lttng_kernel_function
));
677 case LTTNG_KERNEL_NOOP
:
678 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
680 case LTTNG_KERNEL_SYSCALL
:
681 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
683 case LTTNG_KERNEL_ALL
:
689 /* Append extended info */
690 append_extended_info(event
->filter_expression
, NULL
,
698 /* Negate the error code to differentiate the size from an error */
703 * Add URI so the consumer output object. Set the correct path depending on the
704 * domain adding the default trace directory.
706 static int add_uri_to_consumer(struct consumer_output
*consumer
,
707 struct lttng_uri
*uri
, enum lttng_domain_type domain
,
708 const char *session_name
)
711 const char *default_trace_dir
;
715 if (consumer
== NULL
) {
716 DBG("No consumer detected. Don't add URI. Stopping.");
717 ret
= LTTNG_ERR_NO_CONSUMER
;
722 case LTTNG_DOMAIN_KERNEL
:
723 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
725 case LTTNG_DOMAIN_UST
:
726 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
730 * This case is possible is we try to add the URI to the global tracing
731 * session consumer object which in this case there is no subdir.
733 default_trace_dir
= "";
736 switch (uri
->dtype
) {
739 DBG2("Setting network URI to consumer");
741 if (consumer
->type
== CONSUMER_DST_NET
) {
742 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
743 consumer
->dst
.net
.control_isset
) ||
744 (uri
->stype
== LTTNG_STREAM_DATA
&&
745 consumer
->dst
.net
.data_isset
)) {
746 ret
= LTTNG_ERR_URL_EXIST
;
750 memset(&consumer
->dst
.net
, 0, sizeof(consumer
->dst
.net
));
753 consumer
->type
= CONSUMER_DST_NET
;
755 /* Set URI into consumer output object */
756 ret
= consumer_set_network_uri(consumer
, uri
);
760 } else if (ret
== 1) {
762 * URI was the same in the consumer so we do not append the subdir
763 * again so to not duplicate output dir.
769 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
770 ret
= consumer_set_subdir(consumer
, session_name
);
772 ret
= LTTNG_ERR_FATAL
;
777 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
778 /* On a new subdir, reappend the default trace dir. */
779 strncat(consumer
->subdir
, default_trace_dir
,
780 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
781 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
786 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
787 memset(consumer
->dst
.trace_path
, 0,
788 sizeof(consumer
->dst
.trace_path
));
789 /* Explicit length checks for strcpy and strcat. */
790 if (strlen(uri
->dst
.path
) + strlen(default_trace_dir
)
791 >= sizeof(consumer
->dst
.trace_path
)) {
792 ret
= LTTNG_ERR_FATAL
;
795 strcpy(consumer
->dst
.trace_path
, uri
->dst
.path
);
796 /* Append default trace dir */
797 strcat(consumer
->dst
.trace_path
, default_trace_dir
);
798 /* Flag consumer as local. */
799 consumer
->type
= CONSUMER_DST_LOCAL
;
810 * Init tracing by creating trace directory and sending fds kernel consumer.
812 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
815 struct lttng_ht_iter iter
;
816 struct consumer_socket
*socket
;
822 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
823 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
825 pthread_mutex_lock(socket
->lock
);
826 ret
= kernel_consumer_send_session(socket
, session
);
827 pthread_mutex_unlock(socket
->lock
);
829 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
841 * Create a socket to the relayd using the URI.
843 * On success, the relayd_sock pointer is set to the created socket.
844 * Else, it's stays untouched and a lttcomm error code is returned.
846 static int create_connect_relayd(struct lttng_uri
*uri
,
847 struct lttcomm_relayd_sock
**relayd_sock
,
848 struct consumer_output
*consumer
)
851 struct lttcomm_relayd_sock
*rsock
;
853 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
854 RELAYD_VERSION_COMM_MINOR
);
856 ret
= LTTNG_ERR_FATAL
;
861 * Connect to relayd so we can proceed with a session creation. This call
862 * can possibly block for an arbitrary amount of time to set the health
863 * state to be in poll execution.
866 ret
= relayd_connect(rsock
);
869 ERR("Unable to reach lttng-relayd");
870 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
874 /* Create socket for control stream. */
875 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
876 DBG3("Creating relayd stream socket from URI");
878 /* Check relayd version */
879 ret
= relayd_version_check(rsock
);
881 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
884 consumer
->relay_major_version
= rsock
->major
;
885 consumer
->relay_minor_version
= rsock
->minor
;
886 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
887 DBG3("Creating relayd data socket from URI");
889 /* Command is not valid */
890 ERR("Relayd invalid stream type: %d", uri
->stype
);
891 ret
= LTTNG_ERR_INVALID
;
895 *relayd_sock
= rsock
;
900 /* The returned value is not useful since we are on an error path. */
901 (void) relayd_close(rsock
);
909 * Connect to the relayd using URI and send the socket to the right consumer.
911 * The consumer socket lock must be held by the caller.
913 static int send_consumer_relayd_socket(enum lttng_domain_type domain
,
914 unsigned int session_id
, struct lttng_uri
*relayd_uri
,
915 struct consumer_output
*consumer
,
916 struct consumer_socket
*consumer_sock
,
917 char *session_name
, char *hostname
, int session_live_timer
)
920 struct lttcomm_relayd_sock
*rsock
= NULL
;
922 /* Connect to relayd and make version check if uri is the control. */
923 ret
= create_connect_relayd(relayd_uri
, &rsock
, consumer
);
924 if (ret
!= LTTNG_OK
) {
925 goto relayd_comm_error
;
929 /* Set the network sequence index if not set. */
930 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
931 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
933 * Increment net_seq_idx because we are about to transfer the
934 * new relayd socket to the consumer.
935 * Assign unique key so the consumer can match streams.
937 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
938 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
941 /* Send relayd socket to consumer. */
942 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
943 relayd_uri
->stype
, session_id
,
944 session_name
, hostname
, session_live_timer
);
946 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
950 /* Flag that the corresponding socket was sent. */
951 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
952 consumer_sock
->control_sock_sent
= 1;
953 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
954 consumer_sock
->data_sock_sent
= 1;
960 * Close socket which was dup on the consumer side. The session daemon does
961 * NOT keep track of the relayd socket(s) once transfer to the consumer.
965 if (ret
!= LTTNG_OK
) {
967 * The consumer output for this session should not be used anymore
968 * since the relayd connection failed thus making any tracing or/and
969 * streaming not usable.
971 consumer
->enabled
= 0;
973 (void) relayd_close(rsock
);
981 * Send both relayd sockets to a specific consumer and domain. This is a
982 * helper function to facilitate sending the information to the consumer for a
985 * The consumer socket lock must be held by the caller.
987 static int send_consumer_relayd_sockets(enum lttng_domain_type domain
,
988 unsigned int session_id
, struct consumer_output
*consumer
,
989 struct consumer_socket
*sock
, char *session_name
,
990 char *hostname
, int session_live_timer
)
997 /* Sending control relayd socket. */
998 if (!sock
->control_sock_sent
) {
999 ret
= send_consumer_relayd_socket(domain
, session_id
,
1000 &consumer
->dst
.net
.control
, consumer
, sock
,
1001 session_name
, hostname
, session_live_timer
);
1002 if (ret
!= LTTNG_OK
) {
1007 /* Sending data relayd socket. */
1008 if (!sock
->data_sock_sent
) {
1009 ret
= send_consumer_relayd_socket(domain
, session_id
,
1010 &consumer
->dst
.net
.data
, consumer
, sock
,
1011 session_name
, hostname
, session_live_timer
);
1012 if (ret
!= LTTNG_OK
) {
1022 * Setup relayd connections for a tracing session. First creates the socket to
1023 * the relayd and send them to the right domain consumer. Consumer type MUST be
1026 int cmd_setup_relayd(struct ltt_session
*session
)
1029 struct ltt_ust_session
*usess
;
1030 struct ltt_kernel_session
*ksess
;
1031 struct consumer_socket
*socket
;
1032 struct lttng_ht_iter iter
;
1036 usess
= session
->ust_session
;
1037 ksess
= session
->kernel_session
;
1039 DBG("Setting relayd for session %s", session
->name
);
1043 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
1044 && usess
->consumer
->enabled
) {
1045 /* For each consumer socket, send relayd sockets */
1046 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
1047 socket
, node
.node
) {
1048 pthread_mutex_lock(socket
->lock
);
1049 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
1050 usess
->consumer
, socket
,
1051 session
->name
, session
->hostname
,
1052 session
->live_timer
);
1053 pthread_mutex_unlock(socket
->lock
);
1054 if (ret
!= LTTNG_OK
) {
1057 /* Session is now ready for network streaming. */
1058 session
->net_handle
= 1;
1060 session
->consumer
->relay_major_version
=
1061 usess
->consumer
->relay_major_version
;
1062 session
->consumer
->relay_minor_version
=
1063 usess
->consumer
->relay_minor_version
;
1066 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
1067 && ksess
->consumer
->enabled
) {
1068 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
1069 socket
, node
.node
) {
1070 pthread_mutex_lock(socket
->lock
);
1071 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
1072 ksess
->consumer
, socket
,
1073 session
->name
, session
->hostname
,
1074 session
->live_timer
);
1075 pthread_mutex_unlock(socket
->lock
);
1076 if (ret
!= LTTNG_OK
) {
1079 /* Session is now ready for network streaming. */
1080 session
->net_handle
= 1;
1082 session
->consumer
->relay_major_version
=
1083 ksess
->consumer
->relay_major_version
;
1084 session
->consumer
->relay_minor_version
=
1085 ksess
->consumer
->relay_minor_version
;
1094 * Start a kernel session by opening all necessary streams.
1096 static int start_kernel_session(struct ltt_kernel_session
*ksess
, int wpipe
)
1099 struct ltt_kernel_channel
*kchan
;
1101 /* Open kernel metadata */
1102 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
1103 ret
= kernel_open_metadata(ksess
);
1105 ret
= LTTNG_ERR_KERN_META_FAIL
;
1110 /* Open kernel metadata stream */
1111 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
1112 ret
= kernel_open_metadata_stream(ksess
);
1114 ERR("Kernel create metadata stream failed");
1115 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1120 /* For each channel */
1121 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
1122 if (kchan
->stream_count
== 0) {
1123 ret
= kernel_open_channel_stream(kchan
);
1125 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1128 /* Update the stream global counter */
1129 ksess
->stream_count_global
+= ret
;
1133 /* Setup kernel consumer socket and send fds to it */
1134 ret
= init_kernel_tracing(ksess
);
1136 ret
= LTTNG_ERR_KERN_START_FAIL
;
1140 /* This start the kernel tracing */
1141 ret
= kernel_start_session(ksess
);
1143 ret
= LTTNG_ERR_KERN_START_FAIL
;
1147 /* Quiescent wait after starting trace */
1148 kernel_wait_quiescent(kernel_tracer_fd
);
1159 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1161 int cmd_disable_channel(struct ltt_session
*session
,
1162 enum lttng_domain_type domain
, char *channel_name
)
1165 struct ltt_ust_session
*usess
;
1167 usess
= session
->ust_session
;
1172 case LTTNG_DOMAIN_KERNEL
:
1174 ret
= channel_kernel_disable(session
->kernel_session
,
1176 if (ret
!= LTTNG_OK
) {
1180 kernel_wait_quiescent(kernel_tracer_fd
);
1183 case LTTNG_DOMAIN_UST
:
1185 struct ltt_ust_channel
*uchan
;
1186 struct lttng_ht
*chan_ht
;
1188 chan_ht
= usess
->domain_global
.channels
;
1190 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
1191 if (uchan
== NULL
) {
1192 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1196 ret
= channel_ust_disable(usess
, uchan
);
1197 if (ret
!= LTTNG_OK
) {
1203 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1215 * Command LTTNG_TRACK_PID processed by the client thread.
1217 * Called with session lock held.
1219 int cmd_track_pid(struct ltt_session
*session
, enum lttng_domain_type domain
,
1227 case LTTNG_DOMAIN_KERNEL
:
1229 struct ltt_kernel_session
*ksess
;
1231 ksess
= session
->kernel_session
;
1233 ret
= kernel_track_pid(ksess
, pid
);
1234 if (ret
!= LTTNG_OK
) {
1238 kernel_wait_quiescent(kernel_tracer_fd
);
1241 case LTTNG_DOMAIN_UST
:
1243 struct ltt_ust_session
*usess
;
1245 usess
= session
->ust_session
;
1247 ret
= trace_ust_track_pid(usess
, pid
);
1248 if (ret
!= LTTNG_OK
) {
1254 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1266 * Command LTTNG_UNTRACK_PID processed by the client thread.
1268 * Called with session lock held.
1270 int cmd_untrack_pid(struct ltt_session
*session
, enum lttng_domain_type domain
,
1278 case LTTNG_DOMAIN_KERNEL
:
1280 struct ltt_kernel_session
*ksess
;
1282 ksess
= session
->kernel_session
;
1284 ret
= kernel_untrack_pid(ksess
, pid
);
1285 if (ret
!= LTTNG_OK
) {
1289 kernel_wait_quiescent(kernel_tracer_fd
);
1292 case LTTNG_DOMAIN_UST
:
1294 struct ltt_ust_session
*usess
;
1296 usess
= session
->ust_session
;
1298 ret
= trace_ust_untrack_pid(usess
, pid
);
1299 if (ret
!= LTTNG_OK
) {
1305 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1317 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1319 * The wpipe arguments is used as a notifier for the kernel thread.
1321 int cmd_enable_channel(struct ltt_session
*session
,
1322 struct lttng_domain
*domain
, struct lttng_channel
*attr
, int wpipe
)
1325 struct ltt_ust_session
*usess
= session
->ust_session
;
1326 struct lttng_ht
*chan_ht
;
1333 len
= lttng_strnlen(attr
->name
, sizeof(attr
->name
));
1335 /* Validate channel name */
1336 if (attr
->name
[0] == '.' ||
1337 memchr(attr
->name
, '/', len
) != NULL
) {
1338 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1342 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
1347 * Don't try to enable a channel if the session has been started at
1348 * some point in time before. The tracer does not allow it.
1350 if (session
->has_been_started
) {
1351 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1356 * If the session is a live session, remove the switch timer, the
1357 * live timer does the same thing but sends also synchronisation
1358 * beacons for inactive streams.
1360 if (session
->live_timer
> 0) {
1361 attr
->attr
.live_timer_interval
= session
->live_timer
;
1362 attr
->attr
.switch_timer_interval
= 0;
1365 /* Check for feature support */
1366 switch (domain
->type
) {
1367 case LTTNG_DOMAIN_KERNEL
:
1369 if (kernel_supports_ring_buffer_snapshot_sample_positions(kernel_tracer_fd
) != 1) {
1370 /* Sampling position of buffer is not supported */
1371 WARN("Kernel tracer does not support buffer monitoring. "
1372 "Setting the monitor interval timer to 0 "
1373 "(disabled) for channel '%s' of session '%s'",
1374 attr
-> name
, session
->name
);
1375 lttng_channel_set_monitor_timer_interval(attr
, 0);
1379 case LTTNG_DOMAIN_UST
:
1380 case LTTNG_DOMAIN_JUL
:
1381 case LTTNG_DOMAIN_LOG4J
:
1382 case LTTNG_DOMAIN_PYTHON
:
1385 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1389 switch (domain
->type
) {
1390 case LTTNG_DOMAIN_KERNEL
:
1392 struct ltt_kernel_channel
*kchan
;
1394 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
1395 session
->kernel_session
);
1396 if (kchan
== NULL
) {
1397 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
1398 if (attr
->name
[0] != '\0') {
1399 session
->kernel_session
->has_non_default_channel
= 1;
1402 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1405 if (ret
!= LTTNG_OK
) {
1409 kernel_wait_quiescent(kernel_tracer_fd
);
1412 case LTTNG_DOMAIN_UST
:
1413 case LTTNG_DOMAIN_JUL
:
1414 case LTTNG_DOMAIN_LOG4J
:
1415 case LTTNG_DOMAIN_PYTHON
:
1417 struct ltt_ust_channel
*uchan
;
1422 * Current agent implementation limitations force us to allow
1423 * only one channel at once in "agent" subdomains. Each
1424 * subdomain has a default channel name which must be strictly
1427 if (domain
->type
== LTTNG_DOMAIN_JUL
) {
1428 if (strncmp(attr
->name
, DEFAULT_JUL_CHANNEL_NAME
,
1429 LTTNG_SYMBOL_NAME_LEN
)) {
1430 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1433 } else if (domain
->type
== LTTNG_DOMAIN_LOG4J
) {
1434 if (strncmp(attr
->name
, DEFAULT_LOG4J_CHANNEL_NAME
,
1435 LTTNG_SYMBOL_NAME_LEN
)) {
1436 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1439 } else if (domain
->type
== LTTNG_DOMAIN_PYTHON
) {
1440 if (strncmp(attr
->name
, DEFAULT_PYTHON_CHANNEL_NAME
,
1441 LTTNG_SYMBOL_NAME_LEN
)) {
1442 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1447 chan_ht
= usess
->domain_global
.channels
;
1449 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
1450 if (uchan
== NULL
) {
1451 ret
= channel_ust_create(usess
, attr
, domain
->buf_type
);
1452 if (attr
->name
[0] != '\0') {
1453 usess
->has_non_default_channel
= 1;
1456 ret
= channel_ust_enable(usess
, uchan
);
1461 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1472 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1474 int cmd_disable_event(struct ltt_session
*session
,
1475 enum lttng_domain_type domain
, char *channel_name
,
1476 struct lttng_event
*event
)
1481 DBG("Disable event command for event \'%s\'", event
->name
);
1483 event_name
= event
->name
;
1485 /* Error out on unhandled search criteria */
1486 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1487 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1488 ret
= LTTNG_ERR_UNK
;
1495 case LTTNG_DOMAIN_KERNEL
:
1497 struct ltt_kernel_channel
*kchan
;
1498 struct ltt_kernel_session
*ksess
;
1500 ksess
= session
->kernel_session
;
1503 * If a non-default channel has been created in the
1504 * session, explicitely require that -c chan_name needs
1507 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1508 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1512 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1513 if (kchan
== NULL
) {
1514 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1518 switch (event
->type
) {
1519 case LTTNG_EVENT_ALL
:
1520 case LTTNG_EVENT_TRACEPOINT
:
1521 case LTTNG_EVENT_SYSCALL
:
1522 case LTTNG_EVENT_PROBE
:
1523 case LTTNG_EVENT_FUNCTION
:
1524 case LTTNG_EVENT_FUNCTION_ENTRY
:/* fall-through */
1525 if (event_name
[0] == '\0') {
1526 ret
= event_kernel_disable_event(kchan
,
1529 ret
= event_kernel_disable_event(kchan
,
1530 event_name
, event
->type
);
1532 if (ret
!= LTTNG_OK
) {
1537 ret
= LTTNG_ERR_UNK
;
1541 kernel_wait_quiescent(kernel_tracer_fd
);
1544 case LTTNG_DOMAIN_UST
:
1546 struct ltt_ust_channel
*uchan
;
1547 struct ltt_ust_session
*usess
;
1549 usess
= session
->ust_session
;
1551 if (validate_ust_event_name(event_name
)) {
1552 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1557 * If a non-default channel has been created in the
1558 * session, explicitly require that -c chan_name needs
1561 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1562 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1566 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1568 if (uchan
== NULL
) {
1569 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1573 switch (event
->type
) {
1574 case LTTNG_EVENT_ALL
:
1576 * An empty event name means that everything
1577 * should be disabled.
1579 if (event
->name
[0] == '\0') {
1580 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1582 ret
= event_ust_disable_tracepoint(usess
, uchan
,
1585 if (ret
!= LTTNG_OK
) {
1590 ret
= LTTNG_ERR_UNK
;
1594 DBG3("Disable UST event %s in channel %s completed", event_name
,
1598 case LTTNG_DOMAIN_LOG4J
:
1599 case LTTNG_DOMAIN_JUL
:
1600 case LTTNG_DOMAIN_PYTHON
:
1603 struct ltt_ust_session
*usess
= session
->ust_session
;
1607 switch (event
->type
) {
1608 case LTTNG_EVENT_ALL
:
1611 ret
= LTTNG_ERR_UNK
;
1615 agt
= trace_ust_find_agent(usess
, domain
);
1617 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1621 * An empty event name means that everything
1622 * should be disabled.
1624 if (event
->name
[0] == '\0') {
1625 ret
= event_agent_disable_all(usess
, agt
);
1627 ret
= event_agent_disable(usess
, agt
, event_name
);
1629 if (ret
!= LTTNG_OK
) {
1636 ret
= LTTNG_ERR_UND
;
1649 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1651 int cmd_add_context(struct ltt_session
*session
, enum lttng_domain_type domain
,
1652 char *channel_name
, struct lttng_event_context
*ctx
, int kwpipe
)
1654 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1655 char *app_ctx_provider_name
= NULL
, *app_ctx_name
= NULL
;
1658 * Don't try to add a context if the session has been started at
1659 * some point in time before. The tracer does not allow it and would
1660 * result in a corrupted trace.
1662 if (session
->has_been_started
) {
1663 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1667 if (ctx
->ctx
== LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
1668 app_ctx_provider_name
= ctx
->u
.app_ctx
.provider_name
;
1669 app_ctx_name
= ctx
->u
.app_ctx
.ctx_name
;
1673 case LTTNG_DOMAIN_KERNEL
:
1674 assert(session
->kernel_session
);
1676 if (session
->kernel_session
->channel_count
== 0) {
1677 /* Create default channel */
1678 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1679 if (ret
!= LTTNG_OK
) {
1682 chan_kern_created
= 1;
1684 /* Add kernel context to kernel tracer */
1685 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1686 if (ret
!= LTTNG_OK
) {
1690 case LTTNG_DOMAIN_JUL
:
1691 case LTTNG_DOMAIN_LOG4J
:
1694 * Validate channel name.
1695 * If no channel name is given and the domain is JUL or LOG4J,
1696 * set it to the appropriate domain-specific channel name. If
1697 * a name is provided but does not match the expexted channel
1698 * name, return an error.
1700 if (domain
== LTTNG_DOMAIN_JUL
&& *channel_name
&&
1701 strcmp(channel_name
,
1702 DEFAULT_JUL_CHANNEL_NAME
)) {
1703 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1705 } else if (domain
== LTTNG_DOMAIN_LOG4J
&& *channel_name
&&
1706 strcmp(channel_name
,
1707 DEFAULT_LOG4J_CHANNEL_NAME
)) {
1708 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1711 /* break is _not_ missing here. */
1713 case LTTNG_DOMAIN_UST
:
1715 struct ltt_ust_session
*usess
= session
->ust_session
;
1716 unsigned int chan_count
;
1720 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1721 if (chan_count
== 0) {
1722 struct lttng_channel
*attr
;
1723 /* Create default channel */
1724 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1726 ret
= LTTNG_ERR_FATAL
;
1730 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1731 if (ret
!= LTTNG_OK
) {
1735 channel_attr_destroy(attr
);
1736 chan_ust_created
= 1;
1739 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1740 free(app_ctx_provider_name
);
1742 app_ctx_name
= NULL
;
1743 app_ctx_provider_name
= NULL
;
1744 if (ret
!= LTTNG_OK
) {
1750 ret
= LTTNG_ERR_UND
;
1758 if (chan_kern_created
) {
1759 struct ltt_kernel_channel
*kchan
=
1760 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1761 session
->kernel_session
);
1762 /* Created previously, this should NOT fail. */
1764 kernel_destroy_channel(kchan
);
1767 if (chan_ust_created
) {
1768 struct ltt_ust_channel
*uchan
=
1769 trace_ust_find_channel_by_name(
1770 session
->ust_session
->domain_global
.channels
,
1771 DEFAULT_CHANNEL_NAME
);
1772 /* Created previously, this should NOT fail. */
1774 /* Remove from the channel list of the session. */
1775 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1777 trace_ust_destroy_channel(uchan
);
1780 free(app_ctx_provider_name
);
1785 static inline bool name_starts_with(const char *name
, const char *prefix
)
1787 const size_t max_cmp_len
= min(strlen(prefix
), LTTNG_SYMBOL_NAME_LEN
);
1789 return !strncmp(name
, prefix
, max_cmp_len
);
1792 /* Perform userspace-specific event name validation */
1793 static int validate_ust_event_name(const char *name
)
1803 * Check name against all internal UST event component namespaces used
1806 if (name_starts_with(name
, DEFAULT_JUL_EVENT_COMPONENT
) ||
1807 name_starts_with(name
, DEFAULT_LOG4J_EVENT_COMPONENT
) ||
1808 name_starts_with(name
, DEFAULT_PYTHON_EVENT_COMPONENT
)) {
1817 * Internal version of cmd_enable_event() with a supplemental
1818 * "internal_event" flag which is used to enable internal events which should
1819 * be hidden from clients. Such events are used in the agent implementation to
1820 * enable the events through which all "agent" events are funeled.
1822 static int _cmd_enable_event(struct ltt_session
*session
,
1823 struct lttng_domain
*domain
,
1824 char *channel_name
, struct lttng_event
*event
,
1825 char *filter_expression
,
1826 struct lttng_filter_bytecode
*filter
,
1827 struct lttng_event_exclusion
*exclusion
,
1828 int wpipe
, bool internal_event
)
1830 int ret
= 0, channel_created
= 0;
1831 struct lttng_channel
*attr
= NULL
;
1835 assert(channel_name
);
1837 /* If we have a filter, we must have its filter expression */
1838 assert(!(!!filter_expression
^ !!filter
));
1840 /* Normalize event name as a globbing pattern */
1841 strutils_normalize_star_glob_pattern(event
->name
);
1843 /* Normalize exclusion names as globbing patterns */
1847 for (i
= 0; i
< exclusion
->count
; i
++) {
1848 char *name
= LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
1850 strutils_normalize_star_glob_pattern(name
);
1854 DBG("Enable event command for event \'%s\'", event
->name
);
1858 switch (domain
->type
) {
1859 case LTTNG_DOMAIN_KERNEL
:
1861 struct ltt_kernel_channel
*kchan
;
1864 * If a non-default channel has been created in the
1865 * session, explicitely require that -c chan_name needs
1868 if (session
->kernel_session
->has_non_default_channel
1869 && channel_name
[0] == '\0') {
1870 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1874 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1875 session
->kernel_session
);
1876 if (kchan
== NULL
) {
1877 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1878 LTTNG_BUFFER_GLOBAL
);
1880 ret
= LTTNG_ERR_FATAL
;
1883 if (lttng_strncpy(attr
->name
, channel_name
,
1884 sizeof(attr
->name
))) {
1885 ret
= LTTNG_ERR_INVALID
;
1889 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1890 if (ret
!= LTTNG_OK
) {
1893 channel_created
= 1;
1896 /* Get the newly created kernel channel pointer */
1897 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1898 session
->kernel_session
);
1899 if (kchan
== NULL
) {
1900 /* This sould not happen... */
1901 ret
= LTTNG_ERR_FATAL
;
1905 switch (event
->type
) {
1906 case LTTNG_EVENT_ALL
:
1908 char *filter_expression_a
= NULL
;
1909 struct lttng_filter_bytecode
*filter_a
= NULL
;
1912 * We need to duplicate filter_expression and filter,
1913 * because ownership is passed to first enable
1916 if (filter_expression
) {
1917 filter_expression_a
= strdup(filter_expression
);
1918 if (!filter_expression_a
) {
1919 ret
= LTTNG_ERR_FATAL
;
1924 filter_a
= zmalloc(sizeof(*filter_a
) + filter
->len
);
1926 free(filter_expression_a
);
1927 ret
= LTTNG_ERR_FATAL
;
1930 memcpy(filter_a
, filter
, sizeof(*filter_a
) + filter
->len
);
1932 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
1933 ret
= event_kernel_enable_event(kchan
, event
,
1934 filter_expression
, filter
);
1935 /* We have passed ownership */
1936 filter_expression
= NULL
;
1938 if (ret
!= LTTNG_OK
) {
1939 if (channel_created
) {
1940 /* Let's not leak a useless channel. */
1941 kernel_destroy_channel(kchan
);
1943 free(filter_expression_a
);
1947 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
1948 ret
= event_kernel_enable_event(kchan
, event
,
1949 filter_expression_a
, filter_a
);
1950 /* We have passed ownership */
1951 filter_expression_a
= NULL
;
1953 if (ret
!= LTTNG_OK
) {
1958 case LTTNG_EVENT_PROBE
:
1959 case LTTNG_EVENT_FUNCTION
:
1960 case LTTNG_EVENT_FUNCTION_ENTRY
:
1961 case LTTNG_EVENT_TRACEPOINT
:
1962 ret
= event_kernel_enable_event(kchan
, event
,
1963 filter_expression
, filter
);
1964 /* We have passed ownership */
1965 filter_expression
= NULL
;
1967 if (ret
!= LTTNG_OK
) {
1968 if (channel_created
) {
1969 /* Let's not leak a useless channel. */
1970 kernel_destroy_channel(kchan
);
1975 case LTTNG_EVENT_SYSCALL
:
1976 ret
= event_kernel_enable_event(kchan
, event
,
1977 filter_expression
, filter
);
1978 /* We have passed ownership */
1979 filter_expression
= NULL
;
1981 if (ret
!= LTTNG_OK
) {
1986 ret
= LTTNG_ERR_UNK
;
1990 kernel_wait_quiescent(kernel_tracer_fd
);
1993 case LTTNG_DOMAIN_UST
:
1995 struct ltt_ust_channel
*uchan
;
1996 struct ltt_ust_session
*usess
= session
->ust_session
;
2001 * If a non-default channel has been created in the
2002 * session, explicitely require that -c chan_name needs
2005 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
2006 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
2010 /* Get channel from global UST domain */
2011 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2013 if (uchan
== NULL
) {
2014 /* Create default channel */
2015 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
2016 usess
->buffer_type
);
2018 ret
= LTTNG_ERR_FATAL
;
2021 if (lttng_strncpy(attr
->name
, channel_name
,
2022 sizeof(attr
->name
))) {
2023 ret
= LTTNG_ERR_INVALID
;
2027 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
2028 if (ret
!= LTTNG_OK
) {
2032 /* Get the newly created channel reference back */
2033 uchan
= trace_ust_find_channel_by_name(
2034 usess
->domain_global
.channels
, channel_name
);
2038 if (uchan
->domain
!= LTTNG_DOMAIN_UST
&& !internal_event
) {
2040 * Don't allow users to add UST events to channels which
2041 * are assigned to a userspace subdomain (JUL, Log4J,
2044 ret
= LTTNG_ERR_INVALID_CHANNEL_DOMAIN
;
2048 if (!internal_event
) {
2050 * Ensure the event name is not reserved for internal
2053 ret
= validate_ust_event_name(event
->name
);
2055 WARN("Userspace event name %s failed validation.",
2057 event
->name
: "NULL");
2058 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
2063 /* At this point, the session and channel exist on the tracer */
2064 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
2065 filter_expression
, filter
, exclusion
,
2067 /* We have passed ownership */
2068 filter_expression
= NULL
;
2071 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2072 goto already_enabled
;
2073 } else if (ret
!= LTTNG_OK
) {
2078 case LTTNG_DOMAIN_LOG4J
:
2079 case LTTNG_DOMAIN_JUL
:
2080 case LTTNG_DOMAIN_PYTHON
:
2082 const char *default_event_name
, *default_chan_name
;
2084 struct lttng_event uevent
;
2085 struct lttng_domain tmp_dom
;
2086 struct ltt_ust_session
*usess
= session
->ust_session
;
2090 agt
= trace_ust_find_agent(usess
, domain
->type
);
2092 agt
= agent_create(domain
->type
);
2094 ret
= LTTNG_ERR_NOMEM
;
2097 agent_add(agt
, usess
->agents
);
2100 /* Create the default tracepoint. */
2101 memset(&uevent
, 0, sizeof(uevent
));
2102 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
2103 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2104 default_event_name
= event_get_default_agent_ust_name(
2106 if (!default_event_name
) {
2107 ret
= LTTNG_ERR_FATAL
;
2110 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
2111 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
2114 * The domain type is changed because we are about to enable the
2115 * default channel and event for the JUL domain that are hardcoded.
2116 * This happens in the UST domain.
2118 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
2119 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
2121 switch (domain
->type
) {
2122 case LTTNG_DOMAIN_LOG4J
:
2123 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
2125 case LTTNG_DOMAIN_JUL
:
2126 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
2128 case LTTNG_DOMAIN_PYTHON
:
2129 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
2132 /* The switch/case we are in makes this impossible */
2137 char *filter_expression_copy
= NULL
;
2138 struct lttng_filter_bytecode
*filter_copy
= NULL
;
2141 const size_t filter_size
= sizeof(
2142 struct lttng_filter_bytecode
)
2145 filter_copy
= zmalloc(filter_size
);
2147 ret
= LTTNG_ERR_NOMEM
;
2150 memcpy(filter_copy
, filter
, filter_size
);
2152 filter_expression_copy
=
2153 strdup(filter_expression
);
2154 if (!filter_expression
) {
2155 ret
= LTTNG_ERR_NOMEM
;
2158 if (!filter_expression_copy
|| !filter_copy
) {
2159 free(filter_expression_copy
);
2165 ret
= cmd_enable_event_internal(session
, &tmp_dom
,
2166 (char *) default_chan_name
,
2167 &uevent
, filter_expression_copy
,
2168 filter_copy
, NULL
, wpipe
);
2171 if (ret
== LTTNG_ERR_UST_EVENT_ENABLED
) {
2172 goto already_enabled
;
2173 } else if (ret
!= LTTNG_OK
) {
2177 /* The wild card * means that everything should be enabled. */
2178 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
2179 ret
= event_agent_enable_all(usess
, agt
, event
, filter
,
2182 ret
= event_agent_enable(usess
, agt
, event
, filter
,
2186 filter_expression
= NULL
;
2187 if (ret
!= LTTNG_OK
) {
2194 ret
= LTTNG_ERR_UND
;
2202 free(filter_expression
);
2205 channel_attr_destroy(attr
);
2211 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2212 * We own filter, exclusion, and filter_expression.
2214 int cmd_enable_event(struct ltt_session
*session
, struct lttng_domain
*domain
,
2215 char *channel_name
, struct lttng_event
*event
,
2216 char *filter_expression
,
2217 struct lttng_filter_bytecode
*filter
,
2218 struct lttng_event_exclusion
*exclusion
,
2221 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2222 filter_expression
, filter
, exclusion
, wpipe
, false);
2226 * Enable an event which is internal to LTTng. An internal should
2227 * never be made visible to clients and are immune to checks such as
2230 static int cmd_enable_event_internal(struct ltt_session
*session
,
2231 struct lttng_domain
*domain
,
2232 char *channel_name
, struct lttng_event
*event
,
2233 char *filter_expression
,
2234 struct lttng_filter_bytecode
*filter
,
2235 struct lttng_event_exclusion
*exclusion
,
2238 return _cmd_enable_event(session
, domain
, channel_name
, event
,
2239 filter_expression
, filter
, exclusion
, wpipe
, true);
2243 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2245 ssize_t
cmd_list_tracepoints(enum lttng_domain_type domain
,
2246 struct lttng_event
**events
)
2249 ssize_t nb_events
= 0;
2252 case LTTNG_DOMAIN_KERNEL
:
2253 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
2254 if (nb_events
< 0) {
2255 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2259 case LTTNG_DOMAIN_UST
:
2260 nb_events
= ust_app_list_events(events
);
2261 if (nb_events
< 0) {
2262 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2266 case LTTNG_DOMAIN_LOG4J
:
2267 case LTTNG_DOMAIN_JUL
:
2268 case LTTNG_DOMAIN_PYTHON
:
2269 nb_events
= agent_list_events(events
, domain
);
2270 if (nb_events
< 0) {
2271 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2276 ret
= LTTNG_ERR_UND
;
2283 /* Return negative value to differentiate return code */
2288 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2290 ssize_t
cmd_list_tracepoint_fields(enum lttng_domain_type domain
,
2291 struct lttng_event_field
**fields
)
2294 ssize_t nb_fields
= 0;
2297 case LTTNG_DOMAIN_UST
:
2298 nb_fields
= ust_app_list_event_fields(fields
);
2299 if (nb_fields
< 0) {
2300 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2304 case LTTNG_DOMAIN_KERNEL
:
2305 default: /* fall-through */
2306 ret
= LTTNG_ERR_UND
;
2313 /* Return negative value to differentiate return code */
2317 ssize_t
cmd_list_syscalls(struct lttng_event
**events
)
2319 return syscall_table_list(events
);
2323 * Command LTTNG_LIST_TRACKER_PIDS processed by the client thread.
2325 * Called with session lock held.
2327 ssize_t
cmd_list_tracker_pids(struct ltt_session
*session
,
2328 enum lttng_domain_type domain
, int32_t **pids
)
2331 ssize_t nr_pids
= 0;
2334 case LTTNG_DOMAIN_KERNEL
:
2336 struct ltt_kernel_session
*ksess
;
2338 ksess
= session
->kernel_session
;
2339 nr_pids
= kernel_list_tracker_pids(ksess
, pids
);
2341 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
2346 case LTTNG_DOMAIN_UST
:
2348 struct ltt_ust_session
*usess
;
2350 usess
= session
->ust_session
;
2351 nr_pids
= trace_ust_list_tracker_pids(usess
, pids
);
2353 ret
= LTTNG_ERR_UST_LIST_FAIL
;
2358 case LTTNG_DOMAIN_LOG4J
:
2359 case LTTNG_DOMAIN_JUL
:
2360 case LTTNG_DOMAIN_PYTHON
:
2362 ret
= LTTNG_ERR_UND
;
2369 /* Return negative value to differentiate return code */
2374 * Command LTTNG_START_TRACE processed by the client thread.
2376 * Called with session mutex held.
2378 int cmd_start_trace(struct ltt_session
*session
)
2381 unsigned long nb_chan
= 0;
2382 struct ltt_kernel_session
*ksession
;
2383 struct ltt_ust_session
*usess
;
2387 /* Ease our life a bit ;) */
2388 ksession
= session
->kernel_session
;
2389 usess
= session
->ust_session
;
2391 /* Is the session already started? */
2392 if (session
->active
) {
2393 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2398 * Starting a session without channel is useless since after that it's not
2399 * possible to enable channel thus inform the client.
2401 if (usess
&& usess
->domain_global
.channels
) {
2402 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
2405 nb_chan
+= ksession
->channel_count
;
2408 ret
= LTTNG_ERR_NO_CHANNEL
;
2412 /* Kernel tracing */
2413 if (ksession
!= NULL
) {
2414 ret
= start_kernel_session(ksession
, kernel_tracer_fd
);
2415 if (ret
!= LTTNG_OK
) {
2420 /* Flag session that trace should start automatically */
2423 * Even though the start trace might fail, flag this session active so
2424 * other application coming in are started by default.
2428 ret
= ust_app_start_trace_all(usess
);
2430 ret
= LTTNG_ERR_UST_START_FAIL
;
2435 /* Flag this after a successful start. */
2436 session
->has_been_started
= 1;
2437 session
->active
= 1;
2446 * Command LTTNG_STOP_TRACE processed by the client thread.
2448 int cmd_stop_trace(struct ltt_session
*session
)
2451 struct ltt_kernel_channel
*kchan
;
2452 struct ltt_kernel_session
*ksession
;
2453 struct ltt_ust_session
*usess
;
2458 ksession
= session
->kernel_session
;
2459 usess
= session
->ust_session
;
2461 /* Session is not active. Skip everythong and inform the client. */
2462 if (!session
->active
) {
2463 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
2468 if (ksession
&& ksession
->active
) {
2469 DBG("Stop kernel tracing");
2471 ret
= kernel_stop_session(ksession
);
2473 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
2477 kernel_wait_quiescent(kernel_tracer_fd
);
2479 /* Flush metadata after stopping (if exists) */
2480 if (ksession
->metadata_stream_fd
>= 0) {
2481 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
2483 ERR("Kernel metadata flush failed");
2487 /* Flush all buffers after stopping */
2488 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
2489 ret
= kernel_flush_buffer(kchan
);
2491 ERR("Kernel flush buffer error");
2495 ksession
->active
= 0;
2498 if (usess
&& usess
->active
) {
2500 * Even though the stop trace might fail, flag this session inactive so
2501 * other application coming in are not started by default.
2505 ret
= ust_app_stop_trace_all(usess
);
2507 ret
= LTTNG_ERR_UST_STOP_FAIL
;
2512 /* Flag inactive after a successful stop. */
2513 session
->active
= 0;
2521 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2523 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
2524 struct lttng_uri
*uris
)
2527 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2528 struct ltt_ust_session
*usess
= session
->ust_session
;
2534 /* Can't set consumer URI if the session is active. */
2535 if (session
->active
) {
2536 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2540 /* Set the "global" consumer URIs */
2541 for (i
= 0; i
< nb_uri
; i
++) {
2542 ret
= add_uri_to_consumer(session
->consumer
,
2543 &uris
[i
], 0, session
->name
);
2544 if (ret
!= LTTNG_OK
) {
2549 /* Set UST session URIs */
2550 if (session
->ust_session
) {
2551 for (i
= 0; i
< nb_uri
; i
++) {
2552 ret
= add_uri_to_consumer(
2553 session
->ust_session
->consumer
,
2554 &uris
[i
], LTTNG_DOMAIN_UST
,
2556 if (ret
!= LTTNG_OK
) {
2562 /* Set kernel session URIs */
2563 if (session
->kernel_session
) {
2564 for (i
= 0; i
< nb_uri
; i
++) {
2565 ret
= add_uri_to_consumer(
2566 session
->kernel_session
->consumer
,
2567 &uris
[i
], LTTNG_DOMAIN_KERNEL
,
2569 if (ret
!= LTTNG_OK
) {
2576 * Make sure to set the session in output mode after we set URI since a
2577 * session can be created without URL (thus flagged in no output mode).
2579 session
->output_traces
= 1;
2581 ksess
->output_traces
= 1;
2585 usess
->output_traces
= 1;
2596 * Command LTTNG_CREATE_SESSION processed by the client thread.
2598 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
2599 size_t nb_uri
, lttng_sock_cred
*creds
, unsigned int live_timer
)
2602 struct ltt_session
*session
;
2608 * Verify if the session already exist
2610 * XXX: There is no need for the session lock list here since the caller
2611 * (process_client_msg) is holding it. We might want to change that so a
2612 * single command does not lock the entire session list.
2614 session
= session_find_by_name(name
);
2615 if (session
!= NULL
) {
2616 ret
= LTTNG_ERR_EXIST_SESS
;
2620 /* Create tracing session in the registry */
2621 ret
= session_create(name
, LTTNG_SOCK_GET_UID_CRED(creds
),
2622 LTTNG_SOCK_GET_GID_CRED(creds
));
2623 if (ret
!= LTTNG_OK
) {
2628 * Get the newly created session pointer back
2630 * XXX: There is no need for the session lock list here since the caller
2631 * (process_client_msg) is holding it. We might want to change that so a
2632 * single command does not lock the entire session list.
2634 session
= session_find_by_name(name
);
2637 session
->live_timer
= live_timer
;
2638 /* Create default consumer output for the session not yet created. */
2639 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
2640 if (session
->consumer
== NULL
) {
2641 ret
= LTTNG_ERR_FATAL
;
2642 goto consumer_error
;
2646 ret
= cmd_set_consumer_uri(session
, nb_uri
, uris
);
2647 if (ret
!= LTTNG_OK
) {
2648 goto consumer_error
;
2650 session
->output_traces
= 1;
2652 session
->output_traces
= 0;
2653 DBG2("Session %s created with no output", session
->name
);
2656 session
->consumer
->enabled
= 1;
2661 session_destroy(session
);
2668 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
2670 int cmd_create_session_snapshot(char *name
, struct lttng_uri
*uris
,
2671 size_t nb_uri
, lttng_sock_cred
*creds
)
2674 struct ltt_session
*session
;
2675 struct snapshot_output
*new_output
= NULL
;
2681 * Create session in no output mode with URIs set to NULL. The uris we've
2682 * received are for a default snapshot output if one.
2684 ret
= cmd_create_session_uri(name
, NULL
, 0, creds
, 0);
2685 if (ret
!= LTTNG_OK
) {
2689 /* Get the newly created session pointer back. This should NEVER fail. */
2690 session
= session_find_by_name(name
);
2693 /* Flag session for snapshot mode. */
2694 session
->snapshot_mode
= 1;
2696 /* Skip snapshot output creation if no URI is given. */
2701 new_output
= snapshot_output_alloc();
2703 ret
= LTTNG_ERR_NOMEM
;
2704 goto error_snapshot_alloc
;
2707 ret
= snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE
, NULL
,
2708 uris
, nb_uri
, session
->consumer
, new_output
, &session
->snapshot
);
2710 if (ret
== -ENOMEM
) {
2711 ret
= LTTNG_ERR_NOMEM
;
2713 ret
= LTTNG_ERR_INVALID
;
2715 goto error_snapshot
;
2719 snapshot_add_output(&session
->snapshot
, new_output
);
2726 snapshot_output_destroy(new_output
);
2727 error_snapshot_alloc
:
2728 session_destroy(session
);
2734 * Command LTTNG_DESTROY_SESSION processed by the client thread.
2736 * Called with session lock held.
2738 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
2741 struct ltt_ust_session
*usess
;
2742 struct ltt_kernel_session
*ksess
;
2747 usess
= session
->ust_session
;
2748 ksess
= session
->kernel_session
;
2750 /* Clean kernel session teardown */
2751 kernel_destroy_session(ksess
);
2753 /* UST session teardown */
2755 /* Close any relayd session */
2756 consumer_output_send_destroy_relayd(usess
->consumer
);
2758 /* Destroy every UST application related to this session. */
2759 ret
= ust_app_destroy_trace_all(usess
);
2761 ERR("Error in ust_app_destroy_trace_all");
2764 /* Clean up the rest. */
2765 trace_ust_destroy_session(usess
);
2769 * Must notify the kernel thread here to update it's poll set in order to
2770 * remove the channel(s)' fd just destroyed.
2772 ret
= notify_thread_pipe(wpipe
);
2774 PERROR("write kernel poll pipe");
2777 ret
= session_destroy(session
);
2783 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2785 int cmd_register_consumer(struct ltt_session
*session
,
2786 enum lttng_domain_type domain
, const char *sock_path
,
2787 struct consumer_data
*cdata
)
2790 struct consumer_socket
*socket
= NULL
;
2797 case LTTNG_DOMAIN_KERNEL
:
2799 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2803 /* Can't register a consumer if there is already one */
2804 if (ksess
->consumer_fds_sent
!= 0) {
2805 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2809 sock
= lttcomm_connect_unix_sock(sock_path
);
2811 ret
= LTTNG_ERR_CONNECT_FAIL
;
2814 cdata
->cmd_sock
= sock
;
2816 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
2817 if (socket
== NULL
) {
2820 PERROR("close register consumer");
2822 cdata
->cmd_sock
= -1;
2823 ret
= LTTNG_ERR_FATAL
;
2827 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
2828 if (socket
->lock
== NULL
) {
2829 PERROR("zmalloc pthread mutex");
2830 ret
= LTTNG_ERR_FATAL
;
2833 pthread_mutex_init(socket
->lock
, NULL
);
2834 socket
->registered
= 1;
2837 consumer_add_socket(socket
, ksess
->consumer
);
2840 pthread_mutex_lock(&cdata
->pid_mutex
);
2842 pthread_mutex_unlock(&cdata
->pid_mutex
);
2847 /* TODO: Userspace tracing */
2848 ret
= LTTNG_ERR_UND
;
2856 consumer_destroy_socket(socket
);
2862 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2864 ssize_t
cmd_list_domains(struct ltt_session
*session
,
2865 struct lttng_domain
**domains
)
2870 struct lttng_ht_iter iter
;
2872 if (session
->kernel_session
!= NULL
) {
2873 DBG3("Listing domains found kernel domain");
2877 if (session
->ust_session
!= NULL
) {
2878 DBG3("Listing domains found UST global domain");
2882 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
2884 if (agt
->being_used
) {
2895 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
2896 if (*domains
== NULL
) {
2897 ret
= LTTNG_ERR_FATAL
;
2901 if (session
->kernel_session
!= NULL
) {
2902 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
2904 /* Kernel session buffer type is always GLOBAL */
2905 (*domains
)[index
].buf_type
= LTTNG_BUFFER_GLOBAL
;
2910 if (session
->ust_session
!= NULL
) {
2911 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
2912 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2916 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
2918 if (agt
->being_used
) {
2919 (*domains
)[index
].type
= agt
->domain
;
2920 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2930 /* Return negative value to differentiate return code */
2936 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2938 ssize_t
cmd_list_channels(enum lttng_domain_type domain
,
2939 struct ltt_session
*session
, struct lttng_channel
**channels
)
2941 ssize_t nb_chan
= 0, payload_size
= 0, ret
;
2944 case LTTNG_DOMAIN_KERNEL
:
2945 if (session
->kernel_session
!= NULL
) {
2946 nb_chan
= session
->kernel_session
->channel_count
;
2948 DBG3("Number of kernel channels %zd", nb_chan
);
2950 ret
= -LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
2954 case LTTNG_DOMAIN_UST
:
2955 if (session
->ust_session
!= NULL
) {
2957 nb_chan
= lttng_ht_get_count(
2958 session
->ust_session
->domain_global
.channels
);
2961 DBG3("Number of UST global channels %zd", nb_chan
);
2963 ret
= -LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2968 ret
= -LTTNG_ERR_UND
;
2973 const size_t channel_size
= sizeof(struct lttng_channel
) +
2974 sizeof(struct lttng_channel_extended
);
2975 struct lttng_channel_extended
*channel_exts
;
2977 payload_size
= nb_chan
* channel_size
;
2978 *channels
= zmalloc(payload_size
);
2979 if (*channels
== NULL
) {
2980 ret
= -LTTNG_ERR_FATAL
;
2984 channel_exts
= ((void *) *channels
) +
2985 (nb_chan
* sizeof(struct lttng_channel
));
2986 ret
= list_lttng_channels(domain
, session
, *channels
, channel_exts
);
2987 if (ret
!= LTTNG_OK
) {
3002 * Command LTTNG_LIST_EVENTS processed by the client thread.
3004 ssize_t
cmd_list_events(enum lttng_domain_type domain
,
3005 struct ltt_session
*session
, char *channel_name
,
3006 struct lttng_event
**events
, size_t *total_size
)
3009 ssize_t nb_event
= 0;
3012 case LTTNG_DOMAIN_KERNEL
:
3013 if (session
->kernel_session
!= NULL
) {
3014 nb_event
= list_lttng_kernel_events(channel_name
,
3015 session
->kernel_session
, events
,
3019 case LTTNG_DOMAIN_UST
:
3021 if (session
->ust_session
!= NULL
) {
3022 nb_event
= list_lttng_ust_global_events(channel_name
,
3023 &session
->ust_session
->domain_global
, events
,
3028 case LTTNG_DOMAIN_LOG4J
:
3029 case LTTNG_DOMAIN_JUL
:
3030 case LTTNG_DOMAIN_PYTHON
:
3031 if (session
->ust_session
) {
3032 struct lttng_ht_iter iter
;
3036 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
3037 &iter
.iter
, agt
, node
.node
) {
3038 if (agt
->domain
== domain
) {
3039 nb_event
= list_lttng_agent_events(
3049 ret
= LTTNG_ERR_UND
;
3056 /* Return negative value to differentiate return code */
3061 * Using the session list, filled a lttng_session array to send back to the
3062 * client for session listing.
3064 * The session list lock MUST be acquired before calling this function. Use
3065 * session_lock_list() and session_unlock_list().
3067 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
3072 struct ltt_session
*session
;
3073 struct ltt_session_list
*list
= session_get_list();
3075 DBG("Getting all available session for UID %d GID %d",
3078 * Iterate over session list and append data after the control struct in
3081 cds_list_for_each_entry(session
, &list
->head
, list
) {
3083 * Only list the sessions the user can control.
3085 if (!session_access_ok(session
, uid
, gid
)) {
3089 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3090 struct ltt_ust_session
*usess
= session
->ust_session
;
3092 if (session
->consumer
->type
== CONSUMER_DST_NET
||
3093 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
3094 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
3095 ret
= build_network_session_path(sessions
[i
].path
,
3096 sizeof(sessions
[i
].path
), session
);
3098 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
3099 session
->consumer
->dst
.trace_path
);
3102 PERROR("snprintf session path");
3106 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
3107 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
3108 sessions
[i
].enabled
= session
->active
;
3109 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
3110 sessions
[i
].live_timer_interval
= session
->live_timer
;
3116 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
3117 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
3119 int cmd_data_pending(struct ltt_session
*session
)
3122 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3123 struct ltt_ust_session
*usess
= session
->ust_session
;
3127 /* Session MUST be stopped to ask for data availability. */
3128 if (session
->active
) {
3129 ret
= LTTNG_ERR_SESSION_STARTED
;
3133 * If stopped, just make sure we've started before else the above call
3134 * will always send that there is data pending.
3136 * The consumer assumes that when the data pending command is received,
3137 * the trace has been started before or else no output data is written
3138 * by the streams which is a condition for data pending. So, this is
3139 * *VERY* important that we don't ask the consumer before a start
3142 if (!session
->has_been_started
) {
3148 if (ksess
&& ksess
->consumer
) {
3149 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
3151 /* Data is still being extracted for the kernel. */
3156 if (usess
&& usess
->consumer
) {
3157 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
3159 /* Data is still being extracted for the kernel. */
3164 /* Data is ready to be read by a viewer */
3172 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
3174 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3176 int cmd_snapshot_add_output(struct ltt_session
*session
,
3177 struct lttng_snapshot_output
*output
, uint32_t *id
)
3180 struct snapshot_output
*new_output
;
3185 DBG("Cmd snapshot add output for session %s", session
->name
);
3188 * Can't create an output if the session is not set in no-output mode.
3190 if (session
->output_traces
) {
3191 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3195 /* Only one output is allowed until we have the "tee" feature. */
3196 if (session
->snapshot
.nb_output
== 1) {
3197 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
3201 new_output
= snapshot_output_alloc();
3203 ret
= LTTNG_ERR_NOMEM
;
3207 ret
= snapshot_output_init(output
->max_size
, output
->name
,
3208 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
3209 &session
->snapshot
);
3211 if (ret
== -ENOMEM
) {
3212 ret
= LTTNG_ERR_NOMEM
;
3214 ret
= LTTNG_ERR_INVALID
;
3220 snapshot_add_output(&session
->snapshot
, new_output
);
3222 *id
= new_output
->id
;
3229 snapshot_output_destroy(new_output
);
3235 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
3237 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3239 int cmd_snapshot_del_output(struct ltt_session
*session
,
3240 struct lttng_snapshot_output
*output
)
3243 struct snapshot_output
*sout
= NULL
;
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
;
3260 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
3262 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
3263 } else if (*output
->name
!= '\0') {
3264 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
3266 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
3269 ret
= LTTNG_ERR_INVALID
;
3273 snapshot_delete_output(&session
->snapshot
, sout
);
3274 snapshot_output_destroy(sout
);
3283 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
3285 * If no output is available, outputs is untouched and 0 is returned.
3287 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
3289 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
3290 struct lttng_snapshot_output
**outputs
)
3293 struct lttng_snapshot_output
*list
= NULL
;
3294 struct lttng_ht_iter iter
;
3295 struct snapshot_output
*output
;
3300 DBG("Cmd snapshot list outputs for session %s", session
->name
);
3303 * Permission denied to create an output if the session is not
3304 * set in no output mode.
3306 if (session
->output_traces
) {
3307 ret
= -LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3311 if (session
->snapshot
.nb_output
== 0) {
3316 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
3318 ret
= -LTTNG_ERR_NOMEM
;
3322 /* Copy list from session to the new list object. */
3324 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
3325 output
, node
.node
) {
3326 assert(output
->consumer
);
3327 list
[idx
].id
= output
->id
;
3328 list
[idx
].max_size
= output
->max_size
;
3329 if (lttng_strncpy(list
[idx
].name
, output
->name
,
3330 sizeof(list
[idx
].name
))) {
3331 ret
= -LTTNG_ERR_INVALID
;
3334 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
3335 if (lttng_strncpy(list
[idx
].ctrl_url
,
3336 output
->consumer
->dst
.trace_path
,
3337 sizeof(list
[idx
].ctrl_url
))) {
3338 ret
= -LTTNG_ERR_INVALID
;
3343 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
3344 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
3346 ret
= -LTTNG_ERR_NOMEM
;
3351 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
3352 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
3354 ret
= -LTTNG_ERR_NOMEM
;
3363 ret
= session
->snapshot
.nb_output
;
3372 * Check if we can regenerate the metadata for this session.
3373 * Only kernel, UST per-uid and non-live sessions are supported.
3375 * Return 0 if the metadata can be generated, a LTTNG_ERR code otherwise.
3378 int check_regenerate_metadata_support(struct ltt_session
*session
)
3384 if (session
->live_timer
!= 0) {
3385 ret
= LTTNG_ERR_LIVE_SESSION
;
3388 if (!session
->active
) {
3389 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
3392 if (session
->ust_session
) {
3393 switch (session
->ust_session
->buffer_type
) {
3394 case LTTNG_BUFFER_PER_UID
:
3396 case LTTNG_BUFFER_PER_PID
:
3397 ret
= LTTNG_ERR_PER_PID_SESSION
;
3401 ret
= LTTNG_ERR_UNK
;
3405 if (session
->consumer
->type
== CONSUMER_DST_NET
&&
3406 session
->consumer
->relay_minor_version
< 8) {
3407 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
3417 int clear_metadata_file(int fd
)
3421 ret
= lseek(fd
, 0, SEEK_SET
);
3427 ret
= ftruncate(fd
, 0);
3429 PERROR("ftruncate");
3438 int ust_regenerate_metadata(struct ltt_ust_session
*usess
)
3441 struct buffer_reg_uid
*uid_reg
= NULL
;
3442 struct buffer_reg_session
*session_reg
= NULL
;
3445 cds_list_for_each_entry(uid_reg
, &usess
->buffer_reg_uid_list
, lnode
) {
3446 struct ust_registry_session
*registry
;
3447 struct ust_registry_channel
*chan
;
3448 struct lttng_ht_iter iter_chan
;
3450 session_reg
= uid_reg
->registry
;
3451 registry
= session_reg
->reg
.ust
;
3453 pthread_mutex_lock(®istry
->lock
);
3454 registry
->metadata_len_sent
= 0;
3455 memset(registry
->metadata
, 0, registry
->metadata_alloc_len
);
3456 registry
->metadata_len
= 0;
3457 registry
->metadata_version
++;
3458 if (registry
->metadata_fd
> 0) {
3459 /* Clear the metadata file's content. */
3460 ret
= clear_metadata_file(registry
->metadata_fd
);
3462 pthread_mutex_unlock(®istry
->lock
);
3467 ret
= ust_metadata_session_statedump(registry
, NULL
,
3468 registry
->major
, registry
->minor
);
3470 pthread_mutex_unlock(®istry
->lock
);
3471 ERR("Failed to generate session metadata (err = %d)",
3475 cds_lfht_for_each_entry(registry
->channels
->ht
, &iter_chan
.iter
,
3477 struct ust_registry_event
*event
;
3478 struct lttng_ht_iter iter_event
;
3480 ret
= ust_metadata_channel_statedump(registry
, chan
);
3482 pthread_mutex_unlock(®istry
->lock
);
3483 ERR("Failed to generate channel metadata "
3487 cds_lfht_for_each_entry(chan
->ht
->ht
, &iter_event
.iter
,
3489 ret
= ust_metadata_event_statedump(registry
,
3492 pthread_mutex_unlock(®istry
->lock
);
3493 ERR("Failed to generate event metadata "
3499 pthread_mutex_unlock(®istry
->lock
);
3508 * Command LTTNG_REGENERATE_METADATA from the lttng-ctl library.
3510 * Ask the consumer to truncate the existing metadata file(s) and
3511 * then regenerate the metadata. Live and per-pid sessions are not
3512 * supported and return an error.
3514 * Return 0 on success or else a LTTNG_ERR code.
3516 int cmd_regenerate_metadata(struct ltt_session
*session
)
3522 ret
= check_regenerate_metadata_support(session
);
3527 if (session
->kernel_session
) {
3528 ret
= kernctl_session_regenerate_metadata(
3529 session
->kernel_session
->fd
);
3531 ERR("Failed to regenerate the kernel metadata");
3536 if (session
->ust_session
) {
3537 ret
= ust_regenerate_metadata(session
->ust_session
);
3539 ERR("Failed to regenerate the UST metadata");
3543 DBG("Cmd metadata regenerate for session %s", session
->name
);
3551 * Command LTTNG_REGENERATE_STATEDUMP from the lttng-ctl library.
3553 * Ask the tracer to regenerate a new statedump.
3555 * Return 0 on success or else a LTTNG_ERR code.
3557 int cmd_regenerate_statedump(struct ltt_session
*session
)
3563 if (!session
->active
) {
3564 ret
= LTTNG_ERR_SESSION_NOT_STARTED
;
3568 if (session
->kernel_session
) {
3569 ret
= kernctl_session_regenerate_statedump(
3570 session
->kernel_session
->fd
);
3572 * Currently, the statedump in kernel can only fail if out
3576 if (ret
== -ENOMEM
) {
3577 ret
= LTTNG_ERR_REGEN_STATEDUMP_NOMEM
;
3579 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
3581 ERR("Failed to regenerate the kernel statedump");
3586 if (session
->ust_session
) {
3587 ret
= ust_app_regenerate_statedump_all(session
->ust_session
);
3589 * Currently, the statedump in UST always returns 0.
3592 ret
= LTTNG_ERR_REGEN_STATEDUMP_FAIL
;
3593 ERR("Failed to regenerate the UST statedump");
3597 DBG("Cmd regenerate statedump for session %s", session
->name
);
3604 int cmd_register_trigger(struct command_ctx
*cmd_ctx
, int sock
,
3605 struct notification_thread_handle
*notification_thread
)
3609 ssize_t sock_recv_len
;
3610 struct lttng_trigger
*trigger
= NULL
;
3611 struct lttng_buffer_view view
;
3612 struct lttng_dynamic_buffer trigger_buffer
;
3614 lttng_dynamic_buffer_init(&trigger_buffer
);
3615 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
3616 ret
= lttng_dynamic_buffer_set_size(&trigger_buffer
, trigger_len
);
3618 ret
= LTTNG_ERR_NOMEM
;
3622 sock_recv_len
= lttcomm_recv_unix_sock(sock
, trigger_buffer
.data
,
3624 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
3625 ERR("Failed to receive \"register trigger\" command payload");
3626 /* TODO: should this be a new error enum ? */
3627 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3631 view
= lttng_buffer_view_from_dynamic_buffer(&trigger_buffer
, 0, -1);
3632 if (lttng_trigger_create_from_buffer(&view
, &trigger
) !=
3634 ERR("Invalid trigger payload received in \"register trigger\" command");
3635 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3639 ret
= notification_thread_command_register_trigger(notification_thread
,
3641 /* Ownership of trigger was transferred. */
3644 lttng_trigger_destroy(trigger
);
3645 lttng_dynamic_buffer_reset(&trigger_buffer
);
3649 int cmd_unregister_trigger(struct command_ctx
*cmd_ctx
, int sock
,
3650 struct notification_thread_handle
*notification_thread
)
3654 ssize_t sock_recv_len
;
3655 struct lttng_trigger
*trigger
= NULL
;
3656 struct lttng_buffer_view view
;
3657 struct lttng_dynamic_buffer trigger_buffer
;
3659 lttng_dynamic_buffer_init(&trigger_buffer
);
3660 trigger_len
= (size_t) cmd_ctx
->lsm
->u
.trigger
.length
;
3661 ret
= lttng_dynamic_buffer_set_size(&trigger_buffer
, trigger_len
);
3663 ret
= LTTNG_ERR_NOMEM
;
3667 sock_recv_len
= lttcomm_recv_unix_sock(sock
, trigger_buffer
.data
,
3669 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
3670 ERR("Failed to receive \"unregister trigger\" command payload");
3671 /* TODO: should this be a new error enum ? */
3672 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3676 view
= lttng_buffer_view_from_dynamic_buffer(&trigger_buffer
, 0, -1);
3677 if (lttng_trigger_create_from_buffer(&view
, &trigger
) !=
3679 ERR("Invalid trigger payload received in \"unregister trigger\" command");
3680 ret
= LTTNG_ERR_INVALID_TRIGGER
;
3684 ret
= notification_thread_command_unregister_trigger(notification_thread
,
3687 lttng_trigger_destroy(trigger
);
3688 lttng_dynamic_buffer_reset(&trigger_buffer
);
3693 * Send relayd sockets from snapshot output to consumer. Ignore request if the
3694 * snapshot output is *not* set with a remote destination.
3696 * Return 0 on success or a LTTNG_ERR code.
3698 static int set_relayd_for_snapshot(struct consumer_output
*consumer
,
3699 struct snapshot_output
*snap_output
, struct ltt_session
*session
)
3702 struct lttng_ht_iter iter
;
3703 struct consumer_socket
*socket
;
3706 assert(snap_output
);
3709 DBG2("Set relayd object from snapshot output");
3711 /* Ignore if snapshot consumer output is not network. */
3712 if (snap_output
->consumer
->type
!= CONSUMER_DST_NET
) {
3717 * For each consumer socket, create and send the relayd object of the
3721 cds_lfht_for_each_entry(snap_output
->consumer
->socks
->ht
, &iter
.iter
,
3722 socket
, node
.node
) {
3723 pthread_mutex_lock(socket
->lock
);
3724 ret
= send_consumer_relayd_sockets(0, session
->id
,
3725 snap_output
->consumer
, socket
,
3726 session
->name
, session
->hostname
,
3727 session
->live_timer
);
3728 pthread_mutex_unlock(socket
->lock
);
3729 if (ret
!= LTTNG_OK
) {
3741 * Record a kernel snapshot.
3743 * Return LTTNG_OK on success or a LTTNG_ERR code.
3745 static int record_kernel_snapshot(struct ltt_kernel_session
*ksess
,
3746 struct snapshot_output
*output
, struct ltt_session
*session
,
3747 int wait
, uint64_t nb_packets_per_stream
)
3757 * Copy kernel session sockets so we can communicate with the right
3758 * consumer for the snapshot record command.
3760 ret
= consumer_copy_sockets(output
->consumer
, ksess
->consumer
);
3762 ret
= LTTNG_ERR_NOMEM
;
3766 ret
= set_relayd_for_snapshot(ksess
->consumer
, output
, session
);
3767 if (ret
!= LTTNG_OK
) {
3768 goto error_snapshot
;
3771 ret
= kernel_snapshot_record(ksess
, output
, wait
, nb_packets_per_stream
);
3772 if (ret
!= LTTNG_OK
) {
3773 goto error_snapshot
;
3780 /* Clean up copied sockets so this output can use some other later on. */
3781 consumer_destroy_output_sockets(output
->consumer
);
3788 * Record a UST snapshot.
3790 * Return 0 on success or a LTTNG_ERR error code.
3792 static int record_ust_snapshot(struct ltt_ust_session
*usess
,
3793 struct snapshot_output
*output
, struct ltt_session
*session
,
3794 int wait
, uint64_t nb_packets_per_stream
)
3803 * Copy UST session sockets so we can communicate with the right
3804 * consumer for the snapshot record command.
3806 ret
= consumer_copy_sockets(output
->consumer
, usess
->consumer
);
3808 ret
= LTTNG_ERR_NOMEM
;
3812 ret
= set_relayd_for_snapshot(usess
->consumer
, output
, session
);
3813 if (ret
!= LTTNG_OK
) {
3814 goto error_snapshot
;
3817 ret
= ust_app_snapshot_record(usess
, output
, wait
, nb_packets_per_stream
);
3821 ret
= LTTNG_ERR_INVALID
;
3824 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
3827 goto error_snapshot
;
3833 /* Clean up copied sockets so this output can use some other later on. */
3834 consumer_destroy_output_sockets(output
->consumer
);
3840 uint64_t get_session_size_one_more_packet_per_stream(struct ltt_session
*session
,
3841 uint64_t cur_nr_packets
)
3843 uint64_t tot_size
= 0;
3845 if (session
->kernel_session
) {
3846 struct ltt_kernel_channel
*chan
;
3847 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3849 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
3850 if (cur_nr_packets
>= chan
->channel
->attr
.num_subbuf
) {
3852 * Don't take channel into account if we
3853 * already grab all its packets.
3857 tot_size
+= chan
->channel
->attr
.subbuf_size
3858 * chan
->stream_count
;
3862 if (session
->ust_session
) {
3863 struct ltt_ust_session
*usess
= session
->ust_session
;
3865 tot_size
+= ust_app_get_size_one_more_packet_per_stream(usess
,
3873 * Calculate the number of packets we can grab from each stream that
3874 * fits within the overall snapshot max size.
3876 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
3877 * the number of packets per stream.
3879 * TODO: this approach is not perfect: we consider the worse case
3880 * (packet filling the sub-buffers) as an upper bound, but we could do
3881 * better if we do this calculation while we actually grab the packet
3882 * content: we would know how much padding we don't actually store into
3885 * This algorithm is currently bounded by the number of packets per
3888 * Since we call this algorithm before actually grabbing the data, it's
3889 * an approximation: for instance, applications could appear/disappear
3890 * in between this call and actually grabbing data.
3893 int64_t get_session_nb_packets_per_stream(struct ltt_session
*session
, uint64_t max_size
)
3896 uint64_t cur_nb_packets
= 0;
3899 return 0; /* Infinite */
3902 size_left
= max_size
;
3904 uint64_t one_more_packet_tot_size
;
3906 one_more_packet_tot_size
= get_session_size_one_more_packet_per_stream(session
,
3908 if (!one_more_packet_tot_size
) {
3909 /* We are already grabbing all packets. */
3912 size_left
-= one_more_packet_tot_size
;
3913 if (size_left
< 0) {
3918 if (!cur_nb_packets
) {
3919 /* Not enough room to grab one packet of each stream, error. */
3922 return cur_nb_packets
;
3926 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
3928 * The wait parameter is ignored so this call always wait for the snapshot to
3929 * complete before returning.
3931 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3933 int cmd_snapshot_record(struct ltt_session
*session
,
3934 struct lttng_snapshot_output
*output
, int wait
)
3937 unsigned int use_tmp_output
= 0;
3938 struct snapshot_output tmp_output
;
3939 unsigned int snapshot_success
= 0;
3945 DBG("Cmd snapshot record for session %s", session
->name
);
3947 /* Get the datetime for the snapshot output directory. */
3948 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", datetime
,
3951 ret
= LTTNG_ERR_INVALID
;
3956 * Permission denied to create an output if the session is not
3957 * set in no output mode.
3959 if (session
->output_traces
) {
3960 ret
= LTTNG_ERR_NOT_SNAPSHOT_SESSION
;
3964 /* The session needs to be started at least once. */
3965 if (!session
->has_been_started
) {
3966 ret
= LTTNG_ERR_START_SESSION_ONCE
;
3970 /* Use temporary output for the session. */
3971 if (*output
->ctrl_url
!= '\0') {
3972 ret
= snapshot_output_init(output
->max_size
, output
->name
,
3973 output
->ctrl_url
, output
->data_url
, session
->consumer
,
3976 if (ret
== -ENOMEM
) {
3977 ret
= LTTNG_ERR_NOMEM
;
3979 ret
= LTTNG_ERR_INVALID
;
3983 /* Use the global session count for the temporary snapshot. */
3984 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3986 /* Use the global datetime */
3987 memcpy(tmp_output
.datetime
, datetime
, sizeof(datetime
));
3991 if (use_tmp_output
) {
3992 int64_t nb_packets_per_stream
;
3994 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3995 tmp_output
.max_size
);
3996 if (nb_packets_per_stream
< 0) {
3997 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
4001 if (session
->kernel_session
) {
4002 ret
= record_kernel_snapshot(session
->kernel_session
,
4003 &tmp_output
, session
,
4004 wait
, nb_packets_per_stream
);
4005 if (ret
!= LTTNG_OK
) {
4010 if (session
->ust_session
) {
4011 ret
= record_ust_snapshot(session
->ust_session
,
4012 &tmp_output
, session
,
4013 wait
, nb_packets_per_stream
);
4014 if (ret
!= LTTNG_OK
) {
4019 snapshot_success
= 1;
4021 struct snapshot_output
*sout
;
4022 struct lttng_ht_iter iter
;
4025 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
4026 &iter
.iter
, sout
, node
.node
) {
4027 int64_t nb_packets_per_stream
;
4030 * Make a local copy of the output and assign the possible
4031 * temporary value given by the caller.
4033 memset(&tmp_output
, 0, sizeof(tmp_output
));
4034 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
4036 if (output
->max_size
!= (uint64_t) -1ULL) {
4037 tmp_output
.max_size
= output
->max_size
;
4040 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
4041 tmp_output
.max_size
);
4042 if (nb_packets_per_stream
< 0) {
4043 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
4048 /* Use temporary name. */
4049 if (*output
->name
!= '\0') {
4050 if (lttng_strncpy(tmp_output
.name
, output
->name
,
4051 sizeof(tmp_output
.name
))) {
4052 ret
= LTTNG_ERR_INVALID
;
4058 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
4059 memcpy(tmp_output
.datetime
, datetime
, sizeof(datetime
));
4061 if (session
->kernel_session
) {
4062 ret
= record_kernel_snapshot(session
->kernel_session
,
4063 &tmp_output
, session
,
4064 wait
, nb_packets_per_stream
);
4065 if (ret
!= LTTNG_OK
) {
4071 if (session
->ust_session
) {
4072 ret
= record_ust_snapshot(session
->ust_session
,
4073 &tmp_output
, session
,
4074 wait
, nb_packets_per_stream
);
4075 if (ret
!= LTTNG_OK
) {
4080 snapshot_success
= 1;
4085 if (snapshot_success
) {
4086 session
->snapshot
.nb_snapshot
++;
4088 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
4096 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
4098 int cmd_set_session_shm_path(struct ltt_session
*session
,
4099 const char *shm_path
)
4105 * Can only set shm path before session is started.
4107 if (session
->has_been_started
) {
4108 return LTTNG_ERR_SESSION_STARTED
;
4111 strncpy(session
->shm_path
, shm_path
,
4112 sizeof(session
->shm_path
));
4113 session
->shm_path
[sizeof(session
->shm_path
) - 1] = '\0';
4119 * Init command subsystem.
4124 * Set network sequence index to 1 for streams to match a relayd
4125 * socket on the consumer side.
4127 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
4128 relayd_net_seq_idx
= 1;
4129 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
4131 DBG("Command subsystem initialized");