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.
23 #include <urcu/list.h>
24 #include <urcu/uatomic.h>
26 #include <common/defaults.h>
27 #include <common/common.h>
28 #include <common/sessiond-comm/sessiond-comm.h>
29 #include <common/relayd/relayd.h>
30 #include <common/utils.h>
35 #include "health-sessiond.h"
37 #include "kernel-consumer.h"
38 #include "lttng-sessiond.h"
45 * Used to keep a unique index for each relayd socket created where this value
46 * is associated with streams on the consumer so it can match the right relayd
47 * to send to. It must be accessed with the relayd_net_seq_idx_lock
50 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
51 static uint64_t relayd_net_seq_idx
;
54 * Create a session path used by list_lttng_sessions for the case that the
55 * session consumer is on the network.
57 static int build_network_session_path(char *dst
, size_t size
,
58 struct ltt_session
*session
)
60 int ret
, kdata_port
, udata_port
;
61 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
62 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
67 memset(tmp_urls
, 0, sizeof(tmp_urls
));
68 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
70 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
72 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
73 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
74 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
77 if (session
->ust_session
&& session
->ust_session
->consumer
) {
78 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
79 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
82 if (uuri
== NULL
&& kuri
== NULL
) {
83 uri
= &session
->consumer
->dst
.net
.control
;
84 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
85 } else if (kuri
&& uuri
) {
86 ret
= uri_compare(kuri
, uuri
);
90 /* Build uuri URL string */
91 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
98 } else if (kuri
&& uuri
== NULL
) {
100 } else if (uuri
&& kuri
== NULL
) {
104 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
110 * Do we have a UST url set. If yes, this means we have both kernel and UST
113 if (*tmp_uurl
!= '\0') {
114 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
115 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
118 if (kuri
|| (!kuri
&& !uuri
)) {
121 /* No kernel URI, use the UST port. */
124 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
132 * Fill lttng_channel array of all channels.
134 static void list_lttng_channels(int domain
, struct ltt_session
*session
,
135 struct lttng_channel
*channels
)
138 struct ltt_kernel_channel
*kchan
;
140 DBG("Listing channels for session %s", session
->name
);
143 case LTTNG_DOMAIN_KERNEL
:
144 /* Kernel channels */
145 if (session
->kernel_session
!= NULL
) {
146 cds_list_for_each_entry(kchan
,
147 &session
->kernel_session
->channel_list
.head
, list
) {
148 /* Copy lttng_channel struct to array */
149 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
150 channels
[i
].enabled
= kchan
->enabled
;
155 case LTTNG_DOMAIN_UST
:
157 struct lttng_ht_iter iter
;
158 struct ltt_ust_channel
*uchan
;
161 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
162 &iter
.iter
, uchan
, node
.node
) {
163 strncpy(channels
[i
].name
, uchan
->name
, LTTNG_SYMBOL_NAME_LEN
);
164 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
165 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
166 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
167 channels
[i
].attr
.switch_timer_interval
=
168 uchan
->attr
.switch_timer_interval
;
169 channels
[i
].attr
.read_timer_interval
=
170 uchan
->attr
.read_timer_interval
;
171 channels
[i
].enabled
= uchan
->enabled
;
172 channels
[i
].attr
.tracefile_size
= uchan
->tracefile_size
;
173 channels
[i
].attr
.tracefile_count
= uchan
->tracefile_count
;
174 switch (uchan
->attr
.output
) {
177 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
191 * Create a list of agent domain events.
193 * Return number of events in list on success or else a negative value.
195 static int list_lttng_agent_events(struct agent
*agt
,
196 struct lttng_event
**events
)
199 unsigned int nb_event
= 0;
200 struct agent_event
*event
;
201 struct lttng_event
*tmp_events
;
202 struct lttng_ht_iter iter
;
207 DBG3("Listing agent events");
210 nb_event
= lttng_ht_get_count(agt
->events
);
217 tmp_events
= zmalloc(nb_event
* sizeof(*tmp_events
));
219 PERROR("zmalloc agent events session");
220 ret
= -LTTNG_ERR_FATAL
;
225 cds_lfht_for_each_entry(agt
->events
->ht
, &iter
.iter
, event
, node
.node
) {
226 strncpy(tmp_events
[i
].name
, event
->name
, sizeof(tmp_events
[i
].name
));
227 tmp_events
[i
].name
[sizeof(tmp_events
[i
].name
) - 1] = '\0';
228 tmp_events
[i
].enabled
= event
->enabled
;
229 tmp_events
[i
].loglevel
= event
->loglevel
;
230 tmp_events
[i
].loglevel_type
= event
->loglevel_type
;
235 *events
= tmp_events
;
239 assert(nb_event
== i
);
244 * Create a list of ust global domain events.
246 static int list_lttng_ust_global_events(char *channel_name
,
247 struct ltt_ust_domain_global
*ust_global
, struct lttng_event
**events
)
250 unsigned int nb_event
= 0;
251 struct lttng_ht_iter iter
;
252 struct lttng_ht_node_str
*node
;
253 struct ltt_ust_channel
*uchan
;
254 struct ltt_ust_event
*uevent
;
255 struct lttng_event
*tmp
;
257 DBG("Listing UST global events for channel %s", channel_name
);
261 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
262 node
= lttng_ht_iter_get_node_str(&iter
);
264 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
268 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
270 nb_event
+= lttng_ht_get_count(uchan
->events
);
277 DBG3("Listing UST global %d events", nb_event
);
279 tmp
= zmalloc(nb_event
* sizeof(struct lttng_event
));
281 ret
= LTTNG_ERR_FATAL
;
285 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
286 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
287 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
288 tmp
[i
].enabled
= uevent
->enabled
;
290 switch (uevent
->attr
.instrumentation
) {
291 case LTTNG_UST_TRACEPOINT
:
292 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
294 case LTTNG_UST_PROBE
:
295 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
297 case LTTNG_UST_FUNCTION
:
298 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
302 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
303 switch (uevent
->attr
.loglevel_type
) {
304 case LTTNG_UST_LOGLEVEL_ALL
:
305 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
307 case LTTNG_UST_LOGLEVEL_RANGE
:
308 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
310 case LTTNG_UST_LOGLEVEL_SINGLE
:
311 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
314 if (uevent
->filter
) {
317 if (uevent
->exclusion
) {
318 tmp
[i
].exclusion
= 1;
332 * Fill lttng_event array of all kernel events in the channel.
334 static int list_lttng_kernel_events(char *channel_name
,
335 struct ltt_kernel_session
*kernel_session
, struct lttng_event
**events
)
338 unsigned int nb_event
;
339 struct ltt_kernel_event
*event
;
340 struct ltt_kernel_channel
*kchan
;
342 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
344 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
348 nb_event
= kchan
->event_count
;
350 DBG("Listing events for channel %s", kchan
->channel
->name
);
357 *events
= zmalloc(nb_event
* sizeof(struct lttng_event
));
358 if (*events
== NULL
) {
359 ret
= LTTNG_ERR_FATAL
;
363 /* Kernel channels */
364 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
365 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
366 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
367 (*events
)[i
].enabled
= event
->enabled
;
369 switch (event
->event
->instrumentation
) {
370 case LTTNG_KERNEL_TRACEPOINT
:
371 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
373 case LTTNG_KERNEL_KRETPROBE
:
374 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
375 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
376 sizeof(struct lttng_kernel_kprobe
));
378 case LTTNG_KERNEL_KPROBE
:
379 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
380 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
381 sizeof(struct lttng_kernel_kprobe
));
383 case LTTNG_KERNEL_FUNCTION
:
384 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
385 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
386 sizeof(struct lttng_kernel_function
));
388 case LTTNG_KERNEL_NOOP
:
389 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
391 case LTTNG_KERNEL_SYSCALL
:
392 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
394 case LTTNG_KERNEL_ALL
:
405 new_size
= syscall_list_channel(kchan
, events
, nb_event
);
417 /* Negate the error code to differentiate the size from an error */
422 * Add URI so the consumer output object. Set the correct path depending on the
423 * domain adding the default trace directory.
425 static int add_uri_to_consumer(struct consumer_output
*consumer
,
426 struct lttng_uri
*uri
, int domain
, const char *session_name
)
429 const char *default_trace_dir
;
433 if (consumer
== NULL
) {
434 DBG("No consumer detected. Don't add URI. Stopping.");
435 ret
= LTTNG_ERR_NO_CONSUMER
;
440 case LTTNG_DOMAIN_KERNEL
:
441 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
443 case LTTNG_DOMAIN_UST
:
444 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
448 * This case is possible is we try to add the URI to the global tracing
449 * session consumer object which in this case there is no subdir.
451 default_trace_dir
= "";
454 switch (uri
->dtype
) {
457 DBG2("Setting network URI to consumer");
459 if (consumer
->type
== CONSUMER_DST_NET
) {
460 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
461 consumer
->dst
.net
.control_isset
) ||
462 (uri
->stype
== LTTNG_STREAM_DATA
&&
463 consumer
->dst
.net
.data_isset
)) {
464 ret
= LTTNG_ERR_URL_EXIST
;
468 memset(&consumer
->dst
.net
, 0, sizeof(consumer
->dst
.net
));
471 consumer
->type
= CONSUMER_DST_NET
;
473 /* Set URI into consumer output object */
474 ret
= consumer_set_network_uri(consumer
, uri
);
478 } else if (ret
== 1) {
480 * URI was the same in the consumer so we do not append the subdir
481 * again so to not duplicate output dir.
487 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
488 ret
= consumer_set_subdir(consumer
, session_name
);
490 ret
= LTTNG_ERR_FATAL
;
495 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
496 /* On a new subdir, reappend the default trace dir. */
497 strncat(consumer
->subdir
, default_trace_dir
,
498 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
499 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
504 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
505 memset(consumer
->dst
.trace_path
, 0,
506 sizeof(consumer
->dst
.trace_path
));
507 strncpy(consumer
->dst
.trace_path
, uri
->dst
.path
,
508 sizeof(consumer
->dst
.trace_path
));
509 /* Append default trace dir */
510 strncat(consumer
->dst
.trace_path
, default_trace_dir
,
511 sizeof(consumer
->dst
.trace_path
) -
512 strlen(consumer
->dst
.trace_path
) - 1);
513 /* Flag consumer as local. */
514 consumer
->type
= CONSUMER_DST_LOCAL
;
525 * Init tracing by creating trace directory and sending fds kernel consumer.
527 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
530 struct lttng_ht_iter iter
;
531 struct consumer_socket
*socket
;
537 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
538 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
540 pthread_mutex_lock(socket
->lock
);
541 ret
= kernel_consumer_send_session(socket
, session
);
542 pthread_mutex_unlock(socket
->lock
);
544 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
556 * Create a socket to the relayd using the URI.
558 * On success, the relayd_sock pointer is set to the created socket.
559 * Else, it's stays untouched and a lttcomm error code is returned.
561 static int create_connect_relayd(struct lttng_uri
*uri
,
562 struct lttcomm_relayd_sock
**relayd_sock
)
565 struct lttcomm_relayd_sock
*rsock
;
567 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
568 RELAYD_VERSION_COMM_MINOR
);
570 ret
= LTTNG_ERR_FATAL
;
575 * Connect to relayd so we can proceed with a session creation. This call
576 * can possibly block for an arbitrary amount of time to set the health
577 * state to be in poll execution.
580 ret
= relayd_connect(rsock
);
583 ERR("Unable to reach lttng-relayd");
584 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
588 /* Create socket for control stream. */
589 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
590 DBG3("Creating relayd stream socket from URI");
592 /* Check relayd version */
593 ret
= relayd_version_check(rsock
);
595 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
598 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
599 DBG3("Creating relayd data socket from URI");
601 /* Command is not valid */
602 ERR("Relayd invalid stream type: %d", uri
->stype
);
603 ret
= LTTNG_ERR_INVALID
;
607 *relayd_sock
= rsock
;
612 /* The returned value is not useful since we are on an error path. */
613 (void) relayd_close(rsock
);
621 * Connect to the relayd using URI and send the socket to the right consumer.
623 static int send_consumer_relayd_socket(int domain
, unsigned int session_id
,
624 struct lttng_uri
*relayd_uri
, struct consumer_output
*consumer
,
625 struct consumer_socket
*consumer_sock
,
626 char *session_name
, char *hostname
, int session_live_timer
)
629 struct lttcomm_relayd_sock
*rsock
= NULL
;
631 /* Connect to relayd and make version check if uri is the control. */
632 ret
= create_connect_relayd(relayd_uri
, &rsock
);
633 if (ret
!= LTTNG_OK
) {
638 /* Set the network sequence index if not set. */
639 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
640 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
642 * Increment net_seq_idx because we are about to transfer the
643 * new relayd socket to the consumer.
644 * Assign unique key so the consumer can match streams.
646 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
647 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
650 /* Send relayd socket to consumer. */
651 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
652 relayd_uri
->stype
, session_id
,
653 session_name
, hostname
, session_live_timer
);
655 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
659 /* Flag that the corresponding socket was sent. */
660 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
661 consumer_sock
->control_sock_sent
= 1;
662 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
663 consumer_sock
->data_sock_sent
= 1;
669 * Close socket which was dup on the consumer side. The session daemon does
670 * NOT keep track of the relayd socket(s) once transfer to the consumer.
674 (void) relayd_close(rsock
);
678 if (ret
!= LTTNG_OK
) {
680 * The consumer output for this session should not be used anymore
681 * since the relayd connection failed thus making any tracing or/and
682 * streaming not usable.
684 consumer
->enabled
= 0;
690 * Send both relayd sockets to a specific consumer and domain. This is a
691 * helper function to facilitate sending the information to the consumer for a
694 static int send_consumer_relayd_sockets(int domain
, unsigned int session_id
,
695 struct consumer_output
*consumer
, struct consumer_socket
*sock
,
696 char *session_name
, char *hostname
, int session_live_timer
)
703 /* Sending control relayd socket. */
704 if (!sock
->control_sock_sent
) {
705 ret
= send_consumer_relayd_socket(domain
, session_id
,
706 &consumer
->dst
.net
.control
, consumer
, sock
,
707 session_name
, hostname
, session_live_timer
);
708 if (ret
!= LTTNG_OK
) {
713 /* Sending data relayd socket. */
714 if (!sock
->data_sock_sent
) {
715 ret
= send_consumer_relayd_socket(domain
, session_id
,
716 &consumer
->dst
.net
.data
, consumer
, sock
,
717 session_name
, hostname
, session_live_timer
);
718 if (ret
!= LTTNG_OK
) {
728 * Setup relayd connections for a tracing session. First creates the socket to
729 * the relayd and send them to the right domain consumer. Consumer type MUST be
732 int cmd_setup_relayd(struct ltt_session
*session
)
735 struct ltt_ust_session
*usess
;
736 struct ltt_kernel_session
*ksess
;
737 struct consumer_socket
*socket
;
738 struct lttng_ht_iter iter
;
742 usess
= session
->ust_session
;
743 ksess
= session
->kernel_session
;
745 DBG("Setting relayd for session %s", session
->name
);
749 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
750 && usess
->consumer
->enabled
) {
751 /* For each consumer socket, send relayd sockets */
752 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
754 pthread_mutex_lock(socket
->lock
);
755 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
756 usess
->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;
768 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
769 && ksess
->consumer
->enabled
) {
770 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
772 pthread_mutex_lock(socket
->lock
);
773 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
774 ksess
->consumer
, socket
,
775 session
->name
, session
->hostname
,
776 session
->live_timer
);
777 pthread_mutex_unlock(socket
->lock
);
778 if (ret
!= LTTNG_OK
) {
781 /* Session is now ready for network streaming. */
782 session
->net_handle
= 1;
792 * Start a kernel session by opening all necessary streams.
794 static int start_kernel_session(struct ltt_kernel_session
*ksess
, int wpipe
)
797 struct ltt_kernel_channel
*kchan
;
799 /* Open kernel metadata */
800 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
801 ret
= kernel_open_metadata(ksess
);
803 ret
= LTTNG_ERR_KERN_META_FAIL
;
808 /* Open kernel metadata stream */
809 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
810 ret
= kernel_open_metadata_stream(ksess
);
812 ERR("Kernel create metadata stream failed");
813 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
818 /* For each channel */
819 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
820 if (kchan
->stream_count
== 0) {
821 ret
= kernel_open_channel_stream(kchan
);
823 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
826 /* Update the stream global counter */
827 ksess
->stream_count_global
+= ret
;
831 /* Setup kernel consumer socket and send fds to it */
832 ret
= init_kernel_tracing(ksess
);
834 ret
= LTTNG_ERR_KERN_START_FAIL
;
838 /* This start the kernel tracing */
839 ret
= kernel_start_session(ksess
);
841 ret
= LTTNG_ERR_KERN_START_FAIL
;
845 /* Quiescent wait after starting trace */
846 kernel_wait_quiescent(kernel_tracer_fd
);
857 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
859 int cmd_disable_channel(struct ltt_session
*session
, int domain
,
863 struct ltt_ust_session
*usess
;
865 usess
= session
->ust_session
;
870 case LTTNG_DOMAIN_KERNEL
:
872 ret
= channel_kernel_disable(session
->kernel_session
,
874 if (ret
!= LTTNG_OK
) {
878 kernel_wait_quiescent(kernel_tracer_fd
);
881 case LTTNG_DOMAIN_UST
:
883 struct ltt_ust_channel
*uchan
;
884 struct lttng_ht
*chan_ht
;
886 chan_ht
= usess
->domain_global
.channels
;
888 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
890 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
894 ret
= channel_ust_disable(usess
, uchan
);
895 if (ret
!= LTTNG_OK
) {
901 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
913 * Command LTTNG_TRACK_PID processed by the client thread.
915 * Called with session lock held.
917 int cmd_track_pid(struct ltt_session
*session
, int domain
, int pid
)
924 case LTTNG_DOMAIN_KERNEL
:
926 struct ltt_kernel_session
*ksess
;
928 ksess
= session
->kernel_session
;
930 ret
= kernel_track_pid(ksess
, pid
);
931 if (ret
!= LTTNG_OK
) {
935 kernel_wait_quiescent(kernel_tracer_fd
);
938 case LTTNG_DOMAIN_UST
:
940 struct ltt_ust_session
*usess
;
942 usess
= session
->ust_session
;
944 ret
= trace_ust_track_pid(usess
, pid
);
945 if (ret
!= LTTNG_OK
) {
951 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
963 * Command LTTNG_UNTRACK_PID processed by the client thread.
965 * Called with session lock held.
967 int cmd_untrack_pid(struct ltt_session
*session
, int domain
, int pid
)
974 case LTTNG_DOMAIN_KERNEL
:
976 struct ltt_kernel_session
*ksess
;
978 ksess
= session
->kernel_session
;
980 ret
= kernel_untrack_pid(ksess
, pid
);
981 if (ret
!= LTTNG_OK
) {
985 kernel_wait_quiescent(kernel_tracer_fd
);
988 case LTTNG_DOMAIN_UST
:
990 struct ltt_ust_session
*usess
;
992 usess
= session
->ust_session
;
994 ret
= trace_ust_untrack_pid(usess
, pid
);
995 if (ret
!= LTTNG_OK
) {
1001 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1013 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1015 * The wpipe arguments is used as a notifier for the kernel thread.
1017 int cmd_enable_channel(struct ltt_session
*session
,
1018 struct lttng_domain
*domain
, struct lttng_channel
*attr
, int wpipe
)
1021 struct ltt_ust_session
*usess
= session
->ust_session
;
1022 struct lttng_ht
*chan_ht
;
1029 len
= strnlen(attr
->name
, sizeof(attr
->name
));
1031 /* Validate channel name */
1032 if (attr
->name
[0] == '.' ||
1033 memchr(attr
->name
, '/', len
) != NULL
) {
1034 ret
= LTTNG_ERR_INVALID_CHANNEL_NAME
;
1038 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
1043 * Don't try to enable a channel if the session has been started at
1044 * some point in time before. The tracer does not allow it.
1046 if (session
->has_been_started
) {
1047 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1052 * If the session is a live session, remove the switch timer, the
1053 * live timer does the same thing but sends also synchronisation
1054 * beacons for inactive streams.
1056 if (session
->live_timer
> 0) {
1057 attr
->attr
.live_timer_interval
= session
->live_timer
;
1058 attr
->attr
.switch_timer_interval
= 0;
1062 * The ringbuffer (both in user space and kernel) behave badly in overwrite
1063 * mode and with less than 2 subbuf so block it right away and send back an
1064 * invalid attribute error.
1066 if (attr
->attr
.overwrite
&& attr
->attr
.num_subbuf
< 2) {
1067 ret
= LTTNG_ERR_INVALID
;
1071 switch (domain
->type
) {
1072 case LTTNG_DOMAIN_KERNEL
:
1074 struct ltt_kernel_channel
*kchan
;
1076 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
1077 session
->kernel_session
);
1078 if (kchan
== NULL
) {
1079 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
1080 if (attr
->name
[0] != '\0') {
1081 session
->kernel_session
->has_non_default_channel
= 1;
1084 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1087 if (ret
!= LTTNG_OK
) {
1091 kernel_wait_quiescent(kernel_tracer_fd
);
1094 case LTTNG_DOMAIN_UST
:
1096 struct ltt_ust_channel
*uchan
;
1098 chan_ht
= usess
->domain_global
.channels
;
1100 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
1101 if (uchan
== NULL
) {
1102 ret
= channel_ust_create(usess
, attr
, domain
->buf_type
);
1103 if (attr
->name
[0] != '\0') {
1104 usess
->has_non_default_channel
= 1;
1107 ret
= channel_ust_enable(usess
, uchan
);
1112 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1123 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1125 int cmd_disable_event(struct ltt_session
*session
, int domain
,
1127 struct lttng_event
*event
)
1132 DBG("Disable event command for event \'%s\'", event
->name
);
1134 event_name
= event
->name
;
1136 /* Error out on unhandled search criteria */
1137 if (event
->loglevel_type
|| event
->loglevel
!= -1 || event
->enabled
1138 || event
->pid
|| event
->filter
|| event
->exclusion
) {
1139 return LTTNG_ERR_UNK
;
1145 case LTTNG_DOMAIN_KERNEL
:
1147 struct ltt_kernel_channel
*kchan
;
1148 struct ltt_kernel_session
*ksess
;
1150 ksess
= session
->kernel_session
;
1153 * If a non-default channel has been created in the
1154 * session, explicitely require that -c chan_name needs
1157 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1158 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1162 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1163 if (kchan
== NULL
) {
1164 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1168 switch (event
->type
) {
1169 case LTTNG_EVENT_ALL
:
1170 ret
= event_kernel_disable_event_all(kchan
);
1171 if (ret
!= LTTNG_OK
) {
1175 case LTTNG_EVENT_TRACEPOINT
: /* fall-through */
1176 case LTTNG_EVENT_SYSCALL
:
1177 if (!strcmp(event_name
, "*")) {
1178 ret
= event_kernel_disable_event_type(kchan
,
1181 ret
= event_kernel_disable_event(kchan
,
1184 if (ret
!= LTTNG_OK
) {
1188 case LTTNG_EVENT_PROBE
:
1189 case LTTNG_EVENT_FUNCTION
:
1190 case LTTNG_EVENT_FUNCTION_ENTRY
:
1191 ret
= event_kernel_disable_event(kchan
, event_name
);
1192 if (ret
!= LTTNG_OK
) {
1197 ret
= LTTNG_ERR_UNK
;
1201 kernel_wait_quiescent(kernel_tracer_fd
);
1204 case LTTNG_DOMAIN_UST
:
1206 struct ltt_ust_channel
*uchan
;
1207 struct ltt_ust_session
*usess
;
1209 usess
= session
->ust_session
;
1212 * If a non-default channel has been created in the
1213 * session, explicitely require that -c chan_name needs
1216 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1217 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1221 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1223 if (uchan
== NULL
) {
1224 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1228 switch (event
->type
) {
1229 case LTTNG_EVENT_ALL
:
1230 ret
= event_ust_disable_tracepoint(usess
, uchan
, event_name
);
1231 if (ret
!= LTTNG_OK
) {
1236 ret
= LTTNG_ERR_UNK
;
1240 DBG3("Disable UST event %s in channel %s completed", event_name
,
1244 case LTTNG_DOMAIN_LOG4J
:
1245 case LTTNG_DOMAIN_JUL
:
1246 case LTTNG_DOMAIN_PYTHON
:
1249 struct ltt_ust_session
*usess
= session
->ust_session
;
1253 switch (event
->type
) {
1254 case LTTNG_EVENT_ALL
:
1257 ret
= LTTNG_ERR_UNK
;
1261 agt
= trace_ust_find_agent(usess
, domain
);
1263 ret
= -LTTNG_ERR_UST_EVENT_NOT_FOUND
;
1266 /* The wild card * means that everything should be disabled. */
1267 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
1268 ret
= event_agent_disable_all(usess
, agt
);
1270 ret
= event_agent_disable(usess
, agt
, event_name
);
1272 if (ret
!= LTTNG_OK
) {
1279 ret
= LTTNG_ERR_UND
;
1291 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1293 int cmd_add_context(struct ltt_session
*session
, int domain
,
1294 char *channel_name
, struct lttng_event_context
*ctx
, int kwpipe
)
1296 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1299 case LTTNG_DOMAIN_KERNEL
:
1300 assert(session
->kernel_session
);
1302 if (session
->kernel_session
->channel_count
== 0) {
1303 /* Create default channel */
1304 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1305 if (ret
!= LTTNG_OK
) {
1308 chan_kern_created
= 1;
1310 /* Add kernel context to kernel tracer */
1311 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1312 if (ret
!= LTTNG_OK
) {
1316 case LTTNG_DOMAIN_UST
:
1318 struct ltt_ust_session
*usess
= session
->ust_session
;
1319 unsigned int chan_count
;
1323 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1324 if (chan_count
== 0) {
1325 struct lttng_channel
*attr
;
1326 /* Create default channel */
1327 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1329 ret
= LTTNG_ERR_FATAL
;
1333 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1334 if (ret
!= LTTNG_OK
) {
1339 chan_ust_created
= 1;
1342 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1343 if (ret
!= LTTNG_OK
) {
1349 ret
= LTTNG_ERR_UND
;
1356 if (chan_kern_created
) {
1357 struct ltt_kernel_channel
*kchan
=
1358 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1359 session
->kernel_session
);
1360 /* Created previously, this should NOT fail. */
1362 kernel_destroy_channel(kchan
);
1365 if (chan_ust_created
) {
1366 struct ltt_ust_channel
*uchan
=
1367 trace_ust_find_channel_by_name(
1368 session
->ust_session
->domain_global
.channels
,
1369 DEFAULT_CHANNEL_NAME
);
1370 /* Created previously, this should NOT fail. */
1372 /* Remove from the channel list of the session. */
1373 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1375 trace_ust_destroy_channel(uchan
);
1380 static int validate_event_name(const char *name
)
1383 const char *c
= name
;
1384 const char *event_name_end
= c
+ LTTNG_SYMBOL_NAME_LEN
;
1387 * Make sure that unescaped wildcards are only used as the last
1388 * character of the event name.
1390 while (c
< event_name_end
) {
1398 if ((c
+ 1) < event_name_end
&& *(c
+ 1)) {
1399 /* Wildcard is not the last character */
1400 ret
= LTTNG_ERR_INVALID_EVENT_NAME
;
1413 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1414 * We own filter, exclusion, and filter_expression.
1416 int cmd_enable_event(struct ltt_session
*session
, struct lttng_domain
*domain
,
1417 char *channel_name
, struct lttng_event
*event
,
1418 char *filter_expression
,
1419 struct lttng_filter_bytecode
*filter
,
1420 struct lttng_event_exclusion
*exclusion
,
1423 int ret
, channel_created
= 0;
1424 struct lttng_channel
*attr
;
1428 assert(channel_name
);
1430 DBG("Enable event command for event \'%s\'", event
->name
);
1432 ret
= validate_event_name(event
->name
);
1439 switch (domain
->type
) {
1440 case LTTNG_DOMAIN_KERNEL
:
1442 struct ltt_kernel_channel
*kchan
;
1445 * If a non-default channel has been created in the
1446 * session, explicitely require that -c chan_name needs
1449 if (session
->kernel_session
->has_non_default_channel
1450 && channel_name
[0] == '\0') {
1451 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1455 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1456 session
->kernel_session
);
1457 if (kchan
== NULL
) {
1458 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1459 LTTNG_BUFFER_GLOBAL
);
1461 ret
= LTTNG_ERR_FATAL
;
1464 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1466 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1467 if (ret
!= LTTNG_OK
) {
1473 channel_created
= 1;
1476 /* Get the newly created kernel channel pointer */
1477 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1478 session
->kernel_session
);
1479 if (kchan
== NULL
) {
1480 /* This sould not happen... */
1481 ret
= LTTNG_ERR_FATAL
;
1485 switch (event
->type
) {
1486 case LTTNG_EVENT_ALL
:
1488 event
->type
= LTTNG_EVENT_TRACEPOINT
; /* Hack */
1489 ret
= event_kernel_enable_event(kchan
, event
);
1490 if (ret
!= LTTNG_OK
) {
1491 if (channel_created
) {
1492 /* Let's not leak a useless channel. */
1493 kernel_destroy_channel(kchan
);
1497 event
->type
= LTTNG_EVENT_SYSCALL
; /* Hack */
1498 ret
= event_kernel_enable_event(kchan
, event
);
1499 if (ret
!= LTTNG_OK
) {
1504 case LTTNG_EVENT_PROBE
:
1505 case LTTNG_EVENT_FUNCTION
:
1506 case LTTNG_EVENT_FUNCTION_ENTRY
:
1507 case LTTNG_EVENT_TRACEPOINT
:
1508 ret
= event_kernel_enable_event(kchan
, event
);
1509 if (ret
!= LTTNG_OK
) {
1510 if (channel_created
) {
1511 /* Let's not leak a useless channel. */
1512 kernel_destroy_channel(kchan
);
1517 case LTTNG_EVENT_SYSCALL
:
1518 ret
= event_kernel_enable_event(kchan
, event
);
1519 if (ret
!= LTTNG_OK
) {
1524 ret
= LTTNG_ERR_UNK
;
1528 kernel_wait_quiescent(kernel_tracer_fd
);
1531 case LTTNG_DOMAIN_UST
:
1533 struct ltt_ust_channel
*uchan
;
1534 struct ltt_ust_session
*usess
= session
->ust_session
;
1539 * If a non-default channel has been created in the
1540 * session, explicitely require that -c chan_name needs
1543 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1544 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1548 /* Get channel from global UST domain */
1549 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1551 if (uchan
== NULL
) {
1552 /* Create default channel */
1553 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
1554 usess
->buffer_type
);
1556 ret
= LTTNG_ERR_FATAL
;
1559 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1561 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1562 if (ret
!= LTTNG_OK
) {
1568 /* Get the newly created channel reference back */
1569 uchan
= trace_ust_find_channel_by_name(
1570 usess
->domain_global
.channels
, channel_name
);
1574 /* At this point, the session and channel exist on the tracer */
1575 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
,
1576 filter_expression
, filter
, exclusion
);
1577 /* We have passed ownership */
1578 filter_expression
= NULL
;
1581 if (ret
!= LTTNG_OK
) {
1586 case LTTNG_DOMAIN_LOG4J
:
1587 case LTTNG_DOMAIN_JUL
:
1588 case LTTNG_DOMAIN_PYTHON
:
1590 const char *default_event_name
, *default_chan_name
;
1592 struct lttng_event uevent
;
1593 struct lttng_domain tmp_dom
;
1594 struct ltt_ust_session
*usess
= session
->ust_session
;
1598 agt
= trace_ust_find_agent(usess
, domain
->type
);
1600 agt
= agent_create(domain
->type
);
1602 ret
= -LTTNG_ERR_NOMEM
;
1605 agent_add(agt
, usess
->agents
);
1608 /* Create the default tracepoint. */
1609 memset(&uevent
, 0, sizeof(uevent
));
1610 uevent
.type
= LTTNG_EVENT_TRACEPOINT
;
1611 uevent
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
1612 default_event_name
= event_get_default_agent_ust_name(domain
->type
);
1613 if (!default_event_name
) {
1614 ret
= -LTTNG_ERR_FATAL
;
1617 strncpy(uevent
.name
, default_event_name
, sizeof(uevent
.name
));
1618 uevent
.name
[sizeof(uevent
.name
) - 1] = '\0';
1621 * The domain type is changed because we are about to enable the
1622 * default channel and event for the JUL domain that are hardcoded.
1623 * This happens in the UST domain.
1625 memcpy(&tmp_dom
, domain
, sizeof(tmp_dom
));
1626 tmp_dom
.type
= LTTNG_DOMAIN_UST
;
1628 switch (domain
->type
) {
1629 case LTTNG_DOMAIN_LOG4J
:
1630 default_chan_name
= DEFAULT_LOG4J_CHANNEL_NAME
;
1632 case LTTNG_DOMAIN_JUL
:
1633 default_chan_name
= DEFAULT_JUL_CHANNEL_NAME
;
1635 case LTTNG_DOMAIN_PYTHON
:
1636 default_chan_name
= DEFAULT_PYTHON_CHANNEL_NAME
;
1639 /* The switch/case we are in should avoid this else big problem */
1644 struct lttng_filter_bytecode
*filter_copy
= NULL
;
1647 filter_copy
= zmalloc(
1648 sizeof(struct lttng_filter_bytecode
)
1654 memcpy(filter_copy
, filter
,
1655 sizeof(struct lttng_filter_bytecode
)
1659 ret
= cmd_enable_event(session
, &tmp_dom
,
1660 (char *) default_chan_name
,
1661 &uevent
, filter_expression
, filter_copy
,
1663 /* We have passed ownership */
1664 filter_expression
= NULL
;
1667 if (ret
!= LTTNG_OK
&& ret
!= LTTNG_ERR_UST_EVENT_ENABLED
) {
1671 /* The wild card * means that everything should be enabled. */
1672 if (strncmp(event
->name
, "*", 1) == 0 && strlen(event
->name
) == 1) {
1673 ret
= event_agent_enable_all(usess
, agt
, event
, filter
);
1676 ret
= event_agent_enable(usess
, agt
, event
, filter
);
1679 if (ret
!= LTTNG_OK
) {
1686 ret
= LTTNG_ERR_UND
;
1693 free(filter_expression
);
1701 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1703 ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
1706 ssize_t nb_events
= 0;
1709 case LTTNG_DOMAIN_KERNEL
:
1710 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
1711 if (nb_events
< 0) {
1712 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
1716 case LTTNG_DOMAIN_UST
:
1717 nb_events
= ust_app_list_events(events
);
1718 if (nb_events
< 0) {
1719 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1723 case LTTNG_DOMAIN_LOG4J
:
1724 case LTTNG_DOMAIN_JUL
:
1725 case LTTNG_DOMAIN_PYTHON
:
1726 nb_events
= agent_list_events(events
, domain
);
1727 if (nb_events
< 0) {
1728 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1733 ret
= LTTNG_ERR_UND
;
1740 /* Return negative value to differentiate return code */
1745 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1747 ssize_t
cmd_list_tracepoint_fields(int domain
,
1748 struct lttng_event_field
**fields
)
1751 ssize_t nb_fields
= 0;
1754 case LTTNG_DOMAIN_UST
:
1755 nb_fields
= ust_app_list_event_fields(fields
);
1756 if (nb_fields
< 0) {
1757 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1761 case LTTNG_DOMAIN_KERNEL
:
1762 default: /* fall-through */
1763 ret
= LTTNG_ERR_UND
;
1770 /* Return negative value to differentiate return code */
1774 ssize_t
cmd_list_syscalls(struct lttng_event
**events
)
1776 return syscall_table_list(events
);
1780 * Command LTTNG_LIST_TRACKER_PIDS processed by the client thread.
1782 * Called with session lock held.
1784 ssize_t
cmd_list_tracker_pids(struct ltt_session
*session
,
1785 int domain
, int32_t **pids
)
1788 ssize_t nr_pids
= 0;
1791 case LTTNG_DOMAIN_KERNEL
:
1793 struct ltt_kernel_session
*ksess
;
1795 ksess
= session
->kernel_session
;
1796 nr_pids
= kernel_list_tracker_pids(ksess
, pids
);
1798 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
1803 case LTTNG_DOMAIN_UST
:
1805 struct ltt_ust_session
*usess
;
1807 usess
= session
->ust_session
;
1808 nr_pids
= trace_ust_list_tracker_pids(usess
, pids
);
1810 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1815 case LTTNG_DOMAIN_LOG4J
:
1816 case LTTNG_DOMAIN_JUL
:
1817 case LTTNG_DOMAIN_PYTHON
:
1819 ret
= LTTNG_ERR_UND
;
1826 /* Return negative value to differentiate return code */
1831 * Command LTTNG_START_TRACE processed by the client thread.
1833 * Called with session mutex held.
1835 int cmd_start_trace(struct ltt_session
*session
)
1838 unsigned long nb_chan
= 0;
1839 struct ltt_kernel_session
*ksession
;
1840 struct ltt_ust_session
*usess
;
1844 /* Ease our life a bit ;) */
1845 ksession
= session
->kernel_session
;
1846 usess
= session
->ust_session
;
1848 /* Is the session already started? */
1849 if (session
->active
) {
1850 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1855 * Starting a session without channel is useless since after that it's not
1856 * possible to enable channel thus inform the client.
1858 if (usess
&& usess
->domain_global
.channels
) {
1860 nb_chan
+= lttng_ht_get_count(usess
->domain_global
.channels
);
1864 nb_chan
+= ksession
->channel_count
;
1867 ret
= LTTNG_ERR_NO_CHANNEL
;
1871 /* Kernel tracing */
1872 if (ksession
!= NULL
) {
1873 ret
= start_kernel_session(ksession
, kernel_tracer_fd
);
1874 if (ret
!= LTTNG_OK
) {
1879 /* Flag session that trace should start automatically */
1882 * Even though the start trace might fail, flag this session active so
1883 * other application coming in are started by default.
1887 ret
= ust_app_start_trace_all(usess
);
1889 ret
= LTTNG_ERR_UST_START_FAIL
;
1894 /* Flag this after a successful start. */
1895 session
->has_been_started
= 1;
1896 session
->active
= 1;
1905 * Command LTTNG_STOP_TRACE processed by the client thread.
1907 int cmd_stop_trace(struct ltt_session
*session
)
1910 struct ltt_kernel_channel
*kchan
;
1911 struct ltt_kernel_session
*ksession
;
1912 struct ltt_ust_session
*usess
;
1917 ksession
= session
->kernel_session
;
1918 usess
= session
->ust_session
;
1920 /* Session is not active. Skip everythong and inform the client. */
1921 if (!session
->active
) {
1922 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
1927 if (ksession
&& ksession
->active
) {
1928 DBG("Stop kernel tracing");
1930 /* Flush metadata if exist */
1931 if (ksession
->metadata_stream_fd
>= 0) {
1932 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
1934 ERR("Kernel metadata flush failed");
1938 /* Flush all buffers before stopping */
1939 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
1940 ret
= kernel_flush_buffer(kchan
);
1942 ERR("Kernel flush buffer error");
1946 ret
= kernel_stop_session(ksession
);
1948 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1952 kernel_wait_quiescent(kernel_tracer_fd
);
1954 ksession
->active
= 0;
1957 if (usess
&& usess
->active
) {
1959 * Even though the stop trace might fail, flag this session inactive so
1960 * other application coming in are not started by default.
1964 ret
= ust_app_stop_trace_all(usess
);
1966 ret
= LTTNG_ERR_UST_STOP_FAIL
;
1971 /* Flag inactive after a successful stop. */
1972 session
->active
= 0;
1980 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1982 int cmd_set_consumer_uri(struct ltt_session
*session
, size_t nb_uri
,
1983 struct lttng_uri
*uris
)
1986 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1987 struct ltt_ust_session
*usess
= session
->ust_session
;
1993 /* Can't set consumer URI if the session is active. */
1994 if (session
->active
) {
1995 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1999 /* Set the "global" consumer URIs */
2000 for (i
= 0; i
< nb_uri
; i
++) {
2001 ret
= add_uri_to_consumer(session
->consumer
,
2002 &uris
[i
], 0, session
->name
);
2003 if (ret
!= LTTNG_OK
) {
2008 /* Set UST session URIs */
2009 if (session
->ust_session
) {
2010 for (i
= 0; i
< nb_uri
; i
++) {
2011 ret
= add_uri_to_consumer(
2012 session
->ust_session
->consumer
,
2013 &uris
[i
], LTTNG_DOMAIN_UST
,
2015 if (ret
!= LTTNG_OK
) {
2021 /* Set kernel session URIs */
2022 if (session
->kernel_session
) {
2023 for (i
= 0; i
< nb_uri
; i
++) {
2024 ret
= add_uri_to_consumer(
2025 session
->kernel_session
->consumer
,
2026 &uris
[i
], LTTNG_DOMAIN_KERNEL
,
2028 if (ret
!= LTTNG_OK
) {
2035 * Make sure to set the session in output mode after we set URI since a
2036 * session can be created without URL (thus flagged in no output mode).
2038 session
->output_traces
= 1;
2040 ksess
->output_traces
= 1;
2044 usess
->output_traces
= 1;
2055 * Command LTTNG_CREATE_SESSION processed by the client thread.
2057 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
2058 size_t nb_uri
, lttng_sock_cred
*creds
, unsigned int live_timer
)
2061 struct ltt_session
*session
;
2067 * Verify if the session already exist
2069 * XXX: There is no need for the session lock list here since the caller
2070 * (process_client_msg) is holding it. We might want to change that so a
2071 * single command does not lock the entire session list.
2073 session
= session_find_by_name(name
);
2074 if (session
!= NULL
) {
2075 ret
= LTTNG_ERR_EXIST_SESS
;
2079 /* Create tracing session in the registry */
2080 ret
= session_create(name
, LTTNG_SOCK_GET_UID_CRED(creds
),
2081 LTTNG_SOCK_GET_GID_CRED(creds
));
2082 if (ret
!= LTTNG_OK
) {
2087 * Get the newly created session pointer back
2089 * XXX: There is no need for the session lock list here since the caller
2090 * (process_client_msg) is holding it. We might want to change that so a
2091 * single command does not lock the entire session list.
2093 session
= session_find_by_name(name
);
2096 session
->live_timer
= live_timer
;
2097 /* Create default consumer output for the session not yet created. */
2098 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
2099 if (session
->consumer
== NULL
) {
2100 ret
= LTTNG_ERR_FATAL
;
2101 goto consumer_error
;
2105 ret
= cmd_set_consumer_uri(session
, nb_uri
, uris
);
2106 if (ret
!= LTTNG_OK
) {
2107 goto consumer_error
;
2109 session
->output_traces
= 1;
2111 session
->output_traces
= 0;
2112 DBG2("Session %s created with no output", session
->name
);
2115 session
->consumer
->enabled
= 1;
2120 session_destroy(session
);
2127 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
2129 int cmd_create_session_snapshot(char *name
, struct lttng_uri
*uris
,
2130 size_t nb_uri
, lttng_sock_cred
*creds
)
2133 struct ltt_session
*session
;
2134 struct snapshot_output
*new_output
= NULL
;
2140 * Create session in no output mode with URIs set to NULL. The uris we've
2141 * received are for a default snapshot output if one.
2143 ret
= cmd_create_session_uri(name
, NULL
, 0, creds
, -1);
2144 if (ret
!= LTTNG_OK
) {
2148 /* Get the newly created session pointer back. This should NEVER fail. */
2149 session
= session_find_by_name(name
);
2152 /* Flag session for snapshot mode. */
2153 session
->snapshot_mode
= 1;
2155 /* Skip snapshot output creation if no URI is given. */
2160 new_output
= snapshot_output_alloc();
2162 ret
= LTTNG_ERR_NOMEM
;
2163 goto error_snapshot_alloc
;
2166 ret
= snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE
, NULL
,
2167 uris
, nb_uri
, session
->consumer
, new_output
, &session
->snapshot
);
2169 if (ret
== -ENOMEM
) {
2170 ret
= LTTNG_ERR_NOMEM
;
2172 ret
= LTTNG_ERR_INVALID
;
2174 goto error_snapshot
;
2178 snapshot_add_output(&session
->snapshot
, new_output
);
2185 snapshot_output_destroy(new_output
);
2186 error_snapshot_alloc
:
2187 session_destroy(session
);
2193 * Command LTTNG_DESTROY_SESSION processed by the client thread.
2195 * Called with session lock held.
2197 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
2200 struct ltt_ust_session
*usess
;
2201 struct ltt_kernel_session
*ksess
;
2206 usess
= session
->ust_session
;
2207 ksess
= session
->kernel_session
;
2209 /* Clean kernel session teardown */
2210 kernel_destroy_session(ksess
);
2212 /* UST session teardown */
2214 /* Close any relayd session */
2215 consumer_output_send_destroy_relayd(usess
->consumer
);
2217 /* Destroy every UST application related to this session. */
2218 ret
= ust_app_destroy_trace_all(usess
);
2220 ERR("Error in ust_app_destroy_trace_all");
2223 /* Clean up the rest. */
2224 trace_ust_destroy_session(usess
);
2228 * Must notify the kernel thread here to update it's poll set in order to
2229 * remove the channel(s)' fd just destroyed.
2231 ret
= notify_thread_pipe(wpipe
);
2233 PERROR("write kernel poll pipe");
2236 ret
= session_destroy(session
);
2242 * Command LTTNG_CALIBRATE processed by the client thread.
2244 int cmd_calibrate(int domain
, struct lttng_calibrate
*calibrate
)
2249 case LTTNG_DOMAIN_KERNEL
:
2251 struct lttng_kernel_calibrate kcalibrate
;
2253 switch (calibrate
->type
) {
2254 case LTTNG_CALIBRATE_FUNCTION
:
2256 /* Default and only possible calibrate option. */
2257 kcalibrate
.type
= LTTNG_KERNEL_CALIBRATE_KRETPROBE
;
2261 ret
= kernel_calibrate(kernel_tracer_fd
, &kcalibrate
);
2263 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
2268 case LTTNG_DOMAIN_UST
:
2270 struct lttng_ust_calibrate ucalibrate
;
2272 switch (calibrate
->type
) {
2273 case LTTNG_CALIBRATE_FUNCTION
:
2275 /* Default and only possible calibrate option. */
2276 ucalibrate
.type
= LTTNG_UST_CALIBRATE_TRACEPOINT
;
2280 ret
= ust_app_calibrate_glb(&ucalibrate
);
2282 ret
= LTTNG_ERR_UST_CALIBRATE_FAIL
;
2288 ret
= LTTNG_ERR_UND
;
2299 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2301 int cmd_register_consumer(struct ltt_session
*session
, int domain
,
2302 const char *sock_path
, struct consumer_data
*cdata
)
2305 struct consumer_socket
*socket
= NULL
;
2312 case LTTNG_DOMAIN_KERNEL
:
2314 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2318 /* Can't register a consumer if there is already one */
2319 if (ksess
->consumer_fds_sent
!= 0) {
2320 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2324 sock
= lttcomm_connect_unix_sock(sock_path
);
2326 ret
= LTTNG_ERR_CONNECT_FAIL
;
2329 cdata
->cmd_sock
= sock
;
2331 socket
= consumer_allocate_socket(&cdata
->cmd_sock
);
2332 if (socket
== NULL
) {
2335 PERROR("close register consumer");
2337 cdata
->cmd_sock
= -1;
2338 ret
= LTTNG_ERR_FATAL
;
2342 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
2343 if (socket
->lock
== NULL
) {
2344 PERROR("zmalloc pthread mutex");
2345 ret
= LTTNG_ERR_FATAL
;
2348 pthread_mutex_init(socket
->lock
, NULL
);
2349 socket
->registered
= 1;
2352 consumer_add_socket(socket
, ksess
->consumer
);
2355 pthread_mutex_lock(&cdata
->pid_mutex
);
2357 pthread_mutex_unlock(&cdata
->pid_mutex
);
2362 /* TODO: Userspace tracing */
2363 ret
= LTTNG_ERR_UND
;
2371 consumer_destroy_socket(socket
);
2377 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2379 ssize_t
cmd_list_domains(struct ltt_session
*session
,
2380 struct lttng_domain
**domains
)
2385 struct lttng_ht_iter iter
;
2387 if (session
->kernel_session
!= NULL
) {
2388 DBG3("Listing domains found kernel domain");
2392 if (session
->ust_session
!= NULL
) {
2393 DBG3("Listing domains found UST global domain");
2397 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
2399 if (agt
->being_used
) {
2410 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
2411 if (*domains
== NULL
) {
2412 ret
= LTTNG_ERR_FATAL
;
2416 if (session
->kernel_session
!= NULL
) {
2417 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
2421 if (session
->ust_session
!= NULL
) {
2422 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
2423 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2427 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
, &iter
.iter
,
2429 if (agt
->being_used
) {
2430 (*domains
)[index
].type
= agt
->domain
;
2431 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2441 /* Return negative value to differentiate return code */
2447 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2449 ssize_t
cmd_list_channels(int domain
, struct ltt_session
*session
,
2450 struct lttng_channel
**channels
)
2453 ssize_t nb_chan
= 0;
2456 case LTTNG_DOMAIN_KERNEL
:
2457 if (session
->kernel_session
!= NULL
) {
2458 nb_chan
= session
->kernel_session
->channel_count
;
2460 DBG3("Number of kernel channels %zd", nb_chan
);
2462 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
2465 case LTTNG_DOMAIN_UST
:
2466 if (session
->ust_session
!= NULL
) {
2468 nb_chan
= lttng_ht_get_count(
2469 session
->ust_session
->domain_global
.channels
);
2472 DBG3("Number of UST global channels %zd", nb_chan
);
2474 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2479 ret
= LTTNG_ERR_UND
;
2484 *channels
= zmalloc(nb_chan
* sizeof(struct lttng_channel
));
2485 if (*channels
== NULL
) {
2486 ret
= LTTNG_ERR_FATAL
;
2490 list_lttng_channels(domain
, session
, *channels
);
2496 /* Return negative value to differentiate return code */
2501 * Command LTTNG_LIST_EVENTS processed by the client thread.
2503 ssize_t
cmd_list_events(int domain
, struct ltt_session
*session
,
2504 char *channel_name
, struct lttng_event
**events
)
2507 ssize_t nb_event
= 0;
2510 case LTTNG_DOMAIN_KERNEL
:
2511 if (session
->kernel_session
!= NULL
) {
2512 nb_event
= list_lttng_kernel_events(channel_name
,
2513 session
->kernel_session
, events
);
2516 case LTTNG_DOMAIN_UST
:
2518 if (session
->ust_session
!= NULL
) {
2519 nb_event
= list_lttng_ust_global_events(channel_name
,
2520 &session
->ust_session
->domain_global
, events
);
2524 case LTTNG_DOMAIN_LOG4J
:
2525 case LTTNG_DOMAIN_JUL
:
2526 case LTTNG_DOMAIN_PYTHON
:
2527 if (session
->ust_session
) {
2528 struct lttng_ht_iter iter
;
2532 cds_lfht_for_each_entry(session
->ust_session
->agents
->ht
,
2533 &iter
.iter
, agt
, node
.node
) {
2534 nb_event
= list_lttng_agent_events(agt
, events
);
2540 ret
= LTTNG_ERR_UND
;
2547 /* Return negative value to differentiate return code */
2552 * Using the session list, filled a lttng_session array to send back to the
2553 * client for session listing.
2555 * The session list lock MUST be acquired before calling this function. Use
2556 * session_lock_list() and session_unlock_list().
2558 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
2563 struct ltt_session
*session
;
2564 struct ltt_session_list
*list
= session_get_list();
2566 DBG("Getting all available session for UID %d GID %d",
2569 * Iterate over session list and append data after the control struct in
2572 cds_list_for_each_entry(session
, &list
->head
, list
) {
2574 * Only list the sessions the user can control.
2576 if (!session_access_ok(session
, uid
, gid
)) {
2580 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2581 struct ltt_ust_session
*usess
= session
->ust_session
;
2583 if (session
->consumer
->type
== CONSUMER_DST_NET
||
2584 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
2585 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
2586 ret
= build_network_session_path(sessions
[i
].path
,
2587 sizeof(sessions
[i
].path
), session
);
2589 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
2590 session
->consumer
->dst
.trace_path
);
2593 PERROR("snprintf session path");
2597 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
2598 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
2599 sessions
[i
].enabled
= session
->active
;
2600 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
2601 sessions
[i
].live_timer_interval
= session
->live_timer
;
2607 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2608 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
2610 int cmd_data_pending(struct ltt_session
*session
)
2613 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2614 struct ltt_ust_session
*usess
= session
->ust_session
;
2618 /* Session MUST be stopped to ask for data availability. */
2619 if (session
->active
) {
2620 ret
= LTTNG_ERR_SESSION_STARTED
;
2624 * If stopped, just make sure we've started before else the above call
2625 * will always send that there is data pending.
2627 * The consumer assumes that when the data pending command is received,
2628 * the trace has been started before or else no output data is written
2629 * by the streams which is a condition for data pending. So, this is
2630 * *VERY* important that we don't ask the consumer before a start
2633 if (!session
->has_been_started
) {
2639 if (ksess
&& ksess
->consumer
) {
2640 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
2642 /* Data is still being extracted for the kernel. */
2647 if (usess
&& usess
->consumer
) {
2648 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
2650 /* Data is still being extracted for the kernel. */
2655 /* Data is ready to be read by a viewer */
2663 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2665 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2667 int cmd_snapshot_add_output(struct ltt_session
*session
,
2668 struct lttng_snapshot_output
*output
, uint32_t *id
)
2671 struct snapshot_output
*new_output
;
2676 DBG("Cmd snapshot add output for session %s", session
->name
);
2679 * Permission denied to create an output if the session is not
2680 * set in no output mode.
2682 if (session
->output_traces
) {
2683 ret
= LTTNG_ERR_EPERM
;
2687 /* Only one output is allowed until we have the "tee" feature. */
2688 if (session
->snapshot
.nb_output
== 1) {
2689 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
2693 new_output
= snapshot_output_alloc();
2695 ret
= LTTNG_ERR_NOMEM
;
2699 ret
= snapshot_output_init(output
->max_size
, output
->name
,
2700 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
2701 &session
->snapshot
);
2703 if (ret
== -ENOMEM
) {
2704 ret
= LTTNG_ERR_NOMEM
;
2706 ret
= LTTNG_ERR_INVALID
;
2712 snapshot_add_output(&session
->snapshot
, new_output
);
2714 *id
= new_output
->id
;
2721 snapshot_output_destroy(new_output
);
2727 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2729 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2731 int cmd_snapshot_del_output(struct ltt_session
*session
,
2732 struct lttng_snapshot_output
*output
)
2735 struct snapshot_output
*sout
= NULL
;
2743 * Permission denied to create an output if the session is not
2744 * set in no output mode.
2746 if (session
->output_traces
) {
2747 ret
= LTTNG_ERR_EPERM
;
2752 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
2754 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
2755 } else if (*output
->name
!= '\0') {
2756 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
2758 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
2761 ret
= LTTNG_ERR_INVALID
;
2765 snapshot_delete_output(&session
->snapshot
, sout
);
2766 snapshot_output_destroy(sout
);
2775 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2777 * If no output is available, outputs is untouched and 0 is returned.
2779 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2781 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
2782 struct lttng_snapshot_output
**outputs
)
2785 struct lttng_snapshot_output
*list
= NULL
;
2786 struct lttng_ht_iter iter
;
2787 struct snapshot_output
*output
;
2792 DBG("Cmd snapshot list outputs for session %s", session
->name
);
2795 * Permission denied to create an output if the session is not
2796 * set in no output mode.
2798 if (session
->output_traces
) {
2799 ret
= -LTTNG_ERR_EPERM
;
2803 if (session
->snapshot
.nb_output
== 0) {
2808 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
2810 ret
= -LTTNG_ERR_NOMEM
;
2814 /* Copy list from session to the new list object. */
2816 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
2817 output
, node
.node
) {
2818 assert(output
->consumer
);
2819 list
[idx
].id
= output
->id
;
2820 list
[idx
].max_size
= output
->max_size
;
2821 strncpy(list
[idx
].name
, output
->name
, sizeof(list
[idx
].name
));
2822 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
2823 strncpy(list
[idx
].ctrl_url
, output
->consumer
->dst
.trace_path
,
2824 sizeof(list
[idx
].ctrl_url
));
2827 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
2828 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
2830 ret
= -LTTNG_ERR_NOMEM
;
2835 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
2836 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
2838 ret
= -LTTNG_ERR_NOMEM
;
2847 ret
= session
->snapshot
.nb_output
;
2855 * Send relayd sockets from snapshot output to consumer. Ignore request if the
2856 * snapshot output is *not* set with a remote destination.
2858 * Return 0 on success or a LTTNG_ERR code.
2860 static int set_relayd_for_snapshot(struct consumer_output
*consumer
,
2861 struct snapshot_output
*snap_output
, struct ltt_session
*session
)
2864 struct lttng_ht_iter iter
;
2865 struct consumer_socket
*socket
;
2868 assert(snap_output
);
2871 DBG2("Set relayd object from snapshot output");
2873 /* Ignore if snapshot consumer output is not network. */
2874 if (snap_output
->consumer
->type
!= CONSUMER_DST_NET
) {
2879 * For each consumer socket, create and send the relayd object of the
2883 cds_lfht_for_each_entry(snap_output
->consumer
->socks
->ht
, &iter
.iter
,
2884 socket
, node
.node
) {
2885 ret
= send_consumer_relayd_sockets(0, session
->id
,
2886 snap_output
->consumer
, socket
,
2887 session
->name
, session
->hostname
,
2888 session
->live_timer
);
2889 if (ret
!= LTTNG_OK
) {
2901 * Record a kernel snapshot.
2903 * Return LTTNG_OK on success or a LTTNG_ERR code.
2905 static int record_kernel_snapshot(struct ltt_kernel_session
*ksess
,
2906 struct snapshot_output
*output
, struct ltt_session
*session
,
2907 int wait
, uint64_t nb_packets_per_stream
)
2915 /* Get the datetime for the snapshot output directory. */
2916 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", output
->datetime
,
2917 sizeof(output
->datetime
));
2919 ret
= LTTNG_ERR_INVALID
;
2924 * Copy kernel session sockets so we can communicate with the right
2925 * consumer for the snapshot record command.
2927 ret
= consumer_copy_sockets(output
->consumer
, ksess
->consumer
);
2929 ret
= LTTNG_ERR_NOMEM
;
2933 ret
= set_relayd_for_snapshot(ksess
->consumer
, output
, session
);
2934 if (ret
!= LTTNG_OK
) {
2935 goto error_snapshot
;
2938 ret
= kernel_snapshot_record(ksess
, output
, wait
, nb_packets_per_stream
);
2939 if (ret
!= LTTNG_OK
) {
2940 goto error_snapshot
;
2947 /* Clean up copied sockets so this output can use some other later on. */
2948 consumer_destroy_output_sockets(output
->consumer
);
2955 * Record a UST snapshot.
2957 * Return 0 on success or a LTTNG_ERR error code.
2959 static int record_ust_snapshot(struct ltt_ust_session
*usess
,
2960 struct snapshot_output
*output
, struct ltt_session
*session
,
2961 int wait
, uint64_t nb_packets_per_stream
)
2969 /* Get the datetime for the snapshot output directory. */
2970 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", output
->datetime
,
2971 sizeof(output
->datetime
));
2973 ret
= LTTNG_ERR_INVALID
;
2978 * Copy UST session sockets so we can communicate with the right
2979 * consumer for the snapshot record command.
2981 ret
= consumer_copy_sockets(output
->consumer
, usess
->consumer
);
2983 ret
= LTTNG_ERR_NOMEM
;
2987 ret
= set_relayd_for_snapshot(usess
->consumer
, output
, session
);
2988 if (ret
!= LTTNG_OK
) {
2989 goto error_snapshot
;
2992 ret
= ust_app_snapshot_record(usess
, output
, wait
, nb_packets_per_stream
);
2996 ret
= LTTNG_ERR_INVALID
;
2999 ret
= LTTNG_ERR_SNAPSHOT_NODATA
;
3002 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
3005 goto error_snapshot
;
3011 /* Clean up copied sockets so this output can use some other later on. */
3012 consumer_destroy_output_sockets(output
->consumer
);
3018 uint64_t get_session_size_one_more_packet_per_stream(struct ltt_session
*session
,
3019 uint64_t cur_nr_packets
)
3021 uint64_t tot_size
= 0;
3023 if (session
->kernel_session
) {
3024 struct ltt_kernel_channel
*chan
;
3025 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3027 cds_list_for_each_entry(chan
, &ksess
->channel_list
.head
, list
) {
3028 if (cur_nr_packets
>= chan
->channel
->attr
.num_subbuf
) {
3030 * Don't take channel into account if we
3031 * already grab all its packets.
3035 tot_size
+= chan
->channel
->attr
.subbuf_size
3036 * chan
->stream_count
;
3040 if (session
->ust_session
) {
3041 struct ltt_ust_session
*usess
= session
->ust_session
;
3043 tot_size
+= ust_app_get_size_one_more_packet_per_stream(usess
,
3051 * Calculate the number of packets we can grab from each stream that
3052 * fits within the overall snapshot max size.
3054 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
3055 * the number of packets per stream.
3057 * TODO: this approach is not perfect: we consider the worse case
3058 * (packet filling the sub-buffers) as an upper bound, but we could do
3059 * better if we do this calculation while we actually grab the packet
3060 * content: we would know how much padding we don't actually store into
3063 * This algorithm is currently bounded by the number of packets per
3066 * Since we call this algorithm before actually grabbing the data, it's
3067 * an approximation: for instance, applications could appear/disappear
3068 * in between this call and actually grabbing data.
3071 int64_t get_session_nb_packets_per_stream(struct ltt_session
*session
, uint64_t max_size
)
3074 uint64_t cur_nb_packets
= 0;
3077 return 0; /* Infinite */
3080 size_left
= max_size
;
3082 uint64_t one_more_packet_tot_size
;
3084 one_more_packet_tot_size
= get_session_size_one_more_packet_per_stream(session
,
3086 if (!one_more_packet_tot_size
) {
3087 /* We are already grabbing all packets. */
3090 size_left
-= one_more_packet_tot_size
;
3091 if (size_left
< 0) {
3096 if (!cur_nb_packets
) {
3097 /* Not enough room to grab one packet of each stream, error. */
3100 return cur_nb_packets
;
3104 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
3106 * The wait parameter is ignored so this call always wait for the snapshot to
3107 * complete before returning.
3109 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3111 int cmd_snapshot_record(struct ltt_session
*session
,
3112 struct lttng_snapshot_output
*output
, int wait
)
3115 unsigned int use_tmp_output
= 0;
3116 struct snapshot_output tmp_output
;
3117 unsigned int snapshot_success
= 0;
3122 DBG("Cmd snapshot record for session %s", session
->name
);
3125 * Permission denied to create an output if the session is not
3126 * set in no output mode.
3128 if (session
->output_traces
) {
3129 ret
= LTTNG_ERR_EPERM
;
3133 /* The session needs to be started at least once. */
3134 if (!session
->has_been_started
) {
3135 ret
= LTTNG_ERR_START_SESSION_ONCE
;
3139 /* Use temporary output for the session. */
3140 if (*output
->ctrl_url
!= '\0') {
3141 ret
= snapshot_output_init(output
->max_size
, output
->name
,
3142 output
->ctrl_url
, output
->data_url
, session
->consumer
,
3145 if (ret
== -ENOMEM
) {
3146 ret
= LTTNG_ERR_NOMEM
;
3148 ret
= LTTNG_ERR_INVALID
;
3152 /* Use the global session count for the temporary snapshot. */
3153 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3157 if (session
->kernel_session
) {
3158 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
3160 if (use_tmp_output
) {
3161 int64_t nb_packets_per_stream
;
3163 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3164 tmp_output
.max_size
);
3165 if (nb_packets_per_stream
< 0) {
3166 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3169 ret
= record_kernel_snapshot(ksess
, &tmp_output
, session
,
3170 wait
, nb_packets_per_stream
);
3171 if (ret
!= LTTNG_OK
) {
3174 snapshot_success
= 1;
3176 struct snapshot_output
*sout
;
3177 struct lttng_ht_iter iter
;
3180 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
3181 &iter
.iter
, sout
, node
.node
) {
3182 int64_t nb_packets_per_stream
;
3185 * Make a local copy of the output and assign the possible
3186 * temporary value given by the caller.
3188 memset(&tmp_output
, 0, sizeof(tmp_output
));
3189 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
3191 if (output
->max_size
!= (uint64_t) -1ULL) {
3192 tmp_output
.max_size
= output
->max_size
;
3195 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3196 tmp_output
.max_size
);
3197 if (nb_packets_per_stream
< 0) {
3198 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3202 /* Use temporary name. */
3203 if (*output
->name
!= '\0') {
3204 strncpy(tmp_output
.name
, output
->name
,
3205 sizeof(tmp_output
.name
));
3208 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3210 ret
= record_kernel_snapshot(ksess
, &tmp_output
,
3211 session
, wait
, nb_packets_per_stream
);
3212 if (ret
!= LTTNG_OK
) {
3216 snapshot_success
= 1;
3222 if (session
->ust_session
) {
3223 struct ltt_ust_session
*usess
= session
->ust_session
;
3225 if (use_tmp_output
) {
3226 int64_t nb_packets_per_stream
;
3228 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3229 tmp_output
.max_size
);
3230 if (nb_packets_per_stream
< 0) {
3231 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3234 ret
= record_ust_snapshot(usess
, &tmp_output
, session
,
3235 wait
, nb_packets_per_stream
);
3236 if (ret
!= LTTNG_OK
) {
3239 snapshot_success
= 1;
3241 struct snapshot_output
*sout
;
3242 struct lttng_ht_iter iter
;
3245 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
3246 &iter
.iter
, sout
, node
.node
) {
3247 int64_t nb_packets_per_stream
;
3250 * Make a local copy of the output and assign the possible
3251 * temporary value given by the caller.
3253 memset(&tmp_output
, 0, sizeof(tmp_output
));
3254 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
3256 if (output
->max_size
!= (uint64_t) -1ULL) {
3257 tmp_output
.max_size
= output
->max_size
;
3260 nb_packets_per_stream
= get_session_nb_packets_per_stream(session
,
3261 tmp_output
.max_size
);
3262 if (nb_packets_per_stream
< 0) {
3263 ret
= LTTNG_ERR_MAX_SIZE_INVALID
;
3268 /* Use temporary name. */
3269 if (*output
->name
!= '\0') {
3270 strncpy(tmp_output
.name
, output
->name
,
3271 sizeof(tmp_output
.name
));
3274 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
3276 ret
= record_ust_snapshot(usess
, &tmp_output
, session
,
3277 wait
, nb_packets_per_stream
);
3278 if (ret
!= LTTNG_OK
) {
3282 snapshot_success
= 1;
3288 if (snapshot_success
) {
3289 session
->snapshot
.nb_snapshot
++;
3291 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
3299 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
3301 int cmd_set_session_shm_path(struct ltt_session
*session
,
3302 const char *shm_path
)
3308 * Can only set shm path before session is started.
3310 if (session
->has_been_started
) {
3311 return LTTNG_ERR_SESSION_STARTED
;
3314 strncpy(session
->shm_path
, shm_path
,
3315 sizeof(session
->shm_path
));
3316 session
->shm_path
[sizeof(session
->shm_path
) - 1] = '\0';
3322 * Init command subsystem.
3327 * Set network sequence index to 1 for streams to match a relayd
3328 * socket on the consumer side.
3330 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
3331 relayd_net_seq_idx
= 1;
3332 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
3334 DBG("Command subsystem initialized");