2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <urcu/list.h>
22 #include <urcu/uatomic.h>
24 #include <common/defaults.h>
25 #include <common/common.h>
26 #include <common/sessiond-comm/sessiond-comm.h>
27 #include <common/relayd/relayd.h>
28 #include <common/utils.h>
33 #include "health-sessiond.h"
35 #include "kernel-consumer.h"
36 #include "lttng-sessiond.h"
42 * Used to keep a unique index for each relayd socket created where this value
43 * is associated with streams on the consumer so it can match the right relayd
44 * to send to. It must be accessed with the relayd_net_seq_idx_lock
47 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
48 static uint64_t relayd_net_seq_idx
;
51 * Create a session path used by list_lttng_sessions for the case that the
52 * session consumer is on the network.
54 static int build_network_session_path(char *dst
, size_t size
,
55 struct ltt_session
*session
)
57 int ret
, kdata_port
, udata_port
;
58 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
59 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
64 memset(tmp_urls
, 0, sizeof(tmp_urls
));
65 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
67 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
69 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
70 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
71 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
74 if (session
->ust_session
&& session
->ust_session
->consumer
) {
75 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
76 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
79 if (uuri
== NULL
&& kuri
== NULL
) {
80 uri
= &session
->consumer
->dst
.net
.control
;
81 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
82 } else if (kuri
&& uuri
) {
83 ret
= uri_compare(kuri
, uuri
);
87 /* Build uuri URL string */
88 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
95 } else if (kuri
&& uuri
== NULL
) {
97 } else if (uuri
&& kuri
== NULL
) {
101 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
107 * Do we have a UST url set. If yes, this means we have both kernel and UST
110 if (*tmp_uurl
!= '\0') {
111 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
112 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
115 if (kuri
|| (!kuri
&& !uuri
)) {
118 /* No kernel URI, use the UST port. */
121 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
129 * Fill lttng_channel array of all channels.
131 static void list_lttng_channels(int domain
, struct ltt_session
*session
,
132 struct lttng_channel
*channels
)
135 struct ltt_kernel_channel
*kchan
;
137 DBG("Listing channels for session %s", session
->name
);
140 case LTTNG_DOMAIN_KERNEL
:
141 /* Kernel channels */
142 if (session
->kernel_session
!= NULL
) {
143 cds_list_for_each_entry(kchan
,
144 &session
->kernel_session
->channel_list
.head
, list
) {
145 /* Copy lttng_channel struct to array */
146 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
147 channels
[i
].enabled
= kchan
->enabled
;
152 case LTTNG_DOMAIN_UST
:
154 struct lttng_ht_iter iter
;
155 struct ltt_ust_channel
*uchan
;
158 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
159 &iter
.iter
, uchan
, node
.node
) {
160 strncpy(channels
[i
].name
, uchan
->name
, LTTNG_SYMBOL_NAME_LEN
);
161 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
162 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
163 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
164 channels
[i
].attr
.switch_timer_interval
=
165 uchan
->attr
.switch_timer_interval
;
166 channels
[i
].attr
.read_timer_interval
=
167 uchan
->attr
.read_timer_interval
;
168 channels
[i
].enabled
= uchan
->enabled
;
169 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
170 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
171 switch (uchan
->attr
.output
) {
174 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
188 * Create a list of agent domain events.
190 * Return number of events in list on success or else a negative value.
192 static int list_lttng_agent_events(struct agent
*agt
,
193 struct lttng_event
**events
)
196 unsigned int nb_event
= 0;
197 struct agent_event
*event
;
198 struct lttng_event
*tmp_events
;
199 struct lttng_ht_iter iter
;
204 DBG3("Listing agent events");
206 nb_event
= lttng_ht_get_count(agt
->events
);
212 tmp_events
= zmalloc(nb_event
* sizeof(*tmp_events
));
214 PERROR("zmalloc agent events session");
215 ret
= -LTTNG_ERR_FATAL
;
220 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
221 strncpy(tmp_events
[i
].name
, event
->name
, sizeof(tmp_events
[i
].name
));
222 tmp_events
[i
].name
[sizeof(tmp_events
[i
].name
) - 1] = '\0';
223 tmp_events
[i
].enabled
= event
->enabled
;
224 tmp_events
[i
].loglevel
= event
->loglevel
;
225 tmp_events
[i
].loglevel_type
= event
->loglevel_type
;
230 *events
= tmp_events
;
234 assert(nb_event
== i
);
239 * Create a list of ust global domain events.
241 static int list_lttng_ust_global_events(char *channel_name
,
242 struct ltt_ust_domain_global
*ust_global
, struct lttng_event
**events
)
245 unsigned int nb_event
= 0;
246 struct lttng_ht_iter iter
;
247 struct lttng_ht_node_str
*node
;
248 struct ltt_ust_channel
*uchan
;
249 struct ltt_ust_event
*uevent
;
250 struct lttng_event
*tmp
;
252 DBG("Listing UST global events for channel %s", channel_name
);
256 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
257 node
= lttng_ht_iter_get_node_str(&iter
);
259 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
263 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
265 nb_event
+= lttng_ht_get_count(uchan
->events
);
272 DBG3("Listing UST global %d events", nb_event
);
274 tmp
= zmalloc(nb_event
* sizeof(struct lttng_event
));
276 ret
= LTTNG_ERR_FATAL
;
280 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
281 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
282 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
283 tmp
[i
].enabled
= uevent
->enabled
;
285 switch (uevent
->attr
.instrumentation
) {
286 case LTTNG_UST_TRACEPOINT
:
287 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
289 case LTTNG_UST_PROBE
:
290 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
292 case LTTNG_UST_FUNCTION
:
293 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
297 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
298 switch (uevent
->attr
.loglevel_type
) {
299 case LTTNG_UST_LOGLEVEL_ALL
:
300 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
302 case LTTNG_UST_LOGLEVEL_RANGE
:
303 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
305 case LTTNG_UST_LOGLEVEL_SINGLE
:
306 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
309 if (uevent
->filter
) {
312 if (uevent
->exclusion
) {
313 tmp
[i
].exclusion
= 1;
327 * Fill lttng_event array of all kernel events in the channel.
329 static int list_lttng_kernel_events(char *channel_name
,
330 struct ltt_kernel_session
*kernel_session
, struct lttng_event
**events
)
333 unsigned int nb_event
;
334 struct ltt_kernel_event
*event
;
335 struct ltt_kernel_channel
*kchan
;
337 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
339 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
343 nb_event
= kchan
->event_count
;
345 DBG("Listing events for channel %s", kchan
->channel
->name
);
351 *events
= zmalloc(nb_event
* sizeof(struct lttng_event
));
352 if (*events
== NULL
) {
353 ret
= LTTNG_ERR_FATAL
;
357 /* Kernel channels */
358 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
359 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
360 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
361 (*events
)[i
].enabled
= event
->enabled
;
363 switch (event
->event
->instrumentation
) {
364 case LTTNG_KERNEL_TRACEPOINT
:
365 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
367 case LTTNG_KERNEL_KRETPROBE
:
368 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
369 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
370 sizeof(struct lttng_kernel_kprobe
));
372 case LTTNG_KERNEL_KPROBE
:
373 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
374 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
375 sizeof(struct lttng_kernel_kprobe
));
377 case LTTNG_KERNEL_FUNCTION
:
378 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
379 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
380 sizeof(struct lttng_kernel_function
));
382 case LTTNG_KERNEL_NOOP
:
383 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
385 case LTTNG_KERNEL_SYSCALL
:
386 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
388 case LTTNG_KERNEL_ALL
:
399 /* Negate the error code to differentiate the size from an error */
404 * Add URI so the consumer output object. Set the correct path depending on the
405 * domain adding the default trace directory.
407 static int add_uri_to_consumer(struct consumer_output
*consumer
,
408 struct lttng_uri
*uri
, int domain
, const char *session_name
)
411 const char *default_trace_dir
;
415 if (consumer
== NULL
) {
416 DBG("No consumer detected. Don't add URI. Stopping.");
417 ret
= LTTNG_ERR_NO_CONSUMER
;
422 case LTTNG_DOMAIN_KERNEL
:
423 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
425 case LTTNG_DOMAIN_UST
:
426 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
430 * This case is possible is we try to add the URI to the global tracing
431 * session consumer object which in this case there is no subdir.
433 default_trace_dir
= "";
436 switch (uri
->dtype
) {
439 DBG2("Setting network URI to consumer");
441 if (consumer
->type
== CONSUMER_DST_NET
) {
442 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
443 consumer
->dst
.net
.control_isset
) ||
444 (uri
->stype
== LTTNG_STREAM_DATA
&&
445 consumer
->dst
.net
.data_isset
)) {
446 ret
= LTTNG_ERR_URL_EXIST
;
450 memset(&consumer
->dst
.net
, 0, sizeof(consumer
->dst
.net
));
453 consumer
->type
= CONSUMER_DST_NET
;
455 /* Set URI into consumer output object */
456 ret
= consumer_set_network_uri(consumer
, uri
);
460 } else if (ret
== 1) {
462 * URI was the same in the consumer so we do not append the subdir
463 * again so to not duplicate output dir.
469 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
470 ret
= consumer_set_subdir(consumer
, session_name
);
472 ret
= LTTNG_ERR_FATAL
;
477 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
478 /* On a new subdir, reappend the default trace dir. */
479 strncat(consumer
->subdir
, default_trace_dir
,
480 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
481 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
486 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
487 memset(consumer
->dst
.trace_path
, 0,
488 sizeof(consumer
->dst
.trace_path
));
489 strncpy(consumer
->dst
.trace_path
, uri
->dst
.path
,
490 sizeof(consumer
->dst
.trace_path
));
491 /* Append default trace dir */
492 strncat(consumer
->dst
.trace_path
, default_trace_dir
,
493 sizeof(consumer
->dst
.trace_path
) -
494 strlen(consumer
->dst
.trace_path
) - 1);
495 /* Flag consumer as local. */
496 consumer
->type
= CONSUMER_DST_LOCAL
;
507 * Init tracing by creating trace directory and sending fds kernel consumer.
509 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
512 struct lttng_ht_iter iter
;
513 struct consumer_socket
*socket
;
519 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
520 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
522 pthread_mutex_lock(socket
->lock
);
523 ret
= kernel_consumer_send_session(socket
, session
);
524 pthread_mutex_unlock(socket
->lock
);
526 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
538 * Create a socket to the relayd using the URI.
540 * On success, the relayd_sock pointer is set to the created socket.
541 * Else, it's stays untouched and a lttcomm error code is returned.
543 static int create_connect_relayd(struct lttng_uri
*uri
,
544 struct lttcomm_relayd_sock
**relayd_sock
)
547 struct lttcomm_relayd_sock
*rsock
;
549 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
550 RELAYD_VERSION_COMM_MINOR
);
552 ret
= LTTNG_ERR_FATAL
;
557 * Connect to relayd so we can proceed with a session creation. This call
558 * can possibly block for an arbitrary amount of time to set the health
559 * state to be in poll execution.
562 ret
= relayd_connect(rsock
);
565 ERR("Unable to reach lttng-relayd");
566 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
570 /* Create socket for control stream. */
571 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
572 DBG3("Creating relayd stream socket from URI");
574 /* Check relayd version */
575 ret
= relayd_version_check(rsock
);
577 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
580 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
581 DBG3("Creating relayd data socket from URI");
583 /* Command is not valid */
584 ERR("Relayd invalid stream type: %d", uri
->stype
);
585 ret
= LTTNG_ERR_INVALID
;
589 *relayd_sock
= rsock
;
594 /* The returned value is not useful since we are on an error path. */
595 (void) relayd_close(rsock
);
603 * Connect to the relayd using URI and send the socket to the right consumer.
605 static int send_consumer_relayd_socket(int domain
, unsigned int session_id
,
606 struct lttng_uri
*relayd_uri
, struct consumer_output
*consumer
,
607 struct consumer_socket
*consumer_sock
,
608 char *session_name
, char *hostname
, int session_live_timer
)
611 struct lttcomm_relayd_sock
*rsock
= NULL
;
613 /* Connect to relayd and make version check if uri is the control. */
614 ret
= create_connect_relayd(relayd_uri
, &rsock
);
615 if (ret
!= LTTNG_OK
) {
620 /* Set the network sequence index if not set. */
621 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
622 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
624 * Increment net_seq_idx because we are about to transfer the
625 * new relayd socket to the consumer.
626 * Assign unique key so the consumer can match streams.
628 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
629 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
632 /* Send relayd socket to consumer. */
633 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
634 relayd_uri
->stype
, session_id
,
635 session_name
, hostname
, session_live_timer
);
637 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
641 /* Flag that the corresponding socket was sent. */
642 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
643 consumer_sock
->control_sock_sent
= 1;
644 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
645 consumer_sock
->data_sock_sent
= 1;
651 * Close socket which was dup on the consumer side. The session daemon does
652 * NOT keep track of the relayd socket(s) once transfer to the consumer.
656 (void) relayd_close(rsock
);
660 if (ret
!= LTTNG_OK
) {
662 * The consumer output for this session should not be used anymore
663 * since the relayd connection failed thus making any tracing or/and
664 * streaming not usable.
666 consumer
->enabled
= 0;
672 * Send both relayd sockets to a specific consumer and domain. This is a
673 * helper function to facilitate sending the information to the consumer for a
676 static int send_consumer_relayd_sockets(int domain
, unsigned int session_id
,
677 struct consumer_output
*consumer
, struct consumer_socket
*sock
,
678 char *session_name
, char *hostname
, int session_live_timer
)
685 /* Sending control relayd socket. */
686 if (!sock
->control_sock_sent
) {
687 ret
= send_consumer_relayd_socket(domain
, session_id
,
688 &consumer
->dst
.net
.control
, consumer
, sock
,
689 session_name
, hostname
, session_live_timer
);
690 if (ret
!= LTTNG_OK
) {
695 /* Sending data relayd socket. */
696 if (!sock
->data_sock_sent
) {
697 ret
= send_consumer_relayd_socket(domain
, session_id
,
698 &consumer
->dst
.net
.data
, consumer
, sock
,
699 session_name
, hostname
, session_live_timer
);
700 if (ret
!= LTTNG_OK
) {
710 * Setup relayd connections for a tracing session. First creates the socket to
711 * the relayd and send them to the right domain consumer. Consumer type MUST be
714 int cmd_setup_relayd(struct ltt_session
*session
)
717 struct ltt_ust_session
*usess
;
718 struct ltt_kernel_session
*ksess
;
719 struct consumer_socket
*socket
;
720 struct lttng_ht_iter iter
;
724 usess
= session
->ust_session
;
725 ksess
= session
->kernel_session
;
727 DBG("Setting relayd for session %s", session
->name
);
731 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
732 && usess
->consumer
->enabled
) {
733 /* For each consumer socket, send relayd sockets */
734 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
736 pthread_mutex_lock(socket
->lock
);
737 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
738 usess
->consumer
, socket
,
739 session
->name
, session
->hostname
,
740 session
->live_timer
);
741 pthread_mutex_unlock(socket
->lock
);
742 if (ret
!= LTTNG_OK
) {
745 /* Session is now ready for network streaming. */
746 session
->net_handle
= 1;
750 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
751 && ksess
->consumer
->enabled
) {
752 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
754 pthread_mutex_lock(socket
->lock
);
755 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
756 ksess
->consumer
, socket
,
757 session
->name
, session
->hostname
,
758 session
->live_timer
);
759 pthread_mutex_unlock(socket
->lock
);
760 if (ret
!= LTTNG_OK
) {
763 /* Session is now ready for network streaming. */
764 session
->net_handle
= 1;
774 * Start a kernel session by opening all necessary streams.
776 static int start_kernel_session(struct ltt_kernel_session
*ksess
, int wpipe
)
779 struct ltt_kernel_channel
*kchan
;
781 /* Open kernel metadata */
782 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
783 ret
= kernel_open_metadata(ksess
);
785 ret
= LTTNG_ERR_KERN_META_FAIL
;
790 /* Open kernel metadata stream */
791 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
792 ret
= kernel_open_metadata_stream(ksess
);
794 ERR("Kernel create metadata stream failed");
795 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
800 /* For each channel */
801 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
802 if (kchan
->stream_count
== 0) {
803 ret
= kernel_open_channel_stream(kchan
);
805 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
808 /* Update the stream global counter */
809 ksess
->stream_count_global
+= ret
;
813 /* Setup kernel consumer socket and send fds to it */
814 ret
= init_kernel_tracing(ksess
);
816 ret
= LTTNG_ERR_KERN_START_FAIL
;
820 /* This start the kernel tracing */
821 ret
= kernel_start_session(ksess
);
823 ret
= LTTNG_ERR_KERN_START_FAIL
;
827 /* Quiescent wait after starting trace */
828 kernel_wait_quiescent(kernel_tracer_fd
);
839 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
841 int cmd_disable_channel(struct ltt_session
*session
, int domain
,
845 struct ltt_ust_session
*usess
;
847 usess
= session
->ust_session
;
852 case LTTNG_DOMAIN_KERNEL
:
854 ret
= channel_kernel_disable(session
->kernel_session
,
856 if (ret
!= LTTNG_OK
) {
860 kernel_wait_quiescent(kernel_tracer_fd
);
863 case LTTNG_DOMAIN_UST
:
865 struct ltt_ust_channel
*uchan
;
866 struct lttng_ht
*chan_ht
;
868 chan_ht
= usess
->domain_global
.channels
;
870 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
872 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
876 ret
= channel_ust_disable(usess
, uchan
);
877 if (ret
!= LTTNG_OK
) {
883 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
884 case LTTNG_DOMAIN_UST_EXEC_NAME
:
885 case LTTNG_DOMAIN_UST_PID
:
888 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
900 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
902 * The wpipe arguments is used as a notifier for the kernel thread.
904 int cmd_enable_channel(struct ltt_session
*session
,
905 struct lttng_domain
*domain
, struct lttng_channel
*attr
, int wpipe
)
908 struct ltt_ust_session
*usess
= session
->ust_session
;
909 struct lttng_ht
*chan_ht
;
915 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
920 * Don't try to enable a channel if the session has been started at
921 * some point in time before. The tracer does not allow it.
923 if (session
->has_been_started
) {
924 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
929 * If the session is a live session, remove the switch timer, the
930 * live timer does the same thing but sends also synchronisation
931 * beacons for inactive streams.
933 if (session
->live_timer
> 0) {
934 attr
->attr
.live_timer_interval
= session
->live_timer
;
935 attr
->attr
.switch_timer_interval
= 0;
939 * The ringbuffer (both in user space and kernel) behave badly in overwrite
940 * mode and with less than 2 subbuf so block it right away and send back an
941 * invalid attribute error.
943 if (attr
->attr
.overwrite
&& attr
->attr
.num_subbuf
< 2) {
944 ret
= LTTNG_ERR_INVALID
;
948 switch (domain
->type
) {
949 case LTTNG_DOMAIN_KERNEL
:
951 struct ltt_kernel_channel
*kchan
;
953 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
954 session
->kernel_session
);
956 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
957 if (attr
->name
[0] != '\0') {
958 session
->kernel_session
->has_non_default_channel
= 1;
961 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
964 if (ret
!= LTTNG_OK
) {
968 kernel_wait_quiescent(kernel_tracer_fd
);
971 case LTTNG_DOMAIN_UST
:
973 struct ltt_ust_channel
*uchan
;
975 chan_ht
= usess
->domain_global
.channels
;
977 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
979 ret
= channel_ust_create(usess
, attr
, domain
->buf_type
);
980 if (attr
->name
[0] != '\0') {
981 usess
->has_non_default_channel
= 1;
984 ret
= channel_ust_enable(usess
, uchan
);
989 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1000 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1002 int cmd_disable_event(struct ltt_session
*session
, int domain
,
1003 char *channel_name
, char *event_name
)
1010 case LTTNG_DOMAIN_KERNEL
:
1012 struct ltt_kernel_channel
*kchan
;
1013 struct ltt_kernel_session
*ksess
;
1015 ksess
= session
->kernel_session
;
1018 * If a non-default channel has been created in the
1019 * session, explicitely require that -c chan_name needs
1022 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1023 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1027 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1028 if (kchan
== NULL
) {
1029 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1033 ret
= event_kernel_disable_tracepoint(kchan
, event_name
);
1034 if (ret
!= LTTNG_OK
) {
1038 kernel_wait_quiescent(kernel_tracer_fd
);
1041 case LTTNG_DOMAIN_UST
:
1043 struct ltt_ust_channel
*uchan
;
1044 struct ltt_ust_session
*usess
;
1046 usess
= session
->ust_session
;
1049 * If a non-default channel has been created in the
1050 * session, explicitely require that -c chan_name needs
1053 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1054 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1058 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1060 if (uchan
== NULL
) {
1061 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1065 ret
= event_ust_disable_tracepoint(usess
, uchan
, event_name
);
1066 if (ret
!= LTTNG_OK
) {
1070 DBG3("Disable UST event %s in channel %s completed", event_name
,
1074 case LTTNG_DOMAIN_JUL
:
1076 struct ltt_ust_session
*usess
= session
->ust_session
;
1080 ret
= event_agent_disable(usess
, event_name
);
1081 if (ret
!= LTTNG_OK
) {
1088 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1089 case LTTNG_DOMAIN_UST_PID
:
1090 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1093 ret
= LTTNG_ERR_UND
;
1105 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
1107 int cmd_disable_event_all(struct ltt_session
*session
, int domain
,
1115 case LTTNG_DOMAIN_KERNEL
:
1117 struct ltt_kernel_session
*ksess
;
1118 struct ltt_kernel_channel
*kchan
;
1120 ksess
= session
->kernel_session
;
1123 * If a non-default channel has been created in the
1124 * session, explicitely require that -c chan_name needs
1127 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1128 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1132 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1133 if (kchan
== NULL
) {
1134 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1138 ret
= event_kernel_disable_all(kchan
);
1139 if (ret
!= LTTNG_OK
) {
1143 kernel_wait_quiescent(kernel_tracer_fd
);
1146 case LTTNG_DOMAIN_UST
:
1148 struct ltt_ust_session
*usess
;
1149 struct ltt_ust_channel
*uchan
;
1151 usess
= session
->ust_session
;
1154 * If a non-default channel has been created in the
1155 * session, explicitely require that -c chan_name needs
1158 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1159 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1163 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1165 if (uchan
== NULL
) {
1166 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1170 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1175 DBG3("Disable all UST events in channel %s completed", channel_name
);
1179 case LTTNG_DOMAIN_JUL
:
1181 struct ltt_ust_session
*usess
= session
->ust_session
;
1185 ret
= event_agent_disable_all(usess
);
1186 if (ret
!= LTTNG_OK
) {
1193 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1194 case LTTNG_DOMAIN_UST_PID
:
1195 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1198 ret
= LTTNG_ERR_UND
;
1210 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1212 int cmd_add_context(struct ltt_session
*session
, int domain
,
1213 char *channel_name
, struct lttng_event_context
*ctx
, int kwpipe
)
1215 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1218 case LTTNG_DOMAIN_KERNEL
:
1219 assert(session
->kernel_session
);
1221 if (session
->kernel_session
->channel_count
== 0) {
1222 /* Create default channel */
1223 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1224 if (ret
!= LTTNG_OK
) {
1227 chan_kern_created
= 1;
1229 /* Add kernel context to kernel tracer */
1230 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1231 if (ret
!= LTTNG_OK
) {
1235 case LTTNG_DOMAIN_UST
:
1237 struct ltt_ust_session
*usess
= session
->ust_session
;
1238 unsigned int chan_count
;
1242 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1243 if (chan_count
== 0) {
1244 struct lttng_channel
*attr
;
1245 /* Create default channel */
1246 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1248 ret
= LTTNG_ERR_FATAL
;
1252 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1253 if (ret
!= LTTNG_OK
) {
1258 chan_ust_created
= 1;
1261 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1262 if (ret
!= LTTNG_OK
) {
1268 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1269 case LTTNG_DOMAIN_UST_PID
:
1270 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1273 ret
= LTTNG_ERR_UND
;
1280 if (chan_kern_created
) {
1281 struct ltt_kernel_channel
*kchan
=
1282 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1283 session
->kernel_session
);
1284 /* Created previously, this should NOT fail. */
1286 kernel_destroy_channel(kchan
);
1289 if (chan_ust_created
) {
1290 struct ltt_ust_channel
*uchan
=
1291 trace_ust_find_channel_by_name(
1292 session
->ust_session
->domain_global
.channels
,
1293 DEFAULT_CHANNEL_NAME
);
1294 /* Created previously, this should NOT fail. */
1296 /* Remove from the channel list of the session. */
1297 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1299 trace_ust_destroy_channel(uchan
);
1304 static int validate_event_name(const char *name
)
1307 const char *c
= name
;
1308 const char *event_name_end
= c
+ LTTNG_SYMBOL_NAME_LEN
;
1311 * Make sure that unescaped wildcards are only used as the last
1312 * character of the event name.
1314 while (c
< event_name_end
) {
1322 if ((c
+ 1) < event_name_end
&& *(c
+ 1)) {
1323 /* Wildcard is not the last character */
1324 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1337 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1339 int cmd_enable_event(struct ltt_session
*session
, struct lttng_domain
*domain
,
1340 char *channel_name
, struct lttng_event
*event
,
1341 char *filter_expression
,
1342 struct lttng_filter_bytecode
*filter
,
1343 struct lttng_event_exclusion
*exclusion
,
1346 int ret
, channel_created
= 0;
1347 struct lttng_channel
*attr
;
1351 assert(channel_name
);
1353 ret
= validate_event_name(event
->name
);
1360 switch (domain
->type
) {
1361 case LTTNG_DOMAIN_KERNEL
:
1363 struct ltt_kernel_channel
*kchan
;
1366 * If a non-default channel has been created in the
1367 * session, explicitely require that -c chan_name needs
1370 if (session
->kernel_session
->has_non_default_channel
1371 && channel_name
[0] == '\0') {
1372 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1376 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1377 session
->kernel_session
);
1378 if (kchan
== NULL
) {
1379 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1380 LTTNG_BUFFER_GLOBAL
);
1382 ret
= LTTNG_ERR_FATAL
;
1385 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1387 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1388 if (ret
!= LTTNG_OK
) {
1394 channel_created
= 1;
1397 /* Get the newly created kernel channel pointer */
1398 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1399 session
->kernel_session
);
1400 if (kchan
== NULL
) {
1401 /* This sould not happen... */
1402 ret
= LTTNG_ERR_FATAL
;
1406 ret
= event_kernel_enable_tracepoint(kchan
, event
);
1407 if (ret
!= LTTNG_OK
) {
1408 if (channel_created
) {
1409 /* Let's not leak a useless channel. */
1410 kernel_destroy_channel(kchan
);
1415 kernel_wait_quiescent(kernel_tracer_fd
);
1418 case LTTNG_DOMAIN_UST
:
1420 struct ltt_ust_channel
*uchan
;
1421 struct ltt_ust_session
*usess
= session
->ust_session
;
1426 * If a non-default channel has been created in the
1427 * session, explicitely require that -c chan_name needs
1430 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1431 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1435 /* Get channel from global UST domain */
1436 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1438 if (uchan
== NULL
) {
1439 /* Create default channel */
1440 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
1441 usess
->buffer_type
);
1443 ret
= LTTNG_ERR_FATAL
;
1446 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1448 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1449 if (ret
!= LTTNG_OK
) {
1455 /* Get the newly created channel reference back */
1456 uchan
= trace_ust_find_channel_by_name(
1457 usess
->domain_global
.channels
, channel_name
);
1461 /* At this point, the session and channel exist on the tracer */
1462 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
1463 filter_expression
, filter
, exclusion
);
1464 if (ret
!= LTTNG_OK
) {
1469 case LTTNG_DOMAIN_JUL
:
1471 struct lttng_event uevent
;
1472 struct lttng_domain tmp_dom
;
1473 struct ltt_ust_session
*usess
= session
->ust_session
;
1477 /* Create the default tracepoint. */
1478 memset(&uevent
, 0, sizeof(uevent
));
1479 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
1480 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
1482 strncpy(uevent
.name
, DEFAULT_SYS_JUL_EVENT_NAME
,
1483 sizeof(uevent
.name
));
1485 strncpy(uevent
.name
, DEFAULT_USER_JUL_EVENT_NAME
,
1486 sizeof(uevent
.name
));
1488 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
1491 * The domain type is changed because we are about to enable the
1492 * default channel and event for the JUL domain that are hardcoded.
1493 * This happens in the UST domain.
1495 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
1496 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
1498 ret
= cmd_enable_event(session
, &tmp_dom
, DEFAULT_JUL_CHANNEL_NAME
,
1499 &uevent
, filter_expression
, filter
, NULL
, wpipe
);
1500 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_UST_EVENT_ENABLED
) {
1504 /* The wild card * means that everything should be enabled. */
1505 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
1506 ret
= event_agent_enable_all(usess
, event
, filter
);
1508 ret
= event_agent_enable(usess
, event
, filter
);
1510 if (ret
!= LTTNG_OK
) {
1517 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1518 case LTTNG_DOMAIN_UST_PID
:
1519 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1522 ret
= LTTNG_ERR_UND
;
1534 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1536 int cmd_enable_event_all(struct ltt_session
*session
,
1537 struct lttng_domain
*domain
, char *channel_name
, int event_type
,
1538 char *filter_expression
,
1539 struct lttng_filter_bytecode
*filter
, int wpipe
)
1542 struct lttng_channel
*attr
;
1545 assert(channel_name
);
1549 switch (domain
->type
) {
1550 case LTTNG_DOMAIN_KERNEL
:
1552 struct ltt_kernel_channel
*kchan
;
1554 assert(session
->kernel_session
);
1557 * If a non-default channel has been created in the
1558 * session, explicitely require that -c chan_name needs
1561 if (session
->kernel_session
->has_non_default_channel
1562 && channel_name
[0] == '\0') {
1563 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1567 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1568 session
->kernel_session
);
1569 if (kchan
== NULL
) {
1570 /* Create default channel */
1571 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1572 LTTNG_BUFFER_GLOBAL
);
1574 ret
= LTTNG_ERR_FATAL
;
1577 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1579 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1580 if (ret
!= LTTNG_OK
) {
1586 /* Get the newly created kernel channel pointer */
1587 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1588 session
->kernel_session
);
1592 switch (event_type
) {
1593 case LTTNG_EVENT_SYSCALL
:
1594 ret
= event_kernel_enable_all_syscalls(kchan
, kernel_tracer_fd
);
1596 case LTTNG_EVENT_TRACEPOINT
:
1598 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1599 * events already registered to the channel.
1601 ret
= event_kernel_enable_all_tracepoints(kchan
, kernel_tracer_fd
);
1603 case LTTNG_EVENT_ALL
:
1604 /* Enable syscalls and tracepoints */
1605 ret
= event_kernel_enable_all(kchan
, kernel_tracer_fd
);
1608 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1612 /* Manage return value */
1613 if (ret
!= LTTNG_OK
) {
1615 * On error, cmd_enable_channel call will take care of destroying
1616 * the created channel if it was needed.
1621 kernel_wait_quiescent(kernel_tracer_fd
);
1624 case LTTNG_DOMAIN_UST
:
1626 struct ltt_ust_channel
*uchan
;
1627 struct ltt_ust_session
*usess
= session
->ust_session
;
1632 * If a non-default channel has been created in the
1633 * session, explicitely require that -c chan_name needs
1636 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1637 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1641 /* Get channel from global UST domain */
1642 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1644 if (uchan
== NULL
) {
1645 /* Create default channel */
1646 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
1647 usess
->buffer_type
);
1649 ret
= LTTNG_ERR_FATAL
;
1652 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1654 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1655 if (ret
!= LTTNG_OK
) {
1661 /* Get the newly created channel reference back */
1662 uchan
= trace_ust_find_channel_by_name(
1663 usess
->domain_global
.channels
, channel_name
);
1667 /* At this point, the session and channel exist on the tracer */
1669 switch (event_type
) {
1670 case LTTNG_EVENT_ALL
:
1671 case LTTNG_EVENT_TRACEPOINT
:
1672 ret
= event_ust_enable_all_tracepoints(usess
, uchan
,
1673 filter_expression
, filter
);
1674 if (ret
!= LTTNG_OK
) {
1679 ret
= LTTNG_ERR_UST_ENABLE_FAIL
;
1683 /* Manage return value */
1684 if (ret
!= LTTNG_OK
) {
1690 case LTTNG_DOMAIN_JUL
:
1692 struct lttng_event uevent
, event
;
1693 struct lttng_domain tmp_dom
;
1694 struct ltt_ust_session
*usess
= session
->ust_session
;
1698 /* Create the default tracepoint. */
1699 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
1700 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
1702 strncpy(uevent
.name
, DEFAULT_SYS_JUL_EVENT_NAME
,
1703 sizeof(uevent
.name
));
1705 strncpy(uevent
.name
, DEFAULT_USER_JUL_EVENT_NAME
,
1706 sizeof(uevent
.name
));
1708 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
1711 * The domain type is changed because we are about to enable the
1712 * default channel and event for the JUL domain that are hardcoded.
1713 * This happens in the UST domain.
1715 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
1716 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
1718 ret
= cmd_enable_event(session
, &tmp_dom
, DEFAULT_JUL_CHANNEL_NAME
,
1719 &uevent
, NULL
, NULL
, NULL
, wpipe
);
1720 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_UST_EVENT_ENABLED
) {
1724 event
.loglevel
= LTTNG_LOGLEVEL_JUL_ALL
;
1725 event
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
1726 strncpy(event
.name
, "*", sizeof(event
.name
));
1727 event
.name
[sizeof(event
.name
) - 1] = '\0';
1729 ret
= event_agent_enable_all(usess
, &event
, filter
);
1730 if (ret
!= LTTNG_OK
) {
1737 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1738 case LTTNG_DOMAIN_UST_PID
:
1739 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1742 ret
= LTTNG_ERR_UND
;
1755 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1757 ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
1760 ssize_t nb_events
= 0;
1763 case LTTNG_DOMAIN_KERNEL
:
1764 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
1765 if (nb_events
< 0) {
1766 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
1770 case LTTNG_DOMAIN_UST
:
1771 nb_events
= ust_app_list_events(events
);
1772 if (nb_events
< 0) {
1773 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1777 case LTTNG_DOMAIN_JUL
:
1778 nb_events
= agent_list_events(events
);
1779 if (nb_events
< 0) {
1780 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1785 ret
= LTTNG_ERR_UND
;
1792 /* Return negative value to differentiate return code */
1797 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1799 ssize_t
cmd_list_tracepoint_fields(int domain
,
1800 struct lttng_event_field
**fields
)
1803 ssize_t nb_fields
= 0;
1806 case LTTNG_DOMAIN_UST
:
1807 nb_fields
= ust_app_list_event_fields(fields
);
1808 if (nb_fields
< 0) {
1809 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1813 case LTTNG_DOMAIN_KERNEL
:
1814 default: /* fall-through */
1815 ret
= LTTNG_ERR_UND
;
1822 /* Return negative value to differentiate return code */
1827 * Command LTTNG_START_TRACE processed by the client thread.
1829 int cmd_start_trace(struct ltt_session
*session
)
1832 unsigned long nb_chan
= 0;
1833 struct ltt_kernel_session
*ksession
;
1834 struct ltt_ust_session
*usess
;
1838 /* Ease our life a bit ;) */
1839 ksession
= session
->kernel_session
;
1840 usess
= session
->ust_session
;
1842 /* Is the session already started? */
1843 if (session
->active
) {
1844 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1849 * Starting a session without channel is useless since after that it's not
1850 * possible to enable channel thus inform the client.
1852 if (usess
&& usess
->domain_global
.channels
) {
1853 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
1856 nb_chan
+= ksession
->channel_count
;
1859 ret
= LTTNG_ERR_NO_CHANNEL
;
1863 /* Kernel tracing */
1864 if (ksession
!= NULL
) {
1865 ret
= start_kernel_session(ksession
, kernel_tracer_fd
);
1866 if (ret
!= LTTNG_OK
) {
1871 /* Flag session that trace should start automatically */
1874 * Even though the start trace might fail, flag this session active so
1875 * other application coming in are started by default.
1879 ret
= ust_app_start_trace_all(usess
);
1881 ret
= LTTNG_ERR_UST_START_FAIL
;
1886 /* Flag this after a successful start. */
1887 session
->has_been_started
= 1;
1888 session
->active
= 1;
1897 * Command LTTNG_STOP_TRACE processed by the client thread.
1899 int cmd_stop_trace(struct ltt_session
*session
)
1902 struct ltt_kernel_channel
*kchan
;
1903 struct ltt_kernel_session
*ksession
;
1904 struct ltt_ust_session
*usess
;
1909 ksession
= session
->kernel_session
;
1910 usess
= session
->ust_session
;
1912 /* Session is not active. Skip everythong and inform the client. */
1913 if (!session
->active
) {
1914 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
1919 if (ksession
&& ksession
->active
) {
1920 DBG("Stop kernel tracing");
1922 /* Flush metadata if exist */
1923 if (ksession
->metadata_stream_fd
>= 0) {
1924 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
1926 ERR("Kernel metadata flush failed");
1930 /* Flush all buffers before stopping */
1931 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
1932 ret
= kernel_flush_buffer(kchan
);
1934 ERR("Kernel flush buffer error");
1938 ret
= kernel_stop_session(ksession
);
1940 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1944 kernel_wait_quiescent(kernel_tracer_fd
);
1946 ksession
->active
= 0;
1949 if (usess
&& usess
->active
) {
1951 * Even though the stop trace might fail, flag this session inactive so
1952 * other application coming in are not started by default.
1956 ret
= ust_app_stop_trace_all(usess
);
1958 ret
= LTTNG_ERR_UST_STOP_FAIL
;
1963 /* Flag inactive after a successful stop. */
1964 session
->active
= 0;
1972 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1974 int cmd_set_consumer_uri(int domain
, struct ltt_session
*session
,
1975 size_t nb_uri
, struct lttng_uri
*uris
)
1978 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1979 struct ltt_ust_session
*usess
= session
->ust_session
;
1980 struct consumer_output
*consumer
= NULL
;
1986 /* Can't set consumer URI if the session is active. */
1987 if (session
->active
) {
1988 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1993 * This case switch makes sure the domain session has a temporary consumer
1994 * so the URL can be set.
1998 /* Code flow error. A session MUST always have a consumer object */
1999 assert(session
->consumer
);
2001 * The URL will be added to the tracing session consumer instead of a
2002 * specific domain consumer.
2004 consumer
= session
->consumer
;
2006 case LTTNG_DOMAIN_KERNEL
:
2007 /* Code flow error if we don't have a kernel session here. */
2009 assert(ksess
->consumer
);
2010 consumer
= ksess
->consumer
;
2012 case LTTNG_DOMAIN_UST
:
2013 /* Code flow error if we don't have a kernel session here. */
2015 assert(usess
->consumer
);
2016 consumer
= usess
->consumer
;
2020 for (i
= 0; i
< nb_uri
; i
++) {
2021 ret
= add_uri_to_consumer(consumer
, &uris
[i
], domain
, session
->name
);
2022 if (ret
!= LTTNG_OK
) {
2028 * Make sure to set the session in output mode after we set URI since a
2029 * session can be created without URL (thus flagged in no output mode).
2031 session
->output_traces
= 1;
2033 ksess
->output_traces
= 1;
2035 usess
->output_traces
= 1;
2046 * Command LTTNG_CREATE_SESSION processed by the client thread.
2048 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
2049 size_t nb_uri
, lttng_sock_cred
*creds
, unsigned int live_timer
)
2052 struct ltt_session
*session
;
2058 * Verify if the session already exist
2060 * XXX: There is no need for the session lock list here since the caller
2061 * (process_client_msg) is holding it. We might want to change that so a
2062 * single command does not lock the entire session list.
2064 session
= session_find_by_name(name
);
2065 if (session
!= NULL
) {
2066 ret
= LTTNG_ERR_EXIST_SESS
;
2070 /* Create tracing session in the registry */
2071 ret
= session_create(name
, LTTNG_SOCK_GET_UID_CRED(creds
),
2072 LTTNG_SOCK_GET_GID_CRED(creds
));
2073 if (ret
!= LTTNG_OK
) {
2078 * Get the newly created session pointer back
2080 * XXX: There is no need for the session lock list here since the caller
2081 * (process_client_msg) is holding it. We might want to change that so a
2082 * single command does not lock the entire session list.
2084 session
= session_find_by_name(name
);
2087 session
->live_timer
= live_timer
;
2088 /* Create default consumer output for the session not yet created. */
2089 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
2090 if (session
->consumer
== NULL
) {
2091 ret
= LTTNG_ERR_FATAL
;
2092 goto consumer_error
;
2096 ret
= cmd_set_consumer_uri(0, session
, nb_uri
, uris
);
2097 if (ret
!= LTTNG_OK
) {
2098 goto consumer_error
;
2100 session
->output_traces
= 1;
2102 session
->output_traces
= 0;
2103 DBG2("Session %s created with no output", session
->name
);
2106 session
->consumer
->enabled
= 1;
2111 session_destroy(session
);
2118 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
2120 int cmd_create_session_snapshot(char *name
, struct lttng_uri
*uris
,
2121 size_t nb_uri
, lttng_sock_cred
*creds
)
2124 struct ltt_session
*session
;
2125 struct snapshot_output
*new_output
= NULL
;
2131 * Create session in no output mode with URIs set to NULL. The uris we've
2132 * received are for a default snapshot output if one.
2134 ret
= cmd_create_session_uri(name
, NULL
, 0, creds
, -1);
2135 if (ret
!= LTTNG_OK
) {
2139 /* Get the newly created session pointer back. This should NEVER fail. */
2140 session
= session_find_by_name(name
);
2143 /* Flag session for snapshot mode. */
2144 session
->snapshot_mode
= 1;
2146 /* Skip snapshot output creation if no URI is given. */
2151 new_output
= snapshot_output_alloc();
2153 ret
= LTTNG_ERR_NOMEM
;
2154 goto error_snapshot_alloc
;
2157 ret
= snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE
, NULL
,
2158 uris
, nb_uri
, session
->consumer
, new_output
, &session
->snapshot
);
2160 if (ret
== -ENOMEM
) {
2161 ret
= LTTNG_ERR_NOMEM
;
2163 ret
= LTTNG_ERR_INVALID
;
2165 goto error_snapshot
;
2169 snapshot_add_output(&session
->snapshot
, new_output
);
2176 snapshot_output_destroy(new_output
);
2177 error_snapshot_alloc
:
2178 session_destroy(session
);
2184 * Command LTTNG_DESTROY_SESSION processed by the client thread.
2186 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
2189 struct ltt_ust_session
*usess
;
2190 struct ltt_kernel_session
*ksess
;
2195 usess
= session
->ust_session
;
2196 ksess
= session
->kernel_session
;
2198 /* Clean kernel session teardown */
2199 kernel_destroy_session(ksess
);
2201 /* UST session teardown */
2203 /* Close any relayd session */
2204 consumer_output_send_destroy_relayd(usess
->consumer
);
2206 /* Destroy every UST application related to this session. */
2207 ret
= ust_app_destroy_trace_all(usess
);
2209 ERR("Error in ust_app_destroy_trace_all");
2212 /* Clean up the rest. */
2213 trace_ust_destroy_session(usess
);
2217 * Must notify the kernel thread here to update it's poll set in order to
2218 * remove the channel(s)' fd just destroyed.
2220 ret
= notify_thread_pipe(wpipe
);
2222 PERROR("write kernel poll pipe");
2225 ret
= session_destroy(session
);
2231 * Command LTTNG_CALIBRATE processed by the client thread.
2233 int cmd_calibrate(int domain
, struct lttng_calibrate
*calibrate
)
2238 case LTTNG_DOMAIN_KERNEL
:
2240 struct lttng_kernel_calibrate kcalibrate
;
2242 switch (calibrate
->type
) {
2243 case LTTNG_CALIBRATE_FUNCTION
:
2245 /* Default and only possible calibrate option. */
2246 kcalibrate
.type
= LTTNG_KERNEL_CALIBRATE_KRETPROBE
;
2250 ret
= kernel_calibrate(kernel_tracer_fd
, &kcalibrate
);
2252 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
2257 case LTTNG_DOMAIN_UST
:
2259 struct lttng_ust_calibrate ucalibrate
;
2261 switch (calibrate
->type
) {
2262 case LTTNG_CALIBRATE_FUNCTION
:
2264 /* Default and only possible calibrate option. */
2265 ucalibrate
.type
= LTTNG_UST_CALIBRATE_TRACEPOINT
;
2269 ret
= ust_app_calibrate_glb(&ucalibrate
);
2271 ret
= LTTNG_ERR_UST_CALIBRATE_FAIL
;
2277 ret
= LTTNG_ERR_UND
;
2288 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2290 int cmd_register_consumer(struct ltt_session
*session
, int domain
,
2291 const char *sock_path
, struct consumer_data
*cdata
)
2294 struct consumer_socket
*socket
= NULL
;
2301 case LTTNG_DOMAIN_KERNEL
:
2303 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2307 /* Can't register a consumer if there is already one */
2308 if (ksess
->consumer_fds_sent
!= 0) {
2309 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2313 sock
= lttcomm_connect_unix_sock(sock_path
);
2315 ret
= LTTNG_ERR_CONNECT_FAIL
;
2318 cdata
->cmd_sock
= sock
;
2320 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
2321 if (socket
== NULL
) {
2324 PERROR("close register consumer");
2326 cdata
->cmd_sock
= -1;
2327 ret
= LTTNG_ERR_FATAL
;
2331 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
2332 if (socket
->lock
== NULL
) {
2333 PERROR("zmalloc pthread mutex");
2334 ret
= LTTNG_ERR_FATAL
;
2337 pthread_mutex_init(socket
->lock
, NULL
);
2338 socket
->registered
= 1;
2341 consumer_add_socket(socket
, ksess
->consumer
);
2344 pthread_mutex_lock(&cdata
->pid_mutex
);
2346 pthread_mutex_unlock(&cdata
->pid_mutex
);
2351 /* TODO: Userspace tracing */
2352 ret
= LTTNG_ERR_UND
;
2360 consumer_destroy_socket(socket
);
2366 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2368 ssize_t
cmd_list_domains(struct ltt_session
*session
,
2369 struct lttng_domain
**domains
)
2374 if (session
->kernel_session
!= NULL
) {
2375 DBG3("Listing domains found kernel domain");
2379 if (session
->ust_session
!= NULL
) {
2380 DBG3("Listing domains found UST global domain");
2383 if (session
->ust_session
->agent
.being_used
) {
2388 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
2389 if (*domains
== NULL
) {
2390 ret
= LTTNG_ERR_FATAL
;
2394 if (session
->kernel_session
!= NULL
) {
2395 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
2399 if (session
->ust_session
!= NULL
) {
2400 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
2401 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2404 if (session
->ust_session
->agent
.being_used
) {
2405 (*domains
)[index
].type
= LTTNG_DOMAIN_JUL
;
2406 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2414 /* Return negative value to differentiate return code */
2420 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2422 ssize_t
cmd_list_channels(int domain
, struct ltt_session
*session
,
2423 struct lttng_channel
**channels
)
2426 ssize_t nb_chan
= 0;
2429 case LTTNG_DOMAIN_KERNEL
:
2430 if (session
->kernel_session
!= NULL
) {
2431 nb_chan
= session
->kernel_session
->channel_count
;
2433 DBG3("Number of kernel channels %zd", nb_chan
);
2435 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
2438 case LTTNG_DOMAIN_UST
:
2439 if (session
->ust_session
!= NULL
) {
2440 nb_chan
= lttng_ht_get_count(
2441 session
->ust_session
->domain_global
.channels
);
2443 DBG3("Number of UST global channels %zd", nb_chan
);
2445 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2450 ret
= LTTNG_ERR_UND
;
2455 *channels
= zmalloc(nb_chan
* sizeof(struct lttng_channel
));
2456 if (*channels
== NULL
) {
2457 ret
= LTTNG_ERR_FATAL
;
2461 list_lttng_channels(domain
, session
, *channels
);
2464 /* Ret value was set in the domain switch case */
2471 /* Return negative value to differentiate return code */
2476 * Command LTTNG_LIST_EVENTS processed by the client thread.
2478 ssize_t
cmd_list_events(int domain
, struct ltt_session
*session
,
2479 char *channel_name
, struct lttng_event
**events
)
2482 ssize_t nb_event
= 0;
2485 case LTTNG_DOMAIN_KERNEL
:
2486 if (session
->kernel_session
!= NULL
) {
2487 nb_event
= list_lttng_kernel_events(channel_name
,
2488 session
->kernel_session
, events
);
2491 case LTTNG_DOMAIN_UST
:
2493 if (session
->ust_session
!= NULL
) {
2494 nb_event
= list_lttng_ust_global_events(channel_name
,
2495 &session
->ust_session
->domain_global
, events
);
2499 case LTTNG_DOMAIN_JUL
:
2500 if (session
->ust_session
) {
2501 nb_event
= list_lttng_agent_events(
2502 &session
->ust_session
->agent
, events
);
2506 ret
= LTTNG_ERR_UND
;
2513 /* Return negative value to differentiate return code */
2518 * Using the session list, filled a lttng_session array to send back to the
2519 * client for session listing.
2521 * The session list lock MUST be acquired before calling this function. Use
2522 * session_lock_list() and session_unlock_list().
2524 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
2529 struct ltt_session
*session
;
2530 struct ltt_session_list
*list
= session_get_list();
2532 DBG("Getting all available session for UID %d GID %d",
2535 * Iterate over session list and append data after the control struct in
2538 cds_list_for_each_entry(session
, &list
->head
, list
) {
2540 * Only list the sessions the user can control.
2542 if (!session_access_ok(session
, uid
, gid
)) {
2546 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2547 struct ltt_ust_session
*usess
= session
->ust_session
;
2549 if (session
->consumer
->type
== CONSUMER_DST_NET
||
2550 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
2551 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
2552 ret
= build_network_session_path(sessions
[i
].path
,
2553 sizeof(sessions
[i
].path
), session
);
2555 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
2556 session
->consumer
->dst
.trace_path
);
2559 PERROR("snprintf session path");
2563 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
2564 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
2565 sessions
[i
].enabled
= session
->active
;
2566 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
2567 sessions
[i
].live_timer_interval
= session
->live_timer
;
2573 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2574 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
2576 int cmd_data_pending(struct ltt_session
*session
)
2579 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2580 struct ltt_ust_session
*usess
= session
->ust_session
;
2584 /* Session MUST be stopped to ask for data availability. */
2585 if (session
->active
) {
2586 ret
= LTTNG_ERR_SESSION_STARTED
;
2590 * If stopped, just make sure we've started before else the above call
2591 * will always send that there is data pending.
2593 * The consumer assumes that when the data pending command is received,
2594 * the trace has been started before or else no output data is written
2595 * by the streams which is a condition for data pending. So, this is
2596 * *VERY* important that we don't ask the consumer before a start
2599 if (!session
->has_been_started
) {
2605 if (ksess
&& ksess
->consumer
) {
2606 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
2608 /* Data is still being extracted for the kernel. */
2613 if (usess
&& usess
->consumer
) {
2614 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
2616 /* Data is still being extracted for the kernel. */
2621 /* Data is ready to be read by a viewer */
2629 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2631 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2633 int cmd_snapshot_add_output(struct ltt_session
*session
,
2634 struct lttng_snapshot_output
*output
, uint32_t *id
)
2637 struct snapshot_output
*new_output
;
2642 DBG("Cmd snapshot add output for session %s", session
->name
);
2645 * Permission denied to create an output if the session is not
2646 * set in no output mode.
2648 if (session
->output_traces
) {
2649 ret
= LTTNG_ERR_EPERM
;
2653 /* Only one output is allowed until we have the "tee" feature. */
2654 if (session
->snapshot
.nb_output
== 1) {
2655 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
2659 new_output
= snapshot_output_alloc();
2661 ret
= LTTNG_ERR_NOMEM
;
2665 ret
= snapshot_output_init(output
->max_size
, output
->name
,
2666 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
2667 &session
->snapshot
);
2669 if (ret
== -ENOMEM
) {
2670 ret
= LTTNG_ERR_NOMEM
;
2672 ret
= LTTNG_ERR_INVALID
;
2678 snapshot_add_output(&session
->snapshot
, new_output
);
2680 *id
= new_output
->id
;
2687 snapshot_output_destroy(new_output
);
2693 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2695 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2697 int cmd_snapshot_del_output(struct ltt_session
*session
,
2698 struct lttng_snapshot_output
*output
)
2701 struct snapshot_output
*sout
= NULL
;
2709 * Permission denied to create an output if the session is not
2710 * set in no output mode.
2712 if (session
->output_traces
) {
2713 ret
= LTTNG_ERR_EPERM
;
2718 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
2720 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
2721 } else if (*output
->name
!= '\0') {
2722 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
2724 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
2727 ret
= LTTNG_ERR_INVALID
;
2731 snapshot_delete_output(&session
->snapshot
, sout
);
2732 snapshot_output_destroy(sout
);
2741 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2743 * If no output is available, outputs is untouched and 0 is returned.
2745 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2747 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
2748 struct lttng_snapshot_output
**outputs
)
2751 struct lttng_snapshot_output
*list
;
2752 struct lttng_ht_iter iter
;
2753 struct snapshot_output
*output
;
2758 DBG("Cmd snapshot list outputs for session %s", session
->name
);
2761 * Permission denied to create an output if the session is not
2762 * set in no output mode.
2764 if (session
->output_traces
) {
2765 ret
= LTTNG_ERR_EPERM
;
2769 if (session
->snapshot
.nb_output
== 0) {
2774 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
2776 ret
= LTTNG_ERR_NOMEM
;
2780 /* Copy list from session to the new list object. */
2781 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
2782 output
, node
.node
) {
2783 assert(output
->consumer
);
2784 list
[idx
].id
= output
->id
;
2785 list
[idx
].max_size
= output
->max_size
;
2786 strncpy(list
[idx
].name
, output
->name
, sizeof(list
[idx
].name
));
2787 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
2788 strncpy(list
[idx
].ctrl_url
, output
->consumer
->dst
.trace_path
,
2789 sizeof(list
[idx
].ctrl_url
));
2792 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
2793 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
2795 ret
= LTTNG_ERR_NOMEM
;
2800 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
2801 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
2803 ret
= LTTNG_ERR_NOMEM
;
2811 return session
->snapshot
.nb_output
;
2820 * Send relayd sockets from snapshot output to consumer. Ignore request if the
2821 * snapshot output is *not* set with a remote destination.
2823 * Return 0 on success or a LTTNG_ERR code.
2825 static int set_relayd_for_snapshot(struct consumer_output
*consumer
,
2826 struct snapshot_output
*snap_output
, struct ltt_session
*session
)
2829 struct lttng_ht_iter iter
;
2830 struct consumer_socket
*socket
;
2833 assert(snap_output
);
2836 DBG2("Set relayd object from snapshot output");
2838 /* Ignore if snapshot consumer output is not network. */
2839 if (snap_output
->consumer
->type
!= CONSUMER_DST_NET
) {
2844 * For each consumer socket, create and send the relayd object of the
2848 cds_lfht_for_each_entry(snap_output
->consumer
->socks
->ht
, &iter
.iter
,
2849 socket
, node
.node
) {
2850 ret
= send_consumer_relayd_sockets(0, session
->id
,
2851 snap_output
->consumer
, socket
,
2852 session
->name
, session
->hostname
,
2853 session
->live_timer
);
2854 if (ret
!= LTTNG_OK
) {
2866 * Record a kernel snapshot.
2868 * Return LTTNG_OK on success or a LTTNG_ERR code.
2870 static int record_kernel_snapshot(struct ltt_kernel_session
*ksess
,
2871 struct snapshot_output
*output
, struct ltt_session
*session
,
2872 int wait
, uint64_t max_stream_size
)
2880 /* Get the datetime for the snapshot output directory. */
2881 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", output
->datetime
,
2882 sizeof(output
->datetime
));
2884 ret
= LTTNG_ERR_INVALID
;
2889 * Copy kernel session sockets so we can communicate with the right
2890 * consumer for the snapshot record command.
2892 ret
= consumer_copy_sockets(output
->consumer
, ksess
->consumer
);
2894 ret
= LTTNG_ERR_NOMEM
;
2898 ret
= set_relayd_for_snapshot(ksess
->consumer
, output
, session
);
2899 if (ret
!= LTTNG_OK
) {
2900 goto error_snapshot
;
2903 ret
= kernel_snapshot_record(ksess
, output
, wait
, max_stream_size
);
2904 if (ret
!= LTTNG_OK
) {
2905 goto error_snapshot
;
2911 /* Clean up copied sockets so this output can use some other later on. */
2912 consumer_destroy_output_sockets(output
->consumer
);
2918 * Record a UST snapshot.
2920 * Return 0 on success or a LTTNG_ERR error code.
2922 static int record_ust_snapshot(struct ltt_ust_session
*usess
,
2923 struct snapshot_output
*output
, struct ltt_session
*session
,
2924 int wait
, uint64_t max_stream_size
)
2932 /* Get the datetime for the snapshot output directory. */
2933 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", output
->datetime
,
2934 sizeof(output
->datetime
));
2936 ret
= LTTNG_ERR_INVALID
;
2941 * Copy UST session sockets so we can communicate with the right
2942 * consumer for the snapshot record command.
2944 ret
= consumer_copy_sockets(output
->consumer
, usess
->consumer
);
2946 ret
= LTTNG_ERR_NOMEM
;
2950 ret
= set_relayd_for_snapshot(usess
->consumer
, output
, session
);
2951 if (ret
!= LTTNG_OK
) {
2952 goto error_snapshot
;
2955 ret
= ust_app_snapshot_record(usess
, output
, wait
, max_stream_size
);
2959 ret
= LTTNG_ERR_INVALID
;
2962 ret
= LTTNG_ERR_SNAPSHOT_NODATA
;
2965 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
2968 goto error_snapshot
;
2974 /* Clean up copied sockets so this output can use some other later on. */
2975 consumer_destroy_output_sockets(output
->consumer
);
2981 * Return the biggest subbuffer size of all channels in the given session.
2983 static uint64_t get_session_max_subbuf_size(struct ltt_session
*session
)
2985 uint64_t max_size
= 0;
2989 if (session
->kernel_session
) {
2990 struct ltt_kernel_channel
*chan
;
2991 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2994 * For each channel, add to the max size the size of each subbuffer
2995 * multiplied by their sized.
2997 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
2998 if (chan
->channel
->attr
.subbuf_size
> max_size
) {
2999 max_size
= chan
->channel
->attr
.subbuf_size
;
3004 if (session
->ust_session
) {
3005 struct lttng_ht_iter iter
;
3006 struct ltt_ust_channel
*uchan
;
3007 struct ltt_ust_session
*usess
= session
->ust_session
;
3009 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
3011 if (uchan
->attr
.subbuf_size
> max_size
) {
3012 max_size
= uchan
->attr
.subbuf_size
;
3021 * Returns the total number of streams for a session or a negative value
3024 static unsigned int get_session_nb_streams(struct ltt_session
*session
)
3026 unsigned int total_streams
= 0;
3028 if (session
->kernel_session
) {
3029 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3031 total_streams
+= ksess
->stream_count_global
;
3034 if (session
->ust_session
) {
3035 struct ltt_ust_session
*usess
= session
->ust_session
;
3037 total_streams
+= ust_app_get_nb_stream(usess
);
3040 return total_streams
;
3044 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
3046 * The wait parameter is ignored so this call always wait for the snapshot to
3047 * complete before returning.
3049 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3051 int cmd_snapshot_record(struct ltt_session
*session
,
3052 struct lttng_snapshot_output
*output
, int wait
)
3055 unsigned int use_tmp_output
= 0;
3056 struct snapshot_output tmp_output
;
3057 unsigned int nb_streams
, snapshot_success
= 0;
3058 uint64_t session_max_size
= 0, max_stream_size
= 0;
3062 DBG("Cmd snapshot record for session %s", session
->name
);
3065 * Permission denied to create an output if the session is not
3066 * set in no output mode.
3068 if (session
->output_traces
) {
3069 ret
= LTTNG_ERR_EPERM
;
3073 /* The session needs to be started at least once. */
3074 if (!session
->has_been_started
) {
3075 ret
= LTTNG_ERR_START_SESSION_ONCE
;
3079 /* Use temporary output for the session. */
3080 if (output
&& *output
->ctrl_url
!= '\0') {
3081 ret
= snapshot_output_init(output
->max_size
, output
->name
,
3082 output
->ctrl_url
, output
->data_url
, session
->consumer
,
3085 if (ret
== -ENOMEM
) {
3086 ret
= LTTNG_ERR_NOMEM
;
3088 ret
= LTTNG_ERR_INVALID
;
3092 /* Use the global session count for the temporary snapshot. */
3093 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3098 * Get the session maximum size for a snapshot meaning it will compute the
3099 * size of all streams from all domain.
3101 max_stream_size
= get_session_max_subbuf_size(session
);
3103 nb_streams
= get_session_nb_streams(session
);
3106 * The maximum size of the snapshot is the number of streams multiplied
3107 * by the biggest subbuf size of all channels in a session which is the
3108 * maximum stream size available for each stream. The session max size
3109 * is now checked against the snapshot max size value given by the user
3110 * and if lower, an error is returned.
3112 session_max_size
= max_stream_size
* nb_streams
;
3115 DBG3("Snapshot max size is %" PRIu64
" for max stream size of %" PRIu64
,
3116 session_max_size
, max_stream_size
);
3119 * If we use a temporary output, check right away if the max size fits else
3120 * for each output the max size will be checked.
3122 if (use_tmp_output
&&
3123 (tmp_output
.max_size
!= 0 &&
3124 tmp_output
.max_size
< session_max_size
)) {
3125 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3129 if (session
->kernel_session
) {
3130 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3132 if (use_tmp_output
) {
3133 ret
= record_kernel_snapshot(ksess
, &tmp_output
, session
,
3134 wait
, max_stream_size
);
3135 if (ret
!= LTTNG_OK
) {
3138 snapshot_success
= 1;
3140 struct snapshot_output
*sout
;
3141 struct lttng_ht_iter iter
;
3144 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
3145 &iter
.iter
, sout
, node
.node
) {
3147 * Make a local copy of the output and assign the possible
3148 * temporary value given by the caller.
3150 memset(&tmp_output
, 0, sizeof(tmp_output
));
3151 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
3153 /* Use temporary max size. */
3154 if (output
->max_size
!= (uint64_t) -1ULL) {
3155 tmp_output
.max_size
= output
->max_size
;
3158 if (tmp_output
.max_size
!= 0 &&
3159 tmp_output
.max_size
< session_max_size
) {
3161 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3165 /* Use temporary name. */
3166 if (*output
->name
!= '\0') {
3167 strncpy(tmp_output
.name
, output
->name
,
3168 sizeof(tmp_output
.name
));
3171 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3173 ret
= record_kernel_snapshot(ksess
, &tmp_output
,
3174 session
, wait
, max_stream_size
);
3175 if (ret
!= LTTNG_OK
) {
3179 snapshot_success
= 1;
3185 if (session
->ust_session
) {
3186 struct ltt_ust_session
*usess
= session
->ust_session
;
3188 if (use_tmp_output
) {
3189 ret
= record_ust_snapshot(usess
, &tmp_output
, session
,
3190 wait
, max_stream_size
);
3191 if (ret
!= LTTNG_OK
) {
3194 snapshot_success
= 1;
3196 struct snapshot_output
*sout
;
3197 struct lttng_ht_iter iter
;
3200 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
3201 &iter
.iter
, sout
, node
.node
) {
3203 * Make a local copy of the output and assign the possible
3204 * temporary value given by the caller.
3206 memset(&tmp_output
, 0, sizeof(tmp_output
));
3207 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
3209 /* Use temporary max size. */
3210 if (output
->max_size
!= (uint64_t) -1ULL) {
3211 tmp_output
.max_size
= output
->max_size
;
3214 if (tmp_output
.max_size
!= 0 &&
3215 tmp_output
.max_size
< session_max_size
) {
3217 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3221 /* Use temporary name. */
3222 if (*output
->name
!= '\0') {
3223 strncpy(tmp_output
.name
, output
->name
,
3224 sizeof(tmp_output
.name
));
3227 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3229 ret
= record_ust_snapshot(usess
, &tmp_output
, session
,
3230 wait
, max_stream_size
);
3231 if (ret
!= LTTNG_OK
) {
3235 snapshot_success
= 1;
3241 if (snapshot_success
) {
3242 session
->snapshot
.nb_snapshot
++;
3244 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
3252 * Init command subsystem.
3257 * Set network sequence index to 1 for streams to match a relayd
3258 * socket on the consumer side.
3260 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
3261 relayd_net_seq_idx
= 1;
3262 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
3264 DBG("Command subsystem initialized");