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
43 * This value should be incremented atomically for safety purposes and future
44 * possible concurrent access.
46 static unsigned int relayd_net_seq_idx
;
49 * Create a session path used by list_lttng_sessions for the case that the
50 * session consumer is on the network.
52 static int build_network_session_path(char *dst
, size_t size
,
53 struct ltt_session
*session
)
55 int ret
, kdata_port
, udata_port
;
56 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
57 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
62 memset(tmp_urls
, 0, sizeof(tmp_urls
));
63 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
65 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
67 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
68 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
69 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
72 if (session
->ust_session
&& session
->ust_session
->consumer
) {
73 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
74 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
77 if (uuri
== NULL
&& kuri
== NULL
) {
78 uri
= &session
->consumer
->dst
.net
.control
;
79 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
80 } else if (kuri
&& uuri
) {
81 ret
= uri_compare(kuri
, uuri
);
85 /* Build uuri URL string */
86 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
93 } else if (kuri
&& uuri
== NULL
) {
95 } else if (uuri
&& kuri
== NULL
) {
99 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
104 if (strlen(tmp_uurl
) > 0) {
105 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
106 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
108 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, kdata_port
);
116 * Fill lttng_channel array of all channels.
118 static void list_lttng_channels(int domain
, struct ltt_session
*session
,
119 struct lttng_channel
*channels
)
122 struct ltt_kernel_channel
*kchan
;
124 DBG("Listing channels for session %s", session
->name
);
127 case LTTNG_DOMAIN_KERNEL
:
128 /* Kernel channels */
129 if (session
->kernel_session
!= NULL
) {
130 cds_list_for_each_entry(kchan
,
131 &session
->kernel_session
->channel_list
.head
, list
) {
132 /* Copy lttng_channel struct to array */
133 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
134 channels
[i
].enabled
= kchan
->enabled
;
139 case LTTNG_DOMAIN_UST
:
141 struct lttng_ht_iter iter
;
142 struct ltt_ust_channel
*uchan
;
144 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
145 &iter
.iter
, uchan
, node
.node
) {
146 strncpy(channels
[i
].name
, uchan
->name
, LTTNG_SYMBOL_NAME_LEN
);
147 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
148 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
149 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
150 channels
[i
].attr
.switch_timer_interval
=
151 uchan
->attr
.switch_timer_interval
;
152 channels
[i
].attr
.read_timer_interval
=
153 uchan
->attr
.read_timer_interval
;
154 channels
[i
].enabled
= uchan
->enabled
;
155 switch (uchan
->attr
.output
) {
158 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
171 * Create a list of ust global domain events.
173 static int list_lttng_ust_global_events(char *channel_name
,
174 struct ltt_ust_domain_global
*ust_global
, struct lttng_event
**events
)
177 unsigned int nb_event
= 0;
178 struct lttng_ht_iter iter
;
179 struct lttng_ht_node_str
*node
;
180 struct ltt_ust_channel
*uchan
;
181 struct ltt_ust_event
*uevent
;
182 struct lttng_event
*tmp
;
184 DBG("Listing UST global events for channel %s", channel_name
);
188 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
189 node
= lttng_ht_iter_get_node_str(&iter
);
191 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
195 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
197 nb_event
+= lttng_ht_get_count(uchan
->events
);
204 DBG3("Listing UST global %d events", nb_event
);
206 tmp
= zmalloc(nb_event
* sizeof(struct lttng_event
));
208 ret
= LTTNG_ERR_FATAL
;
212 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
213 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
214 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
215 tmp
[i
].enabled
= uevent
->enabled
;
217 switch (uevent
->attr
.instrumentation
) {
218 case LTTNG_UST_TRACEPOINT
:
219 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
221 case LTTNG_UST_PROBE
:
222 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
224 case LTTNG_UST_FUNCTION
:
225 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
229 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
230 switch (uevent
->attr
.loglevel_type
) {
231 case LTTNG_UST_LOGLEVEL_ALL
:
232 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
234 case LTTNG_UST_LOGLEVEL_RANGE
:
235 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
237 case LTTNG_UST_LOGLEVEL_SINGLE
:
238 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
241 if (uevent
->filter
) {
256 * Fill lttng_event array of all kernel events in the channel.
258 static int list_lttng_kernel_events(char *channel_name
,
259 struct ltt_kernel_session
*kernel_session
, struct lttng_event
**events
)
262 unsigned int nb_event
;
263 struct ltt_kernel_event
*event
;
264 struct ltt_kernel_channel
*kchan
;
266 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
268 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
272 nb_event
= kchan
->event_count
;
274 DBG("Listing events for channel %s", kchan
->channel
->name
);
280 *events
= zmalloc(nb_event
* sizeof(struct lttng_event
));
281 if (*events
== NULL
) {
282 ret
= LTTNG_ERR_FATAL
;
286 /* Kernel channels */
287 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
288 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
289 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
290 (*events
)[i
].enabled
= event
->enabled
;
292 switch (event
->event
->instrumentation
) {
293 case LTTNG_KERNEL_TRACEPOINT
:
294 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
296 case LTTNG_KERNEL_KPROBE
:
297 case LTTNG_KERNEL_KRETPROBE
:
298 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
299 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
300 sizeof(struct lttng_kernel_kprobe
));
302 case LTTNG_KERNEL_FUNCTION
:
303 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
304 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
305 sizeof(struct lttng_kernel_function
));
307 case LTTNG_KERNEL_NOOP
:
308 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
310 case LTTNG_KERNEL_SYSCALL
:
311 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
313 case LTTNG_KERNEL_ALL
:
324 /* Negate the error code to differentiate the size from an error */
329 * Add URI so the consumer output object. Set the correct path depending on the
330 * domain adding the default trace directory.
332 static int add_uri_to_consumer(struct consumer_output
*consumer
,
333 struct lttng_uri
*uri
, int domain
, const char *session_name
)
336 const char *default_trace_dir
;
340 if (consumer
== NULL
) {
341 DBG("No consumer detected. Don't add URI. Stopping.");
342 ret
= LTTNG_ERR_NO_CONSUMER
;
347 case LTTNG_DOMAIN_KERNEL
:
348 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
350 case LTTNG_DOMAIN_UST
:
351 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
355 * This case is possible is we try to add the URI to the global tracing
356 * session consumer object which in this case there is no subdir.
358 default_trace_dir
= "";
361 switch (uri
->dtype
) {
364 DBG2("Setting network URI to consumer");
366 /* Set URI into consumer output object */
367 ret
= consumer_set_network_uri(consumer
, uri
);
369 ret
= LTTNG_ERR_FATAL
;
371 } else if (ret
== 1) {
373 * URI was the same in the consumer so we do not append the subdir
374 * again so to not duplicate output dir.
379 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
380 ret
= consumer_set_subdir(consumer
, session_name
);
382 ret
= LTTNG_ERR_FATAL
;
387 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
388 /* On a new subdir, reappend the default trace dir. */
389 strncat(consumer
->subdir
, default_trace_dir
,
390 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
391 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
396 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
397 memset(consumer
->dst
.trace_path
, 0,
398 sizeof(consumer
->dst
.trace_path
));
399 strncpy(consumer
->dst
.trace_path
, uri
->dst
.path
,
400 sizeof(consumer
->dst
.trace_path
));
401 /* Append default trace dir */
402 strncat(consumer
->dst
.trace_path
, default_trace_dir
,
403 sizeof(consumer
->dst
.trace_path
) -
404 strlen(consumer
->dst
.trace_path
) - 1);
405 /* Flag consumer as local. */
406 consumer
->type
= CONSUMER_DST_LOCAL
;
415 * Init tracing by creating trace directory and sending fds kernel consumer.
417 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
420 struct lttng_ht_iter iter
;
421 struct consumer_socket
*socket
;
425 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
426 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
428 /* Code flow error */
429 assert(socket
->fd
>= 0);
431 pthread_mutex_lock(socket
->lock
);
432 ret
= kernel_consumer_send_session(socket
->fd
, session
);
433 pthread_mutex_unlock(socket
->lock
);
435 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
446 * Create a socket to the relayd using the URI.
448 * On success, the relayd_sock pointer is set to the created socket.
449 * Else, it's stays untouched and a lttcomm error code is returned.
451 static int create_connect_relayd(struct consumer_output
*output
,
452 const char *session_name
, struct lttng_uri
*uri
,
453 struct lttcomm_sock
**relayd_sock
)
456 struct lttcomm_sock
*sock
;
458 /* Create socket object from URI */
459 sock
= lttcomm_alloc_sock_from_uri(uri
);
461 ret
= LTTNG_ERR_FATAL
;
465 ret
= lttcomm_create_sock(sock
);
467 ret
= LTTNG_ERR_FATAL
;
471 /* Connect to relayd so we can proceed with a session creation. */
472 ret
= relayd_connect(sock
);
474 ERR("Unable to reach lttng-relayd");
475 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
479 /* Create socket for control stream. */
480 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
481 DBG3("Creating relayd stream socket from URI");
483 /* Check relayd version */
484 ret
= relayd_version_check(sock
, RELAYD_VERSION_COMM_MAJOR
,
485 RELAYD_VERSION_COMM_MINOR
);
487 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
490 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
491 DBG3("Creating relayd data socket from URI");
493 /* Command is not valid */
494 ERR("Relayd invalid stream type: %d", uri
->stype
);
495 ret
= LTTNG_ERR_INVALID
;
505 (void) relayd_close(sock
);
509 lttcomm_destroy_sock(sock
);
516 * Connect to the relayd using URI and send the socket to the right consumer.
518 static int send_consumer_relayd_socket(int domain
, struct ltt_session
*session
,
519 struct lttng_uri
*relayd_uri
, struct consumer_output
*consumer
,
523 struct lttcomm_sock
*sock
= NULL
;
525 /* Set the network sequence index if not set. */
526 if (consumer
->net_seq_index
== -1) {
528 * Increment net_seq_idx because we are about to transfer the
529 * new relayd socket to the consumer.
531 uatomic_inc(&relayd_net_seq_idx
);
532 /* Assign unique key so the consumer can match streams */
533 uatomic_set(&consumer
->net_seq_index
,
534 uatomic_read(&relayd_net_seq_idx
));
537 /* Connect to relayd and make version check if uri is the control. */
538 ret
= create_connect_relayd(consumer
, session
->name
, relayd_uri
, &sock
);
539 if (ret
!= LTTNG_OK
) {
543 /* If the control socket is connected, network session is ready */
544 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
545 session
->net_handle
= 1;
548 /* Send relayd socket to consumer. */
549 ret
= consumer_send_relayd_socket(consumer_fd
, sock
,
550 consumer
, relayd_uri
->stype
);
552 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
556 /* Flag that the corresponding socket was sent. */
557 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
558 consumer
->dst
.net
.control_sock_sent
= 1;
559 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
560 consumer
->dst
.net
.data_sock_sent
= 1;
566 * Close socket which was dup on the consumer side. The session daemon does
567 * NOT keep track of the relayd socket(s) once transfer to the consumer.
572 (void) relayd_close(sock
);
573 lttcomm_destroy_sock(sock
);
580 * Send both relayd sockets to a specific consumer and domain. This is a
581 * helper function to facilitate sending the information to the consumer for a
584 static int send_consumer_relayd_sockets(int domain
,
585 struct ltt_session
*session
, struct consumer_output
*consumer
, int fd
)
592 /* Sending control relayd socket. */
593 if (!consumer
->dst
.net
.control_sock_sent
) {
594 ret
= send_consumer_relayd_socket(domain
, session
,
595 &consumer
->dst
.net
.control
, consumer
, fd
);
596 if (ret
!= LTTNG_OK
) {
601 /* Sending data relayd socket. */
602 if (!consumer
->dst
.net
.data_sock_sent
) {
603 ret
= send_consumer_relayd_socket(domain
, session
,
604 &consumer
->dst
.net
.data
, consumer
, fd
);
605 if (ret
!= LTTNG_OK
) {
615 * Setup relayd connections for a tracing session. First creates the socket to
616 * the relayd and send them to the right domain consumer. Consumer type MUST be
619 static int setup_relayd(struct ltt_session
*session
)
622 struct ltt_ust_session
*usess
;
623 struct ltt_kernel_session
*ksess
;
624 struct consumer_socket
*socket
;
625 struct lttng_ht_iter iter
;
629 usess
= session
->ust_session
;
630 ksess
= session
->kernel_session
;
632 DBG2("Setting relayd for session %s", session
->name
);
634 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
635 && usess
->consumer
->enabled
) {
636 /* For each consumer socket, send relayd sockets */
637 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
639 /* Code flow error */
640 assert(socket
->fd
>= 0);
642 pthread_mutex_lock(socket
->lock
);
643 send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
,
644 usess
->consumer
, socket
->fd
);
645 pthread_mutex_unlock(socket
->lock
);
646 if (ret
!= LTTNG_OK
) {
652 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
653 && ksess
->consumer
->enabled
) {
654 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
656 /* Code flow error */
657 assert(socket
->fd
>= 0);
659 pthread_mutex_lock(socket
->lock
);
660 send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
,
661 ksess
->consumer
, socket
->fd
);
662 pthread_mutex_unlock(socket
->lock
);
663 if (ret
!= LTTNG_OK
) {
674 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
676 int cmd_disable_channel(struct ltt_session
*session
, int domain
,
680 struct ltt_ust_session
*usess
;
682 usess
= session
->ust_session
;
685 case LTTNG_DOMAIN_KERNEL
:
687 ret
= channel_kernel_disable(session
->kernel_session
,
689 if (ret
!= LTTNG_OK
) {
693 kernel_wait_quiescent(kernel_tracer_fd
);
696 case LTTNG_DOMAIN_UST
:
698 struct ltt_ust_channel
*uchan
;
699 struct lttng_ht
*chan_ht
;
701 chan_ht
= usess
->domain_global
.channels
;
703 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
705 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
709 ret
= channel_ust_disable(usess
, domain
, uchan
);
710 if (ret
!= LTTNG_OK
) {
716 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
717 case LTTNG_DOMAIN_UST_EXEC_NAME
:
718 case LTTNG_DOMAIN_UST_PID
:
721 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
732 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
734 * The wpipe arguments is used as a notifier for the kernel thread.
736 int cmd_enable_channel(struct ltt_session
*session
,
737 int domain
, struct lttng_channel
*attr
, int wpipe
)
740 struct ltt_ust_session
*usess
= session
->ust_session
;
741 struct lttng_ht
*chan_ht
;
746 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
749 case LTTNG_DOMAIN_KERNEL
:
751 struct ltt_kernel_channel
*kchan
;
753 /* Mandatory for a kernel channel. */
756 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
757 session
->kernel_session
);
759 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
761 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
764 if (ret
!= LTTNG_OK
) {
768 kernel_wait_quiescent(kernel_tracer_fd
);
771 case LTTNG_DOMAIN_UST
:
773 struct ltt_ust_channel
*uchan
;
775 chan_ht
= usess
->domain_global
.channels
;
777 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
779 ret
= channel_ust_create(usess
, domain
, attr
);
781 ret
= channel_ust_enable(usess
, domain
, uchan
);
786 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
787 case LTTNG_DOMAIN_UST_EXEC_NAME
:
788 case LTTNG_DOMAIN_UST_PID
:
791 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
801 * Command LTTNG_DISABLE_EVENT processed by the client thread.
803 int cmd_disable_event(struct ltt_session
*session
, int domain
,
804 char *channel_name
, char *event_name
)
809 case LTTNG_DOMAIN_KERNEL
:
811 struct ltt_kernel_channel
*kchan
;
812 struct ltt_kernel_session
*ksess
;
814 ksess
= session
->kernel_session
;
816 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
818 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
822 ret
= event_kernel_disable_tracepoint(ksess
, kchan
, event_name
);
823 if (ret
!= LTTNG_OK
) {
827 kernel_wait_quiescent(kernel_tracer_fd
);
830 case LTTNG_DOMAIN_UST
:
832 struct ltt_ust_channel
*uchan
;
833 struct ltt_ust_session
*usess
;
835 usess
= session
->ust_session
;
837 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
840 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
844 ret
= event_ust_disable_tracepoint(usess
, domain
, uchan
, event_name
);
845 if (ret
!= LTTNG_OK
) {
849 DBG3("Disable UST event %s in channel %s completed", event_name
,
854 case LTTNG_DOMAIN_UST_EXEC_NAME
:
855 case LTTNG_DOMAIN_UST_PID
:
856 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
870 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
872 int cmd_disable_event_all(struct ltt_session
*session
, int domain
,
878 case LTTNG_DOMAIN_KERNEL
:
880 struct ltt_kernel_session
*ksess
;
881 struct ltt_kernel_channel
*kchan
;
883 ksess
= session
->kernel_session
;
885 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
887 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
891 ret
= event_kernel_disable_all(ksess
, kchan
);
892 if (ret
!= LTTNG_OK
) {
896 kernel_wait_quiescent(kernel_tracer_fd
);
899 case LTTNG_DOMAIN_UST
:
901 struct ltt_ust_session
*usess
;
902 struct ltt_ust_channel
*uchan
;
904 usess
= session
->ust_session
;
906 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
909 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
913 ret
= event_ust_disable_all_tracepoints(usess
, domain
, uchan
);
918 DBG3("Disable all UST events in channel %s completed", channel_name
);
923 case LTTNG_DOMAIN_UST_EXEC_NAME
:
924 case LTTNG_DOMAIN_UST_PID
:
925 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
939 * Command LTTNG_ADD_CONTEXT processed by the client thread.
941 int cmd_add_context(struct ltt_session
*session
, int domain
,
942 char *channel_name
, char *event_name
, struct lttng_event_context
*ctx
)
947 case LTTNG_DOMAIN_KERNEL
:
948 /* Add kernel context to kernel tracer */
949 ret
= context_kernel_add(session
->kernel_session
, ctx
,
950 event_name
, channel_name
);
951 if (ret
!= LTTNG_OK
) {
955 case LTTNG_DOMAIN_UST
:
957 struct ltt_ust_session
*usess
= session
->ust_session
;
961 ret
= context_ust_add(usess
, domain
, ctx
, event_name
, channel_name
);
962 if (ret
!= LTTNG_OK
) {
968 case LTTNG_DOMAIN_UST_EXEC_NAME
:
969 case LTTNG_DOMAIN_UST_PID
:
970 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
984 * Command LTTNG_SET_FILTER processed by the client thread.
986 int cmd_set_filter(struct ltt_session
*session
, int domain
,
987 char *channel_name
, char *event_name
,
988 struct lttng_filter_bytecode
*bytecode
)
993 case LTTNG_DOMAIN_KERNEL
:
994 ret
= LTTNG_ERR_FATAL
;
996 case LTTNG_DOMAIN_UST
:
998 struct ltt_ust_session
*usess
= session
->ust_session
;
1000 ret
= filter_ust_set(usess
, domain
, bytecode
, event_name
, channel_name
);
1001 if (ret
!= LTTNG_OK
) {
1007 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1008 case LTTNG_DOMAIN_UST_PID
:
1009 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1012 ret
= LTTNG_ERR_UND
;
1025 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1027 int cmd_enable_event(struct ltt_session
*session
, int domain
,
1028 char *channel_name
, struct lttng_event
*event
, int wpipe
)
1031 struct lttng_channel
*attr
;
1035 assert(channel_name
);
1038 case LTTNG_DOMAIN_KERNEL
:
1040 struct ltt_kernel_channel
*kchan
;
1042 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1043 session
->kernel_session
);
1044 if (kchan
== NULL
) {
1045 attr
= channel_new_default_attr(domain
);
1047 ret
= LTTNG_ERR_FATAL
;
1050 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1052 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1053 if (ret
!= LTTNG_OK
) {
1060 /* Get the newly created kernel channel pointer */
1061 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1062 session
->kernel_session
);
1063 if (kchan
== NULL
) {
1064 /* This sould not happen... */
1065 ret
= LTTNG_ERR_FATAL
;
1069 ret
= event_kernel_enable_tracepoint(session
->kernel_session
, kchan
,
1071 if (ret
!= LTTNG_OK
) {
1075 kernel_wait_quiescent(kernel_tracer_fd
);
1078 case LTTNG_DOMAIN_UST
:
1080 struct ltt_ust_channel
*uchan
;
1081 struct ltt_ust_session
*usess
= session
->ust_session
;
1085 /* Get channel from global UST domain */
1086 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1088 if (uchan
== NULL
) {
1089 /* Create default channel */
1090 attr
= channel_new_default_attr(domain
);
1092 ret
= LTTNG_ERR_FATAL
;
1095 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1097 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1098 if (ret
!= LTTNG_OK
) {
1104 /* Get the newly created channel reference back */
1105 uchan
= trace_ust_find_channel_by_name(
1106 usess
->domain_global
.channels
, channel_name
);
1110 /* At this point, the session and channel exist on the tracer */
1111 ret
= event_ust_enable_tracepoint(usess
, domain
, uchan
, event
);
1112 if (ret
!= LTTNG_OK
) {
1118 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1119 case LTTNG_DOMAIN_UST_PID
:
1120 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1123 ret
= LTTNG_ERR_UND
;
1134 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1136 int cmd_enable_event_all(struct ltt_session
*session
, int domain
,
1137 char *channel_name
, int event_type
, int wpipe
)
1140 struct lttng_channel
*attr
;
1143 assert(channel_name
);
1146 case LTTNG_DOMAIN_KERNEL
:
1148 struct ltt_kernel_channel
*kchan
;
1150 assert(session
->kernel_session
);
1152 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1153 session
->kernel_session
);
1154 if (kchan
== NULL
) {
1155 /* Create default channel */
1156 attr
= channel_new_default_attr(domain
);
1158 ret
= LTTNG_ERR_FATAL
;
1161 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1163 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1164 if (ret
!= LTTNG_OK
) {
1170 /* Get the newly created kernel channel pointer */
1171 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1172 session
->kernel_session
);
1176 switch (event_type
) {
1177 case LTTNG_EVENT_SYSCALL
:
1178 ret
= event_kernel_enable_all_syscalls(session
->kernel_session
,
1179 kchan
, kernel_tracer_fd
);
1181 case LTTNG_EVENT_TRACEPOINT
:
1183 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1184 * events already registered to the channel.
1186 ret
= event_kernel_enable_all_tracepoints(session
->kernel_session
,
1187 kchan
, kernel_tracer_fd
);
1189 case LTTNG_EVENT_ALL
:
1190 /* Enable syscalls and tracepoints */
1191 ret
= event_kernel_enable_all(session
->kernel_session
,
1192 kchan
, kernel_tracer_fd
);
1195 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1199 /* Manage return value */
1200 if (ret
!= LTTNG_OK
) {
1204 kernel_wait_quiescent(kernel_tracer_fd
);
1207 case LTTNG_DOMAIN_UST
:
1209 struct ltt_ust_channel
*uchan
;
1210 struct ltt_ust_session
*usess
= session
->ust_session
;
1214 /* Get channel from global UST domain */
1215 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1217 if (uchan
== NULL
) {
1218 /* Create default channel */
1219 attr
= channel_new_default_attr(domain
);
1221 ret
= LTTNG_ERR_FATAL
;
1224 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1226 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1227 if (ret
!= LTTNG_OK
) {
1233 /* Get the newly created channel reference back */
1234 uchan
= trace_ust_find_channel_by_name(
1235 usess
->domain_global
.channels
, channel_name
);
1239 /* At this point, the session and channel exist on the tracer */
1241 switch (event_type
) {
1242 case LTTNG_EVENT_ALL
:
1243 case LTTNG_EVENT_TRACEPOINT
:
1244 ret
= event_ust_enable_all_tracepoints(usess
, domain
, uchan
);
1245 if (ret
!= LTTNG_OK
) {
1250 ret
= LTTNG_ERR_UST_ENABLE_FAIL
;
1254 /* Manage return value */
1255 if (ret
!= LTTNG_OK
) {
1262 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1263 case LTTNG_DOMAIN_UST_PID
:
1264 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1267 ret
= LTTNG_ERR_UND
;
1279 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1281 ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
1284 ssize_t nb_events
= 0;
1287 case LTTNG_DOMAIN_KERNEL
:
1288 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
1289 if (nb_events
< 0) {
1290 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
1294 case LTTNG_DOMAIN_UST
:
1295 nb_events
= ust_app_list_events(events
);
1296 if (nb_events
< 0) {
1297 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1302 ret
= LTTNG_ERR_UND
;
1309 /* Return negative value to differentiate return code */
1314 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1316 ssize_t
cmd_list_tracepoint_fields(int domain
,
1317 struct lttng_event_field
**fields
)
1320 ssize_t nb_fields
= 0;
1323 case LTTNG_DOMAIN_UST
:
1324 nb_fields
= ust_app_list_event_fields(fields
);
1325 if (nb_fields
< 0) {
1326 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1330 case LTTNG_DOMAIN_KERNEL
:
1331 default: /* fall-through */
1332 ret
= LTTNG_ERR_UND
;
1339 /* Return negative value to differentiate return code */
1344 * Command LTTNG_START_TRACE processed by the client thread.
1346 int cmd_start_trace(struct ltt_session
*session
)
1349 struct ltt_kernel_session
*ksession
;
1350 struct ltt_ust_session
*usess
;
1351 struct ltt_kernel_channel
*kchan
;
1355 /* Ease our life a bit ;) */
1356 ksession
= session
->kernel_session
;
1357 usess
= session
->ust_session
;
1359 if (session
->enabled
) {
1360 /* Already started. */
1361 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1365 session
->enabled
= 1;
1367 ret
= setup_relayd(session
);
1368 if (ret
!= LTTNG_OK
) {
1369 ERR("Error setting up relayd for session %s", session
->name
);
1373 /* Kernel tracing */
1374 if (ksession
!= NULL
) {
1375 /* Open kernel metadata */
1376 if (ksession
->metadata
== NULL
) {
1377 ret
= kernel_open_metadata(ksession
);
1379 ret
= LTTNG_ERR_KERN_META_FAIL
;
1384 /* Open kernel metadata stream */
1385 if (ksession
->metadata_stream_fd
< 0) {
1386 ret
= kernel_open_metadata_stream(ksession
);
1388 ERR("Kernel create metadata stream failed");
1389 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1394 /* For each channel */
1395 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
1396 if (kchan
->stream_count
== 0) {
1397 ret
= kernel_open_channel_stream(kchan
);
1399 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
1402 /* Update the stream global counter */
1403 ksession
->stream_count_global
+= ret
;
1407 /* Setup kernel consumer socket and send fds to it */
1408 ret
= init_kernel_tracing(ksession
);
1410 ret
= LTTNG_ERR_KERN_START_FAIL
;
1414 /* This start the kernel tracing */
1415 ret
= kernel_start_session(ksession
);
1417 ret
= LTTNG_ERR_KERN_START_FAIL
;
1421 /* Quiescent wait after starting trace */
1422 kernel_wait_quiescent(kernel_tracer_fd
);
1425 /* Flag session that trace should start automatically */
1427 usess
->start_trace
= 1;
1429 ret
= ust_app_start_trace_all(usess
);
1431 ret
= LTTNG_ERR_UST_START_FAIL
;
1443 * Command LTTNG_STOP_TRACE processed by the client thread.
1445 int cmd_stop_trace(struct ltt_session
*session
)
1448 struct ltt_kernel_channel
*kchan
;
1449 struct ltt_kernel_session
*ksession
;
1450 struct ltt_ust_session
*usess
;
1455 ksession
= session
->kernel_session
;
1456 usess
= session
->ust_session
;
1458 if (!session
->enabled
) {
1459 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
1463 session
->enabled
= 0;
1467 DBG("Stop kernel tracing");
1469 /* Flush metadata if exist */
1470 if (ksession
->metadata_stream_fd
>= 0) {
1471 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
1473 ERR("Kernel metadata flush failed");
1477 /* Flush all buffers before stopping */
1478 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
1479 ret
= kernel_flush_buffer(kchan
);
1481 ERR("Kernel flush buffer error");
1485 ret
= kernel_stop_session(ksession
);
1487 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1491 kernel_wait_quiescent(kernel_tracer_fd
);
1495 usess
->start_trace
= 0;
1497 ret
= ust_app_stop_trace_all(usess
);
1499 ret
= LTTNG_ERR_UST_STOP_FAIL
;
1511 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1513 int cmd_set_consumer_uri(int domain
, struct ltt_session
*session
,
1514 size_t nb_uri
, struct lttng_uri
*uris
)
1517 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1518 struct ltt_ust_session
*usess
= session
->ust_session
;
1519 struct consumer_output
*consumer
= NULL
;
1525 /* Can't enable consumer after session started. */
1526 if (session
->enabled
) {
1527 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1531 if (!session
->start_consumer
) {
1532 ret
= LTTNG_ERR_NO_CONSUMER
;
1537 * This case switch makes sure the domain session has a temporary consumer
1538 * so the URL can be set.
1542 /* Code flow error. A session MUST always have a consumer object */
1543 assert(session
->consumer
);
1545 * The URL will be added to the tracing session consumer instead of a
1546 * specific domain consumer.
1548 consumer
= session
->consumer
;
1550 case LTTNG_DOMAIN_KERNEL
:
1551 /* Code flow error if we don't have a kernel session here. */
1554 /* Create consumer output if none exists */
1555 consumer
= ksess
->tmp_consumer
;
1556 if (consumer
== NULL
) {
1557 consumer
= consumer_copy_output(ksess
->consumer
);
1558 if (consumer
== NULL
) {
1559 ret
= LTTNG_ERR_FATAL
;
1562 /* Trash the consumer subdir, we are about to set a new one. */
1563 memset(consumer
->subdir
, 0, sizeof(consumer
->subdir
));
1564 ksess
->tmp_consumer
= consumer
;
1568 case LTTNG_DOMAIN_UST
:
1569 /* Code flow error if we don't have a kernel session here. */
1572 /* Create consumer output if none exists */
1573 consumer
= usess
->tmp_consumer
;
1574 if (consumer
== NULL
) {
1575 consumer
= consumer_copy_output(usess
->consumer
);
1576 if (consumer
== NULL
) {
1577 ret
= LTTNG_ERR_FATAL
;
1580 /* Trash the consumer subdir, we are about to set a new one. */
1581 memset(consumer
->subdir
, 0, sizeof(consumer
->subdir
));
1582 usess
->tmp_consumer
= consumer
;
1588 for (i
= 0; i
< nb_uri
; i
++) {
1589 struct consumer_socket
*socket
;
1590 struct lttng_ht_iter iter
;
1592 ret
= add_uri_to_consumer(consumer
, &uris
[i
], domain
, session
->name
);
1598 * Don't send relayd socket if URI is NOT remote or if the relayd
1599 * socket for the session was already sent.
1601 if (uris
[i
].dtype
== LTTNG_DST_PATH
||
1602 (uris
[i
].stype
== LTTNG_STREAM_CONTROL
&&
1603 consumer
->dst
.net
.control_sock_sent
) ||
1604 (uris
[i
].stype
== LTTNG_STREAM_DATA
&&
1605 consumer
->dst
.net
.data_sock_sent
)) {
1609 /* Try to send relayd URI to the consumer if exist. */
1611 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
,
1612 socket
, node
.node
) {
1614 /* A socket in the HT should never have a negative fd */
1615 assert(socket
->fd
>= 0);
1617 pthread_mutex_lock(socket
->lock
);
1618 ret
= send_consumer_relayd_socket(domain
, session
, &uris
[i
],
1619 consumer
, socket
->fd
);
1620 pthread_mutex_unlock(socket
->lock
);
1621 if (ret
!= LTTNG_OK
) {
1637 * Command LTTNG_CREATE_SESSION processed by the client thread.
1639 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
1640 size_t nb_uri
, lttng_sock_cred
*creds
)
1644 struct ltt_session
*session
;
1649 * Verify if the session already exist
1651 * XXX: There is no need for the session lock list here since the caller
1652 * (process_client_msg) is holding it. We might want to change that so a
1653 * single command does not lock the entire session list.
1655 session
= session_find_by_name(name
);
1656 if (session
!= NULL
) {
1657 ret
= LTTNG_ERR_EXIST_SESS
;
1661 /* Create tracing session in the registry */
1662 ret
= session_create(name
, path
, LTTNG_SOCK_GET_UID_CRED(creds
),
1663 LTTNG_SOCK_GET_GID_CRED(creds
));
1664 if (ret
!= LTTNG_OK
) {
1669 * Get the newly created session pointer back
1671 * XXX: There is no need for the session lock list here since the caller
1672 * (process_client_msg) is holding it. We might want to change that so a
1673 * single command does not lock the entire session list.
1675 session
= session_find_by_name(name
);
1678 /* Create default consumer output for the session not yet created. */
1679 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
1680 if (session
->consumer
== NULL
) {
1681 ret
= LTTNG_ERR_FATAL
;
1682 goto consumer_error
;
1686 * This means that the lttng_create_session call was called with the _path_
1687 * argument set to NULL.
1691 * At this point, we'll skip the consumer URI setup and create a
1692 * session with a NULL path which will flag the session to NOT spawn a
1695 DBG("Create session %s with NO uri, skipping consumer setup", name
);
1699 session
->start_consumer
= 1;
1701 ret
= cmd_set_consumer_uri(0, session
, nb_uri
, uris
);
1702 if (ret
!= LTTNG_OK
) {
1703 goto consumer_error
;
1706 session
->consumer
->enabled
= 1;
1712 session_destroy(session
);
1719 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1721 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
1724 struct ltt_ust_session
*usess
;
1725 struct ltt_kernel_session
*ksess
;
1730 usess
= session
->ust_session
;
1731 ksess
= session
->kernel_session
;
1733 /* Clean kernel session teardown */
1734 kernel_destroy_session(ksess
);
1736 /* UST session teardown */
1738 /* Close any relayd session */
1739 consumer_output_send_destroy_relayd(usess
->consumer
);
1741 /* Destroy every UST application related to this session. */
1742 ret
= ust_app_destroy_trace_all(usess
);
1744 ERR("Error in ust_app_destroy_trace_all");
1747 /* Clean up the rest. */
1748 trace_ust_destroy_session(usess
);
1752 * Must notify the kernel thread here to update it's poll set in order to
1753 * remove the channel(s)' fd just destroyed.
1755 ret
= notify_thread_pipe(wpipe
);
1757 PERROR("write kernel poll pipe");
1760 ret
= session_destroy(session
);
1766 * Command LTTNG_CALIBRATE processed by the client thread.
1768 int cmd_calibrate(int domain
, struct lttng_calibrate
*calibrate
)
1773 case LTTNG_DOMAIN_KERNEL
:
1775 struct lttng_kernel_calibrate kcalibrate
;
1777 kcalibrate
.type
= calibrate
->type
;
1778 ret
= kernel_calibrate(kernel_tracer_fd
, &kcalibrate
);
1780 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1785 case LTTNG_DOMAIN_UST
:
1787 struct lttng_ust_calibrate ucalibrate
;
1789 ucalibrate
.type
= calibrate
->type
;
1790 ret
= ust_app_calibrate_glb(&ucalibrate
);
1792 ret
= LTTNG_ERR_UST_CALIBRATE_FAIL
;
1798 ret
= LTTNG_ERR_UND
;
1809 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
1811 int cmd_register_consumer(struct ltt_session
*session
, int domain
,
1812 const char *sock_path
, struct consumer_data
*cdata
)
1815 struct consumer_socket
*socket
;
1822 case LTTNG_DOMAIN_KERNEL
:
1824 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1828 /* Can't register a consumer if there is already one */
1829 if (ksess
->consumer_fds_sent
!= 0) {
1830 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
1834 sock
= lttcomm_connect_unix_sock(sock_path
);
1836 ret
= LTTNG_ERR_CONNECT_FAIL
;
1840 socket
= consumer_allocate_socket(sock
);
1841 if (socket
== NULL
) {
1842 ret
= LTTNG_ERR_FATAL
;
1847 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
1848 if (socket
->lock
== NULL
) {
1849 PERROR("zmalloc pthread mutex");
1850 ret
= LTTNG_ERR_FATAL
;
1853 pthread_mutex_init(socket
->lock
, NULL
);
1854 socket
->registered
= 1;
1857 consumer_add_socket(socket
, ksess
->consumer
);
1860 pthread_mutex_lock(&cdata
->pid_mutex
);
1862 pthread_mutex_unlock(&cdata
->pid_mutex
);
1867 /* TODO: Userspace tracing */
1868 ret
= LTTNG_ERR_UND
;
1879 * Command LTTNG_LIST_DOMAINS processed by the client thread.
1881 ssize_t
cmd_list_domains(struct ltt_session
*session
,
1882 struct lttng_domain
**domains
)
1887 if (session
->kernel_session
!= NULL
) {
1888 DBG3("Listing domains found kernel domain");
1892 if (session
->ust_session
!= NULL
) {
1893 DBG3("Listing domains found UST global domain");
1897 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
1898 if (*domains
== NULL
) {
1899 ret
= LTTNG_ERR_FATAL
;
1903 if (session
->kernel_session
!= NULL
) {
1904 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
1908 if (session
->ust_session
!= NULL
) {
1909 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
1916 /* Return negative value to differentiate return code */
1922 * Command LTTNG_LIST_CHANNELS processed by the client thread.
1924 ssize_t
cmd_list_channels(int domain
, struct ltt_session
*session
,
1925 struct lttng_channel
**channels
)
1928 ssize_t nb_chan
= 0;
1931 case LTTNG_DOMAIN_KERNEL
:
1932 if (session
->kernel_session
!= NULL
) {
1933 nb_chan
= session
->kernel_session
->channel_count
;
1935 DBG3("Number of kernel channels %zd", nb_chan
);
1937 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1940 case LTTNG_DOMAIN_UST
:
1941 if (session
->ust_session
!= NULL
) {
1942 nb_chan
= lttng_ht_get_count(
1943 session
->ust_session
->domain_global
.channels
);
1945 DBG3("Number of UST global channels %zd", nb_chan
);
1947 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1952 ret
= LTTNG_ERR_UND
;
1957 *channels
= zmalloc(nb_chan
* sizeof(struct lttng_channel
));
1958 if (*channels
== NULL
) {
1959 ret
= LTTNG_ERR_FATAL
;
1963 list_lttng_channels(domain
, session
, *channels
);
1966 /* Ret value was set in the domain switch case */
1973 /* Return negative value to differentiate return code */
1978 * Command LTTNG_LIST_EVENTS processed by the client thread.
1980 ssize_t
cmd_list_events(int domain
, struct ltt_session
*session
,
1981 char *channel_name
, struct lttng_event
**events
)
1984 ssize_t nb_event
= 0;
1987 case LTTNG_DOMAIN_KERNEL
:
1988 if (session
->kernel_session
!= NULL
) {
1989 nb_event
= list_lttng_kernel_events(channel_name
,
1990 session
->kernel_session
, events
);
1993 case LTTNG_DOMAIN_UST
:
1995 if (session
->ust_session
!= NULL
) {
1996 nb_event
= list_lttng_ust_global_events(channel_name
,
1997 &session
->ust_session
->domain_global
, events
);
2002 ret
= LTTNG_ERR_UND
;
2009 /* Return negative value to differentiate return code */
2014 * Using the session list, filled a lttng_session array to send back to the
2015 * client for session listing.
2017 * The session list lock MUST be acquired before calling this function. Use
2018 * session_lock_list() and session_unlock_list().
2020 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
2025 struct ltt_session
*session
;
2026 struct ltt_session_list
*list
= session_get_list();
2028 DBG("Getting all available session for UID %d GID %d",
2031 * Iterate over session list and append data after the control struct in
2034 cds_list_for_each_entry(session
, &list
->head
, list
) {
2036 * Only list the sessions the user can control.
2038 if (!session_access_ok(session
, uid
, gid
)) {
2042 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2043 struct ltt_ust_session
*usess
= session
->ust_session
;
2045 if (session
->consumer
->type
== CONSUMER_DST_NET
||
2046 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
2047 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
2048 ret
= build_network_session_path(sessions
[i
].path
,
2049 sizeof(session
[i
].path
), session
);
2051 ret
= snprintf(sessions
[i
].path
, sizeof(session
[i
].path
), "%s",
2052 session
->consumer
->dst
.trace_path
);
2055 PERROR("snprintf session path");
2059 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
2060 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
2061 sessions
[i
].enabled
= session
->enabled
;
2067 * Command LTTNG_DISABLE_CONSUMER processed by the client thread.
2069 int cmd_disable_consumer(int domain
, struct ltt_session
*session
)
2072 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2073 struct ltt_ust_session
*usess
= session
->ust_session
;
2074 struct consumer_output
*consumer
;
2078 if (session
->enabled
) {
2079 /* Can't disable consumer on an already started session */
2080 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2084 if (!session
->start_consumer
) {
2085 ret
= LTTNG_ERR_NO_CONSUMER
;
2091 DBG("Disable tracing session %s consumer", session
->name
);
2092 consumer
= session
->consumer
;
2094 case LTTNG_DOMAIN_KERNEL
:
2095 /* Code flow error if we don't have a kernel session here. */
2098 DBG("Disabling kernel consumer");
2099 consumer
= ksess
->consumer
;
2102 case LTTNG_DOMAIN_UST
:
2103 /* Code flow error if we don't have a UST session here. */
2106 DBG("Disabling UST consumer");
2107 consumer
= usess
->consumer
;
2111 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2116 consumer
->enabled
= 0;
2117 /* Success at this point */
2120 ret
= LTTNG_ERR_NO_CONSUMER
;
2128 * Command LTTNG_ENABLE_CONSUMER processed by the client thread.
2130 int cmd_enable_consumer(int domain
, struct ltt_session
*session
)
2133 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2134 struct ltt_ust_session
*usess
= session
->ust_session
;
2135 struct consumer_output
*consumer
= NULL
;
2139 /* Can't enable consumer after session started. */
2140 if (session
->enabled
) {
2141 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
2145 if (!session
->start_consumer
) {
2146 ret
= LTTNG_ERR_NO_CONSUMER
;
2152 assert(session
->consumer
);
2153 consumer
= session
->consumer
;
2155 case LTTNG_DOMAIN_KERNEL
:
2156 /* Code flow error if we don't have a kernel session here. */
2160 * Check if we have already sent fds to the consumer. In that case,
2161 * the enable-consumer command can't be used because a start trace
2162 * had previously occured.
2164 if (ksess
->consumer_fds_sent
) {
2165 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
2169 consumer
= ksess
->tmp_consumer
;
2170 if (consumer
== NULL
) {
2172 /* No temp. consumer output exists. Using the current one. */
2173 DBG3("No temporary consumer. Using default");
2174 consumer
= ksess
->consumer
;
2178 switch (consumer
->type
) {
2179 case CONSUMER_DST_LOCAL
:
2180 DBG2("Consumer output is local. Creating directory(ies)");
2182 /* Create directory(ies) */
2183 ret
= run_as_mkdir_recursive(consumer
->dst
.trace_path
,
2184 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2186 if (ret
!= -EEXIST
) {
2187 ERR("Trace directory creation error");
2188 ret
= LTTNG_ERR_FATAL
;
2193 case CONSUMER_DST_NET
:
2194 DBG2("Consumer output is network. Validating URIs");
2195 /* Validate if we have both control and data path set. */
2196 if (!consumer
->dst
.net
.control_isset
) {
2197 ret
= LTTNG_ERR_URL_CTRL_MISS
;
2201 if (!consumer
->dst
.net
.data_isset
) {
2202 ret
= LTTNG_ERR_URL_DATA_MISS
;
2206 /* Check established network session state */
2207 if (session
->net_handle
== 0) {
2208 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
2209 ERR("Session network handle is not set on enable-consumer");
2216 /* Append default kernel trace dir to subdir */
2217 strncat(ksess
->consumer
->subdir
, DEFAULT_KERNEL_TRACE_DIR
,
2218 sizeof(ksess
->consumer
->subdir
) -
2219 strlen(ksess
->consumer
->subdir
) - 1);
2223 * This is race free for now since the session lock is acquired before
2224 * ending up in this function. No other threads can access this kernel
2225 * session without this lock hence freeing the consumer output object
2229 consumer_destroy_output(ksess
->consumer
);
2231 ksess
->consumer
= consumer
;
2232 ksess
->tmp_consumer
= NULL
;
2235 case LTTNG_DOMAIN_UST
:
2236 /* Code flow error if we don't have a UST session here. */
2240 * Check if we have already sent fds to the consumer. In that case,
2241 * the enable-consumer command can't be used because a start trace
2242 * had previously occured.
2244 if (usess
->start_trace
) {
2245 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
2249 consumer
= usess
->tmp_consumer
;
2250 if (consumer
== NULL
) {
2252 /* No temp. consumer output exists. Using the current one. */
2253 DBG3("No temporary consumer. Using default");
2254 consumer
= usess
->consumer
;
2258 switch (consumer
->type
) {
2259 case CONSUMER_DST_LOCAL
:
2260 DBG2("Consumer output is local. Creating directory(ies)");
2262 /* Create directory(ies) */
2263 ret
= run_as_mkdir_recursive(consumer
->dst
.trace_path
,
2264 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2266 if (ret
!= -EEXIST
) {
2267 ERR("Trace directory creation error");
2268 ret
= LTTNG_ERR_FATAL
;
2273 case CONSUMER_DST_NET
:
2274 DBG2("Consumer output is network. Validating URIs");
2275 /* Validate if we have both control and data path set. */
2276 if (!consumer
->dst
.net
.control_isset
) {
2277 ret
= LTTNG_ERR_URL_CTRL_MISS
;
2281 if (!consumer
->dst
.net
.data_isset
) {
2282 ret
= LTTNG_ERR_URL_DATA_MISS
;
2286 /* Check established network session state */
2287 if (session
->net_handle
== 0) {
2288 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
2289 DBG2("Session network handle is not set on enable-consumer");
2293 if (consumer
->net_seq_index
== -1) {
2294 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
2295 DBG2("Network index is not set on the consumer");
2302 /* Append default kernel trace dir to subdir */
2303 strncat(usess
->consumer
->subdir
, DEFAULT_UST_TRACE_DIR
,
2304 sizeof(usess
->consumer
->subdir
) -
2305 strlen(usess
->consumer
->subdir
) - 1);
2309 * This is race free for now since the session lock is acquired before
2310 * ending up in this function. No other threads can access this kernel
2311 * session without this lock hence freeing the consumer output object
2315 consumer_destroy_output(usess
->consumer
);
2317 usess
->consumer
= consumer
;
2318 usess
->tmp_consumer
= NULL
;
2325 consumer
->enabled
= 1;
2326 /* Success at this point */
2329 /* Should not really happend... */
2330 ret
= LTTNG_ERR_NO_CONSUMER
;
2338 * Command LTTNG_DATA_AVAILABLE returning 0 if the data is NOT ready to be read
2339 * or else 1 if the data is available for trace analysis.
2341 int cmd_data_available(struct ltt_session
*session
)
2344 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2345 struct ltt_ust_session
*usess
= session
->ust_session
;
2349 /* Session MUST be stopped to ask for data availability. */
2350 if (session
->enabled
) {
2351 ret
= LTTNG_ERR_SESSION_STARTED
;
2355 if (ksess
&& ksess
->consumer
) {
2356 ret
= consumer_is_data_available(ksess
->id
, ksess
->consumer
);
2358 /* Data is still being extracted for the kernel. */
2363 if (usess
&& usess
->consumer
) {
2364 ret
= consumer_is_data_available(usess
->id
, usess
->consumer
);
2366 /* Data is still being extracted for the kernel. */
2371 /* Data is ready to be read by a viewer */
2379 * Init command subsystem.
2384 * Set network sequence index to 1 for streams to match a relayd socket on
2385 * the consumer side.
2387 uatomic_set(&relayd_net_seq_idx
, 1);
2389 DBG("Command subsystem initialized");