2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <common/compat/getenv.h>
25 #include <common/unix.h>
26 #include <common/utils.h>
27 #include <lttng/userspace-probe-internal.h>
28 #include <lttng/event-internal.h>
29 #include <lttng/session-internal.h>
30 #include <lttng/session-descriptor-internal.h>
33 #include "lttng-sessiond.h"
37 #include "health-sessiond.h"
38 #include "testpoint.h"
40 #include "manage-consumer.h"
44 static struct thread_state
{
49 static void set_thread_status(bool running
)
51 DBG("Marking client thread's state as %s", running
? "running" : "error");
52 thread_state
.running
= running
;
53 sem_post(&thread_state
.ready
);
56 static bool wait_thread_status(void)
58 DBG("Waiting for client thread to be ready");
59 sem_wait(&thread_state
.ready
);
60 if (thread_state
.running
) {
61 DBG("Client thread is ready");
63 ERR("Initialization of client thread failed");
66 return thread_state
.running
;
70 * Setup the outgoing data buffer for the response (llm) by allocating the
71 * right amount of memory and copying the original information from the lsm
74 * Return 0 on success, negative value on error.
76 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
,
77 const void *payload_buf
, size_t payload_len
,
78 const void *cmd_header_buf
, size_t cmd_header_len
)
81 const size_t header_len
= sizeof(struct lttcomm_lttng_msg
);
82 const size_t cmd_header_offset
= header_len
;
83 const size_t payload_offset
= cmd_header_offset
+ cmd_header_len
;
84 const size_t total_msg_size
= header_len
+ cmd_header_len
+ payload_len
;
87 cmd_ctx
->llm
= zmalloc(total_msg_size
);
89 if (cmd_ctx
->llm
== NULL
) {
95 /* Copy common data */
96 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
97 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
98 cmd_ctx
->llm
->cmd_header_size
= cmd_header_len
;
99 cmd_ctx
->llm
->data_size
= payload_len
;
100 cmd_ctx
->lttng_msg_size
= total_msg_size
;
102 /* Copy command header */
103 if (cmd_header_len
) {
104 memcpy(((uint8_t *) cmd_ctx
->llm
) + cmd_header_offset
, cmd_header_buf
,
110 memcpy(((uint8_t *) cmd_ctx
->llm
) + payload_offset
, payload_buf
,
119 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
120 * exec or it will fail.
122 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
124 return launch_consumer_management_thread(consumer_data
) ? 0 : -1;
128 * Fork and exec a consumer daemon (consumerd).
130 * Return pid if successful else -1.
132 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
136 const char *consumer_to_use
;
137 const char *verbosity
;
140 DBG("Spawning consumerd");
147 if (config
.verbose_consumer
) {
148 verbosity
= "--verbose";
149 } else if (lttng_opt_quiet
) {
150 verbosity
= "--quiet";
155 switch (consumer_data
->type
) {
156 case LTTNG_CONSUMER_KERNEL
:
158 * Find out which consumerd to execute. We will first try the
159 * 64-bit path, then the sessiond's installation directory, and
160 * fallback on the 32-bit one,
162 DBG3("Looking for a kernel consumer at these locations:");
163 DBG3(" 1) %s", config
.consumerd64_bin_path
.value
? : "NULL");
164 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, DEFAULT_CONSUMERD_FILE
);
165 DBG3(" 3) %s", config
.consumerd32_bin_path
.value
? : "NULL");
166 if (stat(config
.consumerd64_bin_path
.value
, &st
) == 0) {
167 DBG3("Found location #1");
168 consumer_to_use
= config
.consumerd64_bin_path
.value
;
169 } else if (stat(INSTALL_BIN_PATH
"/" DEFAULT_CONSUMERD_FILE
, &st
) == 0) {
170 DBG3("Found location #2");
171 consumer_to_use
= INSTALL_BIN_PATH
"/" DEFAULT_CONSUMERD_FILE
;
172 } else if (config
.consumerd32_bin_path
.value
&&
173 stat(config
.consumerd32_bin_path
.value
, &st
) == 0) {
174 DBG3("Found location #3");
175 consumer_to_use
= config
.consumerd32_bin_path
.value
;
177 DBG("Could not find any valid consumerd executable");
181 DBG("Using kernel consumer at: %s", consumer_to_use
);
182 (void) execl(consumer_to_use
,
183 "lttng-consumerd", verbosity
, "-k",
184 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
185 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
186 "--group", config
.tracing_group_name
.value
,
189 case LTTNG_CONSUMER64_UST
:
191 if (config
.consumerd64_lib_dir
.value
) {
196 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
200 tmplen
= strlen(config
.consumerd64_lib_dir
.value
) + 1 /* : */ + strlen(tmp
);
201 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
206 strcat(tmpnew
, config
.consumerd64_lib_dir
.value
);
207 if (tmp
[0] != '\0') {
211 ret
= setenv("LD_LIBRARY_PATH", tmpnew
, 1);
218 DBG("Using 64-bit UST consumer at: %s", config
.consumerd64_bin_path
.value
);
219 (void) execl(config
.consumerd64_bin_path
.value
, "lttng-consumerd", verbosity
, "-u",
220 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
221 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
222 "--group", config
.tracing_group_name
.value
,
226 case LTTNG_CONSUMER32_UST
:
228 if (config
.consumerd32_lib_dir
.value
) {
233 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
237 tmplen
= strlen(config
.consumerd32_lib_dir
.value
) + 1 /* : */ + strlen(tmp
);
238 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
243 strcat(tmpnew
, config
.consumerd32_lib_dir
.value
);
244 if (tmp
[0] != '\0') {
248 ret
= setenv("LD_LIBRARY_PATH", tmpnew
, 1);
255 DBG("Using 32-bit UST consumer at: %s", config
.consumerd32_bin_path
.value
);
256 (void) execl(config
.consumerd32_bin_path
.value
, "lttng-consumerd", verbosity
, "-u",
257 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
258 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
259 "--group", config
.tracing_group_name
.value
,
264 ERR("unknown consumer type");
268 PERROR("Consumer execl()");
270 /* Reaching this point, we got a failure on our execl(). */
272 } else if (pid
> 0) {
275 PERROR("start consumer fork");
283 * Spawn the consumerd daemon and session daemon thread.
285 static int start_consumerd(struct consumer_data
*consumer_data
)
290 * Set the listen() state on the socket since there is a possible race
291 * between the exec() of the consumer daemon and this call if place in the
292 * consumer thread. See bug #366 for more details.
294 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
299 pthread_mutex_lock(&consumer_data
->pid_mutex
);
300 if (consumer_data
->pid
!= 0) {
301 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
305 ret
= spawn_consumerd(consumer_data
);
307 ERR("Spawning consumerd failed");
308 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
312 /* Setting up the consumer_data pid */
313 consumer_data
->pid
= ret
;
314 DBG2("Consumer pid %d", consumer_data
->pid
);
315 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
317 DBG2("Spawning consumer control thread");
318 ret
= spawn_consumer_thread(consumer_data
);
320 ERR("Fatal error spawning consumer control thread");
328 /* Cleanup already created sockets on error. */
329 if (consumer_data
->err_sock
>= 0) {
332 err
= close(consumer_data
->err_sock
);
334 PERROR("close consumer data error socket");
341 * Copy consumer output from the tracing session to the domain session. The
342 * function also applies the right modification on a per domain basis for the
343 * trace files destination directory.
345 * Should *NOT* be called with RCU read-side lock held.
347 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
350 const char *dir_name
;
351 struct consumer_output
*consumer
;
354 assert(session
->consumer
);
357 case LTTNG_DOMAIN_KERNEL
:
358 DBG3("Copying tracing session consumer output in kernel session");
360 * XXX: We should audit the session creation and what this function
361 * does "extra" in order to avoid a destroy since this function is used
362 * in the domain session creation (kernel and ust) only. Same for UST
365 if (session
->kernel_session
->consumer
) {
366 consumer_output_put(session
->kernel_session
->consumer
);
368 session
->kernel_session
->consumer
=
369 consumer_copy_output(session
->consumer
);
370 /* Ease our life a bit for the next part */
371 consumer
= session
->kernel_session
->consumer
;
372 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
374 case LTTNG_DOMAIN_JUL
:
375 case LTTNG_DOMAIN_LOG4J
:
376 case LTTNG_DOMAIN_PYTHON
:
377 case LTTNG_DOMAIN_UST
:
378 DBG3("Copying tracing session consumer output in UST session");
379 if (session
->ust_session
->consumer
) {
380 consumer_output_put(session
->ust_session
->consumer
);
382 session
->ust_session
->consumer
=
383 consumer_copy_output(session
->consumer
);
384 /* Ease our life a bit for the next part */
385 consumer
= session
->ust_session
->consumer
;
386 dir_name
= DEFAULT_UST_TRACE_DIR
;
389 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
393 /* Append correct directory to subdir */
394 ret
= lttng_strncpy(consumer
->domain_subdir
, dir_name
,
395 sizeof(consumer
->domain_subdir
));
400 DBG3("Copy session consumer subdir %s", consumer
->domain_subdir
);
408 * Create an UST session and add it to the session ust list.
410 * Should *NOT* be called with RCU read-side lock held.
412 static int create_ust_session(struct ltt_session
*session
,
413 struct lttng_domain
*domain
)
416 struct ltt_ust_session
*lus
= NULL
;
420 assert(session
->consumer
);
422 switch (domain
->type
) {
423 case LTTNG_DOMAIN_JUL
:
424 case LTTNG_DOMAIN_LOG4J
:
425 case LTTNG_DOMAIN_PYTHON
:
426 case LTTNG_DOMAIN_UST
:
429 ERR("Unknown UST domain on create session %d", domain
->type
);
430 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
434 DBG("Creating UST session");
436 lus
= trace_ust_create_session(session
->id
);
438 ret
= LTTNG_ERR_UST_SESS_FAIL
;
442 lus
->uid
= session
->uid
;
443 lus
->gid
= session
->gid
;
444 lus
->output_traces
= session
->output_traces
;
445 lus
->snapshot_mode
= session
->snapshot_mode
;
446 lus
->live_timer_interval
= session
->live_timer
;
447 session
->ust_session
= lus
;
448 if (session
->shm_path
[0]) {
449 strncpy(lus
->root_shm_path
, session
->shm_path
,
450 sizeof(lus
->root_shm_path
));
451 lus
->root_shm_path
[sizeof(lus
->root_shm_path
) - 1] = '\0';
452 strncpy(lus
->shm_path
, session
->shm_path
,
453 sizeof(lus
->shm_path
));
454 lus
->shm_path
[sizeof(lus
->shm_path
) - 1] = '\0';
455 strncat(lus
->shm_path
, "/ust",
456 sizeof(lus
->shm_path
) - strlen(lus
->shm_path
) - 1);
458 /* Copy session output to the newly created UST session */
459 ret
= copy_session_consumer(domain
->type
, session
);
460 if (ret
!= LTTNG_OK
) {
468 session
->ust_session
= NULL
;
473 * Create a kernel tracer session then create the default channel.
475 static int create_kernel_session(struct ltt_session
*session
)
479 DBG("Creating kernel session");
481 ret
= kernel_create_session(session
, kernel_tracer_fd
);
483 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
487 /* Code flow safety */
488 assert(session
->kernel_session
);
490 /* Copy session output to the newly created Kernel session */
491 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
492 if (ret
!= LTTNG_OK
) {
496 session
->kernel_session
->uid
= session
->uid
;
497 session
->kernel_session
->gid
= session
->gid
;
498 session
->kernel_session
->output_traces
= session
->output_traces
;
499 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
504 trace_kernel_destroy_session(session
->kernel_session
);
505 session
->kernel_session
= NULL
;
511 * Count number of session permitted by uid/gid.
513 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
516 struct ltt_session
*session
;
517 const struct ltt_session_list
*session_list
= session_get_list();
519 DBG("Counting number of available session for UID %d GID %d",
521 cds_list_for_each_entry(session
, &session_list
->head
, list
) {
522 if (!session_get(session
)) {
525 session_lock(session
);
526 /* Only count the sessions the user can control. */
527 if (session_access_ok(session
, uid
, gid
) &&
528 !session
->destroyed
) {
531 session_unlock(session
);
532 session_put(session
);
537 static int receive_userspace_probe(struct command_ctx
*cmd_ctx
, int sock
,
538 int *sock_error
, struct lttng_event
*event
)
541 struct lttng_userspace_probe_location
*probe_location
;
542 const struct lttng_userspace_probe_location_lookup_method
*lookup
= NULL
;
543 struct lttng_dynamic_buffer probe_location_buffer
;
544 struct lttng_buffer_view buffer_view
;
547 * Create a buffer to store the serialized version of the probe
550 lttng_dynamic_buffer_init(&probe_location_buffer
);
551 ret
= lttng_dynamic_buffer_set_size(&probe_location_buffer
,
552 cmd_ctx
->lsm
->u
.enable
.userspace_probe_location_len
);
554 ret
= LTTNG_ERR_NOMEM
;
559 * Receive the probe location.
561 ret
= lttcomm_recv_unix_sock(sock
, probe_location_buffer
.data
,
562 probe_location_buffer
.size
);
564 DBG("Nothing recv() from client var len data... continuing");
566 lttng_dynamic_buffer_reset(&probe_location_buffer
);
567 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
571 buffer_view
= lttng_buffer_view_from_dynamic_buffer(
572 &probe_location_buffer
, 0, probe_location_buffer
.size
);
575 * Extract the probe location from the serialized version.
577 ret
= lttng_userspace_probe_location_create_from_buffer(
578 &buffer_view
, &probe_location
);
580 WARN("Failed to create a userspace probe location from the received buffer");
581 lttng_dynamic_buffer_reset( &probe_location_buffer
);
582 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
587 * Receive the file descriptor to the target binary from the client.
589 DBG("Receiving userspace probe target FD from client ...");
590 ret
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
592 DBG("Nothing recv() from client userspace probe fd... continuing");
594 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
599 * Set the file descriptor received from the client through the unix
600 * socket in the probe location.
602 lookup
= lttng_userspace_probe_location_get_lookup_method(probe_location
);
604 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
609 * From the kernel tracer's perspective, all userspace probe event types
610 * are all the same: a file and an offset.
612 switch (lttng_userspace_probe_location_lookup_method_get_type(lookup
)) {
613 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
:
614 ret
= lttng_userspace_probe_location_function_set_binary_fd(
617 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
:
618 ret
= lttng_userspace_probe_location_tracepoint_set_binary_fd(
622 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
627 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
631 /* Attach the probe location to the event. */
632 ret
= lttng_event_set_userspace_probe_location(event
, probe_location
);
634 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
638 lttng_dynamic_buffer_reset(&probe_location_buffer
);
644 * Version of setup_lttng_msg() without command header.
646 static int setup_lttng_msg_no_cmd_header(struct command_ctx
*cmd_ctx
,
647 void *payload_buf
, size_t payload_len
)
649 return setup_lttng_msg(cmd_ctx
, payload_buf
, payload_len
, NULL
, 0);
653 * Free memory of a command context structure.
655 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
657 DBG("Clean command context structure");
659 if ((*cmd_ctx
)->llm
) {
660 free((*cmd_ctx
)->llm
);
662 if ((*cmd_ctx
)->lsm
) {
663 free((*cmd_ctx
)->lsm
);
671 * Check if the current kernel tracer supports the session rotation feature.
672 * Return 1 if it does, 0 otherwise.
674 static int check_rotate_compatible(void)
678 if (kernel_tracer_version
.major
!= 2 || kernel_tracer_version
.minor
< 11) {
679 DBG("Kernel tracer version is not compatible with the rotation feature");
687 * Send data on a unix socket using the liblttsessiondcomm API.
689 * Return lttcomm error code.
691 static int send_unix_sock(int sock
, void *buf
, size_t len
)
693 /* Check valid length */
698 return lttcomm_send_unix_sock(sock
, buf
, len
);
702 * Process the command requested by the lttng client within the command
703 * context structure. This function make sure that the return structure (llm)
704 * is set and ready for transmission before returning.
706 * Return any error encountered or 0 for success.
708 * "sock" is only used for special-case var. len data.
710 * Should *NOT* be called with RCU read-side lock held.
712 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
716 int need_tracing_session
= 1;
719 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
721 assert(!rcu_read_ongoing());
725 switch (cmd_ctx
->lsm
->cmd_type
) {
726 case LTTNG_CREATE_SESSION_EXT
:
727 case LTTNG_DESTROY_SESSION
:
728 case LTTNG_LIST_SESSIONS
:
729 case LTTNG_LIST_DOMAINS
:
730 case LTTNG_START_TRACE
:
731 case LTTNG_STOP_TRACE
:
732 case LTTNG_DATA_PENDING
:
733 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
734 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
735 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
736 case LTTNG_SNAPSHOT_RECORD
:
737 case LTTNG_SAVE_SESSION
:
738 case LTTNG_SET_SESSION_SHM_PATH
:
739 case LTTNG_REGENERATE_METADATA
:
740 case LTTNG_REGENERATE_STATEDUMP
:
741 case LTTNG_REGISTER_TRIGGER
:
742 case LTTNG_UNREGISTER_TRIGGER
:
743 case LTTNG_ROTATE_SESSION
:
744 case LTTNG_ROTATION_GET_INFO
:
745 case LTTNG_ROTATION_SET_SCHEDULE
:
746 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES
:
753 if (config
.no_kernel
&& need_domain
754 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
756 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
758 ret
= LTTNG_ERR_KERN_NA
;
763 /* Deny register consumer if we already have a spawned consumer. */
764 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
765 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
766 if (kconsumer_data
.pid
> 0) {
767 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
768 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
771 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
775 * Check for command that don't needs to allocate a returned payload. We do
776 * this here so we don't have to make the call for no payload at each
779 switch(cmd_ctx
->lsm
->cmd_type
) {
780 case LTTNG_LIST_SESSIONS
:
781 case LTTNG_LIST_TRACEPOINTS
:
782 case LTTNG_LIST_TRACEPOINT_FIELDS
:
783 case LTTNG_LIST_DOMAINS
:
784 case LTTNG_LIST_CHANNELS
:
785 case LTTNG_LIST_EVENTS
:
786 case LTTNG_LIST_SYSCALLS
:
787 case LTTNG_LIST_TRACKER_PIDS
:
788 case LTTNG_DATA_PENDING
:
789 case LTTNG_ROTATE_SESSION
:
790 case LTTNG_ROTATION_GET_INFO
:
791 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES
:
794 /* Setup lttng message with no payload */
795 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, NULL
, 0);
797 /* This label does not try to unlock the session */
798 goto init_setup_error
;
802 /* Commands that DO NOT need a session. */
803 switch (cmd_ctx
->lsm
->cmd_type
) {
804 case LTTNG_CREATE_SESSION_EXT
:
805 case LTTNG_LIST_SESSIONS
:
806 case LTTNG_LIST_TRACEPOINTS
:
807 case LTTNG_LIST_SYSCALLS
:
808 case LTTNG_LIST_TRACEPOINT_FIELDS
:
809 case LTTNG_SAVE_SESSION
:
810 case LTTNG_REGISTER_TRIGGER
:
811 case LTTNG_UNREGISTER_TRIGGER
:
812 need_tracing_session
= 0;
815 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
817 * We keep the session list lock across _all_ commands
818 * for now, because the per-session lock does not
819 * handle teardown properly.
822 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
823 if (cmd_ctx
->session
== NULL
) {
824 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
827 /* Acquire lock for the session */
828 session_lock(cmd_ctx
->session
);
834 * Commands that need a valid session but should NOT create one if none
835 * exists. Instead of creating one and destroying it when the command is
836 * handled, process that right before so we save some round trip in useless
839 switch (cmd_ctx
->lsm
->cmd_type
) {
840 case LTTNG_DISABLE_CHANNEL
:
841 case LTTNG_DISABLE_EVENT
:
842 switch (cmd_ctx
->lsm
->domain
.type
) {
843 case LTTNG_DOMAIN_KERNEL
:
844 if (!cmd_ctx
->session
->kernel_session
) {
845 ret
= LTTNG_ERR_NO_CHANNEL
;
849 case LTTNG_DOMAIN_JUL
:
850 case LTTNG_DOMAIN_LOG4J
:
851 case LTTNG_DOMAIN_PYTHON
:
852 case LTTNG_DOMAIN_UST
:
853 if (!cmd_ctx
->session
->ust_session
) {
854 ret
= LTTNG_ERR_NO_CHANNEL
;
859 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
871 * Check domain type for specific "pre-action".
873 switch (cmd_ctx
->lsm
->domain
.type
) {
874 case LTTNG_DOMAIN_KERNEL
:
876 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
880 /* Consumer is in an ERROR state. Report back to client */
881 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
882 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
886 /* Need a session for kernel command */
887 if (need_tracing_session
) {
888 if (cmd_ctx
->session
->kernel_session
== NULL
) {
889 ret
= create_kernel_session(cmd_ctx
->session
);
890 if (ret
!= LTTNG_OK
) {
891 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
896 /* Start the kernel consumer daemon */
897 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
898 if (kconsumer_data
.pid
== 0 &&
899 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
900 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
901 ret
= start_consumerd(&kconsumer_data
);
903 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
906 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
908 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
912 * The consumer was just spawned so we need to add the socket to
913 * the consumer output of the session if exist.
915 ret
= consumer_create_socket(&kconsumer_data
,
916 cmd_ctx
->session
->kernel_session
->consumer
);
923 case LTTNG_DOMAIN_JUL
:
924 case LTTNG_DOMAIN_LOG4J
:
925 case LTTNG_DOMAIN_PYTHON
:
926 case LTTNG_DOMAIN_UST
:
928 if (!ust_app_supported()) {
929 ret
= LTTNG_ERR_NO_UST
;
932 /* Consumer is in an ERROR state. Report back to client */
933 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
934 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
938 if (need_tracing_session
) {
939 /* Create UST session if none exist. */
940 if (cmd_ctx
->session
->ust_session
== NULL
) {
941 ret
= create_ust_session(cmd_ctx
->session
,
942 &cmd_ctx
->lsm
->domain
);
943 if (ret
!= LTTNG_OK
) {
948 /* Start the UST consumer daemons */
950 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
951 if (config
.consumerd64_bin_path
.value
&&
952 ustconsumer64_data
.pid
== 0 &&
953 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
954 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
955 ret
= start_consumerd(&ustconsumer64_data
);
957 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
958 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
962 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
963 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
965 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
969 * Setup socket for consumer 64 bit. No need for atomic access
970 * since it was set above and can ONLY be set in this thread.
972 ret
= consumer_create_socket(&ustconsumer64_data
,
973 cmd_ctx
->session
->ust_session
->consumer
);
979 pthread_mutex_lock(&ustconsumer32_data
.pid_mutex
);
980 if (config
.consumerd32_bin_path
.value
&&
981 ustconsumer32_data
.pid
== 0 &&
982 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
983 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
984 ret
= start_consumerd(&ustconsumer32_data
);
986 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
987 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
991 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
992 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
994 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
998 * Setup socket for consumer 32 bit. No need for atomic access
999 * since it was set above and can ONLY be set in this thread.
1001 ret
= consumer_create_socket(&ustconsumer32_data
,
1002 cmd_ctx
->session
->ust_session
->consumer
);
1014 /* Validate consumer daemon state when start/stop trace command */
1015 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
1016 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
1017 switch (cmd_ctx
->lsm
->domain
.type
) {
1018 case LTTNG_DOMAIN_NONE
:
1020 case LTTNG_DOMAIN_JUL
:
1021 case LTTNG_DOMAIN_LOG4J
:
1022 case LTTNG_DOMAIN_PYTHON
:
1023 case LTTNG_DOMAIN_UST
:
1024 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
1025 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
1029 case LTTNG_DOMAIN_KERNEL
:
1030 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
1031 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
1036 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1042 * Check that the UID or GID match that of the tracing session.
1043 * The root user can interact with all sessions.
1045 if (need_tracing_session
) {
1046 if (!session_access_ok(cmd_ctx
->session
,
1047 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
1048 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
)) ||
1049 cmd_ctx
->session
->destroyed
) {
1050 ret
= LTTNG_ERR_EPERM
;
1056 * Send relayd information to consumer as soon as we have a domain and a
1059 if (cmd_ctx
->session
&& need_domain
) {
1061 * Setup relayd if not done yet. If the relayd information was already
1062 * sent to the consumer, this call will gracefully return.
1064 ret
= cmd_setup_relayd(cmd_ctx
->session
);
1065 if (ret
!= LTTNG_OK
) {
1070 /* Process by command type */
1071 switch (cmd_ctx
->lsm
->cmd_type
) {
1072 case LTTNG_ADD_CONTEXT
:
1075 * An LTTNG_ADD_CONTEXT command might have a supplementary
1076 * payload if the context being added is an application context.
1078 if (cmd_ctx
->lsm
->u
.context
.ctx
.ctx
==
1079 LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
1080 char *provider_name
= NULL
, *context_name
= NULL
;
1081 size_t provider_name_len
=
1082 cmd_ctx
->lsm
->u
.context
.provider_name_len
;
1083 size_t context_name_len
=
1084 cmd_ctx
->lsm
->u
.context
.context_name_len
;
1086 if (provider_name_len
== 0 || context_name_len
== 0) {
1088 * Application provider and context names MUST
1091 ret
= -LTTNG_ERR_INVALID
;
1095 provider_name
= zmalloc(provider_name_len
+ 1);
1096 if (!provider_name
) {
1097 ret
= -LTTNG_ERR_NOMEM
;
1100 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.provider_name
=
1103 context_name
= zmalloc(context_name_len
+ 1);
1104 if (!context_name
) {
1105 ret
= -LTTNG_ERR_NOMEM
;
1106 goto error_add_context
;
1108 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.ctx_name
=
1111 ret
= lttcomm_recv_unix_sock(sock
, provider_name
,
1114 goto error_add_context
;
1117 ret
= lttcomm_recv_unix_sock(sock
, context_name
,
1120 goto error_add_context
;
1125 * cmd_add_context assumes ownership of the provider and context
1128 ret
= cmd_add_context(cmd_ctx
->session
,
1129 cmd_ctx
->lsm
->domain
.type
,
1130 cmd_ctx
->lsm
->u
.context
.channel_name
,
1131 &cmd_ctx
->lsm
->u
.context
.ctx
,
1132 kernel_poll_pipe
[1]);
1134 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.provider_name
= NULL
;
1135 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.ctx_name
= NULL
;
1137 free(cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.provider_name
);
1138 free(cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.ctx_name
);
1144 case LTTNG_DISABLE_CHANNEL
:
1146 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
1147 cmd_ctx
->lsm
->u
.disable
.channel_name
);
1150 case LTTNG_DISABLE_EVENT
:
1154 * FIXME: handle filter; for now we just receive the filter's
1155 * bytecode along with the filter expression which are sent by
1156 * liblttng-ctl and discard them.
1158 * This fixes an issue where the client may block while sending
1159 * the filter payload and encounter an error because the session
1160 * daemon closes the socket without ever handling this data.
1162 size_t count
= cmd_ctx
->lsm
->u
.disable
.expression_len
+
1163 cmd_ctx
->lsm
->u
.disable
.bytecode_len
;
1166 char data
[LTTNG_FILTER_MAX_LEN
];
1168 DBG("Discarding disable event command payload of size %zu", count
);
1170 ret
= lttcomm_recv_unix_sock(sock
, data
,
1171 count
> sizeof(data
) ? sizeof(data
) : count
);
1176 count
-= (size_t) ret
;
1179 /* FIXME: passing packed structure to non-packed pointer */
1180 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
1181 cmd_ctx
->lsm
->u
.disable
.channel_name
,
1182 &cmd_ctx
->lsm
->u
.disable
.event
);
1185 case LTTNG_ENABLE_CHANNEL
:
1187 cmd_ctx
->lsm
->u
.channel
.chan
.attr
.extended
.ptr
=
1188 (struct lttng_channel_extended
*) &cmd_ctx
->lsm
->u
.channel
.extended
;
1189 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
1190 &cmd_ctx
->lsm
->u
.channel
.chan
,
1191 kernel_poll_pipe
[1]);
1194 case LTTNG_TRACK_PID
:
1196 ret
= cmd_track_pid(cmd_ctx
->session
,
1197 cmd_ctx
->lsm
->domain
.type
,
1198 cmd_ctx
->lsm
->u
.pid_tracker
.pid
);
1201 case LTTNG_UNTRACK_PID
:
1203 ret
= cmd_untrack_pid(cmd_ctx
->session
,
1204 cmd_ctx
->lsm
->domain
.type
,
1205 cmd_ctx
->lsm
->u
.pid_tracker
.pid
);
1208 case LTTNG_ENABLE_EVENT
:
1210 struct lttng_event
*ev
= NULL
;
1211 struct lttng_event_exclusion
*exclusion
= NULL
;
1212 struct lttng_filter_bytecode
*bytecode
= NULL
;
1213 char *filter_expression
= NULL
;
1215 /* Handle exclusion events and receive it from the client. */
1216 if (cmd_ctx
->lsm
->u
.enable
.exclusion_count
> 0) {
1217 size_t count
= cmd_ctx
->lsm
->u
.enable
.exclusion_count
;
1219 exclusion
= zmalloc(sizeof(struct lttng_event_exclusion
) +
1220 (count
* LTTNG_SYMBOL_NAME_LEN
));
1222 ret
= LTTNG_ERR_EXCLUSION_NOMEM
;
1226 DBG("Receiving var len exclusion event list from client ...");
1227 exclusion
->count
= count
;
1228 ret
= lttcomm_recv_unix_sock(sock
, exclusion
->names
,
1229 count
* LTTNG_SYMBOL_NAME_LEN
);
1231 DBG("Nothing recv() from client var len data... continuing");
1234 ret
= LTTNG_ERR_EXCLUSION_INVAL
;
1239 /* Get filter expression from client. */
1240 if (cmd_ctx
->lsm
->u
.enable
.expression_len
> 0) {
1241 size_t expression_len
=
1242 cmd_ctx
->lsm
->u
.enable
.expression_len
;
1244 if (expression_len
> LTTNG_FILTER_MAX_LEN
) {
1245 ret
= LTTNG_ERR_FILTER_INVAL
;
1250 filter_expression
= zmalloc(expression_len
);
1251 if (!filter_expression
) {
1253 ret
= LTTNG_ERR_FILTER_NOMEM
;
1257 /* Receive var. len. data */
1258 DBG("Receiving var len filter's expression from client ...");
1259 ret
= lttcomm_recv_unix_sock(sock
, filter_expression
,
1262 DBG("Nothing recv() from client var len data... continuing");
1264 free(filter_expression
);
1266 ret
= LTTNG_ERR_FILTER_INVAL
;
1271 /* Handle filter and get bytecode from client. */
1272 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
> 0) {
1273 size_t bytecode_len
= cmd_ctx
->lsm
->u
.enable
.bytecode_len
;
1275 if (bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
1276 ret
= LTTNG_ERR_FILTER_INVAL
;
1277 free(filter_expression
);
1282 bytecode
= zmalloc(bytecode_len
);
1284 free(filter_expression
);
1286 ret
= LTTNG_ERR_FILTER_NOMEM
;
1290 /* Receive var. len. data */
1291 DBG("Receiving var len filter's bytecode from client ...");
1292 ret
= lttcomm_recv_unix_sock(sock
, bytecode
, bytecode_len
);
1294 DBG("Nothing recv() from client var len data... continuing");
1296 free(filter_expression
);
1299 ret
= LTTNG_ERR_FILTER_INVAL
;
1303 if ((bytecode
->len
+ sizeof(*bytecode
)) != bytecode_len
) {
1304 free(filter_expression
);
1307 ret
= LTTNG_ERR_FILTER_INVAL
;
1312 ev
= lttng_event_copy(&cmd_ctx
->lsm
->u
.enable
.event
);
1314 DBG("Failed to copy event: %s",
1315 cmd_ctx
->lsm
->u
.enable
.event
.name
);
1316 free(filter_expression
);
1319 ret
= LTTNG_ERR_NOMEM
;
1324 if (cmd_ctx
->lsm
->u
.enable
.userspace_probe_location_len
> 0) {
1325 /* Expect a userspace probe description. */
1326 ret
= receive_userspace_probe(cmd_ctx
, sock
, sock_error
, ev
);
1328 free(filter_expression
);
1331 lttng_event_destroy(ev
);
1336 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
1337 cmd_ctx
->lsm
->u
.enable
.channel_name
,
1339 filter_expression
, bytecode
, exclusion
,
1340 kernel_poll_pipe
[1]);
1341 lttng_event_destroy(ev
);
1344 case LTTNG_LIST_TRACEPOINTS
:
1346 struct lttng_event
*events
;
1349 session_lock_list();
1350 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
1351 session_unlock_list();
1352 if (nb_events
< 0) {
1353 /* Return value is a negative lttng_error_code. */
1359 * Setup lttng message with payload size set to the event list size in
1360 * bytes and then copy list into the llm payload.
1362 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, events
,
1363 sizeof(struct lttng_event
) * nb_events
);
1373 case LTTNG_LIST_TRACEPOINT_FIELDS
:
1375 struct lttng_event_field
*fields
;
1378 session_lock_list();
1379 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
1381 session_unlock_list();
1382 if (nb_fields
< 0) {
1383 /* Return value is a negative lttng_error_code. */
1389 * Setup lttng message with payload size set to the event list size in
1390 * bytes and then copy list into the llm payload.
1392 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, fields
,
1393 sizeof(struct lttng_event_field
) * nb_fields
);
1403 case LTTNG_LIST_SYSCALLS
:
1405 struct lttng_event
*events
;
1408 nb_events
= cmd_list_syscalls(&events
);
1409 if (nb_events
< 0) {
1410 /* Return value is a negative lttng_error_code. */
1416 * Setup lttng message with payload size set to the event list size in
1417 * bytes and then copy list into the llm payload.
1419 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, events
,
1420 sizeof(struct lttng_event
) * nb_events
);
1430 case LTTNG_LIST_TRACKER_PIDS
:
1432 int32_t *pids
= NULL
;
1435 nr_pids
= cmd_list_tracker_pids(cmd_ctx
->session
,
1436 cmd_ctx
->lsm
->domain
.type
, &pids
);
1438 /* Return value is a negative lttng_error_code. */
1444 * Setup lttng message with payload size set to the event list size in
1445 * bytes and then copy list into the llm payload.
1447 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, pids
,
1448 sizeof(int32_t) * nr_pids
);
1458 case LTTNG_SET_CONSUMER_URI
:
1461 struct lttng_uri
*uris
;
1463 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
1464 len
= nb_uri
* sizeof(struct lttng_uri
);
1467 ret
= LTTNG_ERR_INVALID
;
1471 uris
= zmalloc(len
);
1473 ret
= LTTNG_ERR_FATAL
;
1477 /* Receive variable len data */
1478 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
1479 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
1481 DBG("No URIs received from client... continuing");
1483 ret
= LTTNG_ERR_SESSION_FAIL
;
1488 ret
= cmd_set_consumer_uri(cmd_ctx
->session
, nb_uri
, uris
);
1490 if (ret
!= LTTNG_OK
) {
1497 case LTTNG_START_TRACE
:
1500 * On the first start, if we have a kernel session and we have
1501 * enabled time or size-based rotations, we have to make sure
1502 * the kernel tracer supports it.
1504 if (!cmd_ctx
->session
->has_been_started
&& \
1505 cmd_ctx
->session
->kernel_session
&& \
1506 (cmd_ctx
->session
->rotate_timer_period
|| \
1507 cmd_ctx
->session
->rotate_size
) && \
1508 !check_rotate_compatible()) {
1509 DBG("Kernel tracer version is not compatible with the rotation feature");
1510 ret
= LTTNG_ERR_ROTATION_WRONG_VERSION
;
1513 ret
= cmd_start_trace(cmd_ctx
->session
);
1516 case LTTNG_STOP_TRACE
:
1518 ret
= cmd_stop_trace(cmd_ctx
->session
);
1521 case LTTNG_DESTROY_SESSION
:
1523 ret
= cmd_destroy_session(cmd_ctx
->session
,
1524 notification_thread_handle
);
1527 case LTTNG_LIST_DOMAINS
:
1530 struct lttng_domain
*domains
= NULL
;
1532 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
1534 /* Return value is a negative lttng_error_code. */
1539 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, domains
,
1540 nb_dom
* sizeof(struct lttng_domain
));
1550 case LTTNG_LIST_CHANNELS
:
1552 ssize_t payload_size
;
1553 struct lttng_channel
*channels
= NULL
;
1555 payload_size
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
1556 cmd_ctx
->session
, &channels
);
1557 if (payload_size
< 0) {
1558 /* Return value is a negative lttng_error_code. */
1559 ret
= -payload_size
;
1563 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, channels
,
1574 case LTTNG_LIST_EVENTS
:
1577 struct lttng_event
*events
= NULL
;
1578 struct lttcomm_event_command_header cmd_header
;
1581 memset(&cmd_header
, 0, sizeof(cmd_header
));
1582 /* Extended infos are included at the end of events */
1583 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
,
1584 cmd_ctx
->session
, cmd_ctx
->lsm
->u
.list
.channel_name
,
1585 &events
, &total_size
);
1588 /* Return value is a negative lttng_error_code. */
1593 cmd_header
.nb_events
= nb_event
;
1594 ret
= setup_lttng_msg(cmd_ctx
, events
, total_size
,
1595 &cmd_header
, sizeof(cmd_header
));
1605 case LTTNG_LIST_SESSIONS
:
1607 unsigned int nr_sessions
;
1608 void *sessions_payload
;
1611 session_lock_list();
1612 nr_sessions
= lttng_sessions_count(
1613 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
1614 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
1616 payload_len
= (sizeof(struct lttng_session
) * nr_sessions
) +
1617 (sizeof(struct lttng_session_extended
) * nr_sessions
);
1618 sessions_payload
= zmalloc(payload_len
);
1620 if (!sessions_payload
) {
1621 session_unlock_list();
1626 cmd_list_lttng_sessions(sessions_payload
, nr_sessions
,
1627 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
1628 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
1629 session_unlock_list();
1631 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, sessions_payload
,
1633 free(sessions_payload
);
1642 case LTTNG_REGISTER_CONSUMER
:
1644 struct consumer_data
*cdata
;
1646 switch (cmd_ctx
->lsm
->domain
.type
) {
1647 case LTTNG_DOMAIN_KERNEL
:
1648 cdata
= &kconsumer_data
;
1651 ret
= LTTNG_ERR_UND
;
1655 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
1656 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
1659 case LTTNG_DATA_PENDING
:
1662 uint8_t pending_ret_byte
;
1664 pending_ret
= cmd_data_pending(cmd_ctx
->session
);
1669 * This function may returns 0 or 1 to indicate whether or not
1670 * there is data pending. In case of error, it should return an
1671 * LTTNG_ERR code. However, some code paths may still return
1672 * a nondescript error code, which we handle by returning an
1675 if (pending_ret
== 0 || pending_ret
== 1) {
1677 * ret will be set to LTTNG_OK at the end of
1680 } else if (pending_ret
< 0) {
1681 ret
= LTTNG_ERR_UNK
;
1688 pending_ret_byte
= (uint8_t) pending_ret
;
1690 /* 1 byte to return whether or not data is pending */
1691 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
,
1692 &pending_ret_byte
, 1);
1701 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
1703 struct lttcomm_lttng_output_id reply
;
1705 ret
= cmd_snapshot_add_output(cmd_ctx
->session
,
1706 &cmd_ctx
->lsm
->u
.snapshot_output
.output
, &reply
.id
);
1707 if (ret
!= LTTNG_OK
) {
1711 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &reply
,
1717 /* Copy output list into message payload */
1721 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
1723 ret
= cmd_snapshot_del_output(cmd_ctx
->session
,
1724 &cmd_ctx
->lsm
->u
.snapshot_output
.output
);
1727 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
1730 struct lttng_snapshot_output
*outputs
= NULL
;
1732 nb_output
= cmd_snapshot_list_outputs(cmd_ctx
->session
, &outputs
);
1733 if (nb_output
< 0) {
1738 assert((nb_output
> 0 && outputs
) || nb_output
== 0);
1739 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, outputs
,
1740 nb_output
* sizeof(struct lttng_snapshot_output
));
1750 case LTTNG_SNAPSHOT_RECORD
:
1752 ret
= cmd_snapshot_record(cmd_ctx
->session
,
1753 &cmd_ctx
->lsm
->u
.snapshot_record
.output
,
1754 cmd_ctx
->lsm
->u
.snapshot_record
.wait
);
1757 case LTTNG_CREATE_SESSION_EXT
:
1759 struct lttng_dynamic_buffer payload
;
1760 struct lttng_session_descriptor
*return_descriptor
= NULL
;
1762 lttng_dynamic_buffer_init(&payload
);
1763 ret
= cmd_create_session(cmd_ctx
, sock
, &return_descriptor
);
1764 if (ret
!= LTTNG_OK
) {
1768 ret
= lttng_session_descriptor_serialize(return_descriptor
,
1771 ERR("Failed to serialize session descriptor in reply to \"create session\" command");
1772 lttng_session_descriptor_destroy(return_descriptor
);
1773 ret
= LTTNG_ERR_NOMEM
;
1776 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, payload
.data
,
1779 lttng_session_descriptor_destroy(return_descriptor
);
1780 ret
= LTTNG_ERR_NOMEM
;
1783 lttng_dynamic_buffer_reset(&payload
);
1784 lttng_session_descriptor_destroy(return_descriptor
);
1788 case LTTNG_SAVE_SESSION
:
1790 ret
= cmd_save_sessions(&cmd_ctx
->lsm
->u
.save_session
.attr
,
1794 case LTTNG_SET_SESSION_SHM_PATH
:
1796 ret
= cmd_set_session_shm_path(cmd_ctx
->session
,
1797 cmd_ctx
->lsm
->u
.set_shm_path
.shm_path
);
1800 case LTTNG_REGENERATE_METADATA
:
1802 ret
= cmd_regenerate_metadata(cmd_ctx
->session
);
1805 case LTTNG_REGENERATE_STATEDUMP
:
1807 ret
= cmd_regenerate_statedump(cmd_ctx
->session
);
1810 case LTTNG_REGISTER_TRIGGER
:
1812 ret
= cmd_register_trigger(cmd_ctx
, sock
,
1813 notification_thread_handle
);
1816 case LTTNG_UNREGISTER_TRIGGER
:
1818 ret
= cmd_unregister_trigger(cmd_ctx
, sock
,
1819 notification_thread_handle
);
1822 case LTTNG_ROTATE_SESSION
:
1824 struct lttng_rotate_session_return rotate_return
;
1826 DBG("Client rotate session \"%s\"", cmd_ctx
->session
->name
);
1828 memset(&rotate_return
, 0, sizeof(rotate_return
));
1829 if (cmd_ctx
->session
->kernel_session
&& !check_rotate_compatible()) {
1830 DBG("Kernel tracer version is not compatible with the rotation feature");
1831 ret
= LTTNG_ERR_ROTATION_WRONG_VERSION
;
1835 ret
= cmd_rotate_session(cmd_ctx
->session
, &rotate_return
);
1841 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &rotate_return
,
1842 sizeof(rotate_return
));
1851 case LTTNG_ROTATION_GET_INFO
:
1853 struct lttng_rotation_get_info_return get_info_return
;
1855 memset(&get_info_return
, 0, sizeof(get_info_return
));
1856 ret
= cmd_rotate_get_info(cmd_ctx
->session
, &get_info_return
,
1857 cmd_ctx
->lsm
->u
.get_rotation_info
.rotation_id
);
1863 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &get_info_return
,
1864 sizeof(get_info_return
));
1873 case LTTNG_ROTATION_SET_SCHEDULE
:
1876 enum lttng_rotation_schedule_type schedule_type
;
1879 if (cmd_ctx
->session
->kernel_session
&& !check_rotate_compatible()) {
1880 DBG("Kernel tracer version does not support session rotations");
1881 ret
= LTTNG_ERR_ROTATION_WRONG_VERSION
;
1885 set_schedule
= cmd_ctx
->lsm
->u
.rotation_set_schedule
.set
== 1;
1886 schedule_type
= (enum lttng_rotation_schedule_type
) cmd_ctx
->lsm
->u
.rotation_set_schedule
.type
;
1887 value
= cmd_ctx
->lsm
->u
.rotation_set_schedule
.value
;
1889 ret
= cmd_rotation_set_schedule(cmd_ctx
->session
,
1893 notification_thread_handle
);
1894 if (ret
!= LTTNG_OK
) {
1900 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES
:
1902 struct lttng_session_list_schedules_return schedules
= {
1903 .periodic
.set
= !!cmd_ctx
->session
->rotate_timer_period
,
1904 .periodic
.value
= cmd_ctx
->session
->rotate_timer_period
,
1905 .size
.set
= !!cmd_ctx
->session
->rotate_size
,
1906 .size
.value
= cmd_ctx
->session
->rotate_size
,
1909 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &schedules
,
1920 ret
= LTTNG_ERR_UND
;
1925 if (cmd_ctx
->llm
== NULL
) {
1926 DBG("Missing llm structure. Allocating one.");
1927 if (setup_lttng_msg_no_cmd_header(cmd_ctx
, NULL
, 0) < 0) {
1931 /* Set return code */
1932 cmd_ctx
->llm
->ret_code
= ret
;
1934 if (cmd_ctx
->session
) {
1935 session_unlock(cmd_ctx
->session
);
1936 session_put(cmd_ctx
->session
);
1938 if (need_tracing_session
) {
1939 session_unlock_list();
1942 assert(!rcu_read_ongoing());
1946 static int create_client_sock(void)
1948 int ret
, client_sock
;
1949 const mode_t old_umask
= umask(0);
1951 /* Create client tool unix socket */
1952 client_sock
= lttcomm_create_unix_sock(config
.client_unix_sock_path
.value
);
1953 if (client_sock
< 0) {
1954 ERR("Create unix sock failed: %s", config
.client_unix_sock_path
.value
);
1959 /* Set the cloexec flag */
1960 ret
= utils_set_fd_cloexec(client_sock
);
1962 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
1963 "Continuing but note that the consumer daemon will have a "
1964 "reference to this socket on exec()", client_sock
);
1967 /* File permission MUST be 660 */
1968 ret
= chmod(config
.client_unix_sock_path
.value
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
1970 ERR("Set file permissions failed: %s", config
.client_unix_sock_path
.value
);
1974 DBG("Created client socket (fd = %i)", client_sock
);
1981 static void cleanup_client_thread(void *data
)
1983 struct lttng_pipe
*quit_pipe
= data
;
1985 lttng_pipe_destroy(quit_pipe
);
1988 static void thread_init_cleanup(void *data
)
1990 set_thread_status(false);
1994 * This thread manage all clients request using the unix client socket for
1997 static void *thread_manage_clients(void *data
)
1999 int sock
= -1, ret
, i
, pollfd
, err
= -1;
2001 uint32_t revents
, nb_fd
;
2002 struct command_ctx
*cmd_ctx
= NULL
;
2003 struct lttng_poll_event events
;
2004 int client_sock
= -1;
2005 struct lttng_pipe
*quit_pipe
= data
;
2006 const int thread_quit_pipe_fd
= lttng_pipe_get_readfd(quit_pipe
);
2008 DBG("[thread] Manage client started");
2010 is_root
= (getuid() == 0);
2012 pthread_cleanup_push(thread_init_cleanup
, NULL
);
2013 client_sock
= create_client_sock();
2014 if (client_sock
< 0) {
2018 rcu_register_thread();
2020 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CMD
);
2022 health_code_update();
2024 ret
= lttcomm_listen_unix_sock(client_sock
);
2030 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
2031 * more will be added to this poll set.
2033 ret
= lttng_poll_create(&events
, 2, LTTNG_CLOEXEC
);
2035 goto error_create_poll
;
2038 /* Add the application registration socket */
2039 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
2044 /* Add thread quit pipe */
2045 ret
= lttng_poll_add(&events
, thread_quit_pipe_fd
, LPOLLIN
| LPOLLERR
);
2050 /* Set state as running. */
2051 set_thread_status(true);
2052 pthread_cleanup_pop(0);
2054 /* This testpoint is after we signal readiness to the parent. */
2055 if (testpoint(sessiond_thread_manage_clients
)) {
2059 if (testpoint(sessiond_thread_manage_clients_before_loop
)) {
2063 health_code_update();
2066 const struct cmd_completion_handler
*cmd_completion_handler
;
2068 DBG("Accepting client command ...");
2070 /* Inifinite blocking call, waiting for transmission */
2072 health_poll_entry();
2073 ret
= lttng_poll_wait(&events
, -1);
2077 * Restart interrupted system call.
2079 if (errno
== EINTR
) {
2087 for (i
= 0; i
< nb_fd
; i
++) {
2088 revents
= LTTNG_POLL_GETEV(&events
, i
);
2089 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2091 health_code_update();
2093 if (pollfd
== thread_quit_pipe_fd
) {
2097 /* Event on the registration socket */
2098 if (revents
& LPOLLIN
) {
2100 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2101 ERR("Client socket poll error");
2104 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
2110 DBG("Wait for client response");
2112 health_code_update();
2114 sock
= lttcomm_accept_unix_sock(client_sock
);
2120 * Set the CLOEXEC flag. Return code is useless because either way, the
2123 (void) utils_set_fd_cloexec(sock
);
2125 /* Set socket option for credentials retrieval */
2126 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
2131 /* Allocate context command to process the client request */
2132 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
2133 if (cmd_ctx
== NULL
) {
2134 PERROR("zmalloc cmd_ctx");
2138 /* Allocate data buffer for reception */
2139 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
2140 if (cmd_ctx
->lsm
== NULL
) {
2141 PERROR("zmalloc cmd_ctx->lsm");
2145 cmd_ctx
->llm
= NULL
;
2146 cmd_ctx
->session
= NULL
;
2148 health_code_update();
2151 * Data is received from the lttng client. The struct
2152 * lttcomm_session_msg (lsm) contains the command and data request of
2155 DBG("Receiving data from client ...");
2156 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
2157 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
2159 DBG("Nothing recv() from client... continuing");
2165 clean_command_ctx(&cmd_ctx
);
2169 health_code_update();
2171 // TODO: Validate cmd_ctx including sanity check for
2172 // security purpose.
2174 rcu_thread_online();
2176 * This function dispatch the work to the kernel or userspace tracer
2177 * libs and fill the lttcomm_lttng_msg data structure of all the needed
2178 * informations for the client. The command context struct contains
2179 * everything this function may needs.
2181 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
2182 rcu_thread_offline();
2190 * TODO: Inform client somehow of the fatal error. At
2191 * this point, ret < 0 means that a zmalloc failed
2192 * (ENOMEM). Error detected but still accept
2193 * command, unless a socket error has been
2196 clean_command_ctx(&cmd_ctx
);
2200 cmd_completion_handler
= cmd_pop_completion_handler();
2201 if (cmd_completion_handler
) {
2202 enum lttng_error_code completion_code
;
2204 completion_code
= cmd_completion_handler
->run(
2205 cmd_completion_handler
->data
);
2206 if (completion_code
!= LTTNG_OK
) {
2207 clean_command_ctx(&cmd_ctx
);
2212 health_code_update();
2214 DBG("Sending response (size: %d, retcode: %s (%d))",
2215 cmd_ctx
->lttng_msg_size
,
2216 lttng_strerror(-cmd_ctx
->llm
->ret_code
),
2217 cmd_ctx
->llm
->ret_code
);
2218 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
2220 ERR("Failed to send data back to client");
2223 /* End of transmission */
2230 clean_command_ctx(&cmd_ctx
);
2232 health_code_update();
2244 lttng_poll_clean(&events
);
2245 clean_command_ctx(&cmd_ctx
);
2249 unlink(config
.client_unix_sock_path
.value
);
2250 if (client_sock
>= 0) {
2251 ret
= close(client_sock
);
2259 ERR("Health error occurred in %s", __func__
);
2262 health_unregister(health_sessiond
);
2264 DBG("Client thread dying");
2266 rcu_unregister_thread();
2271 bool shutdown_client_thread(void *thread_data
)
2273 struct lttng_pipe
*client_quit_pipe
= thread_data
;
2274 const int write_fd
= lttng_pipe_get_writefd(client_quit_pipe
);
2276 return notify_thread_pipe(write_fd
) == 1;
2279 struct lttng_thread
*launch_client_thread(void)
2281 bool thread_running
;
2282 struct lttng_pipe
*client_quit_pipe
;
2283 struct lttng_thread
*thread
;
2285 sem_init(&thread_state
.ready
, 0, 0);
2286 client_quit_pipe
= lttng_pipe_open(FD_CLOEXEC
);
2287 if (!client_quit_pipe
) {
2291 thread
= lttng_thread_create("Client management",
2292 thread_manage_clients
,
2293 shutdown_client_thread
,
2294 cleanup_client_thread
,
2301 * This thread is part of the threads that need to be fully
2302 * initialized before the session daemon is marked as "ready".
2304 thread_running
= wait_thread_status();
2305 if (!thread_running
) {
2306 lttng_thread_put(thread
);
2311 cleanup_client_thread(client_quit_pipe
);