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.
20 #include <urcu/list.h>
21 #include <urcu/uatomic.h>
23 #include <common/defaults.h>
24 #include <common/common.h>
25 #include <common/sessiond-comm/sessiond-comm.h>
26 #include <common/relayd/relayd.h>
32 #include "kernel-consumer.h"
33 #include "lttng-sessiond.h"
39 * Used to keep a unique index for each relayd socket created where this value
40 * is associated with streams on the consumer so it can match the right relayd
41 * to send to. It must be accessed with the relayd_net_seq_idx_lock
44 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
45 static uint64_t relayd_net_seq_idx
;
48 * Create a session path used by list_lttng_sessions for the case that the
49 * session consumer is on the network.
51 static int build_network_session_path(char *dst
, size_t size
,
52 struct ltt_session
*session
)
54 int ret
, kdata_port
, udata_port
;
55 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
56 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
61 memset(tmp_urls
, 0, sizeof(tmp_urls
));
62 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
64 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
66 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
67 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
68 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
71 if (session
->ust_session
&& session
->ust_session
->consumer
) {
72 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
73 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
76 if (uuri
== NULL
&& kuri
== NULL
) {
77 uri
= &session
->consumer
->dst
.net
.control
;
78 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
79 } else if (kuri
&& uuri
) {
80 ret
= uri_compare(kuri
, uuri
);
84 /* Build uuri URL string */
85 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
92 } else if (kuri
&& uuri
== NULL
) {
94 } else if (uuri
&& kuri
== NULL
) {
98 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
104 * Do we have a UST url set. If yes, this means we have both kernel and UST
107 if (*tmp_uurl
!= '\0') {
108 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
109 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
115 /* No kernel URI, use the UST port. */
118 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
126 * Fill lttng_channel array of all channels.
128 static void list_lttng_channels(int domain
, struct ltt_session
*session
,
129 struct lttng_channel
*channels
)
132 struct ltt_kernel_channel
*kchan
;
134 DBG("Listing channels for session %s", session
->name
);
137 case LTTNG_DOMAIN_KERNEL
:
138 /* Kernel channels */
139 if (session
->kernel_session
!= NULL
) {
140 cds_list_for_each_entry(kchan
,
141 &session
->kernel_session
->channel_list
.head
, list
) {
142 /* Copy lttng_channel struct to array */
143 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
144 channels
[i
].enabled
= kchan
->enabled
;
149 case LTTNG_DOMAIN_UST
:
151 struct lttng_ht_iter iter
;
152 struct ltt_ust_channel
*uchan
;
155 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
156 &iter
.iter
, uchan
, node
.node
) {
157 strncpy(channels
[i
].name
, uchan
->name
, LTTNG_SYMBOL_NAME_LEN
);
158 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
159 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
160 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
161 channels
[i
].attr
.switch_timer_interval
=
162 uchan
->attr
.switch_timer_interval
;
163 channels
[i
].attr
.read_timer_interval
=
164 uchan
->attr
.read_timer_interval
;
165 channels
[i
].enabled
= uchan
->enabled
;
166 switch (uchan
->attr
.output
) {
169 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
183 * Create a list of ust global domain events.
185 static int list_lttng_ust_global_events(char *channel_name
,
186 struct ltt_ust_domain_global
*ust_global
, struct lttng_event
**events
)
189 unsigned int nb_event
= 0;
190 struct lttng_ht_iter iter
;
191 struct lttng_ht_node_str
*node
;
192 struct ltt_ust_channel
*uchan
;
193 struct ltt_ust_event
*uevent
;
194 struct lttng_event
*tmp
;
196 DBG("Listing UST global events for channel %s", channel_name
);
200 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
201 node
= lttng_ht_iter_get_node_str(&iter
);
203 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
207 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
209 nb_event
+= lttng_ht_get_count(uchan
->events
);
216 DBG3("Listing UST global %d events", nb_event
);
218 tmp
= zmalloc(nb_event
* sizeof(struct lttng_event
));
220 ret
= LTTNG_ERR_FATAL
;
224 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
225 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
226 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
227 tmp
[i
].enabled
= uevent
->enabled
;
229 switch (uevent
->attr
.instrumentation
) {
230 case LTTNG_UST_TRACEPOINT
:
231 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
233 case LTTNG_UST_PROBE
:
234 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
236 case LTTNG_UST_FUNCTION
:
237 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
241 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
242 switch (uevent
->attr
.loglevel_type
) {
243 case LTTNG_UST_LOGLEVEL_ALL
:
244 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
246 case LTTNG_UST_LOGLEVEL_RANGE
:
247 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
249 case LTTNG_UST_LOGLEVEL_SINGLE
:
250 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
253 if (uevent
->filter
) {
268 * Fill lttng_event array of all kernel events in the channel.
270 static int list_lttng_kernel_events(char *channel_name
,
271 struct ltt_kernel_session
*kernel_session
, struct lttng_event
**events
)
274 unsigned int nb_event
;
275 struct ltt_kernel_event
*event
;
276 struct ltt_kernel_channel
*kchan
;
278 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
280 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
284 nb_event
= kchan
->event_count
;
286 DBG("Listing events for channel %s", kchan
->channel
->name
);
292 *events
= zmalloc(nb_event
* sizeof(struct lttng_event
));
293 if (*events
== NULL
) {
294 ret
= LTTNG_ERR_FATAL
;
298 /* Kernel channels */
299 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
300 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
301 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
302 (*events
)[i
].enabled
= event
->enabled
;
304 switch (event
->event
->instrumentation
) {
305 case LTTNG_KERNEL_TRACEPOINT
:
306 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
308 case LTTNG_KERNEL_KPROBE
:
309 case LTTNG_KERNEL_KRETPROBE
:
310 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
311 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
312 sizeof(struct lttng_kernel_kprobe
));
314 case LTTNG_KERNEL_FUNCTION
:
315 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
316 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
317 sizeof(struct lttng_kernel_function
));
319 case LTTNG_KERNEL_NOOP
:
320 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
322 case LTTNG_KERNEL_SYSCALL
:
323 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
325 case LTTNG_KERNEL_ALL
:
336 /* Negate the error code to differentiate the size from an error */
341 * Add URI so the consumer output object. Set the correct path depending on the
342 * domain adding the default trace directory.
344 static int add_uri_to_consumer(struct consumer_output
*consumer
,
345 struct lttng_uri
*uri
, int domain
, const char *session_name
)
348 const char *default_trace_dir
;
352 if (consumer
== NULL
) {
353 DBG("No consumer detected. Don't add URI. Stopping.");
354 ret
= LTTNG_ERR_NO_CONSUMER
;
359 case LTTNG_DOMAIN_KERNEL
:
360 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
362 case LTTNG_DOMAIN_UST
:
363 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
367 * This case is possible is we try to add the URI to the global tracing
368 * session consumer object which in this case there is no subdir.
370 default_trace_dir
= "";
373 switch (uri
->dtype
) {
376 DBG2("Setting network URI to consumer");
378 consumer
->type
= CONSUMER_DST_NET
;
380 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
381 consumer
->dst
.net
.control_isset
) ||
382 (uri
->stype
== LTTNG_STREAM_DATA
&&
383 consumer
->dst
.net
.data_isset
)) {
384 ret
= LTTNG_ERR_URL_EXIST
;
388 /* Set URI into consumer output object */
389 ret
= consumer_set_network_uri(consumer
, uri
);
391 ret
= LTTNG_ERR_FATAL
;
393 } else if (ret
== 1) {
395 * URI was the same in the consumer so we do not append the subdir
396 * again so to not duplicate output dir.
401 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
402 ret
= consumer_set_subdir(consumer
, session_name
);
404 ret
= LTTNG_ERR_FATAL
;
409 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
410 /* On a new subdir, reappend the default trace dir. */
411 strncat(consumer
->subdir
, default_trace_dir
,
412 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
413 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
418 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
419 memset(consumer
->dst
.trace_path
, 0,
420 sizeof(consumer
->dst
.trace_path
));
421 strncpy(consumer
->dst
.trace_path
, uri
->dst
.path
,
422 sizeof(consumer
->dst
.trace_path
));
423 /* Append default trace dir */
424 strncat(consumer
->dst
.trace_path
, default_trace_dir
,
425 sizeof(consumer
->dst
.trace_path
) -
426 strlen(consumer
->dst
.trace_path
) - 1);
427 /* Flag consumer as local. */
428 consumer
->type
= CONSUMER_DST_LOCAL
;
437 * Init tracing by creating trace directory and sending fds kernel consumer.
439 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
442 struct lttng_ht_iter iter
;
443 struct consumer_socket
*socket
;
449 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
450 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
452 /* Code flow error */
453 assert(socket
->fd
>= 0);
455 pthread_mutex_lock(socket
->lock
);
456 ret
= kernel_consumer_send_session(socket
, session
);
457 pthread_mutex_unlock(socket
->lock
);
459 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
471 * Create a socket to the relayd using the URI.
473 * On success, the relayd_sock pointer is set to the created socket.
474 * Else, it's stays untouched and a lttcomm error code is returned.
476 static int create_connect_relayd(struct consumer_output
*output
,
477 const char *session_name
, struct lttng_uri
*uri
,
478 struct lttcomm_sock
**relayd_sock
)
481 struct lttcomm_sock
*sock
;
483 /* Create socket object from URI */
484 sock
= lttcomm_alloc_sock_from_uri(uri
);
486 ret
= LTTNG_ERR_FATAL
;
490 ret
= lttcomm_create_sock(sock
);
492 ret
= LTTNG_ERR_FATAL
;
497 * Connect to relayd so we can proceed with a session creation. This call
498 * can possibly block for an arbitrary amount of time to set the health
499 * state to be in poll execution.
502 ret
= relayd_connect(sock
);
505 ERR("Unable to reach lttng-relayd");
506 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
510 /* Create socket for control stream. */
511 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
512 DBG3("Creating relayd stream socket from URI");
514 /* Check relayd version */
515 ret
= relayd_version_check(sock
, RELAYD_VERSION_COMM_MAJOR
,
516 RELAYD_VERSION_COMM_MINOR
);
518 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
521 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
522 DBG3("Creating relayd data socket from URI");
524 /* Command is not valid */
525 ERR("Relayd invalid stream type: %d", uri
->stype
);
526 ret
= LTTNG_ERR_INVALID
;
536 (void) relayd_close(sock
);
540 lttcomm_destroy_sock(sock
);
547 * Connect to the relayd using URI and send the socket to the right consumer.
549 static int send_consumer_relayd_socket(int domain
, struct ltt_session
*session
,
550 struct lttng_uri
*relayd_uri
, struct consumer_output
*consumer
,
551 struct consumer_socket
*consumer_sock
)
554 struct lttcomm_sock
*sock
= NULL
;
556 /* Connect to relayd and make version check if uri is the control. */
557 ret
= create_connect_relayd(consumer
, session
->name
, relayd_uri
, &sock
);
558 if (ret
!= LTTNG_OK
) {
562 /* If the control socket is connected, network session is ready */
563 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
564 session
->net_handle
= 1;
567 /* Set the network sequence index if not set. */
568 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
569 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
571 * Increment net_seq_idx because we are about to transfer the
572 * new relayd socket to the consumer.
573 * Assign unique key so the consumer can match streams.
575 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
576 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
579 /* Send relayd socket to consumer. */
580 ret
= consumer_send_relayd_socket(consumer_sock
, sock
,
581 consumer
, relayd_uri
->stype
, session
->id
);
583 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
587 /* Flag that the corresponding socket was sent. */
588 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
589 consumer_sock
->control_sock_sent
= 1;
590 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
591 consumer_sock
->data_sock_sent
= 1;
597 * Close socket which was dup on the consumer side. The session daemon does
598 * NOT keep track of the relayd socket(s) once transfer to the consumer.
603 (void) relayd_close(sock
);
604 lttcomm_destroy_sock(sock
);
607 if (ret
!= LTTNG_OK
) {
609 * On error, nullify the consumer sequence index so streams are not
610 * associated with it once sent to the consumer.
612 uatomic_set(&consumer
->net_seq_index
, -1);
619 * Send both relayd sockets to a specific consumer and domain. This is a
620 * helper function to facilitate sending the information to the consumer for a
623 static int send_consumer_relayd_sockets(int domain
,
624 struct ltt_session
*session
, struct consumer_output
*consumer
,
625 struct consumer_socket
*sock
)
632 /* Sending control relayd socket. */
633 if (!sock
->control_sock_sent
) {
634 ret
= send_consumer_relayd_socket(domain
, session
,
635 &consumer
->dst
.net
.control
, consumer
, sock
);
636 if (ret
!= LTTNG_OK
) {
641 /* Sending data relayd socket. */
642 if (!sock
->data_sock_sent
) {
643 ret
= send_consumer_relayd_socket(domain
, session
,
644 &consumer
->dst
.net
.data
, consumer
, sock
);
645 if (ret
!= LTTNG_OK
) {
655 * Setup relayd connections for a tracing session. First creates the socket to
656 * the relayd and send them to the right domain consumer. Consumer type MUST be
659 int cmd_setup_relayd(struct ltt_session
*session
)
662 struct ltt_ust_session
*usess
;
663 struct ltt_kernel_session
*ksess
;
664 struct consumer_socket
*socket
;
665 struct lttng_ht_iter iter
;
669 usess
= session
->ust_session
;
670 ksess
= session
->kernel_session
;
672 DBG("Setting relayd for session %s", session
->name
);
676 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
677 && usess
->consumer
->enabled
) {
678 /* For each consumer socket, send relayd sockets */
679 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
681 /* Code flow error */
682 assert(socket
->fd
>= 0);
684 pthread_mutex_lock(socket
->lock
);
685 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
,
686 usess
->consumer
, socket
);
687 pthread_mutex_unlock(socket
->lock
);
688 if (ret
!= LTTNG_OK
) {
694 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
695 && ksess
->consumer
->enabled
) {
696 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
698 /* Code flow error */
699 assert(socket
->fd
>= 0);
701 pthread_mutex_lock(socket
->lock
);
702 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
,
703 ksess
->consumer
, socket
);
704 pthread_mutex_unlock(socket
->lock
);
705 if (ret
!= LTTNG_OK
) {
717 * Start a kernel session by opening all necessary streams.
719 static int start_kernel_session(struct ltt_kernel_session
*ksess
, int wpipe
)
722 struct ltt_kernel_channel
*kchan
;
724 /* Open kernel metadata */
725 if (ksess
->metadata
== NULL
) {
726 ret
= kernel_open_metadata(ksess
);
728 ret
= LTTNG_ERR_KERN_META_FAIL
;
733 /* Open kernel metadata stream */
734 if (ksess
->metadata_stream_fd
< 0) {
735 ret
= kernel_open_metadata_stream(ksess
);
737 ERR("Kernel create metadata stream failed");
738 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
743 /* For each channel */
744 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
745 if (kchan
->stream_count
== 0) {
746 ret
= kernel_open_channel_stream(kchan
);
748 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
751 /* Update the stream global counter */
752 ksess
->stream_count_global
+= ret
;
756 /* Setup kernel consumer socket and send fds to it */
757 ret
= init_kernel_tracing(ksess
);
759 ret
= LTTNG_ERR_KERN_START_FAIL
;
763 /* This start the kernel tracing */
764 ret
= kernel_start_session(ksess
);
766 ret
= LTTNG_ERR_KERN_START_FAIL
;
770 /* Quiescent wait after starting trace */
771 kernel_wait_quiescent(kernel_tracer_fd
);
782 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
784 int cmd_disable_channel(struct ltt_session
*session
, int domain
,
788 struct ltt_ust_session
*usess
;
790 usess
= session
->ust_session
;
795 case LTTNG_DOMAIN_KERNEL
:
797 ret
= channel_kernel_disable(session
->kernel_session
,
799 if (ret
!= LTTNG_OK
) {
803 kernel_wait_quiescent(kernel_tracer_fd
);
806 case LTTNG_DOMAIN_UST
:
808 struct ltt_ust_channel
*uchan
;
809 struct lttng_ht
*chan_ht
;
811 chan_ht
= usess
->domain_global
.channels
;
813 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
815 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
819 ret
= channel_ust_disable(usess
, domain
, uchan
);
820 if (ret
!= LTTNG_OK
) {
826 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
827 case LTTNG_DOMAIN_UST_EXEC_NAME
:
828 case LTTNG_DOMAIN_UST_PID
:
831 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
843 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
845 * The wpipe arguments is used as a notifier for the kernel thread.
847 int cmd_enable_channel(struct ltt_session
*session
,
848 int domain
, struct lttng_channel
*attr
, int wpipe
)
851 struct ltt_ust_session
*usess
= session
->ust_session
;
852 struct lttng_ht
*chan_ht
;
857 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
862 case LTTNG_DOMAIN_KERNEL
:
864 struct ltt_kernel_channel
*kchan
;
866 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
867 session
->kernel_session
);
869 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
871 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
874 if (ret
!= LTTNG_OK
) {
878 kernel_wait_quiescent(kernel_tracer_fd
);
881 * If the session was previously started, start as well this newly
882 * created kernel session so the events/channels enabled *after* the
883 * start actually work.
885 if (session
->started
&& !session
->kernel_session
->started
) {
886 ret
= start_kernel_session(session
->kernel_session
, wpipe
);
887 if (ret
!= LTTNG_OK
) {
893 case LTTNG_DOMAIN_UST
:
895 struct ltt_ust_channel
*uchan
;
897 chan_ht
= usess
->domain_global
.channels
;
899 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
901 ret
= channel_ust_create(usess
, domain
, attr
);
903 ret
= channel_ust_enable(usess
, domain
, uchan
);
906 /* Start the UST session if the session was already started. */
907 if (session
->started
&& !usess
->start_trace
) {
908 ret
= ust_app_start_trace_all(usess
);
910 ret
= LTTNG_ERR_UST_START_FAIL
;
914 usess
->start_trace
= 1;
919 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
920 case LTTNG_DOMAIN_UST_EXEC_NAME
:
921 case LTTNG_DOMAIN_UST_PID
:
924 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
935 * Command LTTNG_DISABLE_EVENT processed by the client thread.
937 int cmd_disable_event(struct ltt_session
*session
, int domain
,
938 char *channel_name
, char *event_name
)
945 case LTTNG_DOMAIN_KERNEL
:
947 struct ltt_kernel_channel
*kchan
;
948 struct ltt_kernel_session
*ksess
;
950 ksess
= session
->kernel_session
;
952 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
954 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
958 ret
= event_kernel_disable_tracepoint(kchan
, event_name
);
959 if (ret
!= LTTNG_OK
) {
963 kernel_wait_quiescent(kernel_tracer_fd
);
966 case LTTNG_DOMAIN_UST
:
968 struct ltt_ust_channel
*uchan
;
969 struct ltt_ust_session
*usess
;
971 usess
= session
->ust_session
;
973 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
976 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
980 ret
= event_ust_disable_tracepoint(usess
, domain
, uchan
, event_name
);
981 if (ret
!= LTTNG_OK
) {
985 DBG3("Disable UST event %s in channel %s completed", event_name
,
990 case LTTNG_DOMAIN_UST_EXEC_NAME
:
991 case LTTNG_DOMAIN_UST_PID
:
992 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1007 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
1009 int cmd_disable_event_all(struct ltt_session
*session
, int domain
,
1017 case LTTNG_DOMAIN_KERNEL
:
1019 struct ltt_kernel_session
*ksess
;
1020 struct ltt_kernel_channel
*kchan
;
1022 ksess
= session
->kernel_session
;
1024 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1025 if (kchan
== NULL
) {
1026 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1030 ret
= event_kernel_disable_all(kchan
);
1031 if (ret
!= LTTNG_OK
) {
1035 kernel_wait_quiescent(kernel_tracer_fd
);
1038 case LTTNG_DOMAIN_UST
:
1040 struct ltt_ust_session
*usess
;
1041 struct ltt_ust_channel
*uchan
;
1043 usess
= session
->ust_session
;
1045 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1047 if (uchan
== NULL
) {
1048 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1052 ret
= event_ust_disable_all_tracepoints(usess
, domain
, uchan
);
1057 DBG3("Disable all UST events in channel %s completed", channel_name
);
1062 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1063 case LTTNG_DOMAIN_UST_PID
:
1064 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1067 ret
= LTTNG_ERR_UND
;
1079 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1081 int cmd_add_context(struct ltt_session
*session
, int domain
,
1082 char *channel_name
, struct lttng_event_context
*ctx
, int kwpipe
)
1087 case LTTNG_DOMAIN_KERNEL
:
1088 assert(session
->kernel_session
);
1090 if (session
->kernel_session
->channel_count
== 0) {
1091 /* Create default channel */
1092 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1093 if (ret
!= LTTNG_OK
) {
1098 /* Add kernel context to kernel tracer */
1099 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1100 if (ret
!= LTTNG_OK
) {
1104 case LTTNG_DOMAIN_UST
:
1106 struct ltt_ust_session
*usess
= session
->ust_session
;
1109 unsigned int chan_count
=
1110 lttng_ht_get_count(usess
->domain_global
.channels
);
1111 if (chan_count
== 0) {
1112 struct lttng_channel
*attr
;
1113 /* Create default channel */
1114 attr
= channel_new_default_attr(domain
);
1116 ret
= LTTNG_ERR_FATAL
;
1120 ret
= channel_ust_create(usess
, domain
, attr
);
1121 if (ret
!= LTTNG_OK
) {
1128 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1129 if (ret
!= LTTNG_OK
) {
1135 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1136 case LTTNG_DOMAIN_UST_PID
:
1137 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1140 ret
= LTTNG_ERR_UND
;
1151 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1153 int cmd_enable_event(struct ltt_session
*session
, int domain
,
1154 char *channel_name
, struct lttng_event
*event
,
1155 struct lttng_filter_bytecode
*filter
, int wpipe
)
1157 int ret
, channel_created
= 0;
1158 struct lttng_channel
*attr
;
1162 assert(channel_name
);
1167 case LTTNG_DOMAIN_KERNEL
:
1169 struct ltt_kernel_channel
*kchan
;
1171 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1172 session
->kernel_session
);
1173 if (kchan
== NULL
) {
1174 attr
= channel_new_default_attr(domain
);
1176 ret
= LTTNG_ERR_FATAL
;
1179 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1181 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1182 if (ret
!= LTTNG_OK
) {
1188 channel_created
= 1;
1191 /* Get the newly created kernel channel pointer */
1192 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1193 session
->kernel_session
);
1194 if (kchan
== NULL
) {
1195 /* This sould not happen... */
1196 ret
= LTTNG_ERR_FATAL
;
1200 ret
= event_kernel_enable_tracepoint(kchan
, event
);
1201 if (ret
!= LTTNG_OK
) {
1202 if (channel_created
) {
1203 /* Let's not leak a useless channel. */
1204 kernel_destroy_channel(kchan
);
1209 kernel_wait_quiescent(kernel_tracer_fd
);
1212 case LTTNG_DOMAIN_UST
:
1214 struct ltt_ust_channel
*uchan
;
1215 struct ltt_ust_session
*usess
= session
->ust_session
;
1219 /* Get channel from global UST domain */
1220 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1222 if (uchan
== NULL
) {
1223 /* Create default channel */
1224 attr
= channel_new_default_attr(domain
);
1226 ret
= LTTNG_ERR_FATAL
;
1229 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1231 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1232 if (ret
!= LTTNG_OK
) {
1238 /* Get the newly created channel reference back */
1239 uchan
= trace_ust_find_channel_by_name(
1240 usess
->domain_global
.channels
, channel_name
);
1244 /* At this point, the session and channel exist on the tracer */
1245 ret
= event_ust_enable_tracepoint(usess
, domain
, uchan
, event
, filter
);
1246 if (ret
!= LTTNG_OK
) {
1252 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1253 case LTTNG_DOMAIN_UST_PID
:
1254 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1257 ret
= LTTNG_ERR_UND
;
1269 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1271 int cmd_enable_event_all(struct ltt_session
*session
, int domain
,
1272 char *channel_name
, int event_type
,
1273 struct lttng_filter_bytecode
*filter
, int wpipe
)
1276 struct lttng_channel
*attr
;
1279 assert(channel_name
);
1284 case LTTNG_DOMAIN_KERNEL
:
1286 struct ltt_kernel_channel
*kchan
;
1288 assert(session
->kernel_session
);
1290 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1291 session
->kernel_session
);
1292 if (kchan
== NULL
) {
1293 /* Create default channel */
1294 attr
= channel_new_default_attr(domain
);
1296 ret
= LTTNG_ERR_FATAL
;
1299 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1301 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1302 if (ret
!= LTTNG_OK
) {
1308 /* Get the newly created kernel channel pointer */
1309 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1310 session
->kernel_session
);
1314 switch (event_type
) {
1315 case LTTNG_EVENT_SYSCALL
:
1316 ret
= event_kernel_enable_all_syscalls(kchan
, kernel_tracer_fd
);
1318 case LTTNG_EVENT_TRACEPOINT
:
1320 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1321 * events already registered to the channel.
1323 ret
= event_kernel_enable_all_tracepoints(kchan
, kernel_tracer_fd
);
1325 case LTTNG_EVENT_ALL
:
1326 /* Enable syscalls and tracepoints */
1327 ret
= event_kernel_enable_all(kchan
, kernel_tracer_fd
);
1330 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1334 /* Manage return value */
1335 if (ret
!= LTTNG_OK
) {
1337 * On error, cmd_enable_channel call will take care of destroying
1338 * the created channel if it was needed.
1343 kernel_wait_quiescent(kernel_tracer_fd
);
1346 case LTTNG_DOMAIN_UST
:
1348 struct ltt_ust_channel
*uchan
;
1349 struct ltt_ust_session
*usess
= session
->ust_session
;
1353 /* Get channel from global UST domain */
1354 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1356 if (uchan
== NULL
) {
1357 /* Create default channel */
1358 attr
= channel_new_default_attr(domain
);
1360 ret
= LTTNG_ERR_FATAL
;
1363 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1365 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1366 if (ret
!= LTTNG_OK
) {
1372 /* Get the newly created channel reference back */
1373 uchan
= trace_ust_find_channel_by_name(
1374 usess
->domain_global
.channels
, channel_name
);
1378 /* At this point, the session and channel exist on the tracer */
1380 switch (event_type
) {
1381 case LTTNG_EVENT_ALL
:
1382 case LTTNG_EVENT_TRACEPOINT
:
1383 ret
= event_ust_enable_all_tracepoints(usess
, domain
, uchan
,
1385 if (ret
!= LTTNG_OK
) {
1390 ret
= LTTNG_ERR_UST_ENABLE_FAIL
;
1394 /* Manage return value */
1395 if (ret
!= LTTNG_OK
) {
1402 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1403 case LTTNG_DOMAIN_UST_PID
:
1404 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1407 ret
= LTTNG_ERR_UND
;
1420 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1422 ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
1425 ssize_t nb_events
= 0;
1428 case LTTNG_DOMAIN_KERNEL
:
1429 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
1430 if (nb_events
< 0) {
1431 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
1435 case LTTNG_DOMAIN_UST
:
1436 nb_events
= ust_app_list_events(events
);
1437 if (nb_events
< 0) {
1438 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1443 ret
= LTTNG_ERR_UND
;
1450 /* Return negative value to differentiate return code */
1455 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1457 ssize_t
cmd_list_tracepoint_fields(int domain
,
1458 struct lttng_event_field
**fields
)
1461 ssize_t nb_fields
= 0;
1464 case LTTNG_DOMAIN_UST
:
1465 nb_fields
= ust_app_list_event_fields(fields
);
1466 if (nb_fields
< 0) {
1467 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1471 case LTTNG_DOMAIN_KERNEL
:
1472 default: /* fall-through */
1473 ret
= LTTNG_ERR_UND
;
1480 /* Return negative value to differentiate return code */
1485 * Command LTTNG_START_TRACE processed by the client thread.
1487 int cmd_start_trace(struct ltt_session
*session
)
1490 struct ltt_kernel_session
*ksession
;
1491 struct ltt_ust_session
*usess
;
1495 /* Ease our life a bit ;) */
1496 ksession
= session
->kernel_session
;
1497 usess
= session
->ust_session
;
1499 if (session
->enabled
) {
1500 /* Already started. */
1501 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1505 session
->enabled
= 1;
1507 /* Kernel tracing */
1508 if (ksession
!= NULL
) {
1509 ret
= start_kernel_session(ksession
, kernel_tracer_fd
);
1510 if (ret
!= LTTNG_OK
) {
1515 /* Flag session that trace should start automatically */
1517 usess
->start_trace
= 1;
1519 ret
= ust_app_start_trace_all(usess
);
1521 ret
= LTTNG_ERR_UST_START_FAIL
;
1526 session
->started
= 1;
1535 * Command LTTNG_STOP_TRACE processed by the client thread.
1537 int cmd_stop_trace(struct ltt_session
*session
)
1540 struct ltt_kernel_channel
*kchan
;
1541 struct ltt_kernel_session
*ksession
;
1542 struct ltt_ust_session
*usess
;
1547 ksession
= session
->kernel_session
;
1548 usess
= session
->ust_session
;
1550 if (!session
->enabled
) {
1551 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
1555 session
->enabled
= 0;
1559 DBG("Stop kernel tracing");
1561 /* Flush metadata if exist */
1562 if (ksession
->metadata_stream_fd
>= 0) {
1563 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
1565 ERR("Kernel metadata flush failed");
1569 /* Flush all buffers before stopping */
1570 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
1571 ret
= kernel_flush_buffer(kchan
);
1573 ERR("Kernel flush buffer error");
1577 ret
= kernel_stop_session(ksession
);
1579 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1583 kernel_wait_quiescent(kernel_tracer_fd
);
1585 ksession
->started
= 0;
1589 usess
->start_trace
= 0;
1591 ret
= ust_app_stop_trace_all(usess
);
1593 ret
= LTTNG_ERR_UST_STOP_FAIL
;
1598 session
->started
= 0;
1607 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1609 int cmd_set_consumer_uri(int domain
, struct ltt_session
*session
,
1610 size_t nb_uri
, struct lttng_uri
*uris
)
1613 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1614 struct ltt_ust_session
*usess
= session
->ust_session
;
1615 struct consumer_output
*consumer
= NULL
;
1621 /* Can't enable consumer after session started. */
1622 if (session
->enabled
) {
1623 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1628 * This case switch makes sure the domain session has a temporary consumer
1629 * so the URL can be set.
1633 /* Code flow error. A session MUST always have a consumer object */
1634 assert(session
->consumer
);
1636 * The URL will be added to the tracing session consumer instead of a
1637 * specific domain consumer.
1639 consumer
= session
->consumer
;
1641 case LTTNG_DOMAIN_KERNEL
:
1642 /* Code flow error if we don't have a kernel session here. */
1644 assert(ksess
->consumer
);
1645 consumer
= ksess
->consumer
;
1647 case LTTNG_DOMAIN_UST
:
1648 /* Code flow error if we don't have a kernel session here. */
1650 assert(usess
->consumer
);
1651 consumer
= usess
->consumer
;
1655 for (i
= 0; i
< nb_uri
; i
++) {
1656 ret
= add_uri_to_consumer(consumer
, &uris
[i
], domain
, session
->name
);
1670 * Command LTTNG_CREATE_SESSION processed by the client thread.
1672 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
1673 size_t nb_uri
, lttng_sock_cred
*creds
)
1677 struct ltt_session
*session
;
1681 /* No URIs is not possible. */
1683 ret
= LTTNG_ERR_SESSION_FAIL
;
1688 * Verify if the session already exist
1690 * XXX: There is no need for the session lock list here since the caller
1691 * (process_client_msg) is holding it. We might want to change that so a
1692 * single command does not lock the entire session list.
1694 session
= session_find_by_name(name
);
1695 if (session
!= NULL
) {
1696 ret
= LTTNG_ERR_EXIST_SESS
;
1700 /* Create tracing session in the registry */
1701 ret
= session_create(name
, path
, LTTNG_SOCK_GET_UID_CRED(creds
),
1702 LTTNG_SOCK_GET_GID_CRED(creds
));
1703 if (ret
!= LTTNG_OK
) {
1708 * Get the newly created session pointer back
1710 * XXX: There is no need for the session lock list here since the caller
1711 * (process_client_msg) is holding it. We might want to change that so a
1712 * single command does not lock the entire session list.
1714 session
= session_find_by_name(name
);
1717 /* Create default consumer output for the session not yet created. */
1718 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
1719 if (session
->consumer
== NULL
) {
1720 ret
= LTTNG_ERR_FATAL
;
1721 goto consumer_error
;
1724 ret
= cmd_set_consumer_uri(0, session
, nb_uri
, uris
);
1725 if (ret
!= LTTNG_OK
) {
1726 goto consumer_error
;
1729 session
->consumer
->enabled
= 1;
1734 session_destroy(session
);
1741 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1743 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
1746 struct ltt_ust_session
*usess
;
1747 struct ltt_kernel_session
*ksess
;
1752 usess
= session
->ust_session
;
1753 ksess
= session
->kernel_session
;
1755 /* Clean kernel session teardown */
1756 kernel_destroy_session(ksess
);
1758 /* UST session teardown */
1760 /* Close any relayd session */
1761 consumer_output_send_destroy_relayd(usess
->consumer
);
1763 /* Destroy every UST application related to this session. */
1764 ret
= ust_app_destroy_trace_all(usess
);
1766 ERR("Error in ust_app_destroy_trace_all");
1769 /* Clean up the rest. */
1770 trace_ust_destroy_session(usess
);
1774 * Must notify the kernel thread here to update it's poll set in order to
1775 * remove the channel(s)' fd just destroyed.
1777 ret
= notify_thread_pipe(wpipe
);
1779 PERROR("write kernel poll pipe");
1782 ret
= session_destroy(session
);
1788 * Command LTTNG_CALIBRATE processed by the client thread.
1790 int cmd_calibrate(int domain
, struct lttng_calibrate
*calibrate
)
1795 case LTTNG_DOMAIN_KERNEL
:
1797 struct lttng_kernel_calibrate kcalibrate
;
1799 kcalibrate
.type
= calibrate
->type
;
1800 ret
= kernel_calibrate(kernel_tracer_fd
, &kcalibrate
);
1802 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1807 case LTTNG_DOMAIN_UST
:
1809 struct lttng_ust_calibrate ucalibrate
;
1811 ucalibrate
.type
= calibrate
->type
;
1812 ret
= ust_app_calibrate_glb(&ucalibrate
);
1814 ret
= LTTNG_ERR_UST_CALIBRATE_FAIL
;
1820 ret
= LTTNG_ERR_UND
;
1831 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
1833 int cmd_register_consumer(struct ltt_session
*session
, int domain
,
1834 const char *sock_path
, struct consumer_data
*cdata
)
1837 struct consumer_socket
*socket
;
1844 case LTTNG_DOMAIN_KERNEL
:
1846 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1850 /* Can't register a consumer if there is already one */
1851 if (ksess
->consumer_fds_sent
!= 0) {
1852 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
1856 sock
= lttcomm_connect_unix_sock(sock_path
);
1858 ret
= LTTNG_ERR_CONNECT_FAIL
;
1862 socket
= consumer_allocate_socket(sock
);
1863 if (socket
== NULL
) {
1866 PERROR("close register consumer");
1868 ret
= LTTNG_ERR_FATAL
;
1872 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
1873 if (socket
->lock
== NULL
) {
1874 PERROR("zmalloc pthread mutex");
1875 ret
= LTTNG_ERR_FATAL
;
1878 pthread_mutex_init(socket
->lock
, NULL
);
1879 socket
->registered
= 1;
1882 consumer_add_socket(socket
, ksess
->consumer
);
1885 pthread_mutex_lock(&cdata
->pid_mutex
);
1887 pthread_mutex_unlock(&cdata
->pid_mutex
);
1892 /* TODO: Userspace tracing */
1893 ret
= LTTNG_ERR_UND
;
1904 * Command LTTNG_LIST_DOMAINS processed by the client thread.
1906 ssize_t
cmd_list_domains(struct ltt_session
*session
,
1907 struct lttng_domain
**domains
)
1912 if (session
->kernel_session
!= NULL
) {
1913 DBG3("Listing domains found kernel domain");
1917 if (session
->ust_session
!= NULL
) {
1918 DBG3("Listing domains found UST global domain");
1922 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
1923 if (*domains
== NULL
) {
1924 ret
= LTTNG_ERR_FATAL
;
1928 if (session
->kernel_session
!= NULL
) {
1929 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
1933 if (session
->ust_session
!= NULL
) {
1934 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
1941 /* Return negative value to differentiate return code */
1947 * Command LTTNG_LIST_CHANNELS processed by the client thread.
1949 ssize_t
cmd_list_channels(int domain
, struct ltt_session
*session
,
1950 struct lttng_channel
**channels
)
1953 ssize_t nb_chan
= 0;
1956 case LTTNG_DOMAIN_KERNEL
:
1957 if (session
->kernel_session
!= NULL
) {
1958 nb_chan
= session
->kernel_session
->channel_count
;
1960 DBG3("Number of kernel channels %zd", nb_chan
);
1962 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1965 case LTTNG_DOMAIN_UST
:
1966 if (session
->ust_session
!= NULL
) {
1967 nb_chan
= lttng_ht_get_count(
1968 session
->ust_session
->domain_global
.channels
);
1970 DBG3("Number of UST global channels %zd", nb_chan
);
1972 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1977 ret
= LTTNG_ERR_UND
;
1982 *channels
= zmalloc(nb_chan
* sizeof(struct lttng_channel
));
1983 if (*channels
== NULL
) {
1984 ret
= LTTNG_ERR_FATAL
;
1988 list_lttng_channels(domain
, session
, *channels
);
1991 /* Ret value was set in the domain switch case */
1998 /* Return negative value to differentiate return code */
2003 * Command LTTNG_LIST_EVENTS processed by the client thread.
2005 ssize_t
cmd_list_events(int domain
, struct ltt_session
*session
,
2006 char *channel_name
, struct lttng_event
**events
)
2009 ssize_t nb_event
= 0;
2012 case LTTNG_DOMAIN_KERNEL
:
2013 if (session
->kernel_session
!= NULL
) {
2014 nb_event
= list_lttng_kernel_events(channel_name
,
2015 session
->kernel_session
, events
);
2018 case LTTNG_DOMAIN_UST
:
2020 if (session
->ust_session
!= NULL
) {
2021 nb_event
= list_lttng_ust_global_events(channel_name
,
2022 &session
->ust_session
->domain_global
, events
);
2027 ret
= LTTNG_ERR_UND
;
2034 /* Return negative value to differentiate return code */
2039 * Using the session list, filled a lttng_session array to send back to the
2040 * client for session listing.
2042 * The session list lock MUST be acquired before calling this function. Use
2043 * session_lock_list() and session_unlock_list().
2045 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
2050 struct ltt_session
*session
;
2051 struct ltt_session_list
*list
= session_get_list();
2053 DBG("Getting all available session for UID %d GID %d",
2056 * Iterate over session list and append data after the control struct in
2059 cds_list_for_each_entry(session
, &list
->head
, list
) {
2061 * Only list the sessions the user can control.
2063 if (!session_access_ok(session
, uid
, gid
)) {
2067 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2068 struct ltt_ust_session
*usess
= session
->ust_session
;
2070 if (session
->consumer
->type
== CONSUMER_DST_NET
||
2071 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
2072 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
2073 ret
= build_network_session_path(sessions
[i
].path
,
2074 sizeof(session
[i
].path
), session
);
2076 ret
= snprintf(sessions
[i
].path
, sizeof(session
[i
].path
), "%s",
2077 session
->consumer
->dst
.trace_path
);
2080 PERROR("snprintf session path");
2084 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
2085 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
2086 sessions
[i
].enabled
= session
->enabled
;
2092 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2093 * ready for trace analysis (or anykind of reader) or else 1 for pending data.
2095 int cmd_data_pending(struct ltt_session
*session
)
2098 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2099 struct ltt_ust_session
*usess
= session
->ust_session
;
2103 /* Session MUST be stopped to ask for data availability. */
2104 if (session
->enabled
) {
2105 ret
= LTTNG_ERR_SESSION_STARTED
;
2109 if (ksess
&& ksess
->consumer
) {
2110 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
2112 /* Data is still being extracted for the kernel. */
2117 if (usess
&& usess
->consumer
) {
2118 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
2120 /* Data is still being extracted for the kernel. */
2125 /* Data is ready to be read by a viewer */
2133 * Init command subsystem.
2138 * Set network sequence index to 1 for streams to match a relayd
2139 * socket on the consumer side.
2141 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
2142 relayd_net_seq_idx
= 1;
2143 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
2145 DBG("Command subsystem initialized");