Fix: conversion from KB to bytes overflow on arm32
[lttng-tools.git] / src / bin / lttng-sessiond / client.cpp
CommitLineData
917a718d 1/*
21cf9b6b 2 * Copyright (C) 2011 EfficiOS Inc.
ab5be9fa
MJ
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
917a718d 5 *
ab5be9fa 6 * SPDX-License-Identifier: GPL-2.0-only
917a718d 7 *
917a718d
JG
8 */
9
159b042f 10#include "common/buffer-view.h"
3a91de3a 11#include "common/compat/socket.h"
3a91de3a 12#include "common/dynamic-array.h"
588c4b0d 13#include "common/dynamic-buffer.h"
fe489250 14#include "common/fd-handle.h"
e368fb43 15#include "common/payload-view.h"
588c4b0d
JG
16#include "common/payload.h"
17#include "common/sessiond-comm/sessiond-comm.h"
159b042f
JG
18#include "lttng/lttng-error.h"
19#include "lttng/tracker.h"
917a718d 20#include <common/compat/getenv.h>
159b042f 21#include <common/tracker.h>
917a718d
JG
22#include <common/unix.h>
23#include <common/utils.h>
588c4b0d 24#include <lttng/error-query-internal.h>
917a718d 25#include <lttng/event-internal.h>
b178f53e 26#include <lttng/session-descriptor-internal.h>
159b042f
JG
27#include <lttng/session-internal.h>
28#include <lttng/userspace-probe-internal.h>
29#include <pthread.h>
30#include <signal.h>
31#include <stddef.h>
32#include <sys/stat.h>
1434fd36 33#include <unistd.h>
917a718d 34
588c4b0d
JG
35#include "agent-thread.h"
36#include "clear.h"
917a718d 37#include "client.h"
917a718d 38#include "cmd.h"
588c4b0d 39#include "health-sessiond.h"
917a718d 40#include "kernel.h"
588c4b0d
JG
41#include "lttng-sessiond.h"
42#include "manage-consumer.h"
917a718d 43#include "save.h"
917a718d
JG
44#include "testpoint.h"
45#include "utils.h"
46
47static bool is_root;
48
49static struct thread_state {
6cb45e93
JG
50 sem_t ready;
51 bool running;
0f68efb6 52 int client_sock;
6cb45e93
JG
53} thread_state;
54
55static void set_thread_status(bool running)
917a718d 56{
6cb45e93
JG
57 DBG("Marking client thread's state as %s", running ? "running" : "error");
58 thread_state.running = running;
59 sem_post(&thread_state.ready);
917a718d
JG
60}
61
6cb45e93 62static bool wait_thread_status(void)
917a718d 63{
6cb45e93
JG
64 DBG("Waiting for client thread to be ready");
65 sem_wait(&thread_state.ready);
66 if (thread_state.running) {
67 DBG("Client thread is ready");
68 } else {
69 ERR("Initialization of client thread failed");
917a718d 70 }
6cb45e93
JG
71
72 return thread_state.running;
917a718d
JG
73}
74
75/*
76 * Setup the outgoing data buffer for the response (llm) by allocating the
77 * right amount of memory and copying the original information from the lsm
78 * structure.
79 *
80 * Return 0 on success, negative value on error.
81 */
82static int setup_lttng_msg(struct command_ctx *cmd_ctx,
83 const void *payload_buf, size_t payload_len,
84 const void *cmd_header_buf, size_t cmd_header_len)
85{
86 int ret = 0;
87 const size_t header_len = sizeof(struct lttcomm_lttng_msg);
917a718d 88 const size_t total_msg_size = header_len + cmd_header_len + payload_len;
7966af57
SM
89 lttcomm_lttng_msg llm {};
90
91 llm.cmd_type = cmd_ctx->lsm.cmd_type;
92 llm.pid = (uint32_t) cmd_ctx->lsm.domain.attr.pid;
93 llm.cmd_header_size = (uint32_t) cmd_header_len;
94 llm.data_size = (uint32_t) payload_len;
917a718d 95
2eb1b01f
JR
96 ret = lttng_dynamic_buffer_set_size(&cmd_ctx->reply_payload.buffer, 0);
97 if (ret) {
98 goto end;
99 }
100
fe489250 101 lttng_dynamic_pointer_array_clear(&cmd_ctx->reply_payload._fd_handles);
917a718d 102
3a91de3a
JG
103 cmd_ctx->lttng_msg_size = total_msg_size;
104
105 /* Append reply header. */
106 ret = lttng_dynamic_buffer_append(
107 &cmd_ctx->reply_payload.buffer, &llm, sizeof(llm));
108 if (ret) {
917a718d
JG
109 goto end;
110 }
111
3a91de3a 112 /* Append command header. */
917a718d 113 if (cmd_header_len) {
3a91de3a
JG
114 ret = lttng_dynamic_buffer_append(
115 &cmd_ctx->reply_payload.buffer, cmd_header_buf,
116 cmd_header_len);
117 if (ret) {
118 goto end;
119 }
917a718d
JG
120 }
121
3a91de3a 122 /* Append payload. */
917a718d 123 if (payload_len) {
3a91de3a
JG
124 ret = lttng_dynamic_buffer_append(
125 &cmd_ctx->reply_payload.buffer, payload_buf,
126 payload_len);
127 if (ret) {
128 goto end;
129 }
917a718d
JG
130 }
131
132end:
133 return ret;
134}
135
e368fb43
JG
136static int setup_empty_lttng_msg(struct command_ctx *cmd_ctx)
137{
138 int ret;
139 const struct lttcomm_lttng_msg llm = {};
140
64defc29
JR
141 ret = lttng_dynamic_buffer_set_size(&cmd_ctx->reply_payload.buffer, 0);
142 if (ret) {
143 goto end;
144 }
e368fb43
JG
145
146 /* Append place-holder reply header. */
147 ret = lttng_dynamic_buffer_append(
148 &cmd_ctx->reply_payload.buffer, &llm, sizeof(llm));
149 if (ret) {
150 goto end;
151 }
152
153 cmd_ctx->lttng_msg_size = sizeof(llm);
154end:
155 return ret;
156}
157
158static void update_lttng_msg(struct command_ctx *cmd_ctx, size_t cmd_header_len,
159 size_t payload_len)
160{
161 const size_t header_len = sizeof(struct lttcomm_lttng_msg);
162 const size_t total_msg_size = header_len + cmd_header_len + payload_len;
e368fb43 163 struct lttcomm_lttng_msg *p_llm;
7966af57
SM
164 lttcomm_lttng_msg llm {};
165
166 llm.cmd_type = cmd_ctx->lsm.cmd_type;
167 llm.pid = (uint32_t) cmd_ctx->lsm.domain.attr.pid;
168 llm.cmd_header_size = (uint32_t) cmd_header_len;
169 llm.data_size = (uint32_t) payload_len;
e368fb43 170
a0377dfe 171 LTTNG_ASSERT(cmd_ctx->reply_payload.buffer.size >= sizeof(llm));
e368fb43
JG
172
173 p_llm = (typeof(p_llm)) cmd_ctx->reply_payload.buffer.data;
174
175 /* Update existing header. */
176 memcpy(p_llm, &llm, sizeof(llm));
177
178 cmd_ctx->lttng_msg_size = total_msg_size;
179}
180
917a718d
JG
181/*
182 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
4ec029ed 183 * exec or it will fail.
917a718d
JG
184 */
185static int spawn_consumer_thread(struct consumer_data *consumer_data)
186{
4ec029ed 187 return launch_consumer_management_thread(consumer_data) ? 0 : -1;
917a718d
JG
188}
189
190/*
191 * Fork and exec a consumer daemon (consumerd).
192 *
193 * Return pid if successful else -1.
194 */
195static pid_t spawn_consumerd(struct consumer_data *consumer_data)
196{
197 int ret;
198 pid_t pid;
199 const char *consumer_to_use;
200 const char *verbosity;
201 struct stat st;
202
203 DBG("Spawning consumerd");
204
205 pid = fork();
206 if (pid == 0) {
207 /*
208 * Exec consumerd.
209 */
412d7227 210 if (the_config.verbose_consumer) {
917a718d
JG
211 verbosity = "--verbose";
212 } else if (lttng_opt_quiet) {
213 verbosity = "--quiet";
214 } else {
215 verbosity = "";
216 }
217
218 switch (consumer_data->type) {
219 case LTTNG_CONSUMER_KERNEL:
220 /*
221 * Find out which consumerd to execute. We will first try the
222 * 64-bit path, then the sessiond's installation directory, and
223 * fallback on the 32-bit one,
224 */
225 DBG3("Looking for a kernel consumer at these locations:");
412d7227 226 DBG3(" 1) %s", the_config.consumerd64_bin_path.value ? : "NULL");
917a718d 227 DBG3(" 2) %s/%s", INSTALL_BIN_PATH, DEFAULT_CONSUMERD_FILE);
412d7227
SM
228 DBG3(" 3) %s", the_config.consumerd32_bin_path.value ? : "NULL");
229 if (stat(the_config.consumerd64_bin_path.value, &st) == 0) {
917a718d 230 DBG3("Found location #1");
412d7227 231 consumer_to_use = the_config.consumerd64_bin_path.value;
917a718d
JG
232 } else if (stat(INSTALL_BIN_PATH "/" DEFAULT_CONSUMERD_FILE, &st) == 0) {
233 DBG3("Found location #2");
234 consumer_to_use = INSTALL_BIN_PATH "/" DEFAULT_CONSUMERD_FILE;
412d7227
SM
235 } else if (the_config.consumerd32_bin_path.value &&
236 stat(the_config.consumerd32_bin_path.value, &st) == 0) {
917a718d 237 DBG3("Found location #3");
412d7227 238 consumer_to_use = the_config.consumerd32_bin_path.value;
917a718d
JG
239 } else {
240 DBG("Could not find any valid consumerd executable");
241 ret = -EINVAL;
242 goto error;
243 }
244 DBG("Using kernel consumer at: %s", consumer_to_use);
412d7227
SM
245 (void) execl(consumer_to_use, "lttng-consumerd",
246 verbosity, "-k", "--consumerd-cmd-sock",
247 consumer_data->cmd_unix_sock_path,
248 "--consumerd-err-sock",
249 consumer_data->err_unix_sock_path,
250 "--group",
251 the_config.tracing_group_name.value,
252 NULL);
917a718d
JG
253 break;
254 case LTTNG_CONSUMER64_UST:
255 {
412d7227 256 if (the_config.consumerd64_lib_dir.value) {
b53d4e59 257 const char *tmp;
917a718d
JG
258 size_t tmplen;
259 char *tmpnew;
260
261 tmp = lttng_secure_getenv("LD_LIBRARY_PATH");
262 if (!tmp) {
263 tmp = "";
264 }
412d7227 265 tmplen = strlen(the_config.consumerd64_lib_dir.value) + 1 /* : */ + strlen(tmp);
7966af57 266 tmpnew = (char *) zmalloc(tmplen + 1 /* \0 */);
917a718d
JG
267 if (!tmpnew) {
268 ret = -ENOMEM;
269 goto error;
270 }
412d7227 271 strcat(tmpnew, the_config.consumerd64_lib_dir.value);
917a718d
JG
272 if (tmp[0] != '\0') {
273 strcat(tmpnew, ":");
274 strcat(tmpnew, tmp);
275 }
276 ret = setenv("LD_LIBRARY_PATH", tmpnew, 1);
277 free(tmpnew);
278 if (ret) {
279 ret = -errno;
280 goto error;
281 }
282 }
412d7227
SM
283 DBG("Using 64-bit UST consumer at: %s",
284 the_config.consumerd64_bin_path.value);
285 (void) execl(the_config.consumerd64_bin_path.value,
286 "lttng-consumerd", verbosity, "-u",
287 "--consumerd-cmd-sock",
288 consumer_data->cmd_unix_sock_path,
289 "--consumerd-err-sock",
290 consumer_data->err_unix_sock_path,
291 "--group",
292 the_config.tracing_group_name.value,
917a718d
JG
293 NULL);
294 break;
295 }
296 case LTTNG_CONSUMER32_UST:
297 {
412d7227 298 if (the_config.consumerd32_lib_dir.value) {
b53d4e59 299 const char *tmp;
917a718d
JG
300 size_t tmplen;
301 char *tmpnew;
302
303 tmp = lttng_secure_getenv("LD_LIBRARY_PATH");
304 if (!tmp) {
305 tmp = "";
306 }
412d7227 307 tmplen = strlen(the_config.consumerd32_lib_dir.value) + 1 /* : */ + strlen(tmp);
7966af57 308 tmpnew = (char *) zmalloc(tmplen + 1 /* \0 */);
917a718d
JG
309 if (!tmpnew) {
310 ret = -ENOMEM;
311 goto error;
312 }
412d7227 313 strcat(tmpnew, the_config.consumerd32_lib_dir.value);
917a718d
JG
314 if (tmp[0] != '\0') {
315 strcat(tmpnew, ":");
316 strcat(tmpnew, tmp);
317 }
318 ret = setenv("LD_LIBRARY_PATH", tmpnew, 1);
319 free(tmpnew);
320 if (ret) {
321 ret = -errno;
322 goto error;
323 }
324 }
412d7227
SM
325 DBG("Using 32-bit UST consumer at: %s",
326 the_config.consumerd32_bin_path.value);
327 (void) execl(the_config.consumerd32_bin_path.value,
328 "lttng-consumerd", verbosity, "-u",
329 "--consumerd-cmd-sock",
330 consumer_data->cmd_unix_sock_path,
331 "--consumerd-err-sock",
332 consumer_data->err_unix_sock_path,
333 "--group",
334 the_config.tracing_group_name.value,
917a718d
JG
335 NULL);
336 break;
337 }
338 default:
339 ERR("unknown consumer type");
340 errno = 0;
341 }
342 if (errno != 0) {
343 PERROR("Consumer execl()");
344 }
345 /* Reaching this point, we got a failure on our execl(). */
346 exit(EXIT_FAILURE);
347 } else if (pid > 0) {
348 ret = pid;
349 } else {
350 PERROR("start consumer fork");
351 ret = -errno;
352 }
353error:
354 return ret;
355}
356
357/*
358 * Spawn the consumerd daemon and session daemon thread.
359 */
360static int start_consumerd(struct consumer_data *consumer_data)
361{
362 int ret;
363
364 /*
365 * Set the listen() state on the socket since there is a possible race
366 * between the exec() of the consumer daemon and this call if place in the
367 * consumer thread. See bug #366 for more details.
368 */
369 ret = lttcomm_listen_unix_sock(consumer_data->err_sock);
370 if (ret < 0) {
371 goto error;
372 }
373
374 pthread_mutex_lock(&consumer_data->pid_mutex);
375 if (consumer_data->pid != 0) {
376 pthread_mutex_unlock(&consumer_data->pid_mutex);
377 goto end;
378 }
379
380 ret = spawn_consumerd(consumer_data);
381 if (ret < 0) {
382 ERR("Spawning consumerd failed");
383 pthread_mutex_unlock(&consumer_data->pid_mutex);
384 goto error;
385 }
386
387 /* Setting up the consumer_data pid */
388 consumer_data->pid = ret;
389 DBG2("Consumer pid %d", consumer_data->pid);
390 pthread_mutex_unlock(&consumer_data->pid_mutex);
391
392 DBG2("Spawning consumer control thread");
393 ret = spawn_consumer_thread(consumer_data);
394 if (ret < 0) {
395 ERR("Fatal error spawning consumer control thread");
396 goto error;
397 }
398
399end:
400 return 0;
401
402error:
403 /* Cleanup already created sockets on error. */
404 if (consumer_data->err_sock >= 0) {
405 int err;
406
407 err = close(consumer_data->err_sock);
408 if (err < 0) {
409 PERROR("close consumer data error socket");
410 }
411 }
412 return ret;
413}
414
415/*
416 * Copy consumer output from the tracing session to the domain session. The
417 * function also applies the right modification on a per domain basis for the
418 * trace files destination directory.
917a718d
JG
419 */
420static int copy_session_consumer(int domain, struct ltt_session *session)
421{
422 int ret;
423 const char *dir_name;
424 struct consumer_output *consumer;
425
a0377dfe
FD
426 LTTNG_ASSERT(session);
427 LTTNG_ASSERT(session->consumer);
917a718d
JG
428
429 switch (domain) {
430 case LTTNG_DOMAIN_KERNEL:
431 DBG3("Copying tracing session consumer output in kernel session");
432 /*
433 * XXX: We should audit the session creation and what this function
434 * does "extra" in order to avoid a destroy since this function is used
435 * in the domain session creation (kernel and ust) only. Same for UST
436 * domain.
437 */
438 if (session->kernel_session->consumer) {
439 consumer_output_put(session->kernel_session->consumer);
440 }
441 session->kernel_session->consumer =
442 consumer_copy_output(session->consumer);
443 /* Ease our life a bit for the next part */
444 consumer = session->kernel_session->consumer;
445 dir_name = DEFAULT_KERNEL_TRACE_DIR;
446 break;
447 case LTTNG_DOMAIN_JUL:
448 case LTTNG_DOMAIN_LOG4J:
449 case LTTNG_DOMAIN_PYTHON:
450 case LTTNG_DOMAIN_UST:
451 DBG3("Copying tracing session consumer output in UST session");
452 if (session->ust_session->consumer) {
453 consumer_output_put(session->ust_session->consumer);
454 }
455 session->ust_session->consumer =
456 consumer_copy_output(session->consumer);
457 /* Ease our life a bit for the next part */
458 consumer = session->ust_session->consumer;
459 dir_name = DEFAULT_UST_TRACE_DIR;
460 break;
461 default:
462 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
463 goto error;
464 }
465
466 /* Append correct directory to subdir */
b178f53e
JG
467 ret = lttng_strncpy(consumer->domain_subdir, dir_name,
468 sizeof(consumer->domain_subdir));
469 if (ret) {
470 ret = LTTNG_ERR_UNK;
471 goto error;
472 }
473 DBG3("Copy session consumer subdir %s", consumer->domain_subdir);
917a718d
JG
474 ret = LTTNG_OK;
475
476error:
477 return ret;
478}
479
480/*
481 * Create an UST session and add it to the session ust list.
917a718d
JG
482 */
483static int create_ust_session(struct ltt_session *session,
df4f5a87 484 const struct lttng_domain *domain)
917a718d
JG
485{
486 int ret;
487 struct ltt_ust_session *lus = NULL;
488
a0377dfe
FD
489 LTTNG_ASSERT(session);
490 LTTNG_ASSERT(domain);
491 LTTNG_ASSERT(session->consumer);
917a718d
JG
492
493 switch (domain->type) {
494 case LTTNG_DOMAIN_JUL:
495 case LTTNG_DOMAIN_LOG4J:
496 case LTTNG_DOMAIN_PYTHON:
497 case LTTNG_DOMAIN_UST:
498 break;
499 default:
500 ERR("Unknown UST domain on create session %d", domain->type);
501 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
502 goto error;
503 }
504
505 DBG("Creating UST session");
506
507 lus = trace_ust_create_session(session->id);
508 if (lus == NULL) {
509 ret = LTTNG_ERR_UST_SESS_FAIL;
510 goto error;
511 }
512
513 lus->uid = session->uid;
514 lus->gid = session->gid;
515 lus->output_traces = session->output_traces;
516 lus->snapshot_mode = session->snapshot_mode;
517 lus->live_timer_interval = session->live_timer;
518 session->ust_session = lus;
519 if (session->shm_path[0]) {
520 strncpy(lus->root_shm_path, session->shm_path,
521 sizeof(lus->root_shm_path));
522 lus->root_shm_path[sizeof(lus->root_shm_path) - 1] = '\0';
523 strncpy(lus->shm_path, session->shm_path,
524 sizeof(lus->shm_path));
525 lus->shm_path[sizeof(lus->shm_path) - 1] = '\0';
526 strncat(lus->shm_path, "/ust",
527 sizeof(lus->shm_path) - strlen(lus->shm_path) - 1);
528 }
529 /* Copy session output to the newly created UST session */
530 ret = copy_session_consumer(domain->type, session);
531 if (ret != LTTNG_OK) {
532 goto error;
533 }
534
535 return LTTNG_OK;
536
537error:
538 free(lus);
539 session->ust_session = NULL;
540 return ret;
541}
542
543/*
544 * Create a kernel tracer session then create the default channel.
545 */
546static int create_kernel_session(struct ltt_session *session)
547{
548 int ret;
549
550 DBG("Creating kernel session");
551
7d268848 552 ret = kernel_create_session(session);
917a718d
JG
553 if (ret < 0) {
554 ret = LTTNG_ERR_KERN_SESS_FAIL;
5d0a7bcb 555 goto error_create;
917a718d
JG
556 }
557
558 /* Code flow safety */
a0377dfe 559 LTTNG_ASSERT(session->kernel_session);
917a718d
JG
560
561 /* Copy session output to the newly created Kernel session */
562 ret = copy_session_consumer(LTTNG_DOMAIN_KERNEL, session);
563 if (ret != LTTNG_OK) {
564 goto error;
565 }
566
567 session->kernel_session->uid = session->uid;
568 session->kernel_session->gid = session->gid;
569 session->kernel_session->output_traces = session->output_traces;
570 session->kernel_session->snapshot_mode = session->snapshot_mode;
a2814ea7 571 session->kernel_session->is_live_session = session->live_timer != 0;
917a718d
JG
572
573 return LTTNG_OK;
574
575error:
576 trace_kernel_destroy_session(session->kernel_session);
577 session->kernel_session = NULL;
5d0a7bcb 578error_create:
917a718d
JG
579 return ret;
580}
581
582/*
583 * Count number of session permitted by uid/gid.
584 */
585static unsigned int lttng_sessions_count(uid_t uid, gid_t gid)
586{
587 unsigned int i = 0;
588 struct ltt_session *session;
589 const struct ltt_session_list *session_list = session_get_list();
590
d7b377ed 591 DBG("Counting number of available session for UID %d", uid);
917a718d
JG
592 cds_list_for_each_entry(session, &session_list->head, list) {
593 if (!session_get(session)) {
594 continue;
595 }
596 session_lock(session);
597 /* Only count the sessions the user can control. */
d7b377ed 598 if (session_access_ok(session, uid) &&
917a718d
JG
599 !session->destroyed) {
600 i++;
601 }
602 session_unlock(session);
603 session_put(session);
604 }
605 return i;
606}
607
608static int receive_userspace_probe(struct command_ctx *cmd_ctx, int sock,
609 int *sock_error, struct lttng_event *event)
610{
fe489250 611 int fd = -1, ret;
917a718d 612 struct lttng_userspace_probe_location *probe_location;
e368fb43 613 struct lttng_payload probe_location_payload;
fe489250 614 struct fd_handle *handle = NULL;
917a718d
JG
615
616 /*
e368fb43 617 * Create a payload to store the serialized version of the probe
917a718d
JG
618 * location.
619 */
e368fb43
JG
620 lttng_payload_init(&probe_location_payload);
621
622 ret = lttng_dynamic_buffer_set_size(&probe_location_payload.buffer,
3a91de3a 623 cmd_ctx->lsm.u.enable.userspace_probe_location_len);
917a718d
JG
624 if (ret) {
625 ret = LTTNG_ERR_NOMEM;
626 goto error;
627 }
628
629 /*
630 * Receive the probe location.
631 */
e368fb43
JG
632 ret = lttcomm_recv_unix_sock(sock, probe_location_payload.buffer.data,
633 probe_location_payload.buffer.size);
917a718d
JG
634 if (ret <= 0) {
635 DBG("Nothing recv() from client var len data... continuing");
636 *sock_error = 1;
917a718d
JG
637 ret = LTTNG_ERR_PROBE_LOCATION_INVAL;
638 goto error;
639 }
640
641 /*
642 * Receive the file descriptor to the target binary from the client.
643 */
644 DBG("Receiving userspace probe target FD from client ...");
645 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
646 if (ret <= 0) {
647 DBG("Nothing recv() from client userspace probe fd... continuing");
648 *sock_error = 1;
649 ret = LTTNG_ERR_PROBE_LOCATION_INVAL;
650 goto error;
651 }
652
fe489250
JG
653 handle = fd_handle_create(fd);
654 if (!handle) {
655 ret = LTTNG_ERR_NOMEM;
656 goto error;
657 }
658
659 /* Transferred to the handle. */
660 fd = -1;
661
662 ret = lttng_payload_push_fd_handle(&probe_location_payload, handle);
e368fb43
JG
663 if (ret) {
664 ERR("Failed to add userspace probe file descriptor to payload");
665 ret = LTTNG_ERR_NOMEM;
917a718d
JG
666 goto error;
667 }
668
fe489250
JG
669 fd_handle_put(handle);
670 handle = NULL;
671
e368fb43
JG
672 {
673 struct lttng_payload_view view = lttng_payload_view_from_payload(
674 &probe_location_payload, 0, -1);
917a718d 675
e368fb43
JG
676 /* Extract the probe location from the serialized version. */
677 ret = lttng_userspace_probe_location_create_from_payload(
678 &view, &probe_location);
679 }
680 if (ret < 0) {
681 WARN("Failed to create a userspace probe location from the received buffer");
917a718d
JG
682 ret = LTTNG_ERR_PROBE_LOCATION_INVAL;
683 goto error;
684 }
685
686 /* Attach the probe location to the event. */
687 ret = lttng_event_set_userspace_probe_location(event, probe_location);
688 if (ret) {
689 ret = LTTNG_ERR_PROBE_LOCATION_INVAL;
690 goto error;
691 }
692
917a718d 693error:
fe489250
JG
694 if (fd >= 0) {
695 if (close(fd)) {
696 PERROR("Failed to close userspace probe location binary fd");
697 }
698 }
699
700 fd_handle_put(handle);
e368fb43 701 lttng_payload_reset(&probe_location_payload);
917a718d
JG
702 return ret;
703}
704
746e08d7
JG
705static enum lttng_error_code receive_lttng_trigger(struct command_ctx *cmd_ctx,
706 int sock,
707 int *sock_error,
708 struct lttng_trigger **_trigger)
709{
710 int ret;
711 size_t trigger_len;
712 ssize_t sock_recv_len;
713 enum lttng_error_code ret_code;
714 struct lttng_payload trigger_payload;
b5ef1685 715 struct lttng_trigger *trigger = NULL;
746e08d7
JG
716
717 lttng_payload_init(&trigger_payload);
718 trigger_len = (size_t) cmd_ctx->lsm.u.trigger.length;
719 ret = lttng_dynamic_buffer_set_size(
720 &trigger_payload.buffer, trigger_len);
721 if (ret) {
722 ret_code = LTTNG_ERR_NOMEM;
723 goto end;
724 }
725
726 sock_recv_len = lttcomm_recv_unix_sock(
727 sock, trigger_payload.buffer.data, trigger_len);
728 if (sock_recv_len < 0 || sock_recv_len != trigger_len) {
729 ERR("Failed to receive trigger in command payload");
730 *sock_error = 1;
731 ret_code = LTTNG_ERR_INVALID_PROTOCOL;
732 goto end;
733 }
734
735 /* Receive fds, if any. */
736 if (cmd_ctx->lsm.fd_count > 0) {
737 sock_recv_len = lttcomm_recv_payload_fds_unix_sock(
738 sock, cmd_ctx->lsm.fd_count, &trigger_payload);
739 if (sock_recv_len > 0 &&
740 sock_recv_len != cmd_ctx->lsm.fd_count * sizeof(int)) {
741 ERR("Failed to receive all file descriptors for trigger in command payload: expected fd count = %u, ret = %d",
742 cmd_ctx->lsm.fd_count, (int) ret);
743 ret_code = LTTNG_ERR_INVALID_PROTOCOL;
744 *sock_error = 1;
745 goto end;
746 } else if (sock_recv_len <= 0) {
747 ERR("Failed to receive file descriptors for trigger in command payload: expected fd count = %u, ret = %d",
748 cmd_ctx->lsm.fd_count, (int) ret);
749 ret_code = LTTNG_ERR_FATAL;
750 *sock_error = 1;
751 goto end;
752 }
753 }
754
755 /* Deserialize trigger. */
756 {
757 struct lttng_payload_view view =
758 lttng_payload_view_from_payload(
759 &trigger_payload, 0, -1);
760
761 if (lttng_trigger_create_from_payload(&view, &trigger) !=
762 trigger_len) {
763 ERR("Invalid trigger received as part of command payload");
764 ret_code = LTTNG_ERR_INVALID_TRIGGER;
b5ef1685 765 lttng_trigger_put(trigger);
746e08d7
JG
766 goto end;
767 }
768 }
769
770 *_trigger = trigger;
771 ret_code = LTTNG_OK;
772
773end:
bae46a81 774 lttng_payload_reset(&trigger_payload);
746e08d7
JG
775 return ret_code;
776}
777
588c4b0d
JG
778static enum lttng_error_code receive_lttng_error_query(struct command_ctx *cmd_ctx,
779 int sock,
780 int *sock_error,
781 struct lttng_error_query **_query)
782{
783 int ret;
784 size_t query_len;
785 ssize_t sock_recv_len;
786 enum lttng_error_code ret_code;
787 struct lttng_payload query_payload;
788 struct lttng_error_query *query = NULL;
789
790 lttng_payload_init(&query_payload);
791 query_len = (size_t) cmd_ctx->lsm.u.error_query.length;
792 ret = lttng_dynamic_buffer_set_size(&query_payload.buffer, query_len);
793 if (ret) {
794 ret_code = LTTNG_ERR_NOMEM;
795 goto end;
796 }
797
798 sock_recv_len = lttcomm_recv_unix_sock(
799 sock, query_payload.buffer.data, query_len);
800 if (sock_recv_len < 0 || sock_recv_len != query_len) {
801 ERR("Failed to receive error query in command payload");
802 *sock_error = 1;
803 ret_code = LTTNG_ERR_INVALID_PROTOCOL;
804 goto end;
805 }
806
807 /* Receive fds, if any. */
808 if (cmd_ctx->lsm.fd_count > 0) {
809 sock_recv_len = lttcomm_recv_payload_fds_unix_sock(
810 sock, cmd_ctx->lsm.fd_count, &query_payload);
811 if (sock_recv_len > 0 &&
812 sock_recv_len != cmd_ctx->lsm.fd_count * sizeof(int)) {
813 ERR("Failed to receive all file descriptors for error query in command payload: expected fd count = %u, ret = %d",
814 cmd_ctx->lsm.fd_count, (int) ret);
815 ret_code = LTTNG_ERR_INVALID_PROTOCOL;
816 *sock_error = 1;
817 goto end;
818 } else if (sock_recv_len <= 0) {
819 ERR("Failed to receive file descriptors for error query in command payload: expected fd count = %u, ret = %d",
820 cmd_ctx->lsm.fd_count, (int) ret);
821 ret_code = LTTNG_ERR_FATAL;
822 *sock_error = 1;
823 goto end;
824 }
825 }
826
827 /* Deserialize error query. */
828 {
829 struct lttng_payload_view view =
830 lttng_payload_view_from_payload(
831 &query_payload, 0, -1);
832
833 if (lttng_error_query_create_from_payload(&view, &query) !=
834 query_len) {
835 ERR("Invalid error query received as part of command payload");
836 ret_code = LTTNG_ERR_INVALID_PROTOCOL;
837 goto end;
838 }
839 }
840
841 *_query = query;
842 ret_code = LTTNG_OK;
843
844end:
845 lttng_payload_reset(&query_payload);
846 return ret_code;
847}
848
917a718d
JG
849/*
850 * Version of setup_lttng_msg() without command header.
851 */
852static int setup_lttng_msg_no_cmd_header(struct command_ctx *cmd_ctx,
853 void *payload_buf, size_t payload_len)
854{
855 return setup_lttng_msg(cmd_ctx, payload_buf, payload_len, NULL, 0);
856}
857
917a718d
JG
858/*
859 * Check if the current kernel tracer supports the session rotation feature.
860 * Return 1 if it does, 0 otherwise.
861 */
862static int check_rotate_compatible(void)
863{
864 int ret = 1;
865
412d7227
SM
866 if (the_kernel_tracer_version.major != 2 ||
867 the_kernel_tracer_version.minor < 11) {
917a718d
JG
868 DBG("Kernel tracer version is not compatible with the rotation feature");
869 ret = 0;
870 }
871
872 return ret;
873}
874
875/*
876 * Send data on a unix socket using the liblttsessiondcomm API.
877 *
878 * Return lttcomm error code.
879 */
3a91de3a 880static int send_unix_sock(int sock, struct lttng_payload_view *view)
917a718d 881{
3a91de3a 882 int ret;
fe489250 883 const int fd_count = lttng_payload_view_get_fd_handle_count(view);
3a91de3a 884
917a718d 885 /* Check valid length */
3a91de3a
JG
886 if (view->buffer.size == 0) {
887 ret = -1;
888 goto end;
889 }
890
891 ret = lttcomm_send_unix_sock(
892 sock, view->buffer.data, view->buffer.size);
893 if (ret < 0) {
894 goto end;
917a718d
JG
895 }
896
fe489250 897 if (fd_count > 0) {
700741dc
JG
898 ret = lttcomm_send_payload_view_fds_unix_sock(sock, view);
899 if (ret < 0) {
900 goto end;
fe489250 901 }
3a91de3a
JG
902 }
903
904end:
905 return ret;
917a718d
JG
906}
907
908/*
909 * Process the command requested by the lttng client within the command
910 * context structure. This function make sure that the return structure (llm)
911 * is set and ready for transmission before returning.
912 *
913 * Return any error encountered or 0 for success.
914 *
915 * "sock" is only used for special-case var. len data.
3e3665b8
JG
916 * A command may assume the ownership of the socket, in which case its value
917 * should be set to -1.
917a718d 918 */
3e3665b8 919static int process_client_msg(struct command_ctx *cmd_ctx, int *sock,
917a718d
JG
920 int *sock_error)
921{
922 int ret = LTTNG_OK;
9124c630
JR
923 bool need_tracing_session = true;
924 bool need_domain;
925 bool need_consumerd;
917a718d 926
19f912db 927 DBG("Processing client command '%s\' (%d)",
7966af57 928 lttcomm_sessiond_command_str((lttcomm_sessiond_command) cmd_ctx->lsm.cmd_type),
19f912db 929 cmd_ctx->lsm.cmd_type);
917a718d 930
917a718d
JG
931 *sock_error = 0;
932
3a91de3a 933 switch (cmd_ctx->lsm.cmd_type) {
b178f53e 934 case LTTNG_CREATE_SESSION_EXT:
917a718d
JG
935 case LTTNG_DESTROY_SESSION:
936 case LTTNG_LIST_SESSIONS:
937 case LTTNG_LIST_DOMAINS:
938 case LTTNG_START_TRACE:
939 case LTTNG_STOP_TRACE:
940 case LTTNG_DATA_PENDING:
941 case LTTNG_SNAPSHOT_ADD_OUTPUT:
942 case LTTNG_SNAPSHOT_DEL_OUTPUT:
943 case LTTNG_SNAPSHOT_LIST_OUTPUT:
944 case LTTNG_SNAPSHOT_RECORD:
945 case LTTNG_SAVE_SESSION:
946 case LTTNG_SET_SESSION_SHM_PATH:
947 case LTTNG_REGENERATE_METADATA:
948 case LTTNG_REGENERATE_STATEDUMP:
917a718d
JG
949 case LTTNG_ROTATE_SESSION:
950 case LTTNG_ROTATION_GET_INFO:
951 case LTTNG_ROTATION_SET_SCHEDULE:
952 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES:
022349df 953 case LTTNG_CLEAR_SESSION:
fbc9f37d 954 case LTTNG_LIST_TRIGGERS:
588c4b0d 955 case LTTNG_EXECUTE_ERROR_QUERY:
9124c630
JR
956 need_domain = false;
957 break;
958 default:
959 need_domain = true;
960 }
961
962 /* Needs a functioning consumerd? */
963 switch (cmd_ctx->lsm.cmd_type) {
964 case LTTNG_REGISTER_TRIGGER:
965 case LTTNG_UNREGISTER_TRIGGER:
588c4b0d 966 case LTTNG_EXECUTE_ERROR_QUERY:
9124c630 967 need_consumerd = false;
917a718d
JG
968 break;
969 default:
9124c630
JR
970 need_consumerd = true;
971 break;
917a718d
JG
972 }
973
412d7227
SM
974 if (the_config.no_kernel && need_domain &&
975 cmd_ctx->lsm.domain.type == LTTNG_DOMAIN_KERNEL) {
917a718d
JG
976 if (!is_root) {
977 ret = LTTNG_ERR_NEED_ROOT_SESSIOND;
978 } else {
979 ret = LTTNG_ERR_KERN_NA;
980 }
981 goto error;
982 }
983
984 /* Deny register consumer if we already have a spawned consumer. */
3a91de3a 985 if (cmd_ctx->lsm.cmd_type == LTTNG_REGISTER_CONSUMER) {
412d7227
SM
986 pthread_mutex_lock(&the_kconsumer_data.pid_mutex);
987 if (the_kconsumer_data.pid > 0) {
917a718d 988 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
412d7227 989 pthread_mutex_unlock(&the_kconsumer_data.pid_mutex);
917a718d
JG
990 goto error;
991 }
412d7227 992 pthread_mutex_unlock(&the_kconsumer_data.pid_mutex);
917a718d
JG
993 }
994
995 /*
996 * Check for command that don't needs to allocate a returned payload. We do
997 * this here so we don't have to make the call for no payload at each
998 * command.
999 */
3a91de3a 1000 switch(cmd_ctx->lsm.cmd_type) {
917a718d
JG
1001 case LTTNG_LIST_SESSIONS:
1002 case LTTNG_LIST_TRACEPOINTS:
1003 case LTTNG_LIST_TRACEPOINT_FIELDS:
1004 case LTTNG_LIST_DOMAINS:
1005 case LTTNG_LIST_CHANNELS:
1006 case LTTNG_LIST_EVENTS:
1007 case LTTNG_LIST_SYSCALLS:
159b042f
JG
1008 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES:
1009 case LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY:
1010 case LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET:
917a718d
JG
1011 case LTTNG_DATA_PENDING:
1012 case LTTNG_ROTATE_SESSION:
1013 case LTTNG_ROTATION_GET_INFO:
9124c630 1014 case LTTNG_REGISTER_TRIGGER:
fbc9f37d 1015 case LTTNG_LIST_TRIGGERS:
588c4b0d 1016 case LTTNG_EXECUTE_ERROR_QUERY:
917a718d
JG
1017 break;
1018 default:
1019 /* Setup lttng message with no payload */
1020 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, NULL, 0);
1021 if (ret < 0) {
1022 /* This label does not try to unlock the session */
1023 goto init_setup_error;
1024 }
1025 }
1026
1027 /* Commands that DO NOT need a session. */
3a91de3a 1028 switch (cmd_ctx->lsm.cmd_type) {
b178f53e 1029 case LTTNG_CREATE_SESSION_EXT:
917a718d
JG
1030 case LTTNG_LIST_SESSIONS:
1031 case LTTNG_LIST_TRACEPOINTS:
1032 case LTTNG_LIST_SYSCALLS:
1033 case LTTNG_LIST_TRACEPOINT_FIELDS:
1034 case LTTNG_SAVE_SESSION:
1035 case LTTNG_REGISTER_TRIGGER:
1036 case LTTNG_UNREGISTER_TRIGGER:
fbc9f37d 1037 case LTTNG_LIST_TRIGGERS:
588c4b0d 1038 case LTTNG_EXECUTE_ERROR_QUERY:
9124c630 1039 need_tracing_session = false;
917a718d
JG
1040 break;
1041 default:
3a91de3a 1042 DBG("Getting session %s by name", cmd_ctx->lsm.session.name);
917a718d
JG
1043 /*
1044 * We keep the session list lock across _all_ commands
1045 * for now, because the per-session lock does not
1046 * handle teardown properly.
1047 */
1048 session_lock_list();
3a91de3a 1049 cmd_ctx->session = session_find_by_name(cmd_ctx->lsm.session.name);
917a718d
JG
1050 if (cmd_ctx->session == NULL) {
1051 ret = LTTNG_ERR_SESS_NOT_FOUND;
1052 goto error;
1053 } else {
1054 /* Acquire lock for the session */
1055 session_lock(cmd_ctx->session);
1056 }
1057 break;
1058 }
1059
1060 /*
1061 * Commands that need a valid session but should NOT create one if none
1062 * exists. Instead of creating one and destroying it when the command is
1063 * handled, process that right before so we save some round trip in useless
1064 * code path.
1065 */
3a91de3a 1066 switch (cmd_ctx->lsm.cmd_type) {
917a718d
JG
1067 case LTTNG_DISABLE_CHANNEL:
1068 case LTTNG_DISABLE_EVENT:
3a91de3a 1069 switch (cmd_ctx->lsm.domain.type) {
917a718d
JG
1070 case LTTNG_DOMAIN_KERNEL:
1071 if (!cmd_ctx->session->kernel_session) {
1072 ret = LTTNG_ERR_NO_CHANNEL;
1073 goto error;
1074 }
1075 break;
1076 case LTTNG_DOMAIN_JUL:
1077 case LTTNG_DOMAIN_LOG4J:
1078 case LTTNG_DOMAIN_PYTHON:
1079 case LTTNG_DOMAIN_UST:
1080 if (!cmd_ctx->session->ust_session) {
1081 ret = LTTNG_ERR_NO_CHANNEL;
1082 goto error;
1083 }
1084 break;
1085 default:
1086 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
1087 goto error;
1088 }
1089 default:
1090 break;
1091 }
1092
1093 if (!need_domain) {
1094 goto skip_domain;
1095 }
1096
1097 /*
1098 * Check domain type for specific "pre-action".
1099 */
3a91de3a 1100 switch (cmd_ctx->lsm.domain.type) {
917a718d
JG
1101 case LTTNG_DOMAIN_KERNEL:
1102 if (!is_root) {
1103 ret = LTTNG_ERR_NEED_ROOT_SESSIOND;
1104 goto error;
1105 }
1106
7d268848
MD
1107 /* Kernel tracer check */
1108 if (!kernel_tracer_is_initialized()) {
1109 /* Basically, load kernel tracer modules */
1110 ret = init_kernel_tracer();
1111 if (ret != 0) {
1112 goto error;
1113 }
1114 }
1115
917a718d 1116 /* Consumer is in an ERROR state. Report back to client */
412d7227
SM
1117 if (need_consumerd && uatomic_read(&the_kernel_consumerd_state) ==
1118 CONSUMER_ERROR) {
917a718d
JG
1119 ret = LTTNG_ERR_NO_KERNCONSUMERD;
1120 goto error;
1121 }
1122
1123 /* Need a session for kernel command */
1124 if (need_tracing_session) {
1125 if (cmd_ctx->session->kernel_session == NULL) {
1126 ret = create_kernel_session(cmd_ctx->session);
51630bd8 1127 if (ret != LTTNG_OK) {
917a718d
JG
1128 ret = LTTNG_ERR_KERN_SESS_FAIL;
1129 goto error;
1130 }
1131 }
1132
1133 /* Start the kernel consumer daemon */
412d7227
SM
1134 pthread_mutex_lock(&the_kconsumer_data.pid_mutex);
1135 if (the_kconsumer_data.pid == 0 &&
3a91de3a 1136 cmd_ctx->lsm.cmd_type != LTTNG_REGISTER_CONSUMER) {
412d7227
SM
1137 pthread_mutex_unlock(&the_kconsumer_data.pid_mutex);
1138 ret = start_consumerd(&the_kconsumer_data);
917a718d
JG
1139 if (ret < 0) {
1140 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
1141 goto error;
1142 }
412d7227 1143 uatomic_set(&the_kernel_consumerd_state, CONSUMER_STARTED);
917a718d 1144 } else {
412d7227 1145 pthread_mutex_unlock(&the_kconsumer_data.pid_mutex);
917a718d
JG
1146 }
1147
1148 /*
1149 * The consumer was just spawned so we need to add the socket to
1150 * the consumer output of the session if exist.
1151 */
412d7227 1152 ret = consumer_create_socket(&the_kconsumer_data,
917a718d
JG
1153 cmd_ctx->session->kernel_session->consumer);
1154 if (ret < 0) {
1155 goto error;
1156 }
1157 }
1158
1159 break;
1160 case LTTNG_DOMAIN_JUL:
1161 case LTTNG_DOMAIN_LOG4J:
1162 case LTTNG_DOMAIN_PYTHON:
44760c20
JR
1163 if (!agent_tracing_is_enabled()) {
1164 ret = LTTNG_ERR_AGENT_TRACING_DISABLED;
1165 goto error;
1166 }
1167 /* Fallthrough */
917a718d
JG
1168 case LTTNG_DOMAIN_UST:
1169 {
1170 if (!ust_app_supported()) {
1171 ret = LTTNG_ERR_NO_UST;
1172 goto error;
1173 }
9124c630 1174
917a718d 1175 /* Consumer is in an ERROR state. Report back to client */
412d7227
SM
1176 if (need_consumerd &&
1177 uatomic_read(&the_ust_consumerd_state) ==
1178 CONSUMER_ERROR) {
917a718d
JG
1179 ret = LTTNG_ERR_NO_USTCONSUMERD;
1180 goto error;
1181 }
1182
1183 if (need_tracing_session) {
1184 /* Create UST session if none exist. */
1185 if (cmd_ctx->session->ust_session == NULL) {
7966af57
SM
1186 lttng_domain domain = cmd_ctx->lsm.domain;
1187 ret = create_ust_session(cmd_ctx->session, &domain);
917a718d
JG
1188 if (ret != LTTNG_OK) {
1189 goto error;
1190 }
1191 }
1192
1193 /* Start the UST consumer daemons */
1194 /* 64-bit */
412d7227
SM
1195 pthread_mutex_lock(&the_ustconsumer64_data.pid_mutex);
1196 if (the_config.consumerd64_bin_path.value &&
1197 the_ustconsumer64_data.pid == 0 &&
3a91de3a 1198 cmd_ctx->lsm.cmd_type != LTTNG_REGISTER_CONSUMER) {
412d7227
SM
1199 pthread_mutex_unlock(&the_ustconsumer64_data.pid_mutex);
1200 ret = start_consumerd(&the_ustconsumer64_data);
917a718d
JG
1201 if (ret < 0) {
1202 ret = LTTNG_ERR_UST_CONSUMER64_FAIL;
412d7227 1203 uatomic_set(&the_ust_consumerd64_fd, -EINVAL);
917a718d
JG
1204 goto error;
1205 }
1206
412d7227
SM
1207 uatomic_set(&the_ust_consumerd64_fd, the_ustconsumer64_data.cmd_sock);
1208 uatomic_set(&the_ust_consumerd_state, CONSUMER_STARTED);
917a718d 1209 } else {
412d7227 1210 pthread_mutex_unlock(&the_ustconsumer64_data.pid_mutex);
917a718d
JG
1211 }
1212
1213 /*
1214 * Setup socket for consumer 64 bit. No need for atomic access
1215 * since it was set above and can ONLY be set in this thread.
1216 */
412d7227 1217 ret = consumer_create_socket(&the_ustconsumer64_data,
917a718d
JG
1218 cmd_ctx->session->ust_session->consumer);
1219 if (ret < 0) {
1220 goto error;
1221 }
1222
1223 /* 32-bit */
412d7227
SM
1224 pthread_mutex_lock(&the_ustconsumer32_data.pid_mutex);
1225 if (the_config.consumerd32_bin_path.value &&
1226 the_ustconsumer32_data.pid == 0 &&
3a91de3a 1227 cmd_ctx->lsm.cmd_type != LTTNG_REGISTER_CONSUMER) {
412d7227
SM
1228 pthread_mutex_unlock(&the_ustconsumer32_data.pid_mutex);
1229 ret = start_consumerd(&the_ustconsumer32_data);
917a718d
JG
1230 if (ret < 0) {
1231 ret = LTTNG_ERR_UST_CONSUMER32_FAIL;
412d7227 1232 uatomic_set(&the_ust_consumerd32_fd, -EINVAL);
917a718d
JG
1233 goto error;
1234 }
1235
412d7227
SM
1236 uatomic_set(&the_ust_consumerd32_fd, the_ustconsumer32_data.cmd_sock);
1237 uatomic_set(&the_ust_consumerd_state, CONSUMER_STARTED);
917a718d 1238 } else {
412d7227 1239 pthread_mutex_unlock(&the_ustconsumer32_data.pid_mutex);
917a718d
JG
1240 }
1241
1242 /*
1243 * Setup socket for consumer 32 bit. No need for atomic access
1244 * since it was set above and can ONLY be set in this thread.
1245 */
412d7227 1246 ret = consumer_create_socket(&the_ustconsumer32_data,
917a718d
JG
1247 cmd_ctx->session->ust_session->consumer);
1248 if (ret < 0) {
1249 goto error;
1250 }
1251 }
1252 break;
1253 }
1254 default:
1255 break;
1256 }
1257skip_domain:
1258
1259 /* Validate consumer daemon state when start/stop trace command */
3a91de3a
JG
1260 if (cmd_ctx->lsm.cmd_type == LTTNG_START_TRACE ||
1261 cmd_ctx->lsm.cmd_type == LTTNG_STOP_TRACE) {
1262 switch (cmd_ctx->lsm.domain.type) {
917a718d
JG
1263 case LTTNG_DOMAIN_NONE:
1264 break;
1265 case LTTNG_DOMAIN_JUL:
1266 case LTTNG_DOMAIN_LOG4J:
1267 case LTTNG_DOMAIN_PYTHON:
1268 case LTTNG_DOMAIN_UST:
412d7227 1269 if (uatomic_read(&the_ust_consumerd_state) != CONSUMER_STARTED) {
917a718d
JG
1270 ret = LTTNG_ERR_NO_USTCONSUMERD;
1271 goto error;
1272 }
1273 break;
1274 case LTTNG_DOMAIN_KERNEL:
412d7227 1275 if (uatomic_read(&the_kernel_consumerd_state) != CONSUMER_STARTED) {
917a718d
JG
1276 ret = LTTNG_ERR_NO_KERNCONSUMERD;
1277 goto error;
1278 }
1279 break;
1280 default:
1281 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
1282 goto error;
1283 }
1284 }
1285
1286 /*
d7b377ed 1287 * Check that the UID matches that of the tracing session.
917a718d
JG
1288 * The root user can interact with all sessions.
1289 */
1290 if (need_tracing_session) {
1291 if (!session_access_ok(cmd_ctx->session,
d7b377ed 1292 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds)) ||
917a718d
JG
1293 cmd_ctx->session->destroyed) {
1294 ret = LTTNG_ERR_EPERM;
1295 goto error;
1296 }
1297 }
1298
1299 /*
1300 * Send relayd information to consumer as soon as we have a domain and a
1301 * session defined.
1302 */
1303 if (cmd_ctx->session && need_domain) {
1304 /*
1305 * Setup relayd if not done yet. If the relayd information was already
1306 * sent to the consumer, this call will gracefully return.
1307 */
1308 ret = cmd_setup_relayd(cmd_ctx->session);
1309 if (ret != LTTNG_OK) {
1310 goto error;
1311 }
1312 }
1313
1314 /* Process by command type */
3a91de3a 1315 switch (cmd_ctx->lsm.cmd_type) {
917a718d
JG
1316 case LTTNG_ADD_CONTEXT:
1317 {
7966af57
SM
1318 lttng_event_context ctx;
1319
917a718d
JG
1320 /*
1321 * An LTTNG_ADD_CONTEXT command might have a supplementary
1322 * payload if the context being added is an application context.
1323 */
3a91de3a 1324 if (cmd_ctx->lsm.u.context.ctx.ctx ==
917a718d
JG
1325 LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
1326 char *provider_name = NULL, *context_name = NULL;
1327 size_t provider_name_len =
3a91de3a 1328 cmd_ctx->lsm.u.context.provider_name_len;
917a718d 1329 size_t context_name_len =
3a91de3a 1330 cmd_ctx->lsm.u.context.context_name_len;
917a718d
JG
1331
1332 if (provider_name_len == 0 || context_name_len == 0) {
1333 /*
1334 * Application provider and context names MUST
1335 * be provided.
1336 */
1337 ret = -LTTNG_ERR_INVALID;
1338 goto error;
1339 }
1340
7966af57 1341 provider_name = (char *) zmalloc(provider_name_len + 1);
917a718d
JG
1342 if (!provider_name) {
1343 ret = -LTTNG_ERR_NOMEM;
1344 goto error;
1345 }
3a91de3a 1346 cmd_ctx->lsm.u.context.ctx.u.app_ctx.provider_name =
917a718d
JG
1347 provider_name;
1348
7966af57 1349 context_name = (char *) zmalloc(context_name_len + 1);
917a718d
JG
1350 if (!context_name) {
1351 ret = -LTTNG_ERR_NOMEM;
1352 goto error_add_context;
1353 }
3a91de3a 1354 cmd_ctx->lsm.u.context.ctx.u.app_ctx.ctx_name =
917a718d
JG
1355 context_name;
1356
3e3665b8 1357 ret = lttcomm_recv_unix_sock(*sock, provider_name,
917a718d
JG
1358 provider_name_len);
1359 if (ret < 0) {
1360 goto error_add_context;
1361 }
1362
3e3665b8 1363 ret = lttcomm_recv_unix_sock(*sock, context_name,
917a718d
JG
1364 context_name_len);
1365 if (ret < 0) {
1366 goto error_add_context;
1367 }
1368 }
1369
1370 /*
1371 * cmd_add_context assumes ownership of the provider and context
1372 * names.
1373 */
7966af57 1374 ctx = cmd_ctx->lsm.u.context.ctx;
917a718d 1375 ret = cmd_add_context(cmd_ctx->session,
3a91de3a
JG
1376 cmd_ctx->lsm.domain.type,
1377 cmd_ctx->lsm.u.context.channel_name,
7966af57 1378 &ctx,
412d7227 1379 the_kernel_poll_pipe[1]);
917a718d 1380
3a91de3a
JG
1381 cmd_ctx->lsm.u.context.ctx.u.app_ctx.provider_name = NULL;
1382 cmd_ctx->lsm.u.context.ctx.u.app_ctx.ctx_name = NULL;
917a718d 1383error_add_context:
3a91de3a
JG
1384 free(cmd_ctx->lsm.u.context.ctx.u.app_ctx.provider_name);
1385 free(cmd_ctx->lsm.u.context.ctx.u.app_ctx.ctx_name);
917a718d
JG
1386 if (ret < 0) {
1387 goto error;
1388 }
1389 break;
1390 }
1391 case LTTNG_DISABLE_CHANNEL:
1392 {
3a91de3a
JG
1393 ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm.domain.type,
1394 cmd_ctx->lsm.u.disable.channel_name);
917a718d
JG
1395 break;
1396 }
1397 case LTTNG_DISABLE_EVENT:
1398 {
7966af57 1399 lttng_event event;
917a718d
JG
1400
1401 /*
1402 * FIXME: handle filter; for now we just receive the filter's
1403 * bytecode along with the filter expression which are sent by
1404 * liblttng-ctl and discard them.
1405 *
1406 * This fixes an issue where the client may block while sending
1407 * the filter payload and encounter an error because the session
1408 * daemon closes the socket without ever handling this data.
1409 */
3a91de3a
JG
1410 size_t count = cmd_ctx->lsm.u.disable.expression_len +
1411 cmd_ctx->lsm.u.disable.bytecode_len;
917a718d
JG
1412
1413 if (count) {
1414 char data[LTTNG_FILTER_MAX_LEN];
1415
1416 DBG("Discarding disable event command payload of size %zu", count);
1417 while (count) {
3e3665b8 1418 ret = lttcomm_recv_unix_sock(*sock, data,
917a718d
JG
1419 count > sizeof(data) ? sizeof(data) : count);
1420 if (ret < 0) {
1421 goto error;
1422 }
1423
1424 count -= (size_t) ret;
1425 }
1426 }
7966af57 1427 event = cmd_ctx->lsm.u.disable.event;
3a91de3a
JG
1428 ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm.domain.type,
1429 cmd_ctx->lsm.u.disable.channel_name,
7966af57 1430 &event);
917a718d
JG
1431 break;
1432 }
1433 case LTTNG_ENABLE_CHANNEL:
1434 {
3a91de3a
JG
1435 cmd_ctx->lsm.u.channel.chan.attr.extended.ptr =
1436 (struct lttng_channel_extended *) &cmd_ctx->lsm.u.channel.extended;
7966af57
SM
1437 lttng_domain domain = cmd_ctx->lsm.domain;
1438 lttng_channel chan = cmd_ctx->lsm.u.channel.chan;
df4f5a87 1439 ret = cmd_enable_channel(cmd_ctx->session,
7966af57
SM
1440 &domain,
1441 &chan,
412d7227 1442 the_kernel_poll_pipe[1]);
917a718d
JG
1443 break;
1444 }
159b042f
JG
1445 case LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE:
1446 case LTTNG_PROCESS_ATTR_TRACKER_REMOVE_INCLUDE_VALUE:
917a718d 1447 {
159b042f
JG
1448 struct lttng_dynamic_buffer payload;
1449 struct lttng_buffer_view payload_view;
1450 const bool add_value =
3a91de3a 1451 cmd_ctx->lsm.cmd_type ==
159b042f
JG
1452 LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE;
1453 const size_t name_len =
3a91de3a 1454 cmd_ctx->lsm.u.process_attr_tracker_add_remove_include_value
159b042f
JG
1455 .name_len;
1456 const enum lttng_domain_type domain_type =
1457 (enum lttng_domain_type)
3a91de3a 1458 cmd_ctx->lsm.domain.type;
159b042f 1459 const enum lttng_process_attr process_attr =
3a91de3a 1460 (enum lttng_process_attr) cmd_ctx->lsm.u
159b042f
JG
1461 .process_attr_tracker_add_remove_include_value
1462 .process_attr;
1463 const enum lttng_process_attr_value_type value_type =
1464 (enum lttng_process_attr_value_type) cmd_ctx
3a91de3a 1465 ->lsm.u
159b042f
JG
1466 .process_attr_tracker_add_remove_include_value
1467 .value_type;
1468 struct process_attr_value *value;
1469 enum lttng_error_code ret_code;
1434fd36
MJ
1470 long login_name_max;
1471
1472 login_name_max = sysconf(_SC_LOGIN_NAME_MAX);
1473 if (login_name_max < 0) {
1474 PERROR("Failed to get _SC_LOGIN_NAME_MAX system configuration");
1475 ret = LTTNG_ERR_INVALID;
1476 goto error;
1477 }
159b042f
JG
1478
1479 /* Receive remaining variable length payload if applicable. */
1434fd36 1480 if (name_len > login_name_max) {
159b042f
JG
1481 /*
1482 * POSIX mandates user and group names that are at least
1483 * 8 characters long. Note that although shadow-utils
1484 * (useradd, groupaadd, etc.) use 32 chars as their
1485 * limit (from bits/utmp.h, UT_NAMESIZE),
1486 * LOGIN_NAME_MAX is defined to 256.
1487 */
1434fd36 1488 ERR("Rejecting process attribute tracker value %s as the provided exceeds the maximal allowed length: argument length = %zu, maximal length = %ld",
159b042f 1489 add_value ? "addition" : "removal",
1434fd36 1490 name_len, login_name_max);
159b042f 1491 ret = LTTNG_ERR_INVALID;
2d97a006
JR
1492 goto error;
1493 }
1494
159b042f
JG
1495 lttng_dynamic_buffer_init(&payload);
1496 if (name_len != 0) {
1497 /*
1498 * Receive variable payload for user/group name
1499 * arguments.
1500 */
1501 ret = lttng_dynamic_buffer_set_size(&payload, name_len);
1502 if (ret) {
1503 ERR("Failed to allocate buffer to receive payload of %s process attribute tracker value argument",
1504 add_value ? "add" : "remove");
55c9e7ca 1505 ret = LTTNG_ERR_NOMEM;
159b042f 1506 goto error_add_remove_tracker_value;
55c9e7ca 1507 }
159b042f
JG
1508
1509 ret = lttcomm_recv_unix_sock(
1510 *sock, payload.data, name_len);
55c9e7ca 1511 if (ret <= 0) {
159b042f
JG
1512 ERR("Failed to receive payload of %s process attribute tracker value argument",
1513 add_value ? "add" : "remove");
55c9e7ca 1514 *sock_error = 1;
159b042f
JG
1515 ret = LTTNG_ERR_INVALID_PROTOCOL;
1516 goto error_add_remove_tracker_value;
55c9e7ca 1517 }
159b042f 1518 }
2d97a006 1519
159b042f
JG
1520 payload_view = lttng_buffer_view_from_dynamic_buffer(
1521 &payload, 0, name_len);
3e6e0df2
JG
1522 if (name_len > 0 && !lttng_buffer_view_is_valid(&payload_view)) {
1523 ret = LTTNG_ERR_INVALID_PROTOCOL;
1524 goto error_add_remove_tracker_value;
1525 }
1526
159b042f
JG
1527 /*
1528 * Validate the value type and domains are legal for the process
1529 * attribute tracker that is specified and convert the value to
1530 * add/remove to the internal sessiond representation.
1531 */
1532 ret_code = process_attr_value_from_comm(domain_type,
1533 process_attr, value_type,
3a91de3a 1534 &cmd_ctx->lsm.u.process_attr_tracker_add_remove_include_value
159b042f
JG
1535 .integral_value,
1536 &payload_view, &value);
1537 if (ret_code != LTTNG_OK) {
1538 ret = ret_code;
1539 goto error_add_remove_tracker_value;
55c9e7ca 1540 }
159b042f
JG
1541
1542 if (add_value) {
1543 ret = cmd_process_attr_tracker_inclusion_set_add_value(
1544 cmd_ctx->session, domain_type,
1545 process_attr, value);
1546 } else {
1547 ret = cmd_process_attr_tracker_inclusion_set_remove_value(
1548 cmd_ctx->session, domain_type,
1549 process_attr, value);
1550 }
1551 process_attr_value_destroy(value);
1552 error_add_remove_tracker_value:
1553 lttng_dynamic_buffer_reset(&payload);
1554 break;
1555 }
1556 case LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY:
1557 {
1558 enum lttng_tracking_policy tracking_policy;
1559 const enum lttng_domain_type domain_type =
1560 (enum lttng_domain_type)
3a91de3a 1561 cmd_ctx->lsm.domain.type;
159b042f 1562 const enum lttng_process_attr process_attr =
3a91de3a 1563 (enum lttng_process_attr) cmd_ctx->lsm.u
159b042f
JG
1564 .process_attr_tracker_get_tracking_policy
1565 .process_attr;
1566
1567 ret = cmd_process_attr_tracker_get_tracking_policy(
1568 cmd_ctx->session, domain_type, process_attr,
1569 &tracking_policy);
1570 if (ret != LTTNG_OK) {
55c9e7ca
JR
1571 goto error;
1572 }
2d97a006 1573
7966af57 1574 uint32_t tracking_policy_u32 = tracking_policy;
159b042f 1575 ret = setup_lttng_msg_no_cmd_header(cmd_ctx,
7966af57 1576 &tracking_policy_u32, sizeof(uint32_t));
159b042f
JG
1577 if (ret < 0) {
1578 ret = LTTNG_ERR_NOMEM;
2d97a006
JR
1579 goto error;
1580 }
159b042f 1581 ret = LTTNG_OK;
917a718d
JG
1582 break;
1583 }
159b042f 1584 case LTTNG_PROCESS_ATTR_TRACKER_SET_POLICY:
917a718d 1585 {
159b042f 1586 const enum lttng_tracking_policy tracking_policy =
3a91de3a 1587 (enum lttng_tracking_policy) cmd_ctx->lsm.u
159b042f
JG
1588 .process_attr_tracker_set_tracking_policy
1589 .tracking_policy;
1590 const enum lttng_domain_type domain_type =
1591 (enum lttng_domain_type)
3a91de3a 1592 cmd_ctx->lsm.domain.type;
159b042f 1593 const enum lttng_process_attr process_attr =
3a91de3a 1594 (enum lttng_process_attr) cmd_ctx->lsm.u
159b042f
JG
1595 .process_attr_tracker_set_tracking_policy
1596 .process_attr;
1597
1598 ret = cmd_process_attr_tracker_set_tracking_policy(
1599 cmd_ctx->session, domain_type, process_attr,
1600 tracking_policy);
1601 if (ret != LTTNG_OK) {
1602 goto error;
55c9e7ca 1603 }
159b042f
JG
1604 break;
1605 }
1606 case LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET:
1607 {
1608 struct lttng_process_attr_values *values;
1609 struct lttng_dynamic_buffer reply;
1610 const enum lttng_domain_type domain_type =
1611 (enum lttng_domain_type)
3a91de3a 1612 cmd_ctx->lsm.domain.type;
159b042f 1613 const enum lttng_process_attr process_attr =
3a91de3a 1614 (enum lttng_process_attr) cmd_ctx->lsm.u
159b042f
JG
1615 .process_attr_tracker_get_inclusion_set
1616 .process_attr;
1617
1618 ret = cmd_process_attr_tracker_get_inclusion_set(
1619 cmd_ctx->session, domain_type, process_attr,
1620 &values);
1621 if (ret != LTTNG_OK) {
55c9e7ca
JR
1622 goto error;
1623 }
2d97a006 1624
159b042f
JG
1625 lttng_dynamic_buffer_init(&reply);
1626 ret = lttng_process_attr_values_serialize(values, &reply);
1627 if (ret < 0) {
1628 goto error_tracker_get_inclusion_set;
2d97a006
JR
1629 }
1630
159b042f
JG
1631 ret = setup_lttng_msg_no_cmd_header(
1632 cmd_ctx, reply.data, reply.size);
1633 if (ret < 0) {
1634 ret = LTTNG_ERR_NOMEM;
1635 goto error_tracker_get_inclusion_set;
1636 }
1637 ret = LTTNG_OK;
1638
1639 error_tracker_get_inclusion_set:
1640 lttng_process_attr_values_destroy(values);
1641 lttng_dynamic_buffer_reset(&reply);
917a718d
JG
1642 break;
1643 }
1644 case LTTNG_ENABLE_EVENT:
1645 {
1646 struct lttng_event *ev = NULL;
1647 struct lttng_event_exclusion *exclusion = NULL;
2b00d462 1648 struct lttng_bytecode *bytecode = NULL;
917a718d 1649 char *filter_expression = NULL;
7966af57
SM
1650 lttng_event event;
1651 lttng_domain domain;
917a718d
JG
1652
1653 /* Handle exclusion events and receive it from the client. */
3a91de3a
JG
1654 if (cmd_ctx->lsm.u.enable.exclusion_count > 0) {
1655 size_t count = cmd_ctx->lsm.u.enable.exclusion_count;
917a718d 1656
7966af57 1657 exclusion = (lttng_event_exclusion *) zmalloc(sizeof(struct lttng_event_exclusion) +
917a718d
JG
1658 (count * LTTNG_SYMBOL_NAME_LEN));
1659 if (!exclusion) {
1660 ret = LTTNG_ERR_EXCLUSION_NOMEM;
1661 goto error;
1662 }
1663
1664 DBG("Receiving var len exclusion event list from client ...");
1665 exclusion->count = count;
3e3665b8 1666 ret = lttcomm_recv_unix_sock(*sock, exclusion->names,
917a718d
JG
1667 count * LTTNG_SYMBOL_NAME_LEN);
1668 if (ret <= 0) {
1669 DBG("Nothing recv() from client var len data... continuing");
1670 *sock_error = 1;
1671 free(exclusion);
1672 ret = LTTNG_ERR_EXCLUSION_INVAL;
1673 goto error;
1674 }
1675 }
1676
1677 /* Get filter expression from client. */
3a91de3a 1678 if (cmd_ctx->lsm.u.enable.expression_len > 0) {
917a718d 1679 size_t expression_len =
3a91de3a 1680 cmd_ctx->lsm.u.enable.expression_len;
917a718d
JG
1681
1682 if (expression_len > LTTNG_FILTER_MAX_LEN) {
1683 ret = LTTNG_ERR_FILTER_INVAL;
1684 free(exclusion);
1685 goto error;
1686 }
1687
7966af57 1688 filter_expression = (char *) zmalloc(expression_len);
917a718d
JG
1689 if (!filter_expression) {
1690 free(exclusion);
1691 ret = LTTNG_ERR_FILTER_NOMEM;
1692 goto error;
1693 }
1694
1695 /* Receive var. len. data */
1696 DBG("Receiving var len filter's expression from client ...");
3e3665b8 1697 ret = lttcomm_recv_unix_sock(*sock, filter_expression,
917a718d
JG
1698 expression_len);
1699 if (ret <= 0) {
1700 DBG("Nothing recv() from client var len data... continuing");
1701 *sock_error = 1;
1702 free(filter_expression);
1703 free(exclusion);
1704 ret = LTTNG_ERR_FILTER_INVAL;
1705 goto error;
1706 }
1707 }
1708
1709 /* Handle filter and get bytecode from client. */
3a91de3a
JG
1710 if (cmd_ctx->lsm.u.enable.bytecode_len > 0) {
1711 size_t bytecode_len = cmd_ctx->lsm.u.enable.bytecode_len;
917a718d
JG
1712
1713 if (bytecode_len > LTTNG_FILTER_MAX_LEN) {
1714 ret = LTTNG_ERR_FILTER_INVAL;
1715 free(filter_expression);
1716 free(exclusion);
1717 goto error;
1718 }
1719
7966af57 1720 bytecode = (lttng_bytecode *) zmalloc(bytecode_len);
917a718d
JG
1721 if (!bytecode) {
1722 free(filter_expression);
1723 free(exclusion);
1724 ret = LTTNG_ERR_FILTER_NOMEM;
1725 goto error;
1726 }
1727
1728 /* Receive var. len. data */
1729 DBG("Receiving var len filter's bytecode from client ...");
3e3665b8 1730 ret = lttcomm_recv_unix_sock(*sock, bytecode, bytecode_len);
917a718d
JG
1731 if (ret <= 0) {
1732 DBG("Nothing recv() from client var len data... continuing");
1733 *sock_error = 1;
1734 free(filter_expression);
1735 free(bytecode);
1736 free(exclusion);
1737 ret = LTTNG_ERR_FILTER_INVAL;
1738 goto error;
1739 }
1740
1741 if ((bytecode->len + sizeof(*bytecode)) != bytecode_len) {
1742 free(filter_expression);
1743 free(bytecode);
1744 free(exclusion);
1745 ret = LTTNG_ERR_FILTER_INVAL;
1746 goto error;
1747 }
1748 }
1749
7966af57
SM
1750 event = cmd_ctx->lsm.u.enable.event;
1751 ev = lttng_event_copy(&event);
917a718d
JG
1752 if (!ev) {
1753 DBG("Failed to copy event: %s",
3a91de3a 1754 cmd_ctx->lsm.u.enable.event.name);
917a718d
JG
1755 free(filter_expression);
1756 free(bytecode);
1757 free(exclusion);
1758 ret = LTTNG_ERR_NOMEM;
1759 goto error;
1760 }
1761
1762
3a91de3a 1763 if (cmd_ctx->lsm.u.enable.userspace_probe_location_len > 0) {
917a718d 1764 /* Expect a userspace probe description. */
3e3665b8 1765 ret = receive_userspace_probe(cmd_ctx, *sock, sock_error, ev);
917a718d
JG
1766 if (ret) {
1767 free(filter_expression);
1768 free(bytecode);
1769 free(exclusion);
1770 lttng_event_destroy(ev);
1771 goto error;
1772 }
1773 }
1774
7966af57 1775 domain = cmd_ctx->lsm.domain;
df4f5a87 1776 ret = cmd_enable_event(cmd_ctx->session,
7966af57 1777 &domain,
3a91de3a 1778 cmd_ctx->lsm.u.enable.channel_name,
917a718d
JG
1779 ev,
1780 filter_expression, bytecode, exclusion,
412d7227 1781 the_kernel_poll_pipe[1]);
917a718d
JG
1782 lttng_event_destroy(ev);
1783 break;
1784 }
1785 case LTTNG_LIST_TRACEPOINTS:
1786 {
1787 struct lttng_event *events;
1788 ssize_t nb_events;
1789
1790 session_lock_list();
3a91de3a 1791 nb_events = cmd_list_tracepoints(cmd_ctx->lsm.domain.type, &events);
917a718d
JG
1792 session_unlock_list();
1793 if (nb_events < 0) {
1794 /* Return value is a negative lttng_error_code. */
1795 ret = -nb_events;
1796 goto error;
1797 }
1798
1799 /*
1800 * Setup lttng message with payload size set to the event list size in
1801 * bytes and then copy list into the llm payload.
1802 */
1803 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, events,
1804 sizeof(struct lttng_event) * nb_events);
1805 free(events);
1806
1807 if (ret < 0) {
1808 goto setup_error;
1809 }
1810
1811 ret = LTTNG_OK;
1812 break;
1813 }
1814 case LTTNG_LIST_TRACEPOINT_FIELDS:
1815 {
1816 struct lttng_event_field *fields;
1817 ssize_t nb_fields;
1818
1819 session_lock_list();
3a91de3a 1820 nb_fields = cmd_list_tracepoint_fields(cmd_ctx->lsm.domain.type,
917a718d
JG
1821 &fields);
1822 session_unlock_list();
1823 if (nb_fields < 0) {
1824 /* Return value is a negative lttng_error_code. */
1825 ret = -nb_fields;
1826 goto error;
1827 }
1828
1829 /*
1830 * Setup lttng message with payload size set to the event list size in
1831 * bytes and then copy list into the llm payload.
1832 */
1833 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, fields,
1834 sizeof(struct lttng_event_field) * nb_fields);
1835 free(fields);
1836
1837 if (ret < 0) {
1838 goto setup_error;
1839 }
1840
1841 ret = LTTNG_OK;
1842 break;
1843 }
1844 case LTTNG_LIST_SYSCALLS:
1845 {
1846 struct lttng_event *events;
1847 ssize_t nb_events;
1848
1849 nb_events = cmd_list_syscalls(&events);
1850 if (nb_events < 0) {
1851 /* Return value is a negative lttng_error_code. */
1852 ret = -nb_events;
1853 goto error;
1854 }
1855
1856 /*
1857 * Setup lttng message with payload size set to the event list size in
1858 * bytes and then copy list into the llm payload.
1859 */
1860 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, events,
1861 sizeof(struct lttng_event) * nb_events);
1862 free(events);
1863
1864 if (ret < 0) {
1865 goto setup_error;
1866 }
1867
1868 ret = LTTNG_OK;
1869 break;
1870 }
917a718d
JG
1871 case LTTNG_SET_CONSUMER_URI:
1872 {
1873 size_t nb_uri, len;
1874 struct lttng_uri *uris;
1875
3a91de3a 1876 nb_uri = cmd_ctx->lsm.u.uri.size;
917a718d
JG
1877 len = nb_uri * sizeof(struct lttng_uri);
1878
1879 if (nb_uri == 0) {
1880 ret = LTTNG_ERR_INVALID;
1881 goto error;
1882 }
1883
7966af57 1884 uris = (lttng_uri *) zmalloc(len);
917a718d
JG
1885 if (uris == NULL) {
1886 ret = LTTNG_ERR_FATAL;
1887 goto error;
1888 }
1889
1890 /* Receive variable len data */
1891 DBG("Receiving %zu URI(s) from client ...", nb_uri);
3e3665b8 1892 ret = lttcomm_recv_unix_sock(*sock, uris, len);
917a718d
JG
1893 if (ret <= 0) {
1894 DBG("No URIs received from client... continuing");
1895 *sock_error = 1;
1896 ret = LTTNG_ERR_SESSION_FAIL;
1897 free(uris);
1898 goto error;
1899 }
1900
1901 ret = cmd_set_consumer_uri(cmd_ctx->session, nb_uri, uris);
1902 free(uris);
1903 if (ret != LTTNG_OK) {
1904 goto error;
1905 }
1906
1907
1908 break;
1909 }
1910 case LTTNG_START_TRACE:
1911 {
1912 /*
1913 * On the first start, if we have a kernel session and we have
1914 * enabled time or size-based rotations, we have to make sure
1915 * the kernel tracer supports it.
1916 */
1917 if (!cmd_ctx->session->has_been_started && \
1918 cmd_ctx->session->kernel_session && \
1919 (cmd_ctx->session->rotate_timer_period || \
1920 cmd_ctx->session->rotate_size) && \
1921 !check_rotate_compatible()) {
1922 DBG("Kernel tracer version is not compatible with the rotation feature");
1923 ret = LTTNG_ERR_ROTATION_WRONG_VERSION;
1924 goto error;
1925 }
1926 ret = cmd_start_trace(cmd_ctx->session);
1927 break;
1928 }
1929 case LTTNG_STOP_TRACE:
1930 {
1931 ret = cmd_stop_trace(cmd_ctx->session);
1932 break;
1933 }
917a718d
JG
1934 case LTTNG_DESTROY_SESSION:
1935 {
1936 ret = cmd_destroy_session(cmd_ctx->session,
412d7227 1937 the_notification_thread_handle, sock);
917a718d
JG
1938 break;
1939 }
1940 case LTTNG_LIST_DOMAINS:
1941 {
1942 ssize_t nb_dom;
1943 struct lttng_domain *domains = NULL;
1944
1945 nb_dom = cmd_list_domains(cmd_ctx->session, &domains);
1946 if (nb_dom < 0) {
1947 /* Return value is a negative lttng_error_code. */
1948 ret = -nb_dom;
1949 goto error;
1950 }
1951
1952 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, domains,
1953 nb_dom * sizeof(struct lttng_domain));
1954 free(domains);
1955
1956 if (ret < 0) {
1957 goto setup_error;
1958 }
1959
1960 ret = LTTNG_OK;
1961 break;
1962 }
1963 case LTTNG_LIST_CHANNELS:
1964 {
1965 ssize_t payload_size;
1966 struct lttng_channel *channels = NULL;
1967
3a91de3a 1968 payload_size = cmd_list_channels(cmd_ctx->lsm.domain.type,
917a718d
JG
1969 cmd_ctx->session, &channels);
1970 if (payload_size < 0) {
1971 /* Return value is a negative lttng_error_code. */
1972 ret = -payload_size;
1973 goto error;
1974 }
1975
1976 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, channels,
1977 payload_size);
1978 free(channels);
1979
1980 if (ret < 0) {
1981 goto setup_error;
1982 }
1983
1984 ret = LTTNG_OK;
1985 break;
1986 }
1987 case LTTNG_LIST_EVENTS:
1988 {
e368fb43
JG
1989 ssize_t list_ret;
1990 struct lttcomm_event_command_header cmd_header = {};
1991 size_t original_payload_size;
1992 size_t payload_size;
1993
1994 ret = setup_empty_lttng_msg(cmd_ctx);
1995 if (ret) {
1996 ret = LTTNG_ERR_NOMEM;
1997 goto setup_error;
917a718d
JG
1998 }
1999
e368fb43 2000 original_payload_size = cmd_ctx->reply_payload.buffer.size;
917a718d 2001
e368fb43
JG
2002 /* Extended infos are included at the end of the payload. */
2003 list_ret = cmd_list_events(cmd_ctx->lsm.domain.type,
2004 cmd_ctx->session,
2005 cmd_ctx->lsm.u.list.channel_name,
2006 &cmd_ctx->reply_payload);
2007 if (list_ret < 0) {
2008 /* Return value is a negative lttng_error_code. */
2009 ret = -list_ret;
2010 goto error;
917a718d
JG
2011 }
2012
e368fb43
JG
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);
2016
917a718d
JG
2017 ret = LTTNG_OK;
2018 break;
2019 }
2020 case LTTNG_LIST_SESSIONS:
2021 {
2022 unsigned int nr_sessions;
7966af57 2023 lttng_session *sessions_payload;
917a718d
JG
2024 size_t payload_len;
2025
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));
b178f53e
JG
2030
2031 payload_len = (sizeof(struct lttng_session) * nr_sessions) +
2032 (sizeof(struct lttng_session_extended) * nr_sessions);
7966af57 2033 sessions_payload = (lttng_session *) zmalloc(payload_len);
917a718d
JG
2034
2035 if (!sessions_payload) {
2036 session_unlock_list();
2037 ret = -ENOMEM;
2038 goto setup_error;
2039 }
2040
b178f53e 2041 cmd_list_lttng_sessions(sessions_payload, nr_sessions,
917a718d
JG
2042 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
2043 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds));
2044 session_unlock_list();
2045
2046 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, sessions_payload,
2047 payload_len);
2048 free(sessions_payload);
2049
2050 if (ret < 0) {
2051 goto setup_error;
2052 }
2053
2054 ret = LTTNG_OK;
2055 break;
2056 }
2057 case LTTNG_REGISTER_CONSUMER:
2058 {
2059 struct consumer_data *cdata;
2060
3a91de3a 2061 switch (cmd_ctx->lsm.domain.type) {
917a718d 2062 case LTTNG_DOMAIN_KERNEL:
412d7227 2063 cdata = &the_kconsumer_data;
917a718d
JG
2064 break;
2065 default:
2066 ret = LTTNG_ERR_UND;
2067 goto error;
2068 }
2069
3a91de3a
JG
2070 ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm.domain.type,
2071 cmd_ctx->lsm.u.reg.path, cdata);
917a718d
JG
2072 break;
2073 }
2074 case LTTNG_DATA_PENDING:
2075 {
2076 int pending_ret;
2077 uint8_t pending_ret_byte;
2078
2079 pending_ret = cmd_data_pending(cmd_ctx->session);
2080
2081 /*
2082 * FIXME
2083 *
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
2088 * "unknown" error.
2089 */
2090 if (pending_ret == 0 || pending_ret == 1) {
2091 /*
2092 * ret will be set to LTTNG_OK at the end of
2093 * this function.
2094 */
2095 } else if (pending_ret < 0) {
2096 ret = LTTNG_ERR_UNK;
2097 goto setup_error;
2098 } else {
2099 ret = pending_ret;
2100 goto setup_error;
2101 }
2102
2103 pending_ret_byte = (uint8_t) pending_ret;
2104
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);
2108
2109 if (ret < 0) {
2110 goto setup_error;
2111 }
2112
2113 ret = LTTNG_OK;
2114 break;
2115 }
2116 case LTTNG_SNAPSHOT_ADD_OUTPUT:
2117 {
a914e76a 2118 uint32_t snapshot_id;
917a718d 2119 struct lttcomm_lttng_output_id reply;
7966af57 2120 lttng_snapshot_output output = cmd_ctx->lsm.u.snapshot_output.output;
917a718d
JG
2121
2122 ret = cmd_snapshot_add_output(cmd_ctx->session,
7966af57 2123 &output,
df4f5a87 2124 &snapshot_id);
917a718d
JG
2125 if (ret != LTTNG_OK) {
2126 goto error;
2127 }
a914e76a 2128 reply.id = snapshot_id;
917a718d
JG
2129
2130 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, &reply,
2131 sizeof(reply));
2132 if (ret < 0) {
2133 goto setup_error;
2134 }
2135
2136 /* Copy output list into message payload */
2137 ret = LTTNG_OK;
2138 break;
2139 }
2140 case LTTNG_SNAPSHOT_DEL_OUTPUT:
2141 {
7966af57
SM
2142 lttng_snapshot_output output = cmd_ctx->lsm.u.snapshot_output.output;
2143 ret = cmd_snapshot_del_output(cmd_ctx->session, &output);
917a718d
JG
2144 break;
2145 }
2146 case LTTNG_SNAPSHOT_LIST_OUTPUT:
2147 {
2148 ssize_t nb_output;
2149 struct lttng_snapshot_output *outputs = NULL;
2150
2151 nb_output = cmd_snapshot_list_outputs(cmd_ctx->session, &outputs);
2152 if (nb_output < 0) {
2153 ret = -nb_output;
2154 goto error;
2155 }
2156
a0377dfe 2157 LTTNG_ASSERT((nb_output > 0 && outputs) || nb_output == 0);
917a718d
JG
2158 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, outputs,
2159 nb_output * sizeof(struct lttng_snapshot_output));
2160 free(outputs);
2161
2162 if (ret < 0) {
2163 goto setup_error;
2164 }
2165
2166 ret = LTTNG_OK;
2167 break;
2168 }
2169 case LTTNG_SNAPSHOT_RECORD:
2170 {
7966af57 2171 lttng_snapshot_output output = cmd_ctx->lsm.u.snapshot_record.output;
917a718d 2172 ret = cmd_snapshot_record(cmd_ctx->session,
7966af57 2173 &output,
3a91de3a 2174 cmd_ctx->lsm.u.snapshot_record.wait);
917a718d
JG
2175 break;
2176 }
b178f53e 2177 case LTTNG_CREATE_SESSION_EXT:
917a718d 2178 {
b178f53e
JG
2179 struct lttng_dynamic_buffer payload;
2180 struct lttng_session_descriptor *return_descriptor = NULL;
917a718d 2181
b178f53e 2182 lttng_dynamic_buffer_init(&payload);
3e3665b8 2183 ret = cmd_create_session(cmd_ctx, *sock, &return_descriptor);
b178f53e
JG
2184 if (ret != LTTNG_OK) {
2185 goto error;
917a718d
JG
2186 }
2187
b178f53e
JG
2188 ret = lttng_session_descriptor_serialize(return_descriptor,
2189 &payload);
2190 if (ret) {
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;
2194 goto error;
917a718d 2195 }
b178f53e
JG
2196 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, payload.data,
2197 payload.size);
2198 if (ret) {
2199 lttng_session_descriptor_destroy(return_descriptor);
2200 ret = LTTNG_ERR_NOMEM;
2201 goto error;
2202 }
2203 lttng_dynamic_buffer_reset(&payload);
2204 lttng_session_descriptor_destroy(return_descriptor);
2205 ret = LTTNG_OK;
917a718d
JG
2206 break;
2207 }
2208 case LTTNG_SAVE_SESSION:
2209 {
3a91de3a 2210 ret = cmd_save_sessions(&cmd_ctx->lsm.u.save_session.attr,
917a718d
JG
2211 &cmd_ctx->creds);
2212 break;
2213 }
2214 case LTTNG_SET_SESSION_SHM_PATH:
2215 {
2216 ret = cmd_set_session_shm_path(cmd_ctx->session,
3a91de3a 2217 cmd_ctx->lsm.u.set_shm_path.shm_path);
917a718d
JG
2218 break;
2219 }
2220 case LTTNG_REGENERATE_METADATA:
2221 {
2222 ret = cmd_regenerate_metadata(cmd_ctx->session);
2223 break;
2224 }
2225 case LTTNG_REGENERATE_STATEDUMP:
2226 {
2227 ret = cmd_regenerate_statedump(cmd_ctx->session);
2228 break;
2229 }
2230 case LTTNG_REGISTER_TRIGGER:
2231 {
746e08d7 2232 struct lttng_trigger *payload_trigger;
242388e4 2233 struct lttng_trigger *return_trigger;
746e08d7
JG
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),
2239 };
242388e4
JR
2240
2241 ret = setup_empty_lttng_msg(cmd_ctx);
2242 if (ret) {
2243 ret = LTTNG_ERR_NOMEM;
2244 goto setup_error;
2245 }
2246
746e08d7
JG
2247 ret = receive_lttng_trigger(
2248 cmd_ctx, *sock, sock_error, &payload_trigger);
2249 if (ret != LTTNG_OK) {
2250 goto error;
2251 }
2252
2253 original_reply_payload_size = cmd_ctx->reply_payload.buffer.size;
242388e4 2254
746e08d7 2255 ret = cmd_register_trigger(&cmd_creds, payload_trigger,
0efb2ad7 2256 cmd_ctx->lsm.u.trigger.is_trigger_anonymous,
412d7227
SM
2257 the_notification_thread_handle,
2258 &return_trigger);
242388e4 2259 if (ret != LTTNG_OK) {
746e08d7 2260 lttng_trigger_put(payload_trigger);
242388e4
JR
2261 goto error;
2262 }
2263
2264 ret = lttng_trigger_serialize(return_trigger, &cmd_ctx->reply_payload);
746e08d7
JG
2265 lttng_trigger_put(payload_trigger);
2266 lttng_trigger_put(return_trigger);
242388e4
JR
2267 if (ret) {
2268 ERR("Failed to serialize trigger in reply to \"register trigger\" command");
2269 ret = LTTNG_ERR_NOMEM;
242388e4
JR
2270 goto error;
2271 }
2272
746e08d7
JG
2273 reply_payload_size = cmd_ctx->reply_payload.buffer.size -
2274 original_reply_payload_size;
242388e4 2275
746e08d7 2276 update_lttng_msg(cmd_ctx, 0, reply_payload_size);
242388e4
JR
2277
2278 ret = LTTNG_OK;
917a718d
JG
2279 break;
2280 }
2281 case LTTNG_UNREGISTER_TRIGGER:
2282 {
746e08d7
JG
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),
2287 };
2288
2289 ret = receive_lttng_trigger(
2290 cmd_ctx, *sock, sock_error, &payload_trigger);
2291 if (ret != LTTNG_OK) {
2292 goto error;
2293 }
2294
2295 ret = cmd_unregister_trigger(&cmd_creds, payload_trigger,
412d7227 2296 the_notification_thread_handle);
746e08d7 2297 lttng_trigger_put(payload_trigger);
917a718d
JG
2298 break;
2299 }
2300 case LTTNG_ROTATE_SESSION:
2301 {
2302 struct lttng_rotate_session_return rotate_return;
2303
2304 DBG("Client rotate session \"%s\"", cmd_ctx->session->name);
2305
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;
2310 goto error;
2311 }
2312
7fdbed1c 2313 ret = cmd_rotate_session(cmd_ctx->session, &rotate_return,
343defc2
MD
2314 false,
2315 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED);
917a718d
JG
2316 if (ret < 0) {
2317 ret = -ret;
2318 goto error;
2319 }
2320
2321 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, &rotate_return,
2322 sizeof(rotate_return));
2323 if (ret < 0) {
2324 ret = -ret;
2325 goto error;
2326 }
2327
2328 ret = LTTNG_OK;
2329 break;
2330 }
2331 case LTTNG_ROTATION_GET_INFO:
2332 {
2333 struct lttng_rotation_get_info_return get_info_return;
2334
2335 memset(&get_info_return, 0, sizeof(get_info_return));
2336 ret = cmd_rotate_get_info(cmd_ctx->session, &get_info_return,
3a91de3a 2337 cmd_ctx->lsm.u.get_rotation_info.rotation_id);
917a718d
JG
2338 if (ret < 0) {
2339 ret = -ret;
2340 goto error;
2341 }
2342
2343 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, &get_info_return,
2344 sizeof(get_info_return));
2345 if (ret < 0) {
2346 ret = -ret;
2347 goto error;
2348 }
2349
2350 ret = LTTNG_OK;
2351 break;
2352 }
2353 case LTTNG_ROTATION_SET_SCHEDULE:
2354 {
2355 bool set_schedule;
2356 enum lttng_rotation_schedule_type schedule_type;
2357 uint64_t value;
2358
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;
2362 goto error;
2363 }
2364
3a91de3a
JG
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;
917a718d 2368
412d7227
SM
2369 ret = cmd_rotation_set_schedule(cmd_ctx->session, set_schedule,
2370 schedule_type, value,
2371 the_notification_thread_handle);
917a718d
JG
2372 if (ret != LTTNG_OK) {
2373 goto error;
2374 }
2375
2376 break;
2377 }
2378 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES:
2379 {
7966af57
SM
2380 lttng_session_list_schedules_return schedules;
2381
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;
917a718d
JG
2386
2387 ret = setup_lttng_msg_no_cmd_header(cmd_ctx, &schedules,
2388 sizeof(schedules));
2389 if (ret < 0) {
2390 ret = -ret;
2391 goto error;
2392 }
2393
2394 ret = LTTNG_OK;
2395 break;
2396 }
022349df
MD
2397 case LTTNG_CLEAR_SESSION:
2398 {
2399 ret = cmd_clear_session(cmd_ctx->session, sock);
2400 break;
2401 }
fbc9f37d
JR
2402 case LTTNG_LIST_TRIGGERS:
2403 {
2404 struct lttng_triggers *return_triggers = NULL;
2405 size_t original_payload_size;
2406 size_t payload_size;
2407
2408 ret = setup_empty_lttng_msg(cmd_ctx);
2409 if (ret) {
2410 ret = LTTNG_ERR_NOMEM;
2411 goto setup_error;
2412 }
2413
2414 original_payload_size = cmd_ctx->reply_payload.buffer.size;
2415
412d7227
SM
2416 ret = cmd_list_triggers(cmd_ctx, the_notification_thread_handle,
2417 &return_triggers);
fbc9f37d
JR
2418 if (ret != LTTNG_OK) {
2419 goto error;
2420 }
2421
a0377dfe 2422 LTTNG_ASSERT(return_triggers);
fbc9f37d
JR
2423 ret = lttng_triggers_serialize(
2424 return_triggers, &cmd_ctx->reply_payload);
2425 lttng_triggers_destroy(return_triggers);
2426 if (ret) {
2427 ERR("Failed to serialize triggers in reply to `list triggers` command");
2428 ret = LTTNG_ERR_NOMEM;
2429 goto error;
2430 }
2431
2432 payload_size = cmd_ctx->reply_payload.buffer.size -
2433 original_payload_size;
2434
2435 update_lttng_msg(cmd_ctx, 0, payload_size);
2436
2437 ret = LTTNG_OK;
2438 break;
2439 }
588c4b0d
JG
2440 case LTTNG_EXECUTE_ERROR_QUERY:
2441 {
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),
2446 };
2447 struct lttng_error_query_results *results = NULL;
2448 size_t original_payload_size;
2449 size_t payload_size;
2450
2451 ret = setup_empty_lttng_msg(cmd_ctx);
2452 if (ret) {
2453 ret = LTTNG_ERR_NOMEM;
2454 goto setup_error;
2455 }
2456
2457 original_payload_size = cmd_ctx->reply_payload.buffer.size;
2458
2459 ret = receive_lttng_error_query(
2460 cmd_ctx, *sock, sock_error, &query);
2461 if (ret != LTTNG_OK) {
2462 goto error;
2463 }
2464
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) {
2469 goto error;
2470 }
2471
a0377dfe 2472 LTTNG_ASSERT(results);
588c4b0d
JG
2473 ret = lttng_error_query_results_serialize(
2474 results, &cmd_ctx->reply_payload);
2475 lttng_error_query_results_destroy(results);
2476 if (ret) {
2477 ERR("Failed to serialize error query result set in reply to `execute error query` command");
2478 ret = LTTNG_ERR_NOMEM;
2479 goto error;
2480 }
2481
2482 payload_size = cmd_ctx->reply_payload.buffer.size -
2483 original_payload_size;
2484
2485 update_lttng_msg(cmd_ctx, 0, payload_size);
2486
2487 ret = LTTNG_OK;
2488
2489 break;
2490 }
917a718d
JG
2491 default:
2492 ret = LTTNG_ERR_UND;
2493 break;
2494 }
2495
2496error:
3a91de3a
JG
2497 if (cmd_ctx->reply_payload.buffer.size == 0) {
2498 DBG("Missing llm header, creating one.");
917a718d
JG
2499 if (setup_lttng_msg_no_cmd_header(cmd_ctx, NULL, 0) < 0) {
2500 goto setup_error;
2501 }
2502 }
2503 /* Set return code */
3a91de3a 2504 ((struct lttcomm_lttng_msg *) (cmd_ctx->reply_payload.buffer.data))->ret_code = ret;
917a718d
JG
2505setup_error:
2506 if (cmd_ctx->session) {
2507 session_unlock(cmd_ctx->session);
2508 session_put(cmd_ctx->session);
3e3665b8 2509 cmd_ctx->session = NULL;
917a718d
JG
2510 }
2511 if (need_tracing_session) {
2512 session_unlock_list();
2513 }
2514init_setup_error:
a0377dfe 2515 LTTNG_ASSERT(!rcu_read_ongoing());
917a718d
JG
2516 return ret;
2517}
2518
2519static int create_client_sock(void)
2520{
2521 int ret, client_sock;
2522 const mode_t old_umask = umask(0);
2523
2524 /* Create client tool unix socket */
412d7227
SM
2525 client_sock = lttcomm_create_unix_sock(
2526 the_config.client_unix_sock_path.value);
917a718d 2527 if (client_sock < 0) {
412d7227
SM
2528 ERR("Create unix sock failed: %s",
2529 the_config.client_unix_sock_path.value);
917a718d
JG
2530 ret = -1;
2531 goto end;
2532 }
2533
2534 /* Set the cloexec flag */
2535 ret = utils_set_fd_cloexec(client_sock);
2536 if (ret < 0) {
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);
2540 }
2541
2542 /* File permission MUST be 660 */
412d7227
SM
2543 ret = chmod(the_config.client_unix_sock_path.value,
2544 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
917a718d 2545 if (ret < 0) {
18972083 2546 ERR("Set file permissions failed: %s",
412d7227 2547 the_config.client_unix_sock_path.value);
917a718d 2548 PERROR("chmod");
18972083
JR
2549 (void) lttcomm_close_unix_sock(client_sock);
2550 ret = -1;
917a718d
JG
2551 goto end;
2552 }
2553 DBG("Created client socket (fd = %i)", client_sock);
2554 ret = client_sock;
2555end:
2556 umask(old_umask);
2557 return ret;
2558}
2559
2560static void cleanup_client_thread(void *data)
2561{
7966af57 2562 struct lttng_pipe *quit_pipe = (lttng_pipe *) data;
917a718d
JG
2563
2564 lttng_pipe_destroy(quit_pipe);
2565}
2566
6cb45e93
JG
2567static void thread_init_cleanup(void *data)
2568{
2569 set_thread_status(false);
2570}
2571
917a718d
JG
2572/*
2573 * This thread manage all clients request using the unix client socket for
2574 * communication.
2575 */
2576static void *thread_manage_clients(void *data)
2577{
2578 int sock = -1, ret, i, pollfd, err = -1;
2579 int sock_error;
2580 uint32_t revents, nb_fd;
917a718d 2581 struct lttng_poll_event events;
0f68efb6 2582 const int client_sock = thread_state.client_sock;
7966af57 2583 struct lttng_pipe *quit_pipe = (lttng_pipe *) data;
917a718d 2584 const int thread_quit_pipe_fd = lttng_pipe_get_readfd(quit_pipe);
3a91de3a 2585 struct command_ctx cmd_ctx = {};
917a718d
JG
2586
2587 DBG("[thread] Manage client started");
2588
3a91de3a
JG
2589 lttng_payload_init(&cmd_ctx.reply_payload);
2590
917a718d
JG
2591 is_root = (getuid() == 0);
2592
6cb45e93 2593 pthread_cleanup_push(thread_init_cleanup, NULL);
917a718d
JG
2594
2595 rcu_register_thread();
2596
412d7227 2597 health_register(the_health_sessiond, HEALTH_SESSIOND_TYPE_CMD);
917a718d
JG
2598
2599 health_code_update();
2600
2601 ret = lttcomm_listen_unix_sock(client_sock);
2602 if (ret < 0) {
2603 goto error_listen;
2604 }
2605
2606 /*
2607 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
2608 * more will be added to this poll set.
2609 */
2610 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2611 if (ret < 0) {
2612 goto error_create_poll;
2613 }
2614
2615 /* Add the application registration socket */
2616 ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI);
2617 if (ret < 0) {
2618 goto error;
2619 }
2620
2621 /* Add thread quit pipe */
2622 ret = lttng_poll_add(&events, thread_quit_pipe_fd, LPOLLIN | LPOLLERR);
2623 if (ret < 0) {
2624 goto error;
2625 }
2626
6cb45e93 2627 /* Set state as running. */
0d163d56 2628 set_thread_status(true);
6cb45e93
JG
2629 pthread_cleanup_pop(0);
2630
917a718d
JG
2631 /* This testpoint is after we signal readiness to the parent. */
2632 if (testpoint(sessiond_thread_manage_clients)) {
2633 goto error;
2634 }
2635
2636 if (testpoint(sessiond_thread_manage_clients_before_loop)) {
2637 goto error;
2638 }
2639
2640 health_code_update();
2641
917a718d
JG
2642 while (1) {
2643 const struct cmd_completion_handler *cmd_completion_handler;
2644
7966af57
SM
2645 cmd_ctx.creds.uid = UINT32_MAX;
2646 cmd_ctx.creds.gid = UINT32_MAX;
2647 cmd_ctx.creds.pid = 0;
3a91de3a 2648 cmd_ctx.session = NULL;
fe489250 2649 lttng_payload_clear(&cmd_ctx.reply_payload);
e368fb43 2650 cmd_ctx.lttng_msg_size = 0;
3a91de3a 2651
917a718d
JG
2652 DBG("Accepting client command ...");
2653
2654 /* Inifinite blocking call, waiting for transmission */
2655 restart:
2656 health_poll_entry();
2657 ret = lttng_poll_wait(&events, -1);
2658 health_poll_exit();
2659 if (ret < 0) {
2660 /*
2661 * Restart interrupted system call.
2662 */
2663 if (errno == EINTR) {
2664 goto restart;
2665 }
2666 goto error;
2667 }
2668
2669 nb_fd = ret;
2670
2671 for (i = 0; i < nb_fd; i++) {
2672 revents = LTTNG_POLL_GETEV(&events, i);
2673 pollfd = LTTNG_POLL_GETFD(&events, i);
2674
2675 health_code_update();
2676
917a718d
JG
2677 if (pollfd == thread_quit_pipe_fd) {
2678 err = 0;
2679 goto exit;
2680 } else {
2681 /* Event on the registration socket */
2682 if (revents & LPOLLIN) {
2683 continue;
2684 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2685 ERR("Client socket poll error");
2686 goto error;
2687 } else {
2688 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2689 goto error;
2690 }
2691 }
2692 }
2693
2694 DBG("Wait for client response");
2695
2696 health_code_update();
2697
2698 sock = lttcomm_accept_unix_sock(client_sock);
2699 if (sock < 0) {
2700 goto error;
2701 }
2702
2703 /*
2704 * Set the CLOEXEC flag. Return code is useless because either way, the
2705 * show must go on.
2706 */
2707 (void) utils_set_fd_cloexec(sock);
2708
2709 /* Set socket option for credentials retrieval */
2710 ret = lttcomm_setsockopt_creds_unix_sock(sock);
2711 if (ret < 0) {
2712 goto error;
2713 }
2714
917a718d
JG
2715 health_code_update();
2716
2717 /*
2718 * Data is received from the lttng client. The struct
2719 * lttcomm_session_msg (lsm) contains the command and data request of
2720 * the client.
2721 */
2722 DBG("Receiving data from client ...");
3a91de3a
JG
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");
917a718d
JG
2727 ret = close(sock);
2728 if (ret) {
2729 PERROR("close");
2730 }
2731 sock = -1;
917a718d
JG
2732 continue;
2733 }
2734
2735 health_code_update();
2736
2737 // TODO: Validate cmd_ctx including sanity check for
2738 // security purpose.
2739
2740 rcu_thread_online();
2741 /*
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.
2746 */
3a91de3a 2747 ret = process_client_msg(&cmd_ctx, &sock, &sock_error);
917a718d
JG
2748 rcu_thread_offline();
2749 if (ret < 0) {
3e3665b8
JG
2750 if (sock >= 0) {
2751 ret = close(sock);
2752 if (ret) {
2753 PERROR("close");
2754 }
4a76dfd3
JR
2755 }
2756 sock = -1;
917a718d
JG
2757 /*
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
2762 * detected.
2763 */
917a718d
JG
2764 continue;
2765 }
2766
c7e9ffbd 2767 if (ret < LTTNG_OK || ret >= LTTNG_ERR_NR) {
7e397c55
FD
2768 WARN("Command returned an invalid status code, returning unknown error: "
2769 "command type = %s (%d), ret = %d",
7966af57 2770 lttcomm_sessiond_command_str((lttcomm_sessiond_command) cmd_ctx.lsm.cmd_type),
7e397c55 2771 cmd_ctx.lsm.cmd_type, ret);
c7e9ffbd
JG
2772 ret = LTTNG_ERR_UNK;
2773 }
2774
917a718d
JG
2775 cmd_completion_handler = cmd_pop_completion_handler();
2776 if (cmd_completion_handler) {
2777 enum lttng_error_code completion_code;
2778
2779 completion_code = cmd_completion_handler->run(
2780 cmd_completion_handler->data);
2781 if (completion_code != LTTNG_OK) {
917a718d
JG
2782 continue;
2783 }
2784 }
2785
2786 health_code_update();
2787
3e3665b8 2788 if (sock >= 0) {
3a91de3a
JG
2789 struct lttng_payload_view view =
2790 lttng_payload_view_from_payload(
2791 &cmd_ctx.reply_payload,
2792 0, -1);
e368fb43 2793 struct lttcomm_lttng_msg *llm = (typeof(
3a91de3a
JG
2794 llm)) cmd_ctx.reply_payload.buffer.data;
2795
a0377dfe
FD
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);
3a91de3a 2798
fe489250 2799 llm->fd_count = lttng_payload_view_get_fd_handle_count(&view);
e368fb43 2800
3e3665b8 2801 DBG("Sending response (size: %d, retcode: %s (%d))",
3a91de3a
JG
2802 cmd_ctx.lttng_msg_size,
2803 lttng_strerror(-llm->ret_code),
2804 llm->ret_code);
2805 ret = send_unix_sock(sock, &view);
3e3665b8
JG
2806 if (ret < 0) {
2807 ERR("Failed to send data back to client");
2808 }
917a718d 2809
3e3665b8
JG
2810 /* End of transmission */
2811 ret = close(sock);
2812 if (ret) {
2813 PERROR("close");
2814 }
4a76dfd3
JR
2815 }
2816 sock = -1;
917a718d 2817
917a718d
JG
2818 health_code_update();
2819 }
2820
2821exit:
2822error:
2823 if (sock >= 0) {
2824 ret = close(sock);
2825 if (ret) {
2826 PERROR("close");
2827 }
2828 }
2829
2830 lttng_poll_clean(&events);
917a718d
JG
2831
2832error_listen:
2833error_create_poll:
412d7227 2834 unlink(the_config.client_unix_sock_path.value);
0f68efb6
JG
2835 ret = close(client_sock);
2836 if (ret) {
2837 PERROR("close");
917a718d
JG
2838 }
2839
2840 if (err) {
2841 health_error();
2842 ERR("Health error occurred in %s", __func__);
2843 }
2844
412d7227 2845 health_unregister(the_health_sessiond);
917a718d
JG
2846
2847 DBG("Client thread dying");
3a91de3a 2848 lttng_payload_reset(&cmd_ctx.reply_payload);
917a718d 2849 rcu_unregister_thread();
917a718d
JG
2850 return NULL;
2851}
2852
2853static
2854bool shutdown_client_thread(void *thread_data)
2855{
7966af57 2856 struct lttng_pipe *client_quit_pipe = (lttng_pipe *) thread_data;
917a718d
JG
2857 const int write_fd = lttng_pipe_get_writefd(client_quit_pipe);
2858
2859 return notify_thread_pipe(write_fd) == 1;
2860}
2861
2862struct lttng_thread *launch_client_thread(void)
2863{
6cb45e93 2864 bool thread_running;
917a718d 2865 struct lttng_pipe *client_quit_pipe;
0f68efb6
JG
2866 struct lttng_thread *thread = NULL;
2867 int client_sock_fd = -1;
917a718d 2868
6cb45e93 2869 sem_init(&thread_state.ready, 0, 0);
917a718d
JG
2870 client_quit_pipe = lttng_pipe_open(FD_CLOEXEC);
2871 if (!client_quit_pipe) {
2872 goto error;
2873 }
2874
0f68efb6
JG
2875 client_sock_fd = create_client_sock();
2876 if (client_sock_fd < 0) {
2877 goto error;
2878 }
2879
2880 thread_state.client_sock = client_sock_fd;
917a718d
JG
2881 thread = lttng_thread_create("Client management",
2882 thread_manage_clients,
2883 shutdown_client_thread,
2884 cleanup_client_thread,
2885 client_quit_pipe);
2886 if (!thread) {
2887 goto error;
2888 }
0f68efb6
JG
2889 /* The client thread now owns the client sock fd and the quit pipe. */
2890 client_sock_fd = -1;
2891 client_quit_pipe = NULL;
917a718d
JG
2892
2893 /*
2894 * This thread is part of the threads that need to be fully
2895 * initialized before the session daemon is marked as "ready".
2896 */
6cb45e93
JG
2897 thread_running = wait_thread_status();
2898 if (!thread_running) {
0f68efb6 2899 goto error;
6cb45e93 2900 }
917a718d
JG
2901 return thread;
2902error:
0f68efb6
JG
2903 if (client_sock_fd >= 0) {
2904 if (close(client_sock_fd)) {
2905 PERROR("Failed to close client socket");
2906 }
2907 }
2908 lttng_thread_put(thread);
917a718d
JG
2909 cleanup_client_thread(client_quit_pipe);
2910 return NULL;
2911}
This page took 0.173077 seconds and 4 git commands to generate.