2 * Copyright (C) 2011 EfficiOS Inc.
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * SPDX-License-Identifier: GPL-2.0-only
10 #include "common/buffer-view.h"
11 #include "common/compat/socket.h"
12 #include "common/dynamic-array.h"
13 #include "common/dynamic-buffer.h"
14 #include "common/fd-handle.h"
15 #include "common/payload-view.h"
16 #include "common/payload.h"
17 #include "common/sessiond-comm/sessiond-comm.h"
18 #include "lttng/lttng-error.h"
19 #include "lttng/tracker.h"
20 #include <common/compat/getenv.h>
21 #include <common/tracker.h>
22 #include <common/unix.h>
23 #include <common/utils.h>
24 #include <lttng/error-query-internal.h>
25 #include <lttng/event-internal.h>
26 #include <lttng/session-descriptor-internal.h>
27 #include <lttng/session-internal.h>
28 #include <lttng/userspace-probe-internal.h>
36 #include "agent-thread.h"
40 #include "health-sessiond.h"
42 #include "lttng-sessiond.h"
43 #include "manage-consumer.h"
45 #include "testpoint.h"
50 static struct thread_state
{
56 static void set_thread_status(bool running
)
58 DBG("Marking client thread's state as %s", running
? "running" : "error");
59 thread_state
.running
= running
;
60 sem_post(&thread_state
.ready
);
63 static bool wait_thread_status(void)
65 DBG("Waiting for client thread to be ready");
66 sem_wait(&thread_state
.ready
);
67 if (thread_state
.running
) {
68 DBG("Client thread is ready");
70 ERR("Initialization of client thread failed");
73 return thread_state
.running
;
77 * Setup the outgoing data buffer for the response (llm) by allocating the
78 * right amount of memory and copying the original information from the lsm
81 * Return 0 on success, negative value on error.
83 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
,
84 const void *payload_buf
, size_t payload_len
,
85 const void *cmd_header_buf
, size_t cmd_header_len
)
88 const size_t header_len
= sizeof(struct lttcomm_lttng_msg
);
89 const size_t total_msg_size
= header_len
+ cmd_header_len
+ payload_len
;
90 lttcomm_lttng_msg llm
{};
92 llm
.cmd_type
= cmd_ctx
->lsm
.cmd_type
;
93 llm
.pid
= (uint32_t) cmd_ctx
->lsm
.domain
.attr
.pid
;
94 llm
.cmd_header_size
= (uint32_t) cmd_header_len
;
95 llm
.data_size
= (uint32_t) payload_len
;
97 ret
= lttng_dynamic_buffer_set_size(&cmd_ctx
->reply_payload
.buffer
, 0);
102 lttng_dynamic_pointer_array_clear(&cmd_ctx
->reply_payload
._fd_handles
);
104 cmd_ctx
->lttng_msg_size
= total_msg_size
;
106 /* Append reply header. */
107 ret
= lttng_dynamic_buffer_append(
108 &cmd_ctx
->reply_payload
.buffer
, &llm
, sizeof(llm
));
113 /* Append command header. */
114 if (cmd_header_len
) {
115 ret
= lttng_dynamic_buffer_append(
116 &cmd_ctx
->reply_payload
.buffer
, cmd_header_buf
,
123 /* Append payload. */
125 ret
= lttng_dynamic_buffer_append(
126 &cmd_ctx
->reply_payload
.buffer
, payload_buf
,
137 static int setup_empty_lttng_msg(struct command_ctx
*cmd_ctx
)
140 const struct lttcomm_lttng_msg llm
= {};
142 ret
= lttng_dynamic_buffer_set_size(&cmd_ctx
->reply_payload
.buffer
, 0);
147 /* Append place-holder reply header. */
148 ret
= lttng_dynamic_buffer_append(
149 &cmd_ctx
->reply_payload
.buffer
, &llm
, sizeof(llm
));
154 cmd_ctx
->lttng_msg_size
= sizeof(llm
);
159 static void update_lttng_msg(struct command_ctx
*cmd_ctx
, size_t cmd_header_len
,
162 const size_t header_len
= sizeof(struct lttcomm_lttng_msg
);
163 const size_t total_msg_size
= header_len
+ cmd_header_len
+ payload_len
;
164 struct lttcomm_lttng_msg
*p_llm
;
165 lttcomm_lttng_msg llm
{};
167 llm
.cmd_type
= cmd_ctx
->lsm
.cmd_type
;
168 llm
.pid
= (uint32_t) cmd_ctx
->lsm
.domain
.attr
.pid
;
169 llm
.cmd_header_size
= (uint32_t) cmd_header_len
;
170 llm
.data_size
= (uint32_t) payload_len
;
172 LTTNG_ASSERT(cmd_ctx
->reply_payload
.buffer
.size
>= sizeof(llm
));
174 p_llm
= (typeof(p_llm
)) cmd_ctx
->reply_payload
.buffer
.data
;
176 /* Update existing header. */
177 memcpy(p_llm
, &llm
, sizeof(llm
));
179 cmd_ctx
->lttng_msg_size
= total_msg_size
;
183 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
184 * exec or it will fail.
186 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
188 return launch_consumer_management_thread(consumer_data
) ? 0 : -1;
192 * Fork and exec a consumer daemon (consumerd).
194 * Return pid if successful else -1.
196 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
200 const char *consumer_to_use
;
201 const char *verbosity
;
204 DBG("Spawning consumerd");
211 if (the_config
.verbose_consumer
) {
212 verbosity
= "--verbose";
213 } else if (lttng_opt_quiet
) {
214 verbosity
= "--quiet";
219 switch (consumer_data
->type
) {
220 case LTTNG_CONSUMER_KERNEL
:
222 * Find out which consumerd to execute. We will first try the
223 * 64-bit path, then the sessiond's installation directory, and
224 * fallback on the 32-bit one,
226 DBG3("Looking for a kernel consumer at these locations:");
227 DBG3(" 1) %s", the_config
.consumerd64_bin_path
.value
? : "NULL");
228 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, DEFAULT_CONSUMERD_FILE
);
229 DBG3(" 3) %s", the_config
.consumerd32_bin_path
.value
? : "NULL");
230 if (stat(the_config
.consumerd64_bin_path
.value
, &st
) == 0) {
231 DBG3("Found location #1");
232 consumer_to_use
= the_config
.consumerd64_bin_path
.value
;
233 } else if (stat(INSTALL_BIN_PATH
"/" DEFAULT_CONSUMERD_FILE
, &st
) == 0) {
234 DBG3("Found location #2");
235 consumer_to_use
= INSTALL_BIN_PATH
"/" DEFAULT_CONSUMERD_FILE
;
236 } else if (the_config
.consumerd32_bin_path
.value
&&
237 stat(the_config
.consumerd32_bin_path
.value
, &st
) == 0) {
238 DBG3("Found location #3");
239 consumer_to_use
= the_config
.consumerd32_bin_path
.value
;
241 DBG("Could not find any valid consumerd executable");
245 DBG("Using kernel consumer at: %s", consumer_to_use
);
246 (void) execl(consumer_to_use
, "lttng-consumerd",
247 verbosity
, "-k", "--consumerd-cmd-sock",
248 consumer_data
->cmd_unix_sock_path
,
249 "--consumerd-err-sock",
250 consumer_data
->err_unix_sock_path
,
252 the_config
.tracing_group_name
.value
,
255 case LTTNG_CONSUMER64_UST
:
257 if (the_config
.consumerd64_lib_dir
.value
) {
262 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
266 tmplen
= strlen(the_config
.consumerd64_lib_dir
.value
) + 1 /* : */ + strlen(tmp
);
267 tmpnew
= (char *) zmalloc(tmplen
+ 1 /* \0 */);
272 strcat(tmpnew
, the_config
.consumerd64_lib_dir
.value
);
273 if (tmp
[0] != '\0') {
277 ret
= setenv("LD_LIBRARY_PATH", tmpnew
, 1);
284 DBG("Using 64-bit UST consumer at: %s",
285 the_config
.consumerd64_bin_path
.value
);
286 (void) execl(the_config
.consumerd64_bin_path
.value
,
287 "lttng-consumerd", verbosity
, "-u",
288 "--consumerd-cmd-sock",
289 consumer_data
->cmd_unix_sock_path
,
290 "--consumerd-err-sock",
291 consumer_data
->err_unix_sock_path
,
293 the_config
.tracing_group_name
.value
,
297 case LTTNG_CONSUMER32_UST
:
299 if (the_config
.consumerd32_lib_dir
.value
) {
304 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
308 tmplen
= strlen(the_config
.consumerd32_lib_dir
.value
) + 1 /* : */ + strlen(tmp
);
309 tmpnew
= (char *) zmalloc(tmplen
+ 1 /* \0 */);
314 strcat(tmpnew
, the_config
.consumerd32_lib_dir
.value
);
315 if (tmp
[0] != '\0') {
319 ret
= setenv("LD_LIBRARY_PATH", tmpnew
, 1);
326 DBG("Using 32-bit UST consumer at: %s",
327 the_config
.consumerd32_bin_path
.value
);
328 (void) execl(the_config
.consumerd32_bin_path
.value
,
329 "lttng-consumerd", verbosity
, "-u",
330 "--consumerd-cmd-sock",
331 consumer_data
->cmd_unix_sock_path
,
332 "--consumerd-err-sock",
333 consumer_data
->err_unix_sock_path
,
335 the_config
.tracing_group_name
.value
,
340 ERR("unknown consumer type");
344 PERROR("Consumer execl()");
346 /* Reaching this point, we got a failure on our execl(). */
348 } else if (pid
> 0) {
351 PERROR("start consumer fork");
359 * Spawn the consumerd daemon and session daemon thread.
361 static int start_consumerd(struct consumer_data
*consumer_data
)
366 * Set the listen() state on the socket since there is a possible race
367 * between the exec() of the consumer daemon and this call if place in the
368 * consumer thread. See bug #366 for more details.
370 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
375 pthread_mutex_lock(&consumer_data
->pid_mutex
);
376 if (consumer_data
->pid
!= 0) {
377 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
381 ret
= spawn_consumerd(consumer_data
);
383 ERR("Spawning consumerd failed");
384 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
388 /* Setting up the consumer_data pid */
389 consumer_data
->pid
= ret
;
390 DBG2("Consumer pid %d", consumer_data
->pid
);
391 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
393 DBG2("Spawning consumer control thread");
394 ret
= spawn_consumer_thread(consumer_data
);
396 ERR("Fatal error spawning consumer control thread");
404 /* Cleanup already created sockets on error. */
405 if (consumer_data
->err_sock
>= 0) {
408 err
= close(consumer_data
->err_sock
);
410 PERROR("close consumer data error socket");
417 * Copy consumer output from the tracing session to the domain session. The
418 * function also applies the right modification on a per domain basis for the
419 * trace files destination directory.
421 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
424 const char *dir_name
;
425 struct consumer_output
*consumer
;
427 LTTNG_ASSERT(session
);
428 LTTNG_ASSERT(session
->consumer
);
431 case LTTNG_DOMAIN_KERNEL
:
432 DBG3("Copying tracing session consumer output in kernel session");
434 * XXX: We should audit the session creation and what this function
435 * does "extra" in order to avoid a destroy since this function is used
436 * in the domain session creation (kernel and ust) only. Same for UST
439 if (session
->kernel_session
->consumer
) {
440 consumer_output_put(session
->kernel_session
->consumer
);
442 session
->kernel_session
->consumer
=
443 consumer_copy_output(session
->consumer
);
444 /* Ease our life a bit for the next part */
445 consumer
= session
->kernel_session
->consumer
;
446 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
448 case LTTNG_DOMAIN_JUL
:
449 case LTTNG_DOMAIN_LOG4J
:
450 case LTTNG_DOMAIN_PYTHON
:
451 case LTTNG_DOMAIN_UST
:
452 DBG3("Copying tracing session consumer output in UST session");
453 if (session
->ust_session
->consumer
) {
454 consumer_output_put(session
->ust_session
->consumer
);
456 session
->ust_session
->consumer
=
457 consumer_copy_output(session
->consumer
);
458 /* Ease our life a bit for the next part */
459 consumer
= session
->ust_session
->consumer
;
460 dir_name
= DEFAULT_UST_TRACE_DIR
;
463 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
467 /* Append correct directory to subdir */
468 ret
= lttng_strncpy(consumer
->domain_subdir
, dir_name
,
469 sizeof(consumer
->domain_subdir
));
474 DBG3("Copy session consumer subdir %s", consumer
->domain_subdir
);
482 * Create an UST session and add it to the session ust list.
484 static int create_ust_session(struct ltt_session
*session
,
485 const struct lttng_domain
*domain
)
488 struct ltt_ust_session
*lus
= NULL
;
490 LTTNG_ASSERT(session
);
491 LTTNG_ASSERT(domain
);
492 LTTNG_ASSERT(session
->consumer
);
494 switch (domain
->type
) {
495 case LTTNG_DOMAIN_JUL
:
496 case LTTNG_DOMAIN_LOG4J
:
497 case LTTNG_DOMAIN_PYTHON
:
498 case LTTNG_DOMAIN_UST
:
501 ERR("Unknown UST domain on create session %d", domain
->type
);
502 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
506 DBG("Creating UST session");
508 lus
= trace_ust_create_session(session
->id
);
510 ret
= LTTNG_ERR_UST_SESS_FAIL
;
514 lus
->uid
= session
->uid
;
515 lus
->gid
= session
->gid
;
516 lus
->output_traces
= session
->output_traces
;
517 lus
->snapshot_mode
= session
->snapshot_mode
;
518 lus
->live_timer_interval
= session
->live_timer
;
519 session
->ust_session
= lus
;
520 if (session
->shm_path
[0]) {
521 strncpy(lus
->root_shm_path
, session
->shm_path
,
522 sizeof(lus
->root_shm_path
));
523 lus
->root_shm_path
[sizeof(lus
->root_shm_path
) - 1] = '\0';
524 strncpy(lus
->shm_path
, session
->shm_path
,
525 sizeof(lus
->shm_path
));
526 lus
->shm_path
[sizeof(lus
->shm_path
) - 1] = '\0';
527 strncat(lus
->shm_path
, "/ust",
528 sizeof(lus
->shm_path
) - strlen(lus
->shm_path
) - 1);
530 /* Copy session output to the newly created UST session */
531 ret
= copy_session_consumer(domain
->type
, session
);
532 if (ret
!= LTTNG_OK
) {
540 session
->ust_session
= NULL
;
545 * Create a kernel tracer session then create the default channel.
547 static int create_kernel_session(struct ltt_session
*session
)
551 DBG("Creating kernel session");
553 ret
= kernel_create_session(session
);
555 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
559 /* Code flow safety */
560 LTTNG_ASSERT(session
->kernel_session
);
562 /* Copy session output to the newly created Kernel session */
563 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
564 if (ret
!= LTTNG_OK
) {
568 session
->kernel_session
->uid
= session
->uid
;
569 session
->kernel_session
->gid
= session
->gid
;
570 session
->kernel_session
->output_traces
= session
->output_traces
;
571 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
572 session
->kernel_session
->is_live_session
= session
->live_timer
!= 0;
577 trace_kernel_destroy_session(session
->kernel_session
);
578 session
->kernel_session
= NULL
;
584 * Count number of session permitted by uid/gid.
586 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
589 struct ltt_session
*session
;
590 const struct ltt_session_list
*session_list
= session_get_list();
592 DBG("Counting number of available session for UID %d", uid
);
593 cds_list_for_each_entry(session
, &session_list
->head
, list
) {
594 if (!session_get(session
)) {
597 session_lock(session
);
598 /* Only count the sessions the user can control. */
599 if (session_access_ok(session
, uid
) &&
600 !session
->destroyed
) {
603 session_unlock(session
);
604 session_put(session
);
609 static int receive_userspace_probe(struct command_ctx
*cmd_ctx
, int sock
,
610 int *sock_error
, struct lttng_event
*event
)
613 struct lttng_userspace_probe_location
*probe_location
;
614 struct lttng_payload probe_location_payload
;
615 struct fd_handle
*handle
= NULL
;
618 * Create a payload to store the serialized version of the probe
621 lttng_payload_init(&probe_location_payload
);
623 ret
= lttng_dynamic_buffer_set_size(&probe_location_payload
.buffer
,
624 cmd_ctx
->lsm
.u
.enable
.userspace_probe_location_len
);
626 ret
= LTTNG_ERR_NOMEM
;
631 * Receive the probe location.
633 ret
= lttcomm_recv_unix_sock(sock
, probe_location_payload
.buffer
.data
,
634 probe_location_payload
.buffer
.size
);
636 DBG("Nothing recv() from client var len data... continuing");
638 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
643 * Receive the file descriptor to the target binary from the client.
645 DBG("Receiving userspace probe target FD from client ...");
646 ret
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
648 DBG("Nothing recv() from client userspace probe fd... continuing");
650 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
654 handle
= fd_handle_create(fd
);
656 ret
= LTTNG_ERR_NOMEM
;
660 /* Transferred to the handle. */
663 ret
= lttng_payload_push_fd_handle(&probe_location_payload
, handle
);
665 ERR("Failed to add userspace probe file descriptor to payload");
666 ret
= LTTNG_ERR_NOMEM
;
670 fd_handle_put(handle
);
674 struct lttng_payload_view view
= lttng_payload_view_from_payload(
675 &probe_location_payload
, 0, -1);
677 /* Extract the probe location from the serialized version. */
678 ret
= lttng_userspace_probe_location_create_from_payload(
679 &view
, &probe_location
);
682 WARN("Failed to create a userspace probe location from the received buffer");
683 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
687 /* Attach the probe location to the event. */
688 ret
= lttng_event_set_userspace_probe_location(event
, probe_location
);
690 ret
= LTTNG_ERR_PROBE_LOCATION_INVAL
;
697 PERROR("Failed to close userspace probe location binary fd");
701 fd_handle_put(handle
);
702 lttng_payload_reset(&probe_location_payload
);
706 static enum lttng_error_code
receive_lttng_trigger(struct command_ctx
*cmd_ctx
,
709 struct lttng_trigger
**_trigger
)
713 ssize_t sock_recv_len
;
714 enum lttng_error_code ret_code
;
715 struct lttng_payload trigger_payload
;
716 struct lttng_trigger
*trigger
= NULL
;
718 lttng_payload_init(&trigger_payload
);
719 trigger_len
= (size_t) cmd_ctx
->lsm
.u
.trigger
.length
;
720 ret
= lttng_dynamic_buffer_set_size(
721 &trigger_payload
.buffer
, trigger_len
);
723 ret_code
= LTTNG_ERR_NOMEM
;
727 sock_recv_len
= lttcomm_recv_unix_sock(
728 sock
, trigger_payload
.buffer
.data
, trigger_len
);
729 if (sock_recv_len
< 0 || sock_recv_len
!= trigger_len
) {
730 ERR("Failed to receive trigger in command payload");
732 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
736 /* Receive fds, if any. */
737 if (cmd_ctx
->lsm
.fd_count
> 0) {
738 sock_recv_len
= lttcomm_recv_payload_fds_unix_sock(
739 sock
, cmd_ctx
->lsm
.fd_count
, &trigger_payload
);
740 if (sock_recv_len
> 0 &&
741 sock_recv_len
!= cmd_ctx
->lsm
.fd_count
* sizeof(int)) {
742 ERR("Failed to receive all file descriptors for trigger in command payload: expected fd count = %u, ret = %d",
743 cmd_ctx
->lsm
.fd_count
, (int) ret
);
744 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
747 } else if (sock_recv_len
<= 0) {
748 ERR("Failed to receive file descriptors for trigger in command payload: expected fd count = %u, ret = %d",
749 cmd_ctx
->lsm
.fd_count
, (int) ret
);
750 ret_code
= LTTNG_ERR_FATAL
;
756 /* Deserialize trigger. */
758 struct lttng_payload_view view
=
759 lttng_payload_view_from_payload(
760 &trigger_payload
, 0, -1);
762 if (lttng_trigger_create_from_payload(&view
, &trigger
) !=
764 ERR("Invalid trigger received as part of command payload");
765 ret_code
= LTTNG_ERR_INVALID_TRIGGER
;
766 lttng_trigger_put(trigger
);
775 lttng_payload_reset(&trigger_payload
);
779 static enum lttng_error_code
receive_lttng_error_query(struct command_ctx
*cmd_ctx
,
782 struct lttng_error_query
**_query
)
786 ssize_t sock_recv_len
;
787 enum lttng_error_code ret_code
;
788 struct lttng_payload query_payload
;
789 struct lttng_error_query
*query
= NULL
;
791 lttng_payload_init(&query_payload
);
792 query_len
= (size_t) cmd_ctx
->lsm
.u
.error_query
.length
;
793 ret
= lttng_dynamic_buffer_set_size(&query_payload
.buffer
, query_len
);
795 ret_code
= LTTNG_ERR_NOMEM
;
799 sock_recv_len
= lttcomm_recv_unix_sock(
800 sock
, query_payload
.buffer
.data
, query_len
);
801 if (sock_recv_len
< 0 || sock_recv_len
!= query_len
) {
802 ERR("Failed to receive error query in command payload");
804 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
808 /* Receive fds, if any. */
809 if (cmd_ctx
->lsm
.fd_count
> 0) {
810 sock_recv_len
= lttcomm_recv_payload_fds_unix_sock(
811 sock
, cmd_ctx
->lsm
.fd_count
, &query_payload
);
812 if (sock_recv_len
> 0 &&
813 sock_recv_len
!= cmd_ctx
->lsm
.fd_count
* sizeof(int)) {
814 ERR("Failed to receive all file descriptors for error query in command payload: expected fd count = %u, ret = %d",
815 cmd_ctx
->lsm
.fd_count
, (int) ret
);
816 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
819 } else if (sock_recv_len
<= 0) {
820 ERR("Failed to receive file descriptors for error query in command payload: expected fd count = %u, ret = %d",
821 cmd_ctx
->lsm
.fd_count
, (int) ret
);
822 ret_code
= LTTNG_ERR_FATAL
;
828 /* Deserialize error query. */
830 struct lttng_payload_view view
=
831 lttng_payload_view_from_payload(
832 &query_payload
, 0, -1);
834 if (lttng_error_query_create_from_payload(&view
, &query
) !=
836 ERR("Invalid error query received as part of command payload");
837 ret_code
= LTTNG_ERR_INVALID_PROTOCOL
;
846 lttng_payload_reset(&query_payload
);
851 * Version of setup_lttng_msg() without command header.
853 static int setup_lttng_msg_no_cmd_header(struct command_ctx
*cmd_ctx
,
854 void *payload_buf
, size_t payload_len
)
856 return setup_lttng_msg(cmd_ctx
, payload_buf
, payload_len
, NULL
, 0);
860 * Check if the current kernel tracer supports the session rotation feature.
861 * Return 1 if it does, 0 otherwise.
863 static int check_rotate_compatible(void)
867 if (the_kernel_tracer_version
.major
!= 2 ||
868 the_kernel_tracer_version
.minor
< 11) {
869 DBG("Kernel tracer version is not compatible with the rotation feature");
877 * Send data on a unix socket using the liblttsessiondcomm API.
879 * Return lttcomm error code.
881 static int send_unix_sock(int sock
, struct lttng_payload_view
*view
)
884 const int fd_count
= lttng_payload_view_get_fd_handle_count(view
);
886 /* Check valid length */
887 if (view
->buffer
.size
== 0) {
892 ret
= lttcomm_send_unix_sock(
893 sock
, view
->buffer
.data
, view
->buffer
.size
);
899 ret
= lttcomm_send_payload_view_fds_unix_sock(sock
, view
);
910 * Process the command requested by the lttng client within the command
911 * context structure. This function make sure that the return structure (llm)
912 * is set and ready for transmission before returning.
914 * Return any error encountered or 0 for success.
916 * "sock" is only used for special-case var. len data.
917 * A command may assume the ownership of the socket, in which case its value
918 * should be set to -1.
920 static int process_client_msg(struct command_ctx
*cmd_ctx
, int *sock
,
924 bool need_tracing_session
= true;
928 DBG("Processing client command '%s\' (%d)",
929 lttcomm_sessiond_command_str((lttcomm_sessiond_command
) cmd_ctx
->lsm
.cmd_type
),
930 cmd_ctx
->lsm
.cmd_type
);
934 switch (cmd_ctx
->lsm
.cmd_type
) {
935 case LTTNG_CREATE_SESSION_EXT
:
936 case LTTNG_DESTROY_SESSION
:
937 case LTTNG_LIST_SESSIONS
:
938 case LTTNG_LIST_DOMAINS
:
939 case LTTNG_START_TRACE
:
940 case LTTNG_STOP_TRACE
:
941 case LTTNG_DATA_PENDING
:
942 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
943 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
944 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
945 case LTTNG_SNAPSHOT_RECORD
:
946 case LTTNG_SAVE_SESSION
:
947 case LTTNG_SET_SESSION_SHM_PATH
:
948 case LTTNG_REGENERATE_METADATA
:
949 case LTTNG_REGENERATE_STATEDUMP
:
950 case LTTNG_ROTATE_SESSION
:
951 case LTTNG_ROTATION_GET_INFO
:
952 case LTTNG_ROTATION_SET_SCHEDULE
:
953 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES
:
954 case LTTNG_CLEAR_SESSION
:
955 case LTTNG_LIST_TRIGGERS
:
956 case LTTNG_EXECUTE_ERROR_QUERY
:
963 /* Needs a functioning consumerd? */
964 switch (cmd_ctx
->lsm
.cmd_type
) {
965 case LTTNG_REGISTER_TRIGGER
:
966 case LTTNG_UNREGISTER_TRIGGER
:
967 case LTTNG_EXECUTE_ERROR_QUERY
:
968 need_consumerd
= false;
971 need_consumerd
= true;
975 if (the_config
.no_kernel
&& need_domain
&&
976 cmd_ctx
->lsm
.domain
.type
== LTTNG_DOMAIN_KERNEL
) {
978 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
980 ret
= LTTNG_ERR_KERN_NA
;
985 /* Deny register consumer if we already have a spawned consumer. */
986 if (cmd_ctx
->lsm
.cmd_type
== LTTNG_REGISTER_CONSUMER
) {
987 pthread_mutex_lock(&the_kconsumer_data
.pid_mutex
);
988 if (the_kconsumer_data
.pid
> 0) {
989 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
990 pthread_mutex_unlock(&the_kconsumer_data
.pid_mutex
);
993 pthread_mutex_unlock(&the_kconsumer_data
.pid_mutex
);
997 * Check for command that don't needs to allocate a returned payload. We do
998 * this here so we don't have to make the call for no payload at each
1001 switch(cmd_ctx
->lsm
.cmd_type
) {
1002 case LTTNG_LIST_SESSIONS
:
1003 case LTTNG_LIST_TRACEPOINTS
:
1004 case LTTNG_LIST_TRACEPOINT_FIELDS
:
1005 case LTTNG_LIST_DOMAINS
:
1006 case LTTNG_LIST_CHANNELS
:
1007 case LTTNG_LIST_EVENTS
:
1008 case LTTNG_LIST_SYSCALLS
:
1009 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES
:
1010 case LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY
:
1011 case LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET
:
1012 case LTTNG_DATA_PENDING
:
1013 case LTTNG_ROTATE_SESSION
:
1014 case LTTNG_ROTATION_GET_INFO
:
1015 case LTTNG_REGISTER_TRIGGER
:
1016 case LTTNG_LIST_TRIGGERS
:
1017 case LTTNG_EXECUTE_ERROR_QUERY
:
1020 /* Setup lttng message with no payload */
1021 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, NULL
, 0);
1023 /* This label does not try to unlock the session */
1024 goto init_setup_error
;
1028 /* Commands that DO NOT need a session. */
1029 switch (cmd_ctx
->lsm
.cmd_type
) {
1030 case LTTNG_CREATE_SESSION_EXT
:
1031 case LTTNG_LIST_SESSIONS
:
1032 case LTTNG_LIST_TRACEPOINTS
:
1033 case LTTNG_LIST_SYSCALLS
:
1034 case LTTNG_LIST_TRACEPOINT_FIELDS
:
1035 case LTTNG_SAVE_SESSION
:
1036 case LTTNG_REGISTER_TRIGGER
:
1037 case LTTNG_UNREGISTER_TRIGGER
:
1038 case LTTNG_LIST_TRIGGERS
:
1039 case LTTNG_EXECUTE_ERROR_QUERY
:
1040 need_tracing_session
= false;
1043 DBG("Getting session %s by name", cmd_ctx
->lsm
.session
.name
);
1045 * We keep the session list lock across _all_ commands
1046 * for now, because the per-session lock does not
1047 * handle teardown properly.
1049 session_lock_list();
1050 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
.session
.name
);
1051 if (cmd_ctx
->session
== NULL
) {
1052 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
1055 /* Acquire lock for the session */
1056 session_lock(cmd_ctx
->session
);
1062 * Commands that need a valid session but should NOT create one if none
1063 * exists. Instead of creating one and destroying it when the command is
1064 * handled, process that right before so we save some round trip in useless
1067 switch (cmd_ctx
->lsm
.cmd_type
) {
1068 case LTTNG_DISABLE_CHANNEL
:
1069 case LTTNG_DISABLE_EVENT
:
1070 switch (cmd_ctx
->lsm
.domain
.type
) {
1071 case LTTNG_DOMAIN_KERNEL
:
1072 if (!cmd_ctx
->session
->kernel_session
) {
1073 ret
= LTTNG_ERR_NO_CHANNEL
;
1077 case LTTNG_DOMAIN_JUL
:
1078 case LTTNG_DOMAIN_LOG4J
:
1079 case LTTNG_DOMAIN_PYTHON
:
1080 case LTTNG_DOMAIN_UST
:
1081 if (!cmd_ctx
->session
->ust_session
) {
1082 ret
= LTTNG_ERR_NO_CHANNEL
;
1087 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1099 * Check domain type for specific "pre-action".
1101 switch (cmd_ctx
->lsm
.domain
.type
) {
1102 case LTTNG_DOMAIN_KERNEL
:
1104 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
1108 /* Kernel tracer check */
1109 if (!kernel_tracer_is_initialized()) {
1110 /* Basically, load kernel tracer modules */
1111 ret
= init_kernel_tracer();
1117 /* Consumer is in an ERROR state. Report back to client */
1118 if (need_consumerd
&& uatomic_read(&the_kernel_consumerd_state
) ==
1120 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
1124 /* Need a session for kernel command */
1125 if (need_tracing_session
) {
1126 if (cmd_ctx
->session
->kernel_session
== NULL
) {
1127 ret
= create_kernel_session(cmd_ctx
->session
);
1128 if (ret
!= LTTNG_OK
) {
1129 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
1134 /* Start the kernel consumer daemon */
1135 pthread_mutex_lock(&the_kconsumer_data
.pid_mutex
);
1136 if (the_kconsumer_data
.pid
== 0 &&
1137 cmd_ctx
->lsm
.cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
1138 pthread_mutex_unlock(&the_kconsumer_data
.pid_mutex
);
1139 ret
= start_consumerd(&the_kconsumer_data
);
1141 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
1144 uatomic_set(&the_kernel_consumerd_state
, CONSUMER_STARTED
);
1146 pthread_mutex_unlock(&the_kconsumer_data
.pid_mutex
);
1150 * The consumer was just spawned so we need to add the socket to
1151 * the consumer output of the session if exist.
1153 ret
= consumer_create_socket(&the_kconsumer_data
,
1154 cmd_ctx
->session
->kernel_session
->consumer
);
1161 case LTTNG_DOMAIN_JUL
:
1162 case LTTNG_DOMAIN_LOG4J
:
1163 case LTTNG_DOMAIN_PYTHON
:
1164 if (!agent_tracing_is_enabled()) {
1165 ret
= LTTNG_ERR_AGENT_TRACING_DISABLED
;
1169 case LTTNG_DOMAIN_UST
:
1171 if (!ust_app_supported()) {
1172 ret
= LTTNG_ERR_NO_UST
;
1176 /* Consumer is in an ERROR state. Report back to client */
1177 if (need_consumerd
&&
1178 uatomic_read(&the_ust_consumerd_state
) ==
1180 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
1184 if (need_tracing_session
) {
1185 /* Create UST session if none exist. */
1186 if (cmd_ctx
->session
->ust_session
== NULL
) {
1187 lttng_domain domain
= cmd_ctx
->lsm
.domain
;
1188 ret
= create_ust_session(cmd_ctx
->session
, &domain
);
1189 if (ret
!= LTTNG_OK
) {
1194 /* Start the UST consumer daemons */
1196 pthread_mutex_lock(&the_ustconsumer64_data
.pid_mutex
);
1197 if (the_config
.consumerd64_bin_path
.value
&&
1198 the_ustconsumer64_data
.pid
== 0 &&
1199 cmd_ctx
->lsm
.cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
1200 pthread_mutex_unlock(&the_ustconsumer64_data
.pid_mutex
);
1201 ret
= start_consumerd(&the_ustconsumer64_data
);
1203 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
1204 uatomic_set(&the_ust_consumerd64_fd
, -EINVAL
);
1208 uatomic_set(&the_ust_consumerd64_fd
, the_ustconsumer64_data
.cmd_sock
);
1209 uatomic_set(&the_ust_consumerd_state
, CONSUMER_STARTED
);
1211 pthread_mutex_unlock(&the_ustconsumer64_data
.pid_mutex
);
1215 * Setup socket for consumer 64 bit. No need for atomic access
1216 * since it was set above and can ONLY be set in this thread.
1218 ret
= consumer_create_socket(&the_ustconsumer64_data
,
1219 cmd_ctx
->session
->ust_session
->consumer
);
1225 pthread_mutex_lock(&the_ustconsumer32_data
.pid_mutex
);
1226 if (the_config
.consumerd32_bin_path
.value
&&
1227 the_ustconsumer32_data
.pid
== 0 &&
1228 cmd_ctx
->lsm
.cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
1229 pthread_mutex_unlock(&the_ustconsumer32_data
.pid_mutex
);
1230 ret
= start_consumerd(&the_ustconsumer32_data
);
1232 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
1233 uatomic_set(&the_ust_consumerd32_fd
, -EINVAL
);
1237 uatomic_set(&the_ust_consumerd32_fd
, the_ustconsumer32_data
.cmd_sock
);
1238 uatomic_set(&the_ust_consumerd_state
, CONSUMER_STARTED
);
1240 pthread_mutex_unlock(&the_ustconsumer32_data
.pid_mutex
);
1244 * Setup socket for consumer 32 bit. No need for atomic access
1245 * since it was set above and can ONLY be set in this thread.
1247 ret
= consumer_create_socket(&the_ustconsumer32_data
,
1248 cmd_ctx
->session
->ust_session
->consumer
);
1260 /* Validate consumer daemon state when start/stop trace command */
1261 if (cmd_ctx
->lsm
.cmd_type
== LTTNG_START_TRACE
||
1262 cmd_ctx
->lsm
.cmd_type
== LTTNG_STOP_TRACE
) {
1263 switch (cmd_ctx
->lsm
.domain
.type
) {
1264 case LTTNG_DOMAIN_NONE
:
1266 case LTTNG_DOMAIN_JUL
:
1267 case LTTNG_DOMAIN_LOG4J
:
1268 case LTTNG_DOMAIN_PYTHON
:
1269 case LTTNG_DOMAIN_UST
:
1270 if (uatomic_read(&the_ust_consumerd_state
) != CONSUMER_STARTED
) {
1271 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
1275 case LTTNG_DOMAIN_KERNEL
:
1276 if (uatomic_read(&the_kernel_consumerd_state
) != CONSUMER_STARTED
) {
1277 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
1282 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
1288 * Check that the UID matches that of the tracing session.
1289 * The root user can interact with all sessions.
1291 if (need_tracing_session
) {
1292 if (!session_access_ok(cmd_ctx
->session
,
1293 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
)) ||
1294 cmd_ctx
->session
->destroyed
) {
1295 ret
= LTTNG_ERR_EPERM
;
1301 * Send relayd information to consumer as soon as we have a domain and a
1304 if (cmd_ctx
->session
&& need_domain
) {
1306 * Setup relayd if not done yet. If the relayd information was already
1307 * sent to the consumer, this call will gracefully return.
1309 ret
= cmd_setup_relayd(cmd_ctx
->session
);
1310 if (ret
!= LTTNG_OK
) {
1315 /* Process by command type */
1316 switch (cmd_ctx
->lsm
.cmd_type
) {
1317 case LTTNG_ADD_CONTEXT
:
1319 lttng_event_context ctx
;
1322 * An LTTNG_ADD_CONTEXT command might have a supplementary
1323 * payload if the context being added is an application context.
1325 if (cmd_ctx
->lsm
.u
.context
.ctx
.ctx
==
1326 LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
1327 char *provider_name
= NULL
, *context_name
= NULL
;
1328 size_t provider_name_len
=
1329 cmd_ctx
->lsm
.u
.context
.provider_name_len
;
1330 size_t context_name_len
=
1331 cmd_ctx
->lsm
.u
.context
.context_name_len
;
1333 if (provider_name_len
== 0 || context_name_len
== 0) {
1335 * Application provider and context names MUST
1338 ret
= -LTTNG_ERR_INVALID
;
1342 provider_name
= (char *) zmalloc(provider_name_len
+ 1);
1343 if (!provider_name
) {
1344 ret
= -LTTNG_ERR_NOMEM
;
1347 cmd_ctx
->lsm
.u
.context
.ctx
.u
.app_ctx
.provider_name
=
1350 context_name
= (char *) zmalloc(context_name_len
+ 1);
1351 if (!context_name
) {
1352 ret
= -LTTNG_ERR_NOMEM
;
1353 goto error_add_context
;
1355 cmd_ctx
->lsm
.u
.context
.ctx
.u
.app_ctx
.ctx_name
=
1358 ret
= lttcomm_recv_unix_sock(*sock
, provider_name
,
1361 goto error_add_context
;
1364 ret
= lttcomm_recv_unix_sock(*sock
, context_name
,
1367 goto error_add_context
;
1372 * cmd_add_context assumes ownership of the provider and context
1375 ctx
= cmd_ctx
->lsm
.u
.context
.ctx
;
1376 ret
= cmd_add_context(cmd_ctx
->session
,
1377 cmd_ctx
->lsm
.domain
.type
,
1378 cmd_ctx
->lsm
.u
.context
.channel_name
,
1380 the_kernel_poll_pipe
[1]);
1382 cmd_ctx
->lsm
.u
.context
.ctx
.u
.app_ctx
.provider_name
= NULL
;
1383 cmd_ctx
->lsm
.u
.context
.ctx
.u
.app_ctx
.ctx_name
= NULL
;
1385 free(cmd_ctx
->lsm
.u
.context
.ctx
.u
.app_ctx
.provider_name
);
1386 free(cmd_ctx
->lsm
.u
.context
.ctx
.u
.app_ctx
.ctx_name
);
1392 case LTTNG_DISABLE_CHANNEL
:
1394 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
.domain
.type
,
1395 cmd_ctx
->lsm
.u
.disable
.channel_name
);
1398 case LTTNG_DISABLE_EVENT
:
1403 * FIXME: handle filter; for now we just receive the filter's
1404 * bytecode along with the filter expression which are sent by
1405 * liblttng-ctl and discard them.
1407 * This fixes an issue where the client may block while sending
1408 * the filter payload and encounter an error because the session
1409 * daemon closes the socket without ever handling this data.
1411 size_t count
= cmd_ctx
->lsm
.u
.disable
.expression_len
+
1412 cmd_ctx
->lsm
.u
.disable
.bytecode_len
;
1415 char data
[LTTNG_FILTER_MAX_LEN
];
1417 DBG("Discarding disable event command payload of size %zu", count
);
1419 ret
= lttcomm_recv_unix_sock(*sock
, data
,
1420 count
> sizeof(data
) ? sizeof(data
) : count
);
1425 count
-= (size_t) ret
;
1428 event
= cmd_ctx
->lsm
.u
.disable
.event
;
1429 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
.domain
.type
,
1430 cmd_ctx
->lsm
.u
.disable
.channel_name
,
1434 case LTTNG_ENABLE_CHANNEL
:
1436 ret
= cmd_enable_channel(
1437 cmd_ctx
, *sock
, the_kernel_poll_pipe
[1]);
1440 case LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE
:
1441 case LTTNG_PROCESS_ATTR_TRACKER_REMOVE_INCLUDE_VALUE
:
1443 struct lttng_dynamic_buffer payload
;
1444 struct lttng_buffer_view payload_view
;
1445 const bool add_value
=
1446 cmd_ctx
->lsm
.cmd_type
==
1447 LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE
;
1448 const size_t name_len
=
1449 cmd_ctx
->lsm
.u
.process_attr_tracker_add_remove_include_value
1451 const enum lttng_domain_type domain_type
=
1452 (enum lttng_domain_type
)
1453 cmd_ctx
->lsm
.domain
.type
;
1454 const enum lttng_process_attr process_attr
=
1455 (enum lttng_process_attr
) cmd_ctx
->lsm
.u
1456 .process_attr_tracker_add_remove_include_value
1458 const enum lttng_process_attr_value_type value_type
=
1459 (enum lttng_process_attr_value_type
) cmd_ctx
1461 .process_attr_tracker_add_remove_include_value
1463 struct process_attr_value
*value
;
1464 enum lttng_error_code ret_code
;
1465 long login_name_max
;
1467 login_name_max
= sysconf(_SC_LOGIN_NAME_MAX
);
1468 if (login_name_max
< 0) {
1469 PERROR("Failed to get _SC_LOGIN_NAME_MAX system configuration");
1470 ret
= LTTNG_ERR_INVALID
;
1474 /* Receive remaining variable length payload if applicable. */
1475 if (name_len
> login_name_max
) {
1477 * POSIX mandates user and group names that are at least
1478 * 8 characters long. Note that although shadow-utils
1479 * (useradd, groupaadd, etc.) use 32 chars as their
1480 * limit (from bits/utmp.h, UT_NAMESIZE),
1481 * LOGIN_NAME_MAX is defined to 256.
1483 ERR("Rejecting process attribute tracker value %s as the provided exceeds the maximal allowed length: argument length = %zu, maximal length = %ld",
1484 add_value
? "addition" : "removal",
1485 name_len
, login_name_max
);
1486 ret
= LTTNG_ERR_INVALID
;
1490 lttng_dynamic_buffer_init(&payload
);
1491 if (name_len
!= 0) {
1493 * Receive variable payload for user/group name
1496 ret
= lttng_dynamic_buffer_set_size(&payload
, name_len
);
1498 ERR("Failed to allocate buffer to receive payload of %s process attribute tracker value argument",
1499 add_value
? "add" : "remove");
1500 ret
= LTTNG_ERR_NOMEM
;
1501 goto error_add_remove_tracker_value
;
1504 ret
= lttcomm_recv_unix_sock(
1505 *sock
, payload
.data
, name_len
);
1507 ERR("Failed to receive payload of %s process attribute tracker value argument",
1508 add_value
? "add" : "remove");
1510 ret
= LTTNG_ERR_INVALID_PROTOCOL
;
1511 goto error_add_remove_tracker_value
;
1515 payload_view
= lttng_buffer_view_from_dynamic_buffer(
1516 &payload
, 0, name_len
);
1517 if (name_len
> 0 && !lttng_buffer_view_is_valid(&payload_view
)) {
1518 ret
= LTTNG_ERR_INVALID_PROTOCOL
;
1519 goto error_add_remove_tracker_value
;
1523 * Validate the value type and domains are legal for the process
1524 * attribute tracker that is specified and convert the value to
1525 * add/remove to the internal sessiond representation.
1527 ret_code
= process_attr_value_from_comm(domain_type
,
1528 process_attr
, value_type
,
1529 &cmd_ctx
->lsm
.u
.process_attr_tracker_add_remove_include_value
1531 &payload_view
, &value
);
1532 if (ret_code
!= LTTNG_OK
) {
1534 goto error_add_remove_tracker_value
;
1538 ret
= cmd_process_attr_tracker_inclusion_set_add_value(
1539 cmd_ctx
->session
, domain_type
,
1540 process_attr
, value
);
1542 ret
= cmd_process_attr_tracker_inclusion_set_remove_value(
1543 cmd_ctx
->session
, domain_type
,
1544 process_attr
, value
);
1546 process_attr_value_destroy(value
);
1547 error_add_remove_tracker_value
:
1548 lttng_dynamic_buffer_reset(&payload
);
1551 case LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY
:
1553 enum lttng_tracking_policy tracking_policy
;
1554 const enum lttng_domain_type domain_type
=
1555 (enum lttng_domain_type
)
1556 cmd_ctx
->lsm
.domain
.type
;
1557 const enum lttng_process_attr process_attr
=
1558 (enum lttng_process_attr
) cmd_ctx
->lsm
.u
1559 .process_attr_tracker_get_tracking_policy
1562 ret
= cmd_process_attr_tracker_get_tracking_policy(
1563 cmd_ctx
->session
, domain_type
, process_attr
,
1565 if (ret
!= LTTNG_OK
) {
1569 uint32_t tracking_policy_u32
= tracking_policy
;
1570 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
,
1571 &tracking_policy_u32
, sizeof(uint32_t));
1573 ret
= LTTNG_ERR_NOMEM
;
1579 case LTTNG_PROCESS_ATTR_TRACKER_SET_POLICY
:
1581 const enum lttng_tracking_policy tracking_policy
=
1582 (enum lttng_tracking_policy
) cmd_ctx
->lsm
.u
1583 .process_attr_tracker_set_tracking_policy
1585 const enum lttng_domain_type domain_type
=
1586 (enum lttng_domain_type
)
1587 cmd_ctx
->lsm
.domain
.type
;
1588 const enum lttng_process_attr process_attr
=
1589 (enum lttng_process_attr
) cmd_ctx
->lsm
.u
1590 .process_attr_tracker_set_tracking_policy
1593 ret
= cmd_process_attr_tracker_set_tracking_policy(
1594 cmd_ctx
->session
, domain_type
, process_attr
,
1596 if (ret
!= LTTNG_OK
) {
1601 case LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET
:
1603 struct lttng_process_attr_values
*values
;
1604 struct lttng_dynamic_buffer reply
;
1605 const enum lttng_domain_type domain_type
=
1606 (enum lttng_domain_type
)
1607 cmd_ctx
->lsm
.domain
.type
;
1608 const enum lttng_process_attr process_attr
=
1609 (enum lttng_process_attr
) cmd_ctx
->lsm
.u
1610 .process_attr_tracker_get_inclusion_set
1613 ret
= cmd_process_attr_tracker_get_inclusion_set(
1614 cmd_ctx
->session
, domain_type
, process_attr
,
1616 if (ret
!= LTTNG_OK
) {
1620 lttng_dynamic_buffer_init(&reply
);
1621 ret
= lttng_process_attr_values_serialize(values
, &reply
);
1623 goto error_tracker_get_inclusion_set
;
1626 ret
= setup_lttng_msg_no_cmd_header(
1627 cmd_ctx
, reply
.data
, reply
.size
);
1629 ret
= LTTNG_ERR_NOMEM
;
1630 goto error_tracker_get_inclusion_set
;
1634 error_tracker_get_inclusion_set
:
1635 lttng_process_attr_values_destroy(values
);
1636 lttng_dynamic_buffer_reset(&reply
);
1639 case LTTNG_ENABLE_EVENT
:
1641 struct lttng_event
*ev
= NULL
;
1642 struct lttng_event_exclusion
*exclusion
= NULL
;
1643 struct lttng_bytecode
*bytecode
= NULL
;
1644 char *filter_expression
= NULL
;
1646 lttng_domain domain
;
1648 /* Handle exclusion events and receive it from the client. */
1649 if (cmd_ctx
->lsm
.u
.enable
.exclusion_count
> 0) {
1650 size_t count
= cmd_ctx
->lsm
.u
.enable
.exclusion_count
;
1652 exclusion
= (lttng_event_exclusion
*) zmalloc(sizeof(struct lttng_event_exclusion
) +
1653 (count
* LTTNG_SYMBOL_NAME_LEN
));
1655 ret
= LTTNG_ERR_EXCLUSION_NOMEM
;
1659 DBG("Receiving var len exclusion event list from client ...");
1660 exclusion
->count
= count
;
1661 ret
= lttcomm_recv_unix_sock(*sock
, exclusion
->names
,
1662 count
* LTTNG_SYMBOL_NAME_LEN
);
1664 DBG("Nothing recv() from client var len data... continuing");
1667 ret
= LTTNG_ERR_EXCLUSION_INVAL
;
1672 /* Get filter expression from client. */
1673 if (cmd_ctx
->lsm
.u
.enable
.expression_len
> 0) {
1674 size_t expression_len
=
1675 cmd_ctx
->lsm
.u
.enable
.expression_len
;
1677 if (expression_len
> LTTNG_FILTER_MAX_LEN
) {
1678 ret
= LTTNG_ERR_FILTER_INVAL
;
1683 filter_expression
= (char *) zmalloc(expression_len
);
1684 if (!filter_expression
) {
1686 ret
= LTTNG_ERR_FILTER_NOMEM
;
1690 /* Receive var. len. data */
1691 DBG("Receiving var len filter's expression from client ...");
1692 ret
= lttcomm_recv_unix_sock(*sock
, filter_expression
,
1695 DBG("Nothing recv() from client var len data... continuing");
1697 free(filter_expression
);
1699 ret
= LTTNG_ERR_FILTER_INVAL
;
1704 /* Handle filter and get bytecode from client. */
1705 if (cmd_ctx
->lsm
.u
.enable
.bytecode_len
> 0) {
1706 size_t bytecode_len
= cmd_ctx
->lsm
.u
.enable
.bytecode_len
;
1708 if (bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
1709 ret
= LTTNG_ERR_FILTER_INVAL
;
1710 free(filter_expression
);
1715 bytecode
= (lttng_bytecode
*) zmalloc(bytecode_len
);
1717 free(filter_expression
);
1719 ret
= LTTNG_ERR_FILTER_NOMEM
;
1723 /* Receive var. len. data */
1724 DBG("Receiving var len filter's bytecode from client ...");
1725 ret
= lttcomm_recv_unix_sock(*sock
, bytecode
, bytecode_len
);
1727 DBG("Nothing recv() from client var len data... continuing");
1729 free(filter_expression
);
1732 ret
= LTTNG_ERR_FILTER_INVAL
;
1736 if ((bytecode
->len
+ sizeof(*bytecode
)) != bytecode_len
) {
1737 free(filter_expression
);
1740 ret
= LTTNG_ERR_FILTER_INVAL
;
1745 event
= cmd_ctx
->lsm
.u
.enable
.event
;
1746 ev
= lttng_event_copy(&event
);
1748 DBG("Failed to copy event: %s",
1749 cmd_ctx
->lsm
.u
.enable
.event
.name
);
1750 free(filter_expression
);
1753 ret
= LTTNG_ERR_NOMEM
;
1758 if (cmd_ctx
->lsm
.u
.enable
.userspace_probe_location_len
> 0) {
1759 /* Expect a userspace probe description. */
1760 ret
= receive_userspace_probe(cmd_ctx
, *sock
, sock_error
, ev
);
1762 free(filter_expression
);
1765 lttng_event_destroy(ev
);
1770 domain
= cmd_ctx
->lsm
.domain
;
1771 ret
= cmd_enable_event(cmd_ctx
->session
,
1773 cmd_ctx
->lsm
.u
.enable
.channel_name
,
1775 filter_expression
, bytecode
, exclusion
,
1776 the_kernel_poll_pipe
[1]);
1777 lttng_event_destroy(ev
);
1780 case LTTNG_LIST_TRACEPOINTS
:
1782 struct lttng_event
*events
;
1785 session_lock_list();
1786 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
.domain
.type
, &events
);
1787 session_unlock_list();
1788 if (nb_events
< 0) {
1789 /* Return value is a negative lttng_error_code. */
1795 * Setup lttng message with payload size set to the event list size in
1796 * bytes and then copy list into the llm payload.
1798 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, events
,
1799 sizeof(struct lttng_event
) * nb_events
);
1809 case LTTNG_LIST_TRACEPOINT_FIELDS
:
1811 struct lttng_event_field
*fields
;
1814 session_lock_list();
1815 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
.domain
.type
,
1817 session_unlock_list();
1818 if (nb_fields
< 0) {
1819 /* Return value is a negative lttng_error_code. */
1825 * Setup lttng message with payload size set to the event list size in
1826 * bytes and then copy list into the llm payload.
1828 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, fields
,
1829 sizeof(struct lttng_event_field
) * nb_fields
);
1839 case LTTNG_LIST_SYSCALLS
:
1841 struct lttng_event
*events
;
1844 nb_events
= cmd_list_syscalls(&events
);
1845 if (nb_events
< 0) {
1846 /* Return value is a negative lttng_error_code. */
1852 * Setup lttng message with payload size set to the event list size in
1853 * bytes and then copy list into the llm payload.
1855 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, events
,
1856 sizeof(struct lttng_event
) * nb_events
);
1866 case LTTNG_SET_CONSUMER_URI
:
1869 struct lttng_uri
*uris
;
1871 nb_uri
= cmd_ctx
->lsm
.u
.uri
.size
;
1872 len
= nb_uri
* sizeof(struct lttng_uri
);
1875 ret
= LTTNG_ERR_INVALID
;
1879 uris
= (lttng_uri
*) zmalloc(len
);
1881 ret
= LTTNG_ERR_FATAL
;
1885 /* Receive variable len data */
1886 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
1887 ret
= lttcomm_recv_unix_sock(*sock
, uris
, len
);
1889 DBG("No URIs received from client... continuing");
1891 ret
= LTTNG_ERR_SESSION_FAIL
;
1896 ret
= cmd_set_consumer_uri(cmd_ctx
->session
, nb_uri
, uris
);
1898 if (ret
!= LTTNG_OK
) {
1905 case LTTNG_START_TRACE
:
1908 * On the first start, if we have a kernel session and we have
1909 * enabled time or size-based rotations, we have to make sure
1910 * the kernel tracer supports it.
1912 if (!cmd_ctx
->session
->has_been_started
&& \
1913 cmd_ctx
->session
->kernel_session
&& \
1914 (cmd_ctx
->session
->rotate_timer_period
|| \
1915 cmd_ctx
->session
->rotate_size
) && \
1916 !check_rotate_compatible()) {
1917 DBG("Kernel tracer version is not compatible with the rotation feature");
1918 ret
= LTTNG_ERR_ROTATION_WRONG_VERSION
;
1921 ret
= cmd_start_trace(cmd_ctx
->session
);
1924 case LTTNG_STOP_TRACE
:
1926 ret
= cmd_stop_trace(cmd_ctx
->session
);
1929 case LTTNG_DESTROY_SESSION
:
1931 ret
= cmd_destroy_session(cmd_ctx
->session
,
1932 the_notification_thread_handle
, sock
);
1935 case LTTNG_LIST_DOMAINS
:
1938 struct lttng_domain
*domains
= NULL
;
1940 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
1942 /* Return value is a negative lttng_error_code. */
1947 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, domains
,
1948 nb_dom
* sizeof(struct lttng_domain
));
1958 case LTTNG_LIST_CHANNELS
:
1960 enum lttng_error_code ret_code
;
1961 size_t original_payload_size
;
1962 size_t payload_size
;
1963 const size_t command_header_size
= sizeof(struct lttcomm_list_command_header
);
1965 ret
= setup_empty_lttng_msg(cmd_ctx
);
1967 ret
= LTTNG_ERR_NOMEM
;
1971 original_payload_size
= cmd_ctx
->reply_payload
.buffer
.size
;
1973 ret_code
= cmd_list_channels(cmd_ctx
->lsm
.domain
.type
,
1974 cmd_ctx
->session
, &cmd_ctx
->reply_payload
);
1975 if (ret_code
!= LTTNG_OK
) {
1976 ret
= (int) ret_code
;
1980 payload_size
= cmd_ctx
->reply_payload
.buffer
.size
-
1981 command_header_size
- original_payload_size
;
1982 update_lttng_msg(cmd_ctx
, command_header_size
, payload_size
);
1987 case LTTNG_LIST_EVENTS
:
1990 struct lttcomm_event_command_header cmd_header
= {};
1991 size_t original_payload_size
;
1992 size_t payload_size
;
1994 ret
= setup_empty_lttng_msg(cmd_ctx
);
1996 ret
= LTTNG_ERR_NOMEM
;
2000 original_payload_size
= cmd_ctx
->reply_payload
.buffer
.size
;
2002 /* Extended infos are included at the end of the payload. */
2003 list_ret
= cmd_list_events(cmd_ctx
->lsm
.domain
.type
,
2005 cmd_ctx
->lsm
.u
.list
.channel_name
,
2006 &cmd_ctx
->reply_payload
);
2008 /* Return value is a negative lttng_error_code. */
2013 payload_size
= cmd_ctx
->reply_payload
.buffer
.size
-
2014 sizeof(cmd_header
) - original_payload_size
;
2015 update_lttng_msg(cmd_ctx
, sizeof(cmd_header
), payload_size
);
2020 case LTTNG_LIST_SESSIONS
:
2022 unsigned int nr_sessions
;
2023 lttng_session
*sessions_payload
;
2026 session_lock_list();
2027 nr_sessions
= lttng_sessions_count(
2028 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2029 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
2031 payload_len
= (sizeof(struct lttng_session
) * nr_sessions
) +
2032 (sizeof(struct lttng_session_extended
) * nr_sessions
);
2033 sessions_payload
= (lttng_session
*) zmalloc(payload_len
);
2035 if (!sessions_payload
) {
2036 session_unlock_list();
2041 cmd_list_lttng_sessions(sessions_payload
, nr_sessions
,
2042 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2043 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
2044 session_unlock_list();
2046 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, sessions_payload
,
2048 free(sessions_payload
);
2057 case LTTNG_REGISTER_CONSUMER
:
2059 struct consumer_data
*cdata
;
2061 switch (cmd_ctx
->lsm
.domain
.type
) {
2062 case LTTNG_DOMAIN_KERNEL
:
2063 cdata
= &the_kconsumer_data
;
2066 ret
= LTTNG_ERR_UND
;
2070 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
.domain
.type
,
2071 cmd_ctx
->lsm
.u
.reg
.path
, cdata
);
2074 case LTTNG_DATA_PENDING
:
2077 uint8_t pending_ret_byte
;
2079 pending_ret
= cmd_data_pending(cmd_ctx
->session
);
2084 * This function may returns 0 or 1 to indicate whether or not
2085 * there is data pending. In case of error, it should return an
2086 * LTTNG_ERR code. However, some code paths may still return
2087 * a nondescript error code, which we handle by returning an
2090 if (pending_ret
== 0 || pending_ret
== 1) {
2092 * ret will be set to LTTNG_OK at the end of
2095 } else if (pending_ret
< 0) {
2096 ret
= LTTNG_ERR_UNK
;
2103 pending_ret_byte
= (uint8_t) pending_ret
;
2105 /* 1 byte to return whether or not data is pending */
2106 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
,
2107 &pending_ret_byte
, 1);
2116 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
2118 uint32_t snapshot_id
;
2119 struct lttcomm_lttng_output_id reply
;
2120 lttng_snapshot_output output
= cmd_ctx
->lsm
.u
.snapshot_output
.output
;
2122 ret
= cmd_snapshot_add_output(cmd_ctx
->session
,
2125 if (ret
!= LTTNG_OK
) {
2128 reply
.id
= snapshot_id
;
2130 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &reply
,
2136 /* Copy output list into message payload */
2140 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
2142 lttng_snapshot_output output
= cmd_ctx
->lsm
.u
.snapshot_output
.output
;
2143 ret
= cmd_snapshot_del_output(cmd_ctx
->session
, &output
);
2146 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
2149 struct lttng_snapshot_output
*outputs
= NULL
;
2151 nb_output
= cmd_snapshot_list_outputs(cmd_ctx
->session
, &outputs
);
2152 if (nb_output
< 0) {
2157 LTTNG_ASSERT((nb_output
> 0 && outputs
) || nb_output
== 0);
2158 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, outputs
,
2159 nb_output
* sizeof(struct lttng_snapshot_output
));
2169 case LTTNG_SNAPSHOT_RECORD
:
2171 lttng_snapshot_output output
= cmd_ctx
->lsm
.u
.snapshot_record
.output
;
2172 ret
= cmd_snapshot_record(cmd_ctx
->session
,
2174 cmd_ctx
->lsm
.u
.snapshot_record
.wait
);
2177 case LTTNG_CREATE_SESSION_EXT
:
2179 struct lttng_dynamic_buffer payload
;
2180 struct lttng_session_descriptor
*return_descriptor
= NULL
;
2182 lttng_dynamic_buffer_init(&payload
);
2183 ret
= cmd_create_session(cmd_ctx
, *sock
, &return_descriptor
);
2184 if (ret
!= LTTNG_OK
) {
2188 ret
= lttng_session_descriptor_serialize(return_descriptor
,
2191 ERR("Failed to serialize session descriptor in reply to \"create session\" command");
2192 lttng_session_descriptor_destroy(return_descriptor
);
2193 ret
= LTTNG_ERR_NOMEM
;
2196 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, payload
.data
,
2199 lttng_session_descriptor_destroy(return_descriptor
);
2200 ret
= LTTNG_ERR_NOMEM
;
2203 lttng_dynamic_buffer_reset(&payload
);
2204 lttng_session_descriptor_destroy(return_descriptor
);
2208 case LTTNG_SAVE_SESSION
:
2210 ret
= cmd_save_sessions(&cmd_ctx
->lsm
.u
.save_session
.attr
,
2214 case LTTNG_SET_SESSION_SHM_PATH
:
2216 ret
= cmd_set_session_shm_path(cmd_ctx
->session
,
2217 cmd_ctx
->lsm
.u
.set_shm_path
.shm_path
);
2220 case LTTNG_REGENERATE_METADATA
:
2222 ret
= cmd_regenerate_metadata(cmd_ctx
->session
);
2225 case LTTNG_REGENERATE_STATEDUMP
:
2227 ret
= cmd_regenerate_statedump(cmd_ctx
->session
);
2230 case LTTNG_REGISTER_TRIGGER
:
2232 struct lttng_trigger
*payload_trigger
;
2233 struct lttng_trigger
*return_trigger
;
2234 size_t original_reply_payload_size
;
2235 size_t reply_payload_size
;
2236 const struct lttng_credentials cmd_creds
= {
2237 .uid
= LTTNG_OPTIONAL_INIT_VALUE(cmd_ctx
->creds
.uid
),
2238 .gid
= LTTNG_OPTIONAL_INIT_VALUE(cmd_ctx
->creds
.gid
),
2241 ret
= setup_empty_lttng_msg(cmd_ctx
);
2243 ret
= LTTNG_ERR_NOMEM
;
2247 ret
= receive_lttng_trigger(
2248 cmd_ctx
, *sock
, sock_error
, &payload_trigger
);
2249 if (ret
!= LTTNG_OK
) {
2253 original_reply_payload_size
= cmd_ctx
->reply_payload
.buffer
.size
;
2255 ret
= cmd_register_trigger(&cmd_creds
, payload_trigger
,
2256 cmd_ctx
->lsm
.u
.trigger
.is_trigger_anonymous
,
2257 the_notification_thread_handle
,
2259 if (ret
!= LTTNG_OK
) {
2260 lttng_trigger_put(payload_trigger
);
2264 ret
= lttng_trigger_serialize(return_trigger
, &cmd_ctx
->reply_payload
);
2265 lttng_trigger_put(payload_trigger
);
2266 lttng_trigger_put(return_trigger
);
2268 ERR("Failed to serialize trigger in reply to \"register trigger\" command");
2269 ret
= LTTNG_ERR_NOMEM
;
2273 reply_payload_size
= cmd_ctx
->reply_payload
.buffer
.size
-
2274 original_reply_payload_size
;
2276 update_lttng_msg(cmd_ctx
, 0, reply_payload_size
);
2281 case LTTNG_UNREGISTER_TRIGGER
:
2283 struct lttng_trigger
*payload_trigger
;
2284 const struct lttng_credentials cmd_creds
= {
2285 .uid
= LTTNG_OPTIONAL_INIT_VALUE(cmd_ctx
->creds
.uid
),
2286 .gid
= LTTNG_OPTIONAL_INIT_VALUE(cmd_ctx
->creds
.gid
),
2289 ret
= receive_lttng_trigger(
2290 cmd_ctx
, *sock
, sock_error
, &payload_trigger
);
2291 if (ret
!= LTTNG_OK
) {
2295 ret
= cmd_unregister_trigger(&cmd_creds
, payload_trigger
,
2296 the_notification_thread_handle
);
2297 lttng_trigger_put(payload_trigger
);
2300 case LTTNG_ROTATE_SESSION
:
2302 struct lttng_rotate_session_return rotate_return
;
2304 DBG("Client rotate session \"%s\"", cmd_ctx
->session
->name
);
2306 memset(&rotate_return
, 0, sizeof(rotate_return
));
2307 if (cmd_ctx
->session
->kernel_session
&& !check_rotate_compatible()) {
2308 DBG("Kernel tracer version is not compatible with the rotation feature");
2309 ret
= LTTNG_ERR_ROTATION_WRONG_VERSION
;
2313 ret
= cmd_rotate_session(cmd_ctx
->session
, &rotate_return
,
2315 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED
);
2321 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &rotate_return
,
2322 sizeof(rotate_return
));
2331 case LTTNG_ROTATION_GET_INFO
:
2333 struct lttng_rotation_get_info_return get_info_return
;
2335 memset(&get_info_return
, 0, sizeof(get_info_return
));
2336 ret
= cmd_rotate_get_info(cmd_ctx
->session
, &get_info_return
,
2337 cmd_ctx
->lsm
.u
.get_rotation_info
.rotation_id
);
2343 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &get_info_return
,
2344 sizeof(get_info_return
));
2353 case LTTNG_ROTATION_SET_SCHEDULE
:
2356 enum lttng_rotation_schedule_type schedule_type
;
2359 if (cmd_ctx
->session
->kernel_session
&& !check_rotate_compatible()) {
2360 DBG("Kernel tracer version does not support session rotations");
2361 ret
= LTTNG_ERR_ROTATION_WRONG_VERSION
;
2365 set_schedule
= cmd_ctx
->lsm
.u
.rotation_set_schedule
.set
== 1;
2366 schedule_type
= (enum lttng_rotation_schedule_type
) cmd_ctx
->lsm
.u
.rotation_set_schedule
.type
;
2367 value
= cmd_ctx
->lsm
.u
.rotation_set_schedule
.value
;
2369 ret
= cmd_rotation_set_schedule(cmd_ctx
->session
, set_schedule
,
2370 schedule_type
, value
,
2371 the_notification_thread_handle
);
2372 if (ret
!= LTTNG_OK
) {
2378 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES
:
2380 lttng_session_list_schedules_return schedules
;
2382 schedules
.periodic
.set
= !!cmd_ctx
->session
->rotate_timer_period
;
2383 schedules
.periodic
.value
= cmd_ctx
->session
->rotate_timer_period
;
2384 schedules
.size
.set
= !!cmd_ctx
->session
->rotate_size
;
2385 schedules
.size
.value
= cmd_ctx
->session
->rotate_size
;
2387 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &schedules
,
2397 case LTTNG_CLEAR_SESSION
:
2399 ret
= cmd_clear_session(cmd_ctx
->session
, sock
);
2402 case LTTNG_LIST_TRIGGERS
:
2404 struct lttng_triggers
*return_triggers
= NULL
;
2405 size_t original_payload_size
;
2406 size_t payload_size
;
2408 ret
= setup_empty_lttng_msg(cmd_ctx
);
2410 ret
= LTTNG_ERR_NOMEM
;
2414 original_payload_size
= cmd_ctx
->reply_payload
.buffer
.size
;
2416 ret
= cmd_list_triggers(cmd_ctx
, the_notification_thread_handle
,
2418 if (ret
!= LTTNG_OK
) {
2422 LTTNG_ASSERT(return_triggers
);
2423 ret
= lttng_triggers_serialize(
2424 return_triggers
, &cmd_ctx
->reply_payload
);
2425 lttng_triggers_destroy(return_triggers
);
2427 ERR("Failed to serialize triggers in reply to `list triggers` command");
2428 ret
= LTTNG_ERR_NOMEM
;
2432 payload_size
= cmd_ctx
->reply_payload
.buffer
.size
-
2433 original_payload_size
;
2435 update_lttng_msg(cmd_ctx
, 0, payload_size
);
2440 case LTTNG_EXECUTE_ERROR_QUERY
:
2442 struct lttng_error_query
*query
;
2443 const struct lttng_credentials cmd_creds
= {
2444 .uid
= LTTNG_OPTIONAL_INIT_VALUE(cmd_ctx
->creds
.uid
),
2445 .gid
= LTTNG_OPTIONAL_INIT_VALUE(cmd_ctx
->creds
.gid
),
2447 struct lttng_error_query_results
*results
= NULL
;
2448 size_t original_payload_size
;
2449 size_t payload_size
;
2451 ret
= setup_empty_lttng_msg(cmd_ctx
);
2453 ret
= LTTNG_ERR_NOMEM
;
2457 original_payload_size
= cmd_ctx
->reply_payload
.buffer
.size
;
2459 ret
= receive_lttng_error_query(
2460 cmd_ctx
, *sock
, sock_error
, &query
);
2461 if (ret
!= LTTNG_OK
) {
2465 ret
= cmd_execute_error_query(&cmd_creds
, query
, &results
,
2466 the_notification_thread_handle
);
2467 lttng_error_query_destroy(query
);
2468 if (ret
!= LTTNG_OK
) {
2472 LTTNG_ASSERT(results
);
2473 ret
= lttng_error_query_results_serialize(
2474 results
, &cmd_ctx
->reply_payload
);
2475 lttng_error_query_results_destroy(results
);
2477 ERR("Failed to serialize error query result set in reply to `execute error query` command");
2478 ret
= LTTNG_ERR_NOMEM
;
2482 payload_size
= cmd_ctx
->reply_payload
.buffer
.size
-
2483 original_payload_size
;
2485 update_lttng_msg(cmd_ctx
, 0, payload_size
);
2492 ret
= LTTNG_ERR_UND
;
2497 if (cmd_ctx
->reply_payload
.buffer
.size
== 0) {
2498 DBG("Missing llm header, creating one.");
2499 if (setup_lttng_msg_no_cmd_header(cmd_ctx
, NULL
, 0) < 0) {
2503 /* Set return code */
2504 ((struct lttcomm_lttng_msg
*) (cmd_ctx
->reply_payload
.buffer
.data
))->ret_code
= ret
;
2506 if (cmd_ctx
->session
) {
2507 session_unlock(cmd_ctx
->session
);
2508 session_put(cmd_ctx
->session
);
2509 cmd_ctx
->session
= NULL
;
2511 if (need_tracing_session
) {
2512 session_unlock_list();
2515 LTTNG_ASSERT(!rcu_read_ongoing());
2519 static int create_client_sock(void)
2521 int ret
, client_sock
;
2522 const mode_t old_umask
= umask(0);
2524 /* Create client tool unix socket */
2525 client_sock
= lttcomm_create_unix_sock(
2526 the_config
.client_unix_sock_path
.value
);
2527 if (client_sock
< 0) {
2528 ERR("Create unix sock failed: %s",
2529 the_config
.client_unix_sock_path
.value
);
2534 /* Set the cloexec flag */
2535 ret
= utils_set_fd_cloexec(client_sock
);
2537 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
2538 "Continuing but note that the consumer daemon will have a "
2539 "reference to this socket on exec()", client_sock
);
2542 /* File permission MUST be 660 */
2543 ret
= chmod(the_config
.client_unix_sock_path
.value
,
2544 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
2546 ERR("Set file permissions failed: %s",
2547 the_config
.client_unix_sock_path
.value
);
2549 (void) lttcomm_close_unix_sock(client_sock
);
2553 DBG("Created client socket (fd = %i)", client_sock
);
2560 static void cleanup_client_thread(void *data
)
2562 struct lttng_pipe
*quit_pipe
= (lttng_pipe
*) data
;
2564 lttng_pipe_destroy(quit_pipe
);
2567 static void thread_init_cleanup(void *data
)
2569 set_thread_status(false);
2573 * This thread manage all clients request using the unix client socket for
2576 static void *thread_manage_clients(void *data
)
2578 int sock
= -1, ret
, i
, pollfd
, err
= -1;
2580 uint32_t revents
, nb_fd
;
2581 struct lttng_poll_event events
;
2582 const int client_sock
= thread_state
.client_sock
;
2583 struct lttng_pipe
*quit_pipe
= (lttng_pipe
*) data
;
2584 const int thread_quit_pipe_fd
= lttng_pipe_get_readfd(quit_pipe
);
2585 struct command_ctx cmd_ctx
= {};
2587 DBG("[thread] Manage client started");
2589 lttng_payload_init(&cmd_ctx
.reply_payload
);
2591 is_root
= (getuid() == 0);
2593 pthread_cleanup_push(thread_init_cleanup
, NULL
);
2595 rcu_register_thread();
2597 health_register(the_health_sessiond
, HEALTH_SESSIOND_TYPE_CMD
);
2599 health_code_update();
2601 ret
= lttcomm_listen_unix_sock(client_sock
);
2607 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
2608 * more will be added to this poll set.
2610 ret
= lttng_poll_create(&events
, 2, LTTNG_CLOEXEC
);
2612 goto error_create_poll
;
2615 /* Add the application registration socket */
2616 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
2621 /* Add thread quit pipe */
2622 ret
= lttng_poll_add(&events
, thread_quit_pipe_fd
, LPOLLIN
| LPOLLERR
);
2627 /* Set state as running. */
2628 set_thread_status(true);
2629 pthread_cleanup_pop(0);
2631 /* This testpoint is after we signal readiness to the parent. */
2632 if (testpoint(sessiond_thread_manage_clients
)) {
2636 if (testpoint(sessiond_thread_manage_clients_before_loop
)) {
2640 health_code_update();
2643 const struct cmd_completion_handler
*cmd_completion_handler
;
2645 cmd_ctx
.creds
.uid
= UINT32_MAX
;
2646 cmd_ctx
.creds
.gid
= UINT32_MAX
;
2647 cmd_ctx
.creds
.pid
= 0;
2648 cmd_ctx
.session
= NULL
;
2649 lttng_payload_clear(&cmd_ctx
.reply_payload
);
2650 cmd_ctx
.lttng_msg_size
= 0;
2652 DBG("Accepting client command ...");
2654 /* Inifinite blocking call, waiting for transmission */
2656 health_poll_entry();
2657 ret
= lttng_poll_wait(&events
, -1);
2661 * Restart interrupted system call.
2663 if (errno
== EINTR
) {
2671 for (i
= 0; i
< nb_fd
; i
++) {
2672 revents
= LTTNG_POLL_GETEV(&events
, i
);
2673 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2675 health_code_update();
2677 if (pollfd
== thread_quit_pipe_fd
) {
2681 /* Event on the registration socket */
2682 if (revents
& LPOLLIN
) {
2684 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2685 ERR("Client socket poll error");
2688 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
2694 DBG("Wait for client response");
2696 health_code_update();
2698 sock
= lttcomm_accept_unix_sock(client_sock
);
2704 * Set the CLOEXEC flag. Return code is useless because either way, the
2707 (void) utils_set_fd_cloexec(sock
);
2709 /* Set socket option for credentials retrieval */
2710 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
2715 health_code_update();
2718 * Data is received from the lttng client. The struct
2719 * lttcomm_session_msg (lsm) contains the command and data request of
2722 DBG("Receiving data from client ...");
2723 ret
= lttcomm_recv_creds_unix_sock(sock
, &cmd_ctx
.lsm
,
2724 sizeof(struct lttcomm_session_msg
), &cmd_ctx
.creds
);
2725 if (ret
!= sizeof(struct lttcomm_session_msg
)) {
2726 DBG("Incomplete recv() from client... continuing");
2735 health_code_update();
2737 // TODO: Validate cmd_ctx including sanity check for
2738 // security purpose.
2740 rcu_thread_online();
2742 * This function dispatch the work to the kernel or userspace tracer
2743 * libs and fill the lttcomm_lttng_msg data structure of all the needed
2744 * informations for the client. The command context struct contains
2745 * everything this function may needs.
2747 ret
= process_client_msg(&cmd_ctx
, &sock
, &sock_error
);
2748 rcu_thread_offline();
2758 * TODO: Inform client somehow of the fatal error. At
2759 * this point, ret < 0 means that a zmalloc failed
2760 * (ENOMEM). Error detected but still accept
2761 * command, unless a socket error has been
2767 if (ret
< LTTNG_OK
|| ret
>= LTTNG_ERR_NR
) {
2768 WARN("Command returned an invalid status code, returning unknown error: "
2769 "command type = %s (%d), ret = %d",
2770 lttcomm_sessiond_command_str((lttcomm_sessiond_command
) cmd_ctx
.lsm
.cmd_type
),
2771 cmd_ctx
.lsm
.cmd_type
, ret
);
2772 ret
= LTTNG_ERR_UNK
;
2775 cmd_completion_handler
= cmd_pop_completion_handler();
2776 if (cmd_completion_handler
) {
2777 enum lttng_error_code completion_code
;
2779 completion_code
= cmd_completion_handler
->run(
2780 cmd_completion_handler
->data
);
2781 if (completion_code
!= LTTNG_OK
) {
2786 health_code_update();
2789 struct lttng_payload_view view
=
2790 lttng_payload_view_from_payload(
2791 &cmd_ctx
.reply_payload
,
2793 struct lttcomm_lttng_msg
*llm
= (typeof(
2794 llm
)) cmd_ctx
.reply_payload
.buffer
.data
;
2796 LTTNG_ASSERT(cmd_ctx
.reply_payload
.buffer
.size
>= sizeof(*llm
));
2797 LTTNG_ASSERT(cmd_ctx
.lttng_msg_size
== cmd_ctx
.reply_payload
.buffer
.size
);
2799 llm
->fd_count
= lttng_payload_view_get_fd_handle_count(&view
);
2801 DBG("Sending response (size: %d, retcode: %s (%d))",
2802 cmd_ctx
.lttng_msg_size
,
2803 lttng_strerror(-llm
->ret_code
),
2805 ret
= send_unix_sock(sock
, &view
);
2807 ERR("Failed to send data back to client");
2810 /* End of transmission */
2818 health_code_update();
2830 lttng_poll_clean(&events
);
2834 unlink(the_config
.client_unix_sock_path
.value
);
2835 ret
= close(client_sock
);
2842 ERR("Health error occurred in %s", __func__
);
2845 health_unregister(the_health_sessiond
);
2847 DBG("Client thread dying");
2848 lttng_payload_reset(&cmd_ctx
.reply_payload
);
2849 rcu_unregister_thread();
2854 bool shutdown_client_thread(void *thread_data
)
2856 struct lttng_pipe
*client_quit_pipe
= (lttng_pipe
*) thread_data
;
2857 const int write_fd
= lttng_pipe_get_writefd(client_quit_pipe
);
2859 return notify_thread_pipe(write_fd
) == 1;
2862 struct lttng_thread
*launch_client_thread(void)
2864 bool thread_running
;
2865 struct lttng_pipe
*client_quit_pipe
;
2866 struct lttng_thread
*thread
= NULL
;
2867 int client_sock_fd
= -1;
2869 sem_init(&thread_state
.ready
, 0, 0);
2870 client_quit_pipe
= lttng_pipe_open(FD_CLOEXEC
);
2871 if (!client_quit_pipe
) {
2875 client_sock_fd
= create_client_sock();
2876 if (client_sock_fd
< 0) {
2880 thread_state
.client_sock
= client_sock_fd
;
2881 thread
= lttng_thread_create("Client management",
2882 thread_manage_clients
,
2883 shutdown_client_thread
,
2884 cleanup_client_thread
,
2889 /* The client thread now owns the client sock fd and the quit pipe. */
2890 client_sock_fd
= -1;
2891 client_quit_pipe
= NULL
;
2894 * This thread is part of the threads that need to be fully
2895 * initialized before the session daemon is marked as "ready".
2897 thread_running
= wait_thread_status();
2898 if (!thread_running
) {
2903 if (client_sock_fd
>= 0) {
2904 if (close(client_sock_fd
)) {
2905 PERROR("Failed to close client socket");
2908 lttng_thread_put(thread
);
2909 cleanup_client_thread(client_quit_pipe
);