2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <urcu/list.h>
22 #include <urcu/uatomic.h>
24 #include <common/defaults.h>
25 #include <common/common.h>
26 #include <common/sessiond-comm/sessiond-comm.h>
27 #include <common/relayd/relayd.h>
28 #include <common/utils.h>
35 #include "kernel-consumer.h"
36 #include "lttng-sessiond.h"
42 * Used to keep a unique index for each relayd socket created where this value
43 * is associated with streams on the consumer so it can match the right relayd
44 * to send to. It must be accessed with the relayd_net_seq_idx_lock
47 static pthread_mutex_t relayd_net_seq_idx_lock
= PTHREAD_MUTEX_INITIALIZER
;
48 static uint64_t relayd_net_seq_idx
;
51 * Create a session path used by list_lttng_sessions for the case that the
52 * session consumer is on the network.
54 static int build_network_session_path(char *dst
, size_t size
,
55 struct ltt_session
*session
)
57 int ret
, kdata_port
, udata_port
;
58 struct lttng_uri
*kuri
= NULL
, *uuri
= NULL
, *uri
= NULL
;
59 char tmp_uurl
[PATH_MAX
], tmp_urls
[PATH_MAX
];
64 memset(tmp_urls
, 0, sizeof(tmp_urls
));
65 memset(tmp_uurl
, 0, sizeof(tmp_uurl
));
67 kdata_port
= udata_port
= DEFAULT_NETWORK_DATA_PORT
;
69 if (session
->kernel_session
&& session
->kernel_session
->consumer
) {
70 kuri
= &session
->kernel_session
->consumer
->dst
.net
.control
;
71 kdata_port
= session
->kernel_session
->consumer
->dst
.net
.data
.port
;
74 if (session
->ust_session
&& session
->ust_session
->consumer
) {
75 uuri
= &session
->ust_session
->consumer
->dst
.net
.control
;
76 udata_port
= session
->ust_session
->consumer
->dst
.net
.data
.port
;
79 if (uuri
== NULL
&& kuri
== NULL
) {
80 uri
= &session
->consumer
->dst
.net
.control
;
81 kdata_port
= session
->consumer
->dst
.net
.data
.port
;
82 } else if (kuri
&& uuri
) {
83 ret
= uri_compare(kuri
, uuri
);
87 /* Build uuri URL string */
88 ret
= uri_to_str_url(uuri
, tmp_uurl
, sizeof(tmp_uurl
));
95 } else if (kuri
&& uuri
== NULL
) {
97 } else if (uuri
&& kuri
== NULL
) {
101 ret
= uri_to_str_url(uri
, tmp_urls
, sizeof(tmp_urls
));
107 * Do we have a UST url set. If yes, this means we have both kernel and UST
110 if (*tmp_uurl
!= '\0') {
111 ret
= snprintf(dst
, size
, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
112 tmp_urls
, kdata_port
, tmp_uurl
, udata_port
);
115 if (kuri
|| (!kuri
&& !uuri
)) {
118 /* No kernel URI, use the UST port. */
121 ret
= snprintf(dst
, size
, "%s [data: %d]", tmp_urls
, dport
);
129 * Fill lttng_channel array of all channels.
131 static void list_lttng_channels(int domain
, struct ltt_session
*session
,
132 struct lttng_channel
*channels
)
135 struct ltt_kernel_channel
*kchan
;
137 DBG("Listing channels for session %s", session
->name
);
140 case LTTNG_DOMAIN_KERNEL
:
141 /* Kernel channels */
142 if (session
->kernel_session
!= NULL
) {
143 cds_list_for_each_entry(kchan
,
144 &session
->kernel_session
->channel_list
.head
, list
) {
145 /* Copy lttng_channel struct to array */
146 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
147 channels
[i
].enabled
= kchan
->enabled
;
152 case LTTNG_DOMAIN_UST
:
154 struct lttng_ht_iter iter
;
155 struct ltt_ust_channel
*uchan
;
158 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
159 &iter
.iter
, uchan
, node
.node
) {
160 strncpy(channels
[i
].name
, uchan
->name
, LTTNG_SYMBOL_NAME_LEN
);
161 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
162 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
163 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
164 channels
[i
].attr
.switch_timer_interval
=
165 uchan
->attr
.switch_timer_interval
;
166 channels
[i
].attr
.read_timer_interval
=
167 uchan
->attr
.read_timer_interval
;
168 channels
[i
].enabled
= uchan
->enabled
;
169 switch (uchan
->attr
.output
) {
172 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
186 * Create a list of ust global domain events.
188 static int list_lttng_ust_global_events(char *channel_name
,
189 struct ltt_ust_domain_global
*ust_global
, struct lttng_event
**events
)
192 unsigned int nb_event
= 0;
193 struct lttng_ht_iter iter
;
194 struct lttng_ht_node_str
*node
;
195 struct ltt_ust_channel
*uchan
;
196 struct ltt_ust_event
*uevent
;
197 struct lttng_event
*tmp
;
199 DBG("Listing UST global events for channel %s", channel_name
);
203 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
204 node
= lttng_ht_iter_get_node_str(&iter
);
206 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
210 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
212 nb_event
+= lttng_ht_get_count(uchan
->events
);
219 DBG3("Listing UST global %d events", nb_event
);
221 tmp
= zmalloc(nb_event
* sizeof(struct lttng_event
));
223 ret
= LTTNG_ERR_FATAL
;
227 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
228 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
229 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
230 tmp
[i
].enabled
= uevent
->enabled
;
232 switch (uevent
->attr
.instrumentation
) {
233 case LTTNG_UST_TRACEPOINT
:
234 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
236 case LTTNG_UST_PROBE
:
237 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
239 case LTTNG_UST_FUNCTION
:
240 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
244 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
245 switch (uevent
->attr
.loglevel_type
) {
246 case LTTNG_UST_LOGLEVEL_ALL
:
247 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
249 case LTTNG_UST_LOGLEVEL_RANGE
:
250 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
252 case LTTNG_UST_LOGLEVEL_SINGLE
:
253 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
256 if (uevent
->filter
) {
271 * Fill lttng_event array of all kernel events in the channel.
273 static int list_lttng_kernel_events(char *channel_name
,
274 struct ltt_kernel_session
*kernel_session
, struct lttng_event
**events
)
277 unsigned int nb_event
;
278 struct ltt_kernel_event
*event
;
279 struct ltt_kernel_channel
*kchan
;
281 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
283 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
287 nb_event
= kchan
->event_count
;
289 DBG("Listing events for channel %s", kchan
->channel
->name
);
295 *events
= zmalloc(nb_event
* sizeof(struct lttng_event
));
296 if (*events
== NULL
) {
297 ret
= LTTNG_ERR_FATAL
;
301 /* Kernel channels */
302 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
303 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
304 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
305 (*events
)[i
].enabled
= event
->enabled
;
307 switch (event
->event
->instrumentation
) {
308 case LTTNG_KERNEL_TRACEPOINT
:
309 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
311 case LTTNG_KERNEL_KRETPROBE
:
312 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
313 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
314 sizeof(struct lttng_kernel_kprobe
));
316 case LTTNG_KERNEL_KPROBE
:
317 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
318 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
319 sizeof(struct lttng_kernel_kprobe
));
321 case LTTNG_KERNEL_FUNCTION
:
322 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
323 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
324 sizeof(struct lttng_kernel_function
));
326 case LTTNG_KERNEL_NOOP
:
327 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
329 case LTTNG_KERNEL_SYSCALL
:
330 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
332 case LTTNG_KERNEL_ALL
:
343 /* Negate the error code to differentiate the size from an error */
348 * Add URI so the consumer output object. Set the correct path depending on the
349 * domain adding the default trace directory.
351 static int add_uri_to_consumer(struct consumer_output
*consumer
,
352 struct lttng_uri
*uri
, int domain
, const char *session_name
)
355 const char *default_trace_dir
;
359 if (consumer
== NULL
) {
360 DBG("No consumer detected. Don't add URI. Stopping.");
361 ret
= LTTNG_ERR_NO_CONSUMER
;
366 case LTTNG_DOMAIN_KERNEL
:
367 default_trace_dir
= DEFAULT_KERNEL_TRACE_DIR
;
369 case LTTNG_DOMAIN_UST
:
370 default_trace_dir
= DEFAULT_UST_TRACE_DIR
;
374 * This case is possible is we try to add the URI to the global tracing
375 * session consumer object which in this case there is no subdir.
377 default_trace_dir
= "";
380 switch (uri
->dtype
) {
383 DBG2("Setting network URI to consumer");
385 if (consumer
->type
== CONSUMER_DST_NET
) {
386 if ((uri
->stype
== LTTNG_STREAM_CONTROL
&&
387 consumer
->dst
.net
.control_isset
) ||
388 (uri
->stype
== LTTNG_STREAM_DATA
&&
389 consumer
->dst
.net
.data_isset
)) {
390 ret
= LTTNG_ERR_URL_EXIST
;
394 memset(&consumer
->dst
.net
, 0, sizeof(consumer
->dst
.net
));
397 consumer
->type
= CONSUMER_DST_NET
;
399 /* Set URI into consumer output object */
400 ret
= consumer_set_network_uri(consumer
, uri
);
404 } else if (ret
== 1) {
406 * URI was the same in the consumer so we do not append the subdir
407 * again so to not duplicate output dir.
412 if (uri
->stype
== LTTNG_STREAM_CONTROL
&& strlen(uri
->subdir
) == 0) {
413 ret
= consumer_set_subdir(consumer
, session_name
);
415 ret
= LTTNG_ERR_FATAL
;
420 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
421 /* On a new subdir, reappend the default trace dir. */
422 strncat(consumer
->subdir
, default_trace_dir
,
423 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
424 DBG3("Append domain trace name to subdir %s", consumer
->subdir
);
429 DBG2("Setting trace directory path from URI to %s", uri
->dst
.path
);
430 memset(consumer
->dst
.trace_path
, 0,
431 sizeof(consumer
->dst
.trace_path
));
432 strncpy(consumer
->dst
.trace_path
, uri
->dst
.path
,
433 sizeof(consumer
->dst
.trace_path
));
434 /* Append default trace dir */
435 strncat(consumer
->dst
.trace_path
, default_trace_dir
,
436 sizeof(consumer
->dst
.trace_path
) -
437 strlen(consumer
->dst
.trace_path
) - 1);
438 /* Flag consumer as local. */
439 consumer
->type
= CONSUMER_DST_LOCAL
;
450 * Init tracing by creating trace directory and sending fds kernel consumer.
452 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
455 struct lttng_ht_iter iter
;
456 struct consumer_socket
*socket
;
462 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
463 cds_lfht_for_each_entry(session
->consumer
->socks
->ht
, &iter
.iter
,
465 /* Code flow error */
466 assert(socket
->fd
>= 0);
468 pthread_mutex_lock(socket
->lock
);
469 ret
= kernel_consumer_send_session(socket
, session
);
470 pthread_mutex_unlock(socket
->lock
);
472 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
484 * Create a socket to the relayd using the URI.
486 * On success, the relayd_sock pointer is set to the created socket.
487 * Else, it's stays untouched and a lttcomm error code is returned.
489 static int create_connect_relayd(struct lttng_uri
*uri
,
490 struct lttcomm_relayd_sock
**relayd_sock
)
493 struct lttcomm_relayd_sock
*rsock
;
495 rsock
= lttcomm_alloc_relayd_sock(uri
, RELAYD_VERSION_COMM_MAJOR
,
496 RELAYD_VERSION_COMM_MINOR
);
498 ret
= LTTNG_ERR_FATAL
;
503 * Connect to relayd so we can proceed with a session creation. This call
504 * can possibly block for an arbitrary amount of time to set the health
505 * state to be in poll execution.
508 ret
= relayd_connect(rsock
);
511 ERR("Unable to reach lttng-relayd");
512 ret
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
516 /* Create socket for control stream. */
517 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
518 DBG3("Creating relayd stream socket from URI");
520 /* Check relayd version */
521 ret
= relayd_version_check(rsock
);
523 ret
= LTTNG_ERR_RELAYD_VERSION_FAIL
;
526 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
527 DBG3("Creating relayd data socket from URI");
529 /* Command is not valid */
530 ERR("Relayd invalid stream type: %d", uri
->stype
);
531 ret
= LTTNG_ERR_INVALID
;
535 *relayd_sock
= rsock
;
540 /* The returned value is not useful since we are on an error path. */
541 (void) relayd_close(rsock
);
549 * Connect to the relayd using URI and send the socket to the right consumer.
551 static int send_consumer_relayd_socket(int domain
, unsigned int session_id
,
552 struct lttng_uri
*relayd_uri
, struct consumer_output
*consumer
,
553 struct consumer_socket
*consumer_sock
)
556 struct lttcomm_relayd_sock
*rsock
= NULL
;
558 /* Connect to relayd and make version check if uri is the control. */
559 ret
= create_connect_relayd(relayd_uri
, &rsock
);
560 if (ret
!= LTTNG_OK
) {
565 /* Set the network sequence index if not set. */
566 if (consumer
->net_seq_index
== (uint64_t) -1ULL) {
567 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
569 * Increment net_seq_idx because we are about to transfer the
570 * new relayd socket to the consumer.
571 * Assign unique key so the consumer can match streams.
573 consumer
->net_seq_index
= ++relayd_net_seq_idx
;
574 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
577 /* Send relayd socket to consumer. */
578 ret
= consumer_send_relayd_socket(consumer_sock
, rsock
, consumer
,
579 relayd_uri
->stype
, session_id
);
581 ret
= LTTNG_ERR_ENABLE_CONSUMER_FAIL
;
585 /* Flag that the corresponding socket was sent. */
586 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
587 consumer_sock
->control_sock_sent
= 1;
588 } else if (relayd_uri
->stype
== LTTNG_STREAM_DATA
) {
589 consumer_sock
->data_sock_sent
= 1;
595 * Close socket which was dup on the consumer side. The session daemon does
596 * NOT keep track of the relayd socket(s) once transfer to the consumer.
600 (void) relayd_close(rsock
);
604 if (ret
!= LTTNG_OK
) {
606 * The consumer output for this session should not be used anymore
607 * since the relayd connection failed thus making any tracing or/and
608 * streaming not usable.
610 consumer
->enabled
= 0;
616 * Send both relayd sockets to a specific consumer and domain. This is a
617 * helper function to facilitate sending the information to the consumer for a
620 static int send_consumer_relayd_sockets(int domain
, unsigned int session_id
,
621 struct consumer_output
*consumer
, struct consumer_socket
*sock
)
628 /* Sending control relayd socket. */
629 if (!sock
->control_sock_sent
) {
630 ret
= send_consumer_relayd_socket(domain
, session_id
,
631 &consumer
->dst
.net
.control
, consumer
, sock
);
632 if (ret
!= LTTNG_OK
) {
637 /* Sending data relayd socket. */
638 if (!sock
->data_sock_sent
) {
639 ret
= send_consumer_relayd_socket(domain
, session_id
,
640 &consumer
->dst
.net
.data
, consumer
, sock
);
641 if (ret
!= LTTNG_OK
) {
651 * Setup relayd connections for a tracing session. First creates the socket to
652 * the relayd and send them to the right domain consumer. Consumer type MUST be
655 int cmd_setup_relayd(struct ltt_session
*session
)
658 struct ltt_ust_session
*usess
;
659 struct ltt_kernel_session
*ksess
;
660 struct consumer_socket
*socket
;
661 struct lttng_ht_iter iter
;
665 usess
= session
->ust_session
;
666 ksess
= session
->kernel_session
;
668 DBG("Setting relayd for session %s", session
->name
);
672 if (usess
&& usess
->consumer
&& usess
->consumer
->type
== CONSUMER_DST_NET
673 && usess
->consumer
->enabled
) {
674 /* For each consumer socket, send relayd sockets */
675 cds_lfht_for_each_entry(usess
->consumer
->socks
->ht
, &iter
.iter
,
677 /* Code flow error */
678 assert(socket
->fd
>= 0);
680 pthread_mutex_lock(socket
->lock
);
681 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_UST
, session
->id
,
682 usess
->consumer
, socket
);
683 pthread_mutex_unlock(socket
->lock
);
684 if (ret
!= LTTNG_OK
) {
687 /* Session is now ready for network streaming. */
688 session
->net_handle
= 1;
692 if (ksess
&& ksess
->consumer
&& ksess
->consumer
->type
== CONSUMER_DST_NET
693 && ksess
->consumer
->enabled
) {
694 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
, &iter
.iter
,
696 /* Code flow error */
697 assert(socket
->fd
>= 0);
699 pthread_mutex_lock(socket
->lock
);
700 ret
= send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL
, session
->id
,
701 ksess
->consumer
, socket
);
702 pthread_mutex_unlock(socket
->lock
);
703 if (ret
!= LTTNG_OK
) {
706 /* Session is now ready for network streaming. */
707 session
->net_handle
= 1;
717 * Start a kernel session by opening all necessary streams.
719 static int start_kernel_session(struct ltt_kernel_session
*ksess
, int wpipe
)
722 struct ltt_kernel_channel
*kchan
;
724 /* Open kernel metadata */
725 if (ksess
->metadata
== NULL
&& ksess
->output_traces
) {
726 ret
= kernel_open_metadata(ksess
);
728 ret
= LTTNG_ERR_KERN_META_FAIL
;
733 /* Open kernel metadata stream */
734 if (ksess
->metadata
&& ksess
->metadata_stream_fd
< 0) {
735 ret
= kernel_open_metadata_stream(ksess
);
737 ERR("Kernel create metadata stream failed");
738 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
743 /* For each channel */
744 cds_list_for_each_entry(kchan
, &ksess
->channel_list
.head
, list
) {
745 if (kchan
->stream_count
== 0) {
746 ret
= kernel_open_channel_stream(kchan
);
748 ret
= LTTNG_ERR_KERN_STREAM_FAIL
;
751 /* Update the stream global counter */
752 ksess
->stream_count_global
+= ret
;
756 /* Setup kernel consumer socket and send fds to it */
757 ret
= init_kernel_tracing(ksess
);
759 ret
= LTTNG_ERR_KERN_START_FAIL
;
763 /* This start the kernel tracing */
764 ret
= kernel_start_session(ksess
);
766 ret
= LTTNG_ERR_KERN_START_FAIL
;
770 /* Quiescent wait after starting trace */
771 kernel_wait_quiescent(kernel_tracer_fd
);
782 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
784 int cmd_disable_channel(struct ltt_session
*session
, int domain
,
788 struct ltt_ust_session
*usess
;
790 usess
= session
->ust_session
;
795 case LTTNG_DOMAIN_KERNEL
:
797 ret
= channel_kernel_disable(session
->kernel_session
,
799 if (ret
!= LTTNG_OK
) {
803 kernel_wait_quiescent(kernel_tracer_fd
);
806 case LTTNG_DOMAIN_UST
:
808 struct ltt_ust_channel
*uchan
;
809 struct lttng_ht
*chan_ht
;
811 chan_ht
= usess
->domain_global
.channels
;
813 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
815 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
819 ret
= channel_ust_disable(usess
, uchan
);
820 if (ret
!= LTTNG_OK
) {
826 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
827 case LTTNG_DOMAIN_UST_EXEC_NAME
:
828 case LTTNG_DOMAIN_UST_PID
:
831 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
843 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
845 * The wpipe arguments is used as a notifier for the kernel thread.
847 int cmd_enable_channel(struct ltt_session
*session
,
848 struct lttng_domain
*domain
, struct lttng_channel
*attr
, int wpipe
)
851 struct ltt_ust_session
*usess
= session
->ust_session
;
852 struct lttng_ht
*chan_ht
;
858 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
863 * Don't try to enable a channel if the session has been started at
864 * some point in time before. The tracer does not allow it.
866 if (session
->started
) {
867 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
871 switch (domain
->type
) {
872 case LTTNG_DOMAIN_KERNEL
:
874 struct ltt_kernel_channel
*kchan
;
876 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
877 session
->kernel_session
);
879 ret
= channel_kernel_create(session
->kernel_session
, attr
, wpipe
);
880 if (attr
->name
[0] != '\0') {
881 session
->kernel_session
->has_non_default_channel
= 1;
884 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
887 if (ret
!= LTTNG_OK
) {
891 kernel_wait_quiescent(kernel_tracer_fd
);
894 case LTTNG_DOMAIN_UST
:
896 struct ltt_ust_channel
*uchan
;
898 chan_ht
= usess
->domain_global
.channels
;
900 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
902 ret
= channel_ust_create(usess
, attr
, domain
->buf_type
);
903 if (attr
->name
[0] != '\0') {
904 usess
->has_non_default_channel
= 1;
907 ret
= channel_ust_enable(usess
, uchan
);
912 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
923 * Command LTTNG_DISABLE_EVENT processed by the client thread.
925 int cmd_disable_event(struct ltt_session
*session
, int domain
,
926 char *channel_name
, char *event_name
)
933 case LTTNG_DOMAIN_KERNEL
:
935 struct ltt_kernel_channel
*kchan
;
936 struct ltt_kernel_session
*ksess
;
938 ksess
= session
->kernel_session
;
941 * If a non-default channel has been created in the
942 * session, explicitely require that -c chan_name needs
945 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
946 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
950 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
952 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
956 ret
= event_kernel_disable_tracepoint(kchan
, event_name
);
957 if (ret
!= LTTNG_OK
) {
961 kernel_wait_quiescent(kernel_tracer_fd
);
964 case LTTNG_DOMAIN_UST
:
966 struct ltt_ust_channel
*uchan
;
967 struct ltt_ust_session
*usess
;
969 usess
= session
->ust_session
;
972 * If a non-default channel has been created in the
973 * session, explicitely require that -c chan_name needs
976 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
977 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
981 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
984 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
988 ret
= event_ust_disable_tracepoint(usess
, uchan
, event_name
);
989 if (ret
!= LTTNG_OK
) {
993 DBG3("Disable UST event %s in channel %s completed", event_name
,
998 case LTTNG_DOMAIN_UST_EXEC_NAME
:
999 case LTTNG_DOMAIN_UST_PID
:
1000 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1003 ret
= LTTNG_ERR_UND
;
1015 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
1017 int cmd_disable_event_all(struct ltt_session
*session
, int domain
,
1025 case LTTNG_DOMAIN_KERNEL
:
1027 struct ltt_kernel_session
*ksess
;
1028 struct ltt_kernel_channel
*kchan
;
1030 ksess
= session
->kernel_session
;
1033 * If a non-default channel has been created in the
1034 * session, explicitely require that -c chan_name needs
1037 if (ksess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1038 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1042 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
1043 if (kchan
== NULL
) {
1044 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
1048 ret
= event_kernel_disable_all(kchan
);
1049 if (ret
!= LTTNG_OK
) {
1053 kernel_wait_quiescent(kernel_tracer_fd
);
1056 case LTTNG_DOMAIN_UST
:
1058 struct ltt_ust_session
*usess
;
1059 struct ltt_ust_channel
*uchan
;
1061 usess
= session
->ust_session
;
1064 * If a non-default channel has been created in the
1065 * session, explicitely require that -c chan_name needs
1068 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1069 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1073 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1075 if (uchan
== NULL
) {
1076 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1080 ret
= event_ust_disable_all_tracepoints(usess
, uchan
);
1085 DBG3("Disable all UST events in channel %s completed", channel_name
);
1090 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1091 case LTTNG_DOMAIN_UST_PID
:
1092 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1095 ret
= LTTNG_ERR_UND
;
1107 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1109 int cmd_add_context(struct ltt_session
*session
, int domain
,
1110 char *channel_name
, struct lttng_event_context
*ctx
, int kwpipe
)
1112 int ret
, chan_kern_created
= 0, chan_ust_created
= 0;
1115 case LTTNG_DOMAIN_KERNEL
:
1116 assert(session
->kernel_session
);
1119 * If a non-default channel has been created in the
1120 * session, explicitely require that -c chan_name needs
1123 if (session
->kernel_session
->has_non_default_channel
1124 && channel_name
[0] == '\0') {
1125 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1129 if (session
->kernel_session
->channel_count
== 0) {
1130 /* Create default channel */
1131 ret
= channel_kernel_create(session
->kernel_session
, NULL
, kwpipe
);
1132 if (ret
!= LTTNG_OK
) {
1135 chan_kern_created
= 1;
1137 /* Add kernel context to kernel tracer */
1138 ret
= context_kernel_add(session
->kernel_session
, ctx
, channel_name
);
1139 if (ret
!= LTTNG_OK
) {
1143 case LTTNG_DOMAIN_UST
:
1145 struct ltt_ust_session
*usess
= session
->ust_session
;
1146 unsigned int chan_count
;
1151 * If a non-default channel has been created in the
1152 * session, explicitely require that -c chan_name needs
1155 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1156 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1160 chan_count
= lttng_ht_get_count(usess
->domain_global
.channels
);
1161 if (chan_count
== 0) {
1162 struct lttng_channel
*attr
;
1163 /* Create default channel */
1164 attr
= channel_new_default_attr(domain
, usess
->buffer_type
);
1166 ret
= LTTNG_ERR_FATAL
;
1170 ret
= channel_ust_create(usess
, attr
, usess
->buffer_type
);
1171 if (ret
!= LTTNG_OK
) {
1176 chan_ust_created
= 1;
1179 ret
= context_ust_add(usess
, domain
, ctx
, channel_name
);
1180 if (ret
!= LTTNG_OK
) {
1186 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1187 case LTTNG_DOMAIN_UST_PID
:
1188 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1191 ret
= LTTNG_ERR_UND
;
1198 if (chan_kern_created
) {
1199 struct ltt_kernel_channel
*kchan
=
1200 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME
,
1201 session
->kernel_session
);
1202 /* Created previously, this should NOT fail. */
1204 kernel_destroy_channel(kchan
);
1207 if (chan_ust_created
) {
1208 struct ltt_ust_channel
*uchan
=
1209 trace_ust_find_channel_by_name(
1210 session
->ust_session
->domain_global
.channels
,
1211 DEFAULT_CHANNEL_NAME
);
1212 /* Created previously, this should NOT fail. */
1214 /* Remove from the channel list of the session. */
1215 trace_ust_delete_channel(session
->ust_session
->domain_global
.channels
,
1217 trace_ust_destroy_channel(uchan
);
1223 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1225 int cmd_enable_event(struct ltt_session
*session
, struct lttng_domain
*domain
,
1226 char *channel_name
, struct lttng_event
*event
,
1227 struct lttng_filter_bytecode
*filter
, int wpipe
)
1229 int ret
, channel_created
= 0;
1230 struct lttng_channel
*attr
;
1234 assert(channel_name
);
1238 switch (domain
->type
) {
1239 case LTTNG_DOMAIN_KERNEL
:
1241 struct ltt_kernel_channel
*kchan
;
1244 * If a non-default channel has been created in the
1245 * session, explicitely require that -c chan_name needs
1248 if (session
->kernel_session
->has_non_default_channel
1249 && channel_name
[0] == '\0') {
1250 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1254 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1255 session
->kernel_session
);
1256 if (kchan
== NULL
) {
1257 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1258 LTTNG_BUFFER_GLOBAL
);
1260 ret
= LTTNG_ERR_FATAL
;
1263 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1265 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1266 if (ret
!= LTTNG_OK
) {
1272 channel_created
= 1;
1275 /* Get the newly created kernel channel pointer */
1276 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1277 session
->kernel_session
);
1278 if (kchan
== NULL
) {
1279 /* This sould not happen... */
1280 ret
= LTTNG_ERR_FATAL
;
1284 ret
= event_kernel_enable_tracepoint(kchan
, event
);
1285 if (ret
!= LTTNG_OK
) {
1286 if (channel_created
) {
1287 /* Let's not leak a useless channel. */
1288 kernel_destroy_channel(kchan
);
1293 kernel_wait_quiescent(kernel_tracer_fd
);
1296 case LTTNG_DOMAIN_UST
:
1298 struct ltt_ust_channel
*uchan
;
1299 struct ltt_ust_session
*usess
= session
->ust_session
;
1304 * If a non-default channel has been created in the
1305 * session, explicitely require that -c chan_name needs
1308 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1309 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1313 /* Get channel from global UST domain */
1314 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1316 if (uchan
== NULL
) {
1317 /* Create default channel */
1318 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
1319 usess
->buffer_type
);
1321 ret
= LTTNG_ERR_FATAL
;
1324 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1326 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1327 if (ret
!= LTTNG_OK
) {
1333 /* Get the newly created channel reference back */
1334 uchan
= trace_ust_find_channel_by_name(
1335 usess
->domain_global
.channels
, channel_name
);
1339 /* At this point, the session and channel exist on the tracer */
1340 ret
= event_ust_enable_tracepoint(usess
, uchan
, event
, filter
);
1341 if (ret
!= LTTNG_OK
) {
1347 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1348 case LTTNG_DOMAIN_UST_PID
:
1349 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1352 ret
= LTTNG_ERR_UND
;
1364 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1366 int cmd_enable_event_all(struct ltt_session
*session
,
1367 struct lttng_domain
*domain
, char *channel_name
, int event_type
,
1368 struct lttng_filter_bytecode
*filter
, int wpipe
)
1371 struct lttng_channel
*attr
;
1374 assert(channel_name
);
1378 switch (domain
->type
) {
1379 case LTTNG_DOMAIN_KERNEL
:
1381 struct ltt_kernel_channel
*kchan
;
1383 assert(session
->kernel_session
);
1386 * If a non-default channel has been created in the
1387 * session, explicitely require that -c chan_name needs
1390 if (session
->kernel_session
->has_non_default_channel
1391 && channel_name
[0] == '\0') {
1392 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1396 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1397 session
->kernel_session
);
1398 if (kchan
== NULL
) {
1399 /* Create default channel */
1400 attr
= channel_new_default_attr(LTTNG_DOMAIN_KERNEL
,
1401 LTTNG_BUFFER_GLOBAL
);
1403 ret
= LTTNG_ERR_FATAL
;
1406 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1408 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1409 if (ret
!= LTTNG_OK
) {
1415 /* Get the newly created kernel channel pointer */
1416 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1417 session
->kernel_session
);
1421 switch (event_type
) {
1422 case LTTNG_EVENT_SYSCALL
:
1423 ret
= event_kernel_enable_all_syscalls(kchan
, kernel_tracer_fd
);
1425 case LTTNG_EVENT_TRACEPOINT
:
1427 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1428 * events already registered to the channel.
1430 ret
= event_kernel_enable_all_tracepoints(kchan
, kernel_tracer_fd
);
1432 case LTTNG_EVENT_ALL
:
1433 /* Enable syscalls and tracepoints */
1434 ret
= event_kernel_enable_all(kchan
, kernel_tracer_fd
);
1437 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1441 /* Manage return value */
1442 if (ret
!= LTTNG_OK
) {
1444 * On error, cmd_enable_channel call will take care of destroying
1445 * the created channel if it was needed.
1450 kernel_wait_quiescent(kernel_tracer_fd
);
1453 case LTTNG_DOMAIN_UST
:
1455 struct ltt_ust_channel
*uchan
;
1456 struct ltt_ust_session
*usess
= session
->ust_session
;
1461 * If a non-default channel has been created in the
1462 * session, explicitely require that -c chan_name needs
1465 if (usess
->has_non_default_channel
&& channel_name
[0] == '\0') {
1466 ret
= LTTNG_ERR_NEED_CHANNEL_NAME
;
1470 /* Get channel from global UST domain */
1471 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
1473 if (uchan
== NULL
) {
1474 /* Create default channel */
1475 attr
= channel_new_default_attr(LTTNG_DOMAIN_UST
,
1476 usess
->buffer_type
);
1478 ret
= LTTNG_ERR_FATAL
;
1481 strncpy(attr
->name
, channel_name
, sizeof(attr
->name
));
1483 ret
= cmd_enable_channel(session
, domain
, attr
, wpipe
);
1484 if (ret
!= LTTNG_OK
) {
1490 /* Get the newly created channel reference back */
1491 uchan
= trace_ust_find_channel_by_name(
1492 usess
->domain_global
.channels
, channel_name
);
1496 /* At this point, the session and channel exist on the tracer */
1498 switch (event_type
) {
1499 case LTTNG_EVENT_ALL
:
1500 case LTTNG_EVENT_TRACEPOINT
:
1501 ret
= event_ust_enable_all_tracepoints(usess
, uchan
, filter
);
1502 if (ret
!= LTTNG_OK
) {
1507 ret
= LTTNG_ERR_UST_ENABLE_FAIL
;
1511 /* Manage return value */
1512 if (ret
!= LTTNG_OK
) {
1519 case LTTNG_DOMAIN_UST_EXEC_NAME
:
1520 case LTTNG_DOMAIN_UST_PID
:
1521 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
1524 ret
= LTTNG_ERR_UND
;
1537 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1539 ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
1542 ssize_t nb_events
= 0;
1545 case LTTNG_DOMAIN_KERNEL
:
1546 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
1547 if (nb_events
< 0) {
1548 ret
= LTTNG_ERR_KERN_LIST_FAIL
;
1552 case LTTNG_DOMAIN_UST
:
1553 nb_events
= ust_app_list_events(events
);
1554 if (nb_events
< 0) {
1555 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1560 ret
= LTTNG_ERR_UND
;
1567 /* Return negative value to differentiate return code */
1572 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1574 ssize_t
cmd_list_tracepoint_fields(int domain
,
1575 struct lttng_event_field
**fields
)
1578 ssize_t nb_fields
= 0;
1581 case LTTNG_DOMAIN_UST
:
1582 nb_fields
= ust_app_list_event_fields(fields
);
1583 if (nb_fields
< 0) {
1584 ret
= LTTNG_ERR_UST_LIST_FAIL
;
1588 case LTTNG_DOMAIN_KERNEL
:
1589 default: /* fall-through */
1590 ret
= LTTNG_ERR_UND
;
1597 /* Return negative value to differentiate return code */
1602 * Command LTTNG_START_TRACE processed by the client thread.
1604 int cmd_start_trace(struct ltt_session
*session
)
1607 struct ltt_kernel_session
*ksession
;
1608 struct ltt_ust_session
*usess
;
1612 /* Ease our life a bit ;) */
1613 ksession
= session
->kernel_session
;
1614 usess
= session
->ust_session
;
1616 if (session
->enabled
) {
1617 /* Already started. */
1618 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1622 session
->enabled
= 1;
1624 /* Kernel tracing */
1625 if (ksession
!= NULL
) {
1626 ret
= start_kernel_session(ksession
, kernel_tracer_fd
);
1627 if (ret
!= LTTNG_OK
) {
1632 /* Flag session that trace should start automatically */
1634 usess
->start_trace
= 1;
1636 ret
= ust_app_start_trace_all(usess
);
1638 ret
= LTTNG_ERR_UST_START_FAIL
;
1643 session
->started
= 1;
1652 * Command LTTNG_STOP_TRACE processed by the client thread.
1654 int cmd_stop_trace(struct ltt_session
*session
)
1657 struct ltt_kernel_channel
*kchan
;
1658 struct ltt_kernel_session
*ksession
;
1659 struct ltt_ust_session
*usess
;
1664 ksession
= session
->kernel_session
;
1665 usess
= session
->ust_session
;
1667 if (!session
->enabled
) {
1668 ret
= LTTNG_ERR_TRACE_ALREADY_STOPPED
;
1672 session
->enabled
= 0;
1675 if (ksession
&& ksession
->started
) {
1676 DBG("Stop kernel tracing");
1678 /* Flush metadata if exist */
1679 if (ksession
->metadata_stream_fd
>= 0) {
1680 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
1682 ERR("Kernel metadata flush failed");
1686 /* Flush all buffers before stopping */
1687 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
1688 ret
= kernel_flush_buffer(kchan
);
1690 ERR("Kernel flush buffer error");
1694 ret
= kernel_stop_session(ksession
);
1696 ret
= LTTNG_ERR_KERN_STOP_FAIL
;
1700 kernel_wait_quiescent(kernel_tracer_fd
);
1702 ksession
->started
= 0;
1705 if (usess
&& usess
->start_trace
) {
1706 usess
->start_trace
= 0;
1708 ret
= ust_app_stop_trace_all(usess
);
1710 ret
= LTTNG_ERR_UST_STOP_FAIL
;
1722 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1724 int cmd_set_consumer_uri(int domain
, struct ltt_session
*session
,
1725 size_t nb_uri
, struct lttng_uri
*uris
)
1728 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
1729 struct ltt_ust_session
*usess
= session
->ust_session
;
1730 struct consumer_output
*consumer
= NULL
;
1736 /* Can't enable consumer after session started. */
1737 if (session
->enabled
) {
1738 ret
= LTTNG_ERR_TRACE_ALREADY_STARTED
;
1743 * This case switch makes sure the domain session has a temporary consumer
1744 * so the URL can be set.
1748 /* Code flow error. A session MUST always have a consumer object */
1749 assert(session
->consumer
);
1751 * The URL will be added to the tracing session consumer instead of a
1752 * specific domain consumer.
1754 consumer
= session
->consumer
;
1756 case LTTNG_DOMAIN_KERNEL
:
1757 /* Code flow error if we don't have a kernel session here. */
1759 assert(ksess
->consumer
);
1760 consumer
= ksess
->consumer
;
1762 case LTTNG_DOMAIN_UST
:
1763 /* Code flow error if we don't have a kernel session here. */
1765 assert(usess
->consumer
);
1766 consumer
= usess
->consumer
;
1770 for (i
= 0; i
< nb_uri
; i
++) {
1771 ret
= add_uri_to_consumer(consumer
, &uris
[i
], domain
, session
->name
);
1772 if (ret
!= LTTNG_OK
) {
1785 * Command LTTNG_CREATE_SESSION processed by the client thread.
1787 int cmd_create_session_uri(char *name
, struct lttng_uri
*uris
,
1788 size_t nb_uri
, lttng_sock_cred
*creds
)
1791 struct ltt_session
*session
;
1797 * Verify if the session already exist
1799 * XXX: There is no need for the session lock list here since the caller
1800 * (process_client_msg) is holding it. We might want to change that so a
1801 * single command does not lock the entire session list.
1803 session
= session_find_by_name(name
);
1804 if (session
!= NULL
) {
1805 ret
= LTTNG_ERR_EXIST_SESS
;
1809 /* Create tracing session in the registry */
1810 ret
= session_create(name
, LTTNG_SOCK_GET_UID_CRED(creds
),
1811 LTTNG_SOCK_GET_GID_CRED(creds
));
1812 if (ret
!= LTTNG_OK
) {
1817 * Get the newly created session pointer back
1819 * XXX: There is no need for the session lock list here since the caller
1820 * (process_client_msg) is holding it. We might want to change that so a
1821 * single command does not lock the entire session list.
1823 session
= session_find_by_name(name
);
1826 /* Create default consumer output for the session not yet created. */
1827 session
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
1828 if (session
->consumer
== NULL
) {
1829 ret
= LTTNG_ERR_FATAL
;
1830 goto consumer_error
;
1834 ret
= cmd_set_consumer_uri(0, session
, nb_uri
, uris
);
1835 if (ret
!= LTTNG_OK
) {
1836 goto consumer_error
;
1838 session
->output_traces
= 1;
1840 session
->output_traces
= 0;
1841 DBG2("Session %s created with no output", session
->name
);
1844 session
->consumer
->enabled
= 1;
1849 session_destroy(session
);
1856 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
1858 int cmd_create_session_snapshot(char *name
, struct lttng_uri
*uris
,
1859 size_t nb_uri
, lttng_sock_cred
*creds
)
1862 struct ltt_session
*session
;
1863 struct snapshot_output
*new_output
= NULL
;
1869 * Create session in no output mode with URIs set to NULL. The uris we've
1870 * received are for a default snapshot output if one.
1872 ret
= cmd_create_session_uri(name
, NULL
, 0, creds
);
1873 if (ret
!= LTTNG_OK
) {
1877 /* Get the newly created session pointer back. This should NEVER fail. */
1878 session
= session_find_by_name(name
);
1881 /* Flag session for snapshot mode. */
1882 session
->snapshot_mode
= 1;
1884 /* Skip snapshot output creation if no URI is given. */
1889 new_output
= snapshot_output_alloc();
1891 ret
= LTTNG_ERR_NOMEM
;
1892 goto error_snapshot_alloc
;
1895 ret
= snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE
, NULL
,
1896 uris
, nb_uri
, session
->consumer
, new_output
, &session
->snapshot
);
1898 if (ret
== -ENOMEM
) {
1899 ret
= LTTNG_ERR_NOMEM
;
1901 ret
= LTTNG_ERR_INVALID
;
1903 goto error_snapshot
;
1907 snapshot_add_output(&session
->snapshot
, new_output
);
1914 snapshot_output_destroy(new_output
);
1915 error_snapshot_alloc
:
1916 session_destroy(session
);
1922 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1924 int cmd_destroy_session(struct ltt_session
*session
, int wpipe
)
1927 struct ltt_ust_session
*usess
;
1928 struct ltt_kernel_session
*ksess
;
1933 usess
= session
->ust_session
;
1934 ksess
= session
->kernel_session
;
1936 /* Clean kernel session teardown */
1937 kernel_destroy_session(ksess
);
1939 /* UST session teardown */
1941 /* Close any relayd session */
1942 consumer_output_send_destroy_relayd(usess
->consumer
);
1944 /* Destroy every UST application related to this session. */
1945 ret
= ust_app_destroy_trace_all(usess
);
1947 ERR("Error in ust_app_destroy_trace_all");
1950 /* Clean up the rest. */
1951 trace_ust_destroy_session(usess
);
1955 * Must notify the kernel thread here to update it's poll set in order to
1956 * remove the channel(s)' fd just destroyed.
1958 ret
= notify_thread_pipe(wpipe
);
1960 PERROR("write kernel poll pipe");
1963 ret
= session_destroy(session
);
1969 * Command LTTNG_CALIBRATE processed by the client thread.
1971 int cmd_calibrate(int domain
, struct lttng_calibrate
*calibrate
)
1976 case LTTNG_DOMAIN_KERNEL
:
1978 struct lttng_kernel_calibrate kcalibrate
;
1980 kcalibrate
.type
= calibrate
->type
;
1981 ret
= kernel_calibrate(kernel_tracer_fd
, &kcalibrate
);
1983 ret
= LTTNG_ERR_KERN_ENABLE_FAIL
;
1988 case LTTNG_DOMAIN_UST
:
1990 struct lttng_ust_calibrate ucalibrate
;
1992 ucalibrate
.type
= calibrate
->type
;
1993 ret
= ust_app_calibrate_glb(&ucalibrate
);
1995 ret
= LTTNG_ERR_UST_CALIBRATE_FAIL
;
2001 ret
= LTTNG_ERR_UND
;
2012 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2014 int cmd_register_consumer(struct ltt_session
*session
, int domain
,
2015 const char *sock_path
, struct consumer_data
*cdata
)
2018 struct consumer_socket
*socket
= NULL
;
2025 case LTTNG_DOMAIN_KERNEL
:
2027 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2031 /* Can't register a consumer if there is already one */
2032 if (ksess
->consumer_fds_sent
!= 0) {
2033 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2037 sock
= lttcomm_connect_unix_sock(sock_path
);
2039 ret
= LTTNG_ERR_CONNECT_FAIL
;
2043 socket
= consumer_allocate_socket(sock
);
2044 if (socket
== NULL
) {
2047 PERROR("close register consumer");
2049 ret
= LTTNG_ERR_FATAL
;
2053 socket
->lock
= zmalloc(sizeof(pthread_mutex_t
));
2054 if (socket
->lock
== NULL
) {
2055 PERROR("zmalloc pthread mutex");
2056 ret
= LTTNG_ERR_FATAL
;
2059 pthread_mutex_init(socket
->lock
, NULL
);
2060 socket
->registered
= 1;
2063 consumer_add_socket(socket
, ksess
->consumer
);
2066 pthread_mutex_lock(&cdata
->pid_mutex
);
2068 pthread_mutex_unlock(&cdata
->pid_mutex
);
2073 /* TODO: Userspace tracing */
2074 ret
= LTTNG_ERR_UND
;
2082 consumer_destroy_socket(socket
);
2088 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2090 ssize_t
cmd_list_domains(struct ltt_session
*session
,
2091 struct lttng_domain
**domains
)
2096 if (session
->kernel_session
!= NULL
) {
2097 DBG3("Listing domains found kernel domain");
2101 if (session
->ust_session
!= NULL
) {
2102 DBG3("Listing domains found UST global domain");
2106 *domains
= zmalloc(nb_dom
* sizeof(struct lttng_domain
));
2107 if (*domains
== NULL
) {
2108 ret
= LTTNG_ERR_FATAL
;
2112 if (session
->kernel_session
!= NULL
) {
2113 (*domains
)[index
].type
= LTTNG_DOMAIN_KERNEL
;
2117 if (session
->ust_session
!= NULL
) {
2118 (*domains
)[index
].type
= LTTNG_DOMAIN_UST
;
2119 (*domains
)[index
].buf_type
= session
->ust_session
->buffer_type
;
2126 /* Return negative value to differentiate return code */
2132 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2134 ssize_t
cmd_list_channels(int domain
, struct ltt_session
*session
,
2135 struct lttng_channel
**channels
)
2138 ssize_t nb_chan
= 0;
2141 case LTTNG_DOMAIN_KERNEL
:
2142 if (session
->kernel_session
!= NULL
) {
2143 nb_chan
= session
->kernel_session
->channel_count
;
2145 DBG3("Number of kernel channels %zd", nb_chan
);
2147 ret
= LTTNG_ERR_KERN_CHAN_NOT_FOUND
;
2150 case LTTNG_DOMAIN_UST
:
2151 if (session
->ust_session
!= NULL
) {
2152 nb_chan
= lttng_ht_get_count(
2153 session
->ust_session
->domain_global
.channels
);
2155 DBG3("Number of UST global channels %zd", nb_chan
);
2157 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
2162 ret
= LTTNG_ERR_UND
;
2167 *channels
= zmalloc(nb_chan
* sizeof(struct lttng_channel
));
2168 if (*channels
== NULL
) {
2169 ret
= LTTNG_ERR_FATAL
;
2173 list_lttng_channels(domain
, session
, *channels
);
2176 /* Ret value was set in the domain switch case */
2183 /* Return negative value to differentiate return code */
2188 * Command LTTNG_LIST_EVENTS processed by the client thread.
2190 ssize_t
cmd_list_events(int domain
, struct ltt_session
*session
,
2191 char *channel_name
, struct lttng_event
**events
)
2194 ssize_t nb_event
= 0;
2197 case LTTNG_DOMAIN_KERNEL
:
2198 if (session
->kernel_session
!= NULL
) {
2199 nb_event
= list_lttng_kernel_events(channel_name
,
2200 session
->kernel_session
, events
);
2203 case LTTNG_DOMAIN_UST
:
2205 if (session
->ust_session
!= NULL
) {
2206 nb_event
= list_lttng_ust_global_events(channel_name
,
2207 &session
->ust_session
->domain_global
, events
);
2212 ret
= LTTNG_ERR_UND
;
2219 /* Return negative value to differentiate return code */
2224 * Using the session list, filled a lttng_session array to send back to the
2225 * client for session listing.
2227 * The session list lock MUST be acquired before calling this function. Use
2228 * session_lock_list() and session_unlock_list().
2230 void cmd_list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
2235 struct ltt_session
*session
;
2236 struct ltt_session_list
*list
= session_get_list();
2238 DBG("Getting all available session for UID %d GID %d",
2241 * Iterate over session list and append data after the control struct in
2244 cds_list_for_each_entry(session
, &list
->head
, list
) {
2246 * Only list the sessions the user can control.
2248 if (!session_access_ok(session
, uid
, gid
)) {
2252 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2253 struct ltt_ust_session
*usess
= session
->ust_session
;
2255 if (session
->consumer
->type
== CONSUMER_DST_NET
||
2256 (ksess
&& ksess
->consumer
->type
== CONSUMER_DST_NET
) ||
2257 (usess
&& usess
->consumer
->type
== CONSUMER_DST_NET
)) {
2258 ret
= build_network_session_path(sessions
[i
].path
,
2259 sizeof(sessions
[i
].path
), session
);
2261 ret
= snprintf(sessions
[i
].path
, sizeof(sessions
[i
].path
), "%s",
2262 session
->consumer
->dst
.trace_path
);
2265 PERROR("snprintf session path");
2269 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
2270 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
2271 sessions
[i
].enabled
= session
->enabled
;
2272 sessions
[i
].snapshot_mode
= session
->snapshot_mode
;
2278 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2279 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
2281 int cmd_data_pending(struct ltt_session
*session
)
2284 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2285 struct ltt_ust_session
*usess
= session
->ust_session
;
2289 /* Session MUST be stopped to ask for data availability. */
2290 if (session
->enabled
) {
2291 ret
= LTTNG_ERR_SESSION_STARTED
;
2295 if (ksess
&& ksess
->consumer
) {
2296 ret
= consumer_is_data_pending(ksess
->id
, ksess
->consumer
);
2298 /* Data is still being extracted for the kernel. */
2303 if (usess
&& usess
->consumer
) {
2304 ret
= consumer_is_data_pending(usess
->id
, usess
->consumer
);
2306 /* Data is still being extracted for the kernel. */
2311 /* Data is ready to be read by a viewer */
2319 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2321 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2323 int cmd_snapshot_add_output(struct ltt_session
*session
,
2324 struct lttng_snapshot_output
*output
, uint32_t *id
)
2327 struct snapshot_output
*new_output
;
2332 DBG("Cmd snapshot add output for session %s", session
->name
);
2335 * Permission denied to create an output if the session is not
2336 * set in no output mode.
2338 if (session
->output_traces
) {
2339 ret
= LTTNG_ERR_EPERM
;
2343 /* Only one output is allowed until we have the "tee" feature. */
2344 if (session
->snapshot
.nb_output
== 1) {
2345 ret
= LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST
;
2349 new_output
= snapshot_output_alloc();
2351 ret
= LTTNG_ERR_NOMEM
;
2355 ret
= snapshot_output_init(output
->max_size
, output
->name
,
2356 output
->ctrl_url
, output
->data_url
, session
->consumer
, new_output
,
2357 &session
->snapshot
);
2359 if (ret
== -ENOMEM
) {
2360 ret
= LTTNG_ERR_NOMEM
;
2362 ret
= LTTNG_ERR_INVALID
;
2368 snapshot_add_output(&session
->snapshot
, new_output
);
2370 *id
= new_output
->id
;
2377 snapshot_output_destroy(new_output
);
2383 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2385 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2387 int cmd_snapshot_del_output(struct ltt_session
*session
,
2388 struct lttng_snapshot_output
*output
)
2391 struct snapshot_output
*sout
= NULL
;
2399 * Permission denied to create an output if the session is not
2400 * set in no output mode.
2402 if (session
->output_traces
) {
2403 ret
= LTTNG_ERR_EPERM
;
2408 DBG("Cmd snapshot del output id %" PRIu32
" for session %s", output
->id
,
2410 sout
= snapshot_find_output_by_id(output
->id
, &session
->snapshot
);
2411 } else if (*output
->name
!= '\0') {
2412 DBG("Cmd snapshot del output name %s for session %s", output
->name
,
2414 sout
= snapshot_find_output_by_name(output
->name
, &session
->snapshot
);
2417 ret
= LTTNG_ERR_INVALID
;
2421 snapshot_delete_output(&session
->snapshot
, sout
);
2422 snapshot_output_destroy(sout
);
2431 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2433 * If no output is available, outputs is untouched and 0 is returned.
2435 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2437 ssize_t
cmd_snapshot_list_outputs(struct ltt_session
*session
,
2438 struct lttng_snapshot_output
**outputs
)
2441 struct lttng_snapshot_output
*list
;
2442 struct lttng_ht_iter iter
;
2443 struct snapshot_output
*output
;
2448 DBG("Cmd snapshot list outputs for session %s", session
->name
);
2451 * Permission denied to create an output if the session is not
2452 * set in no output mode.
2454 if (session
->output_traces
) {
2455 ret
= LTTNG_ERR_EPERM
;
2459 if (session
->snapshot
.nb_output
== 0) {
2464 list
= zmalloc(session
->snapshot
.nb_output
* sizeof(*list
));
2466 ret
= LTTNG_ERR_NOMEM
;
2470 /* Copy list from session to the new list object. */
2471 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
, &iter
.iter
,
2472 output
, node
.node
) {
2473 assert(output
->consumer
);
2474 list
[idx
].id
= output
->id
;
2475 list
[idx
].max_size
= output
->max_size
;
2476 strncpy(list
[idx
].name
, output
->name
, sizeof(list
[idx
].name
));
2477 if (output
->consumer
->type
== CONSUMER_DST_LOCAL
) {
2478 strncpy(list
[idx
].ctrl_url
, output
->consumer
->dst
.trace_path
,
2479 sizeof(list
[idx
].ctrl_url
));
2482 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.control
,
2483 list
[idx
].ctrl_url
, sizeof(list
[idx
].ctrl_url
));
2485 ret
= LTTNG_ERR_NOMEM
;
2490 ret
= uri_to_str_url(&output
->consumer
->dst
.net
.data
,
2491 list
[idx
].data_url
, sizeof(list
[idx
].data_url
));
2493 ret
= LTTNG_ERR_NOMEM
;
2501 return session
->snapshot
.nb_output
;
2510 * Send relayd sockets from snapshot output to consumer. Ignore request if the
2511 * snapshot output is *not* set with a remote destination.
2513 * Return 0 on success or a LTTNG_ERR code.
2515 static int set_relayd_for_snapshot(struct consumer_output
*consumer
,
2516 struct snapshot_output
*snap_output
, struct ltt_session
*session
)
2519 struct lttng_ht_iter iter
;
2520 struct consumer_socket
*socket
;
2523 assert(snap_output
);
2526 DBG2("Set relayd object from snapshot output");
2528 /* Ignore if snapshot consumer output is not network. */
2529 if (snap_output
->consumer
->type
!= CONSUMER_DST_NET
) {
2534 * For each consumer socket, create and send the relayd object of the
2538 cds_lfht_for_each_entry(snap_output
->consumer
->socks
->ht
, &iter
.iter
,
2539 socket
, node
.node
) {
2540 ret
= send_consumer_relayd_sockets(0, session
->id
,
2541 snap_output
->consumer
, socket
);
2542 if (ret
!= LTTNG_OK
) {
2554 * Record a kernel snapshot.
2556 * Return 0 on success or a LTTNG_ERR code.
2558 static int record_kernel_snapshot(struct ltt_kernel_session
*ksess
,
2559 struct snapshot_output
*output
, struct ltt_session
*session
,
2560 int wait
, int nb_streams
)
2568 /* Get the datetime for the snapshot output directory. */
2569 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", output
->datetime
,
2570 sizeof(output
->datetime
));
2572 ret
= LTTNG_ERR_INVALID
;
2577 * Copy kernel session sockets so we can communicate with the right
2578 * consumer for the snapshot record command.
2580 ret
= consumer_copy_sockets(output
->consumer
, ksess
->consumer
);
2582 ret
= LTTNG_ERR_NOMEM
;
2586 ret
= set_relayd_for_snapshot(ksess
->consumer
, output
, session
);
2587 if (ret
!= LTTNG_OK
) {
2588 goto error_snapshot
;
2591 ret
= kernel_snapshot_record(ksess
, output
, wait
, nb_streams
);
2593 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
2594 if (ret
== -EINVAL
) {
2595 ret
= LTTNG_ERR_INVALID
;
2597 goto error_snapshot
;
2603 /* Clean up copied sockets so this output can use some other later on. */
2604 consumer_destroy_output_sockets(output
->consumer
);
2610 * Record a UST snapshot.
2612 * Return 0 on success or a LTTNG_ERR error code.
2614 static int record_ust_snapshot(struct ltt_ust_session
*usess
,
2615 struct snapshot_output
*output
, struct ltt_session
*session
,
2616 int wait
, int nb_streams
)
2624 /* Get the datetime for the snapshot output directory. */
2625 ret
= utils_get_current_time_str("%Y%m%d-%H%M%S", output
->datetime
,
2626 sizeof(output
->datetime
));
2628 ret
= LTTNG_ERR_INVALID
;
2633 * Copy UST session sockets so we can communicate with the right
2634 * consumer for the snapshot record command.
2636 ret
= consumer_copy_sockets(output
->consumer
, usess
->consumer
);
2638 ret
= LTTNG_ERR_NOMEM
;
2642 ret
= set_relayd_for_snapshot(usess
->consumer
, output
, session
);
2643 if (ret
!= LTTNG_OK
) {
2644 goto error_snapshot
;
2647 ret
= ust_app_snapshot_record(usess
, output
, wait
, nb_streams
);
2649 ret
= LTTNG_ERR_SNAPSHOT_FAIL
;
2650 if (ret
== -EINVAL
) {
2651 ret
= LTTNG_ERR_INVALID
;
2653 goto error_snapshot
;
2659 /* Clean up copied sockets so this output can use some other later on. */
2660 consumer_destroy_output_sockets(output
->consumer
);
2666 * Returns the total number of streams for a session or a negative value
2669 static unsigned int get_total_nb_stream(struct ltt_session
*session
)
2671 unsigned int total_streams
= 0;
2673 if (session
->kernel_session
) {
2674 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2676 total_streams
+= ksess
->stream_count_global
;
2679 if (session
->ust_session
) {
2680 struct ltt_ust_session
*usess
= session
->ust_session
;
2682 total_streams
+= ust_app_get_nb_stream(usess
);
2685 return total_streams
;
2689 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
2691 * The wait parameter is ignored so this call always wait for the snapshot to
2692 * complete before returning.
2694 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2696 int cmd_snapshot_record(struct ltt_session
*session
,
2697 struct lttng_snapshot_output
*output
, int wait
)
2700 unsigned int use_tmp_output
= 0;
2701 struct snapshot_output tmp_output
;
2702 unsigned int nb_streams
, snapshot_success
= 0;
2706 DBG("Cmd snapshot record for session %s", session
->name
);
2709 * Permission denied to create an output if the session is not
2710 * set in no output mode.
2712 if (session
->output_traces
) {
2713 ret
= LTTNG_ERR_EPERM
;
2717 /* The session needs to be started at least once. */
2718 if (!session
->started
) {
2719 ret
= LTTNG_ERR_START_SESSION_ONCE
;
2723 /* Use temporary output for the session. */
2724 if (output
&& *output
->ctrl_url
!= '\0') {
2725 ret
= snapshot_output_init(output
->max_size
, output
->name
,
2726 output
->ctrl_url
, output
->data_url
, session
->consumer
,
2729 if (ret
== -ENOMEM
) {
2730 ret
= LTTNG_ERR_NOMEM
;
2732 ret
= LTTNG_ERR_INVALID
;
2736 /* Use the global session count for the temporary snapshot. */
2737 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
2742 * Get the total number of stream of that session which is used by the
2743 * maximum size of the snapshot feature.
2745 nb_streams
= get_total_nb_stream(session
);
2747 if (session
->kernel_session
) {
2748 struct ltt_kernel_session
*ksess
= session
->kernel_session
;
2750 if (use_tmp_output
) {
2751 ret
= record_kernel_snapshot(ksess
, &tmp_output
, session
,
2753 if (ret
!= LTTNG_OK
) {
2756 snapshot_success
= 1;
2758 struct snapshot_output
*sout
;
2759 struct lttng_ht_iter iter
;
2762 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
2763 &iter
.iter
, sout
, node
.node
) {
2765 * Make a local copy of the output and assign the possible
2766 * temporary value given by the caller.
2768 memset(&tmp_output
, 0, sizeof(tmp_output
));
2769 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
2771 /* Use temporary max size. */
2772 if (output
->max_size
!= (uint64_t) -1ULL) {
2773 tmp_output
.max_size
= output
->max_size
;
2776 /* Use temporary name. */
2777 if (*output
->name
!= '\0') {
2778 strncpy(tmp_output
.name
, output
->name
,
2779 sizeof(tmp_output
.name
));
2782 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
2784 ret
= record_kernel_snapshot(ksess
, &tmp_output
,
2785 session
, wait
, nb_streams
);
2786 if (ret
!= LTTNG_OK
) {
2790 snapshot_success
= 1;
2796 if (session
->ust_session
) {
2797 struct ltt_ust_session
*usess
= session
->ust_session
;
2799 if (use_tmp_output
) {
2800 ret
= record_ust_snapshot(usess
, &tmp_output
, session
,
2802 if (ret
!= LTTNG_OK
) {
2805 snapshot_success
= 1;
2807 struct snapshot_output
*sout
;
2808 struct lttng_ht_iter iter
;
2811 cds_lfht_for_each_entry(session
->snapshot
.output_ht
->ht
,
2812 &iter
.iter
, sout
, node
.node
) {
2814 * Make a local copy of the output and assign the possible
2815 * temporary value given by the caller.
2817 memset(&tmp_output
, 0, sizeof(tmp_output
));
2818 memcpy(&tmp_output
, sout
, sizeof(tmp_output
));
2820 /* Use temporary max size. */
2821 if (output
->max_size
!= (uint64_t) -1ULL) {
2822 tmp_output
.max_size
= output
->max_size
;
2825 /* Use temporary name. */
2826 if (*output
->name
!= '\0') {
2827 strncpy(tmp_output
.name
, output
->name
,
2828 sizeof(tmp_output
.name
));
2831 tmp_output
.nb_snapshot
= session
->snapshot
.nb_snapshot
;
2833 ret
= record_ust_snapshot(usess
, &tmp_output
, session
,
2835 if (ret
!= LTTNG_OK
) {
2839 snapshot_success
= 1;
2845 if (snapshot_success
) {
2846 session
->snapshot
.nb_snapshot
++;
2854 * Init command subsystem.
2859 * Set network sequence index to 1 for streams to match a relayd
2860 * socket on the consumer side.
2862 pthread_mutex_lock(&relayd_net_seq_idx_lock
);
2863 relayd_net_seq_idx
= 1;
2864 pthread_mutex_unlock(&relayd_net_seq_idx_lock
);
2866 DBG("Command subsystem initialized");