Fix: liblttng-ctl comm: lttng_event_context is not packed
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
1 /*
2 * lttng-ctl.c
3 *
4 * Linux Trace Toolkit Control Library
5 *
6 * Copyright (C) 2011 EfficiOS Inc.
7 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * SPDX-License-Identifier: LGPL-2.1-only
10 *
11 */
12
13 #define _LGPL_SOURCE
14 #include <assert.h>
15 #include <grp.h>
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <stdint.h>
19 #include <string.h>
20 #include <unistd.h>
21
22 #include <common/bytecode/bytecode.h>
23 #include <common/common.h>
24 #include <common/compat/errno.h>
25 #include <common/compat/string.h>
26 #include <common/defaults.h>
27 #include <common/dynamic-array.h>
28 #include <common/dynamic-buffer.h>
29 #include <common/payload-view.h>
30 #include <common/payload.h>
31 #include <common/sessiond-comm/sessiond-comm.h>
32 #include <common/tracker.h>
33 #include <common/unix.h>
34 #include <common/uri.h>
35 #include <common/utils.h>
36 #include <lttng/channel-internal.h>
37 #include <lttng/destruction-handle.h>
38 #include <lttng/endpoint.h>
39 #include <lttng/error-query-internal.h>
40 #include <lttng/event-internal.h>
41 #include <lttng/health-internal.h>
42 #include <lttng/lttng-error.h>
43 #include <lttng/lttng.h>
44 #include <lttng/session-descriptor-internal.h>
45 #include <lttng/session-internal.h>
46 #include <lttng/trigger/trigger-internal.h>
47 #include <lttng/userspace-probe-internal.h>
48
49 #include "lttng-ctl-helper.h"
50 #include <common/filter/filter-ast.h>
51 #include <common/filter/filter-parser.h>
52 #include <common/filter/memstream.h>
53
54 #define COPY_DOMAIN_PACKED(dst, src) \
55 do { \
56 struct lttng_domain _tmp_domain; \
57 \
58 lttng_ctl_copy_lttng_domain(&_tmp_domain, &src); \
59 dst = _tmp_domain; \
60 } while (0)
61
62 /* Socket to session daemon for communication */
63 static int sessiond_socket = -1;
64 static char sessiond_sock_path[PATH_MAX];
65
66 /* Variables */
67 static char *tracing_group;
68 static int connected;
69
70 /* Global */
71
72 /*
73 * Those two variables are used by error.h to silent or control the verbosity of
74 * error message. They are global to the library so application linking with it
75 * are able to compile correctly and also control verbosity of the library.
76 */
77 int lttng_opt_quiet;
78 int lttng_opt_verbose;
79 int lttng_opt_mi;
80
81 /*
82 * Copy domain to lttcomm_session_msg domain.
83 *
84 * If domain is unknown, default domain will be the kernel.
85 */
86 LTTNG_HIDDEN
87 void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst,
88 struct lttng_domain *src)
89 {
90 if (src && dst) {
91 switch (src->type) {
92 case LTTNG_DOMAIN_KERNEL:
93 case LTTNG_DOMAIN_UST:
94 case LTTNG_DOMAIN_JUL:
95 case LTTNG_DOMAIN_LOG4J:
96 case LTTNG_DOMAIN_PYTHON:
97 memcpy(dst, src, sizeof(struct lttng_domain));
98 break;
99 default:
100 memset(dst, 0, sizeof(struct lttng_domain));
101 break;
102 }
103 }
104 }
105
106 /*
107 * Send lttcomm_session_msg to the session daemon.
108 *
109 * On success, returns the number of bytes sent (>=0)
110 * On error, returns -1
111 */
112 static int send_session_msg(struct lttcomm_session_msg *lsm)
113 {
114 int ret;
115
116 if (!connected) {
117 ret = -LTTNG_ERR_NO_SESSIOND;
118 goto end;
119 }
120
121 DBG("LSM cmd type: '%s' (%d)", lttcomm_sessiond_command_str(lsm->cmd_type),
122 lsm->cmd_type);
123
124 ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm,
125 sizeof(struct lttcomm_session_msg));
126 if (ret < 0) {
127 ret = -LTTNG_ERR_FATAL;
128 }
129
130 end:
131 return ret;
132 }
133
134 /*
135 * Send var len data to the session daemon.
136 *
137 * On success, returns the number of bytes sent (>=0)
138 * On error, returns -1
139 */
140 static int send_session_varlen(const void *data, size_t len)
141 {
142 int ret;
143
144 if (!connected) {
145 ret = -LTTNG_ERR_NO_SESSIOND;
146 goto end;
147 }
148
149 if (!data || !len) {
150 ret = 0;
151 goto end;
152 }
153
154 ret = lttcomm_send_unix_sock(sessiond_socket, data, len);
155 if (ret < 0) {
156 ret = -LTTNG_ERR_FATAL;
157 }
158
159 end:
160 return ret;
161 }
162
163 /*
164 * Send file descriptors to the session daemon.
165 *
166 * On success, returns the number of bytes sent (>=0)
167 * On error, returns -1
168 */
169 static int send_session_fds(const int *fds, size_t nb_fd)
170 {
171 int ret;
172
173 if (!connected) {
174 ret = -LTTNG_ERR_NO_SESSIOND;
175 goto end;
176 }
177
178 if (!fds || !nb_fd) {
179 ret = 0;
180 goto end;
181 }
182
183 ret = lttcomm_send_fds_unix_sock(sessiond_socket, fds, nb_fd);
184 if (ret < 0) {
185 ret = -LTTNG_ERR_FATAL;
186 }
187
188 end:
189 return ret;
190 }
191
192 /*
193 * Receive data from the sessiond socket.
194 *
195 * On success, returns the number of bytes received (>=0)
196 * On error, returns a negative lttng_error_code.
197 */
198 static int recv_data_sessiond(void *buf, size_t len)
199 {
200 int ret;
201
202 assert(len > 0);
203
204 if (!connected) {
205 ret = -LTTNG_ERR_NO_SESSIOND;
206 goto end;
207 }
208
209 ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len);
210 if (ret < 0) {
211 ret = -LTTNG_ERR_FATAL;
212 } else if (ret == 0) {
213 ret = -LTTNG_ERR_NO_SESSIOND;
214 }
215
216 end:
217 return ret;
218 }
219
220 /*
221 * Receive a payload from the session daemon by appending to an existing
222 * payload.
223 * On success, returns the number of bytes received (>=0)
224 * On error, returns a negative lttng_error_code.
225 */
226 static int recv_payload_sessiond(struct lttng_payload *payload, size_t len)
227 {
228 int ret;
229 const size_t original_payload_size = payload->buffer.size;
230
231 ret = lttng_dynamic_buffer_set_size(
232 &payload->buffer, payload->buffer.size + len);
233 if (ret) {
234 ret = -LTTNG_ERR_NOMEM;
235 goto end;
236 }
237
238 ret = recv_data_sessiond(
239 payload->buffer.data + original_payload_size, len);
240 end:
241 return ret;
242 }
243
244 /*
245 * Check if we are in the specified group.
246 *
247 * If yes return 1, else return -1.
248 */
249 LTTNG_HIDDEN
250 int lttng_check_tracing_group(void)
251 {
252 gid_t *grp_list, tracing_gid;
253 int grp_list_size, grp_id, i;
254 int ret = -1;
255 const char *grp_name = tracing_group;
256
257 /* Get GID of group 'tracing' */
258 if (utils_get_group_id(grp_name, false, &tracing_gid)) {
259 /* If grp_tracing is NULL, the group does not exist. */
260 goto end;
261 }
262
263 /* Get number of supplementary group IDs */
264 grp_list_size = getgroups(0, NULL);
265 if (grp_list_size < 0) {
266 PERROR("getgroups");
267 goto end;
268 }
269
270 /* Alloc group list of the right size */
271 grp_list = zmalloc(grp_list_size * sizeof(gid_t));
272 if (!grp_list) {
273 PERROR("malloc");
274 goto end;
275 }
276 grp_id = getgroups(grp_list_size, grp_list);
277 if (grp_id < 0) {
278 PERROR("getgroups");
279 goto free_list;
280 }
281
282 for (i = 0; i < grp_list_size; i++) {
283 if (grp_list[i] == tracing_gid) {
284 ret = 1;
285 break;
286 }
287 }
288
289 free_list:
290 free(grp_list);
291
292 end:
293 return ret;
294 }
295
296 static enum lttng_error_code check_enough_available_memory(
297 uint64_t num_bytes_requested_per_cpu)
298 {
299 int ret;
300 enum lttng_error_code ret_code;
301 long num_cpu;
302 uint64_t best_mem_info;
303 uint64_t num_bytes_requested_total;
304
305 /*
306 * Get the number of CPU currently online to compute the amount of
307 * memory needed to create a buffer for every CPU.
308 */
309 num_cpu = sysconf(_SC_NPROCESSORS_ONLN);
310 if (num_cpu == -1) {
311 ret_code = LTTNG_ERR_FATAL;
312 goto end;
313 }
314
315 if (num_bytes_requested_per_cpu > UINT64_MAX / (uint64_t) num_cpu) {
316 /* Overflow */
317 ret_code = LTTNG_ERR_OVERFLOW;
318 goto end;
319 }
320
321 num_bytes_requested_total =
322 num_bytes_requested_per_cpu * (uint64_t) num_cpu;
323
324 /*
325 * Try to get the `MemAvail` field of `/proc/meminfo`. This is the most
326 * reliable estimate we can get but it is only exposed by the kernel
327 * since 3.14. (See Linux kernel commit:
328 * 34e431b0ae398fc54ea69ff85ec700722c9da773)
329 */
330 ret = utils_get_memory_available(&best_mem_info);
331 if (ret >= 0) {
332 goto success;
333 }
334
335 /*
336 * As a backup plan, use `MemTotal` field of `/proc/meminfo`. This
337 * is a sanity check for obvious user error.
338 */
339 ret = utils_get_memory_total(&best_mem_info);
340 if (ret >= 0) {
341 goto success;
342 }
343
344 /* No valid source of information. */
345 ret_code = LTTNG_ERR_NOMEM;
346 goto end;
347
348 success:
349 if (best_mem_info >= num_bytes_requested_total) {
350 ret_code = LTTNG_OK;
351 } else {
352 ret_code = LTTNG_ERR_NOMEM;
353 }
354 end:
355 return ret_code;
356 }
357
358 /*
359 * Try connect to session daemon with sock_path.
360 *
361 * Return 0 on success, else -1
362 */
363 static int try_connect_sessiond(const char *sock_path)
364 {
365 int ret;
366
367 /* If socket exist, we check if the daemon listens for connect. */
368 ret = access(sock_path, F_OK);
369 if (ret < 0) {
370 /* Not alive */
371 goto error;
372 }
373
374 ret = lttcomm_connect_unix_sock(sock_path);
375 if (ret < 0) {
376 /* Not alive. */
377 goto error;
378 }
379
380 ret = lttcomm_close_unix_sock(ret);
381 if (ret < 0) {
382 PERROR("lttcomm_close_unix_sock");
383 }
384
385 return 0;
386
387 error:
388 return -1;
389 }
390
391 /*
392 * Set sessiond socket path by putting it in the global sessiond_sock_path
393 * variable.
394 *
395 * Returns 0 on success, negative value on failure (the sessiond socket path
396 * is somehow too long or ENOMEM).
397 */
398 static int set_session_daemon_path(void)
399 {
400 int in_tgroup = 0; /* In tracing group. */
401 uid_t uid;
402
403 uid = getuid();
404
405 if (uid != 0) {
406 /* Are we in the tracing group ? */
407 in_tgroup = lttng_check_tracing_group();
408 }
409
410 if ((uid == 0) || in_tgroup == 1) {
411 const int ret = lttng_strncpy(sessiond_sock_path,
412 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK,
413 sizeof(sessiond_sock_path));
414
415 if (ret) {
416 goto error;
417 }
418 }
419
420 if (uid != 0) {
421 int ret;
422
423 if (in_tgroup) {
424 /* Tracing group. */
425 ret = try_connect_sessiond(sessiond_sock_path);
426 if (ret >= 0) {
427 goto end;
428 }
429 /* Global session daemon not available... */
430 }
431 /* ...or not in tracing group (and not root), default */
432
433 /*
434 * With GNU C < 2.1, snprintf returns -1 if the target buffer
435 * is too small;
436 * With GNU C >= 2.1, snprintf returns the required size
437 * (excluding closing null)
438 */
439 ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path),
440 DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir());
441 if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) {
442 goto error;
443 }
444 }
445 end:
446 return 0;
447
448 error:
449 return -1;
450 }
451
452 /*
453 * Connect to the LTTng session daemon.
454 *
455 * On success, return the socket's file descriptor. On error, return -1.
456 */
457 LTTNG_HIDDEN int connect_sessiond(void)
458 {
459 int ret;
460
461 ret = set_session_daemon_path();
462 if (ret < 0) {
463 goto error;
464 }
465
466 /* Connect to the sesssion daemon. */
467 ret = lttcomm_connect_unix_sock(sessiond_sock_path);
468 if (ret < 0) {
469 goto error;
470 }
471
472 return ret;
473
474 error:
475 return -1;
476 }
477
478 static void reset_global_sessiond_connection_state(void)
479 {
480 sessiond_socket = -1;
481 connected = 0;
482 }
483
484 /*
485 * Clean disconnect from the session daemon.
486 *
487 * On success, return 0. On error, return -1.
488 */
489 static int disconnect_sessiond(void)
490 {
491 int ret = 0;
492
493 if (connected) {
494 ret = lttcomm_close_unix_sock(sessiond_socket);
495 reset_global_sessiond_connection_state();
496 }
497
498 return ret;
499 }
500
501 static int recv_sessiond_optional_data(size_t len, void **user_buf,
502 size_t *user_len)
503 {
504 int ret = 0;
505 void *buf = NULL;
506
507 if (len) {
508 if (!user_len) {
509 ret = -LTTNG_ERR_INVALID;
510 goto end;
511 }
512
513 buf = zmalloc(len);
514 if (!buf) {
515 ret = -ENOMEM;
516 goto end;
517 }
518
519 ret = recv_data_sessiond(buf, len);
520 if (ret < 0) {
521 goto end;
522 }
523
524 if (!user_buf) {
525 ret = -LTTNG_ERR_INVALID;
526 goto end;
527 }
528
529 /* Move ownership of command header buffer to user. */
530 *user_buf = buf;
531 buf = NULL;
532 *user_len = len;
533 } else {
534 /* No command header. */
535 if (user_len) {
536 *user_len = 0;
537 }
538
539 if (user_buf) {
540 *user_buf = NULL;
541 }
542 }
543
544 end:
545 free(buf);
546 return ret;
547 }
548
549 /*
550 * Ask the session daemon a specific command and put the data into buf.
551 * Takes extra var. len. data and file descriptors as input to send to the
552 * session daemon.
553 *
554 * Return size of data (only payload, not header) or a negative error code.
555 */
556 LTTNG_HIDDEN
557 int lttng_ctl_ask_sessiond_fds_varlen(struct lttcomm_session_msg *lsm,
558 const int *fds, size_t nb_fd, const void *vardata,
559 size_t vardata_len, void **user_payload_buf,
560 void **user_cmd_header_buf, size_t *user_cmd_header_len)
561 {
562 int ret;
563 size_t payload_len;
564 struct lttcomm_lttng_msg llm;
565
566 ret = connect_sessiond();
567 if (ret < 0) {
568 ret = -LTTNG_ERR_NO_SESSIOND;
569 goto end;
570 } else {
571 sessiond_socket = ret;
572 connected = 1;
573 }
574
575 ret = send_session_msg(lsm);
576 if (ret < 0) {
577 /* Ret value is a valid lttng error code. */
578 goto end;
579 }
580 /* Send var len data */
581 ret = send_session_varlen(vardata, vardata_len);
582 if (ret < 0) {
583 /* Ret value is a valid lttng error code. */
584 goto end;
585 }
586
587 /* Send fds */
588 ret = send_session_fds(fds, nb_fd);
589 if (ret < 0) {
590 /* Ret value is a valid lttng error code. */
591 goto end;
592 }
593
594 /* Get header from data transmission */
595 ret = recv_data_sessiond(&llm, sizeof(llm));
596 if (ret < 0) {
597 /* Ret value is a valid lttng error code. */
598 goto end;
599 }
600
601 /* Check error code if OK */
602 if (llm.ret_code != LTTNG_OK) {
603 ret = -llm.ret_code;
604 goto end;
605 }
606
607 /* Get command header from data transmission */
608 ret = recv_sessiond_optional_data(llm.cmd_header_size,
609 user_cmd_header_buf, user_cmd_header_len);
610 if (ret < 0) {
611 goto end;
612 }
613
614 /* Get payload from data transmission */
615 ret = recv_sessiond_optional_data(llm.data_size, user_payload_buf,
616 &payload_len);
617 if (ret < 0) {
618 goto end;
619 }
620
621 ret = llm.data_size;
622
623 end:
624 disconnect_sessiond();
625 return ret;
626 }
627
628 LTTNG_HIDDEN
629 int lttng_ctl_ask_sessiond_payload(struct lttng_payload_view *message,
630 struct lttng_payload *reply)
631 {
632 int ret;
633 struct lttcomm_lttng_msg llm;
634 const int fd_count = lttng_payload_view_get_fd_handle_count(message);
635
636 assert(reply->buffer.size == 0);
637 assert(lttng_dynamic_pointer_array_get_count(&reply->_fd_handles) == 0);
638
639 ret = connect_sessiond();
640 if (ret < 0) {
641 ret = -LTTNG_ERR_NO_SESSIOND;
642 goto end;
643 } else {
644 sessiond_socket = ret;
645 connected = 1;
646 }
647
648 /* Send command to session daemon */
649 ret = lttcomm_send_creds_unix_sock(sessiond_socket, message->buffer.data,
650 message->buffer.size);
651 if (ret < 0) {
652 ret = -LTTNG_ERR_FATAL;
653 goto end;
654 }
655
656 if (fd_count > 0) {
657 ret = lttcomm_send_payload_view_fds_unix_sock(sessiond_socket,
658 message);
659 if (ret < 0) {
660 ret = -LTTNG_ERR_FATAL;
661 goto end;
662 }
663 }
664
665 /* Get header from data transmission */
666 ret = recv_payload_sessiond(reply, sizeof(llm));
667 if (ret < 0) {
668 /* Ret value is a valid lttng error code. */
669 goto end;
670 }
671
672 llm = *((typeof(llm) *) reply->buffer.data);
673
674 /* Check error code if OK */
675 if (llm.ret_code != LTTNG_OK) {
676 if (llm.ret_code < LTTNG_OK || llm.ret_code >= LTTNG_ERR_NR) {
677 /* Invalid error code received. */
678 ret = -LTTNG_ERR_UNK;
679 } else {
680 ret = -llm.ret_code;
681 }
682 goto end;
683 }
684
685 if (llm.cmd_header_size > 0) {
686 ret = recv_payload_sessiond(reply, llm.cmd_header_size);
687 if (ret < 0) {
688 goto end;
689 }
690 }
691
692 /* Get command header from data transmission */
693 if (llm.data_size > 0) {
694 ret = recv_payload_sessiond(reply, llm.data_size);
695 if (ret < 0) {
696 goto end;
697 }
698 }
699
700 if (llm.fd_count > 0) {
701 ret = lttcomm_recv_payload_fds_unix_sock(
702 sessiond_socket, llm.fd_count, reply);
703 if (ret < 0) {
704 goto end;
705 }
706 }
707
708 /* Don't return the llm header to the caller. */
709 memmove(reply->buffer.data, reply->buffer.data + sizeof(llm),
710 reply->buffer.size - sizeof(llm));
711 ret = lttng_dynamic_buffer_set_size(
712 &reply->buffer, reply->buffer.size - sizeof(llm));
713 if (ret) {
714 /* Can't happen as size is reduced. */
715 abort();
716 }
717
718 ret = reply->buffer.size;
719
720 end:
721 disconnect_sessiond();
722 return ret;
723 }
724
725 /*
726 * Create lttng handle and return pointer.
727 *
728 * The returned pointer will be NULL in case of malloc() error.
729 */
730 struct lttng_handle *lttng_create_handle(const char *session_name,
731 struct lttng_domain *domain)
732 {
733 int ret;
734 struct lttng_handle *handle = NULL;
735
736 handle = zmalloc(sizeof(struct lttng_handle));
737 if (handle == NULL) {
738 PERROR("malloc handle");
739 goto end;
740 }
741
742 /* Copy session name */
743 ret = lttng_strncpy(handle->session_name, session_name ? : "",
744 sizeof(handle->session_name));
745 if (ret) {
746 goto error;
747 }
748
749 /* Copy lttng domain or leave initialized to 0. */
750 if (domain) {
751 lttng_ctl_copy_lttng_domain(&handle->domain, domain);
752 }
753
754 end:
755 return handle;
756 error:
757 free(handle);
758 return NULL;
759 }
760
761 /*
762 * Destroy handle by free(3) the pointer.
763 */
764 void lttng_destroy_handle(struct lttng_handle *handle)
765 {
766 free(handle);
767 }
768
769 /*
770 * Register an outside consumer.
771 *
772 * Returns size of returned session payload data or a negative error code.
773 */
774 int lttng_register_consumer(struct lttng_handle *handle,
775 const char *socket_path)
776 {
777 int ret;
778 struct lttcomm_session_msg lsm;
779
780 if (handle == NULL || socket_path == NULL) {
781 ret = -LTTNG_ERR_INVALID;
782 goto end;
783 }
784
785 memset(&lsm, 0, sizeof(lsm));
786 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
787 ret = lttng_strncpy(lsm.session.name, handle->session_name,
788 sizeof(lsm.session.name));
789 if (ret) {
790 ret = -LTTNG_ERR_INVALID;
791 goto end;
792 }
793
794 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
795
796 ret = lttng_strncpy(lsm.u.reg.path, socket_path,
797 sizeof(lsm.u.reg.path));
798 if (ret) {
799 ret = -LTTNG_ERR_INVALID;
800 goto end;
801 }
802
803 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
804 end:
805 return ret;
806 }
807
808 /*
809 * Start tracing for all traces of the session.
810 *
811 * Returns size of returned session payload data or a negative error code.
812 */
813 int lttng_start_tracing(const char *session_name)
814 {
815 int ret;
816 struct lttcomm_session_msg lsm;
817
818 if (session_name == NULL) {
819 ret = -LTTNG_ERR_INVALID;
820 goto end;
821 }
822
823 memset(&lsm, 0, sizeof(lsm));
824 lsm.cmd_type = LTTNG_START_TRACE;
825
826 ret = lttng_strncpy(lsm.session.name, session_name,
827 sizeof(lsm.session.name));
828 if (ret) {
829 ret = -LTTNG_ERR_INVALID;
830 goto end;
831 }
832
833 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
834 end:
835 return ret;
836 }
837
838 /*
839 * Stop tracing for all traces of the session.
840 */
841 static int _lttng_stop_tracing(const char *session_name, int wait)
842 {
843 int ret, data_ret;
844 struct lttcomm_session_msg lsm;
845
846 if (session_name == NULL) {
847 ret = -LTTNG_ERR_INVALID;
848 goto error;
849 }
850
851 memset(&lsm, 0, sizeof(lsm));
852 lsm.cmd_type = LTTNG_STOP_TRACE;
853
854 ret = lttng_strncpy(lsm.session.name, session_name,
855 sizeof(lsm.session.name));
856 if (ret) {
857 ret = -LTTNG_ERR_INVALID;
858 goto error;
859 }
860
861 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
862 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
863 goto error;
864 }
865
866 if (!wait) {
867 goto end;
868 }
869
870 /* Check for data availability */
871 do {
872 data_ret = lttng_data_pending(session_name);
873 if (data_ret < 0) {
874 /* Return the data available call error. */
875 ret = data_ret;
876 goto error;
877 }
878
879 /*
880 * Data sleep time before retrying (in usec). Don't sleep if the
881 * call returned value indicates availability.
882 */
883 if (data_ret) {
884 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME_US);
885 }
886 } while (data_ret != 0);
887
888 end:
889 error:
890 return ret;
891 }
892
893 /*
894 * Stop tracing and wait for data availability.
895 */
896 int lttng_stop_tracing(const char *session_name)
897 {
898 return _lttng_stop_tracing(session_name, 1);
899 }
900
901 /*
902 * Stop tracing but _don't_ wait for data availability.
903 */
904 int lttng_stop_tracing_no_wait(const char *session_name)
905 {
906 return _lttng_stop_tracing(session_name, 0);
907 }
908
909 /*
910 * Add context to a channel.
911 *
912 * If the given channel is NULL, add the contexts to all channels.
913 * The event_name param is ignored.
914 *
915 * Returns the size of the returned payload data or a negative error code.
916 */
917 int lttng_add_context(struct lttng_handle *handle,
918 struct lttng_event_context *ctx, const char *event_name,
919 const char *channel_name)
920 {
921 int ret;
922 struct lttcomm_session_msg lsm = { .cmd_type = LTTNG_ADD_CONTEXT };
923 struct lttng_payload payload;
924
925 lttng_payload_init(&payload);
926
927 /* Safety check. Both are mandatory. */
928 if (handle == NULL || ctx == NULL) {
929 ret = -LTTNG_ERR_INVALID;
930 goto end;
931 }
932
933 ret = lttng_dynamic_buffer_set_size(&payload.buffer, sizeof(lsm));
934 if (ret) {
935 ret = -LTTNG_ERR_NOMEM;
936 goto end;
937 }
938
939 /* If no channel name, send empty string. */
940 ret = lttng_strncpy(lsm.u.context.channel_name, channel_name ?: "",
941 sizeof(lsm.u.context.channel_name));
942 if (ret) {
943 ret = -LTTNG_ERR_INVALID;
944 goto end;
945 }
946
947 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
948 ret = lttng_strncpy(lsm.session.name, handle->session_name,
949 sizeof(lsm.session.name));
950 if (ret) {
951 ret = -LTTNG_ERR_INVALID;
952 goto end;
953 }
954
955 ret = lttng_event_context_serialize(ctx, &payload);
956 if (ret) {
957 ret = -LTTNG_ERR_INVALID;
958 goto end;
959 }
960
961 lsm.u.context.length = payload.buffer.size - sizeof(lsm);
962
963 /* Update message header. */
964 memcpy(payload.buffer.data, &lsm, sizeof(lsm));
965
966 {
967 struct lttng_payload reply;
968 struct lttng_payload_view payload_view =
969 lttng_payload_view_from_payload(&payload, 0,
970 -1);
971
972 lttng_payload_init(&reply);
973 ret = lttng_ctl_ask_sessiond_payload(&payload_view, &reply);
974 lttng_payload_reset(&reply);
975 if (ret) {
976 goto end;
977 }
978 }
979
980 end:
981 lttng_payload_reset(&payload);
982 return ret;
983 }
984
985 /*
986 * Enable event(s) for a channel.
987 *
988 * If no event name is specified, all events are enabled.
989 * If no channel name is specified, the default 'channel0' is used.
990 *
991 * Returns size of returned session payload data or a negative error code.
992 */
993 int lttng_enable_event(struct lttng_handle *handle,
994 struct lttng_event *ev, const char *channel_name)
995 {
996 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
997 NULL, 0, NULL);
998 }
999
1000 /*
1001 * Create or enable an event with a filter expression.
1002 *
1003 * Return negative error value on error.
1004 * Return size of returned session payload data if OK.
1005 */
1006 int lttng_enable_event_with_filter(struct lttng_handle *handle,
1007 struct lttng_event *event, const char *channel_name,
1008 const char *filter_expression)
1009 {
1010 return lttng_enable_event_with_exclusions(handle, event, channel_name,
1011 filter_expression, 0, NULL);
1012 }
1013
1014 /*
1015 * Depending on the event, return a newly allocated agent filter expression or
1016 * NULL if not applicable.
1017 *
1018 * An event with NO loglevel and the name is * will return NULL.
1019 */
1020 static char *set_agent_filter(const char *filter, struct lttng_event *ev)
1021 {
1022 int err;
1023 char *agent_filter = NULL;
1024
1025 assert(ev);
1026
1027 /* Don't add filter for the '*' event. */
1028 if (strcmp(ev->name, "*") != 0) {
1029 if (filter) {
1030 err = asprintf(&agent_filter, "(%s) && (logger_name == \"%s\")", filter,
1031 ev->name);
1032 } else {
1033 err = asprintf(&agent_filter, "logger_name == \"%s\"", ev->name);
1034 }
1035 if (err < 0) {
1036 PERROR("asprintf");
1037 goto error;
1038 }
1039 }
1040
1041 /* Add loglevel filtering if any for the JUL domain. */
1042 if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) {
1043 const char *op;
1044
1045 if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) {
1046 op = ">=";
1047 } else {
1048 op = "==";
1049 }
1050
1051 if (filter || agent_filter) {
1052 char *new_filter;
1053
1054 err = asprintf(&new_filter, "(%s) && (int_loglevel %s %d)",
1055 agent_filter ? agent_filter : filter, op,
1056 ev->loglevel);
1057 if (agent_filter) {
1058 free(agent_filter);
1059 }
1060 agent_filter = new_filter;
1061 } else {
1062 err = asprintf(&agent_filter, "int_loglevel %s %d", op,
1063 ev->loglevel);
1064 }
1065 if (err < 0) {
1066 PERROR("asprintf");
1067 goto error;
1068 }
1069 }
1070
1071 return agent_filter;
1072 error:
1073 free(agent_filter);
1074 return NULL;
1075 }
1076
1077 /*
1078 * Enable event(s) for a channel, possibly with exclusions and a filter.
1079 * If no event name is specified, all events are enabled.
1080 * If no channel name is specified, the default name is used.
1081 * If filter expression is not NULL, the filter is set for the event.
1082 * If exclusion count is not zero, the exclusions are set for the event.
1083 * Returns size of returned session payload data or a negative error code.
1084 */
1085 int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
1086 struct lttng_event *ev, const char *channel_name,
1087 const char *original_filter_expression,
1088 int exclusion_count, char **exclusion_list)
1089 {
1090 struct lttcomm_session_msg lsm = { .cmd_type = LTTNG_ENABLE_EVENT };
1091 struct lttng_payload payload;
1092 int ret = 0;
1093 unsigned int free_filter_expression = 0;
1094 struct filter_parser_ctx *ctx = NULL;
1095 size_t bytecode_len = 0;
1096
1097 /*
1098 * We have either a filter or some exclusions, so we need to set up
1099 * a variable-length payload from where to send the data.
1100 */
1101 lttng_payload_init(&payload);
1102
1103 /*
1104 * Cast as non-const since we may replace the filter expression
1105 * by a dynamically allocated string. Otherwise, the original
1106 * string is not modified.
1107 */
1108 char *filter_expression = (char *) original_filter_expression;
1109
1110 if (handle == NULL || ev == NULL) {
1111 ret = -LTTNG_ERR_INVALID;
1112 goto error;
1113 }
1114
1115 /*
1116 * Empty filter string will always be rejected by the parser
1117 * anyway, so treat this corner-case early to eliminate
1118 * lttng_fmemopen error for 0-byte allocation.
1119 */
1120 if (filter_expression && filter_expression[0] == '\0') {
1121 ret = -LTTNG_ERR_INVALID;
1122 goto error;
1123 }
1124
1125 if (ev->name[0] == '\0') {
1126 /* Enable all events. */
1127 ret = lttng_strncpy(ev->name, "*", sizeof(ev->name));
1128 assert(ret == 0);
1129 }
1130
1131 /* Parse filter expression. */
1132 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
1133 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1134 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1135 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
1136 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1137 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1138 char *agent_filter;
1139
1140 /* Setup agent filter if needed. */
1141 agent_filter = set_agent_filter(filter_expression, ev);
1142 if (!agent_filter) {
1143 if (!filter_expression) {
1144 /*
1145 * No JUL and no filter, just skip
1146 * everything below.
1147 */
1148 goto serialize;
1149 }
1150 } else {
1151 /*
1152 * With an agent filter, the original filter has
1153 * been added to it thus replace the filter
1154 * expression.
1155 */
1156 filter_expression = agent_filter;
1157 free_filter_expression = 1;
1158 }
1159 }
1160
1161 if (strnlen(filter_expression, LTTNG_FILTER_MAX_LEN) ==
1162 LTTNG_FILTER_MAX_LEN) {
1163 ret = -LTTNG_ERR_FILTER_INVAL;
1164 goto error;
1165 }
1166
1167 ret = filter_parser_ctx_create_from_filter_expression(filter_expression, &ctx);
1168 if (ret) {
1169 goto error;
1170 }
1171
1172 bytecode_len = bytecode_get_len(&ctx->bytecode->b) +
1173 sizeof(ctx->bytecode->b);
1174 if (bytecode_len > LTTNG_FILTER_MAX_LEN) {
1175 ret = -LTTNG_ERR_FILTER_INVAL;
1176 goto error;
1177 }
1178 }
1179
1180 serialize:
1181 ret = lttng_event_serialize(ev, exclusion_count, exclusion_list,
1182 filter_expression, bytecode_len,
1183 (ctx && bytecode_len) ? &ctx->bytecode->b : NULL,
1184 &payload);
1185 if (ret) {
1186 ret = -LTTNG_ERR_INVALID;
1187 goto error;
1188 }
1189
1190 /* If no channel name, send empty string. */
1191 ret = lttng_strncpy(lsm.u.enable.channel_name, channel_name ?: "",
1192 sizeof(lsm.u.enable.channel_name));
1193 if (ret) {
1194 ret = -LTTNG_ERR_INVALID;
1195 goto error;
1196 }
1197
1198 /* Domain */
1199 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
1200
1201 /* Session name */
1202 ret = lttng_strncpy(lsm.session.name, handle->session_name,
1203 sizeof(lsm.session.name));
1204 if (ret) {
1205 ret = -LTTNG_ERR_INVALID;
1206 goto error;
1207 }
1208
1209 /* Length of the serialized event. */
1210 lsm.u.enable.length = (uint32_t) payload.buffer.size;
1211
1212 {
1213 struct lttng_payload_view view = lttng_payload_view_from_payload(
1214 &payload, 0, -1);
1215 int fd_count = lttng_payload_view_get_fd_handle_count(&view);
1216 int fd_to_send;
1217
1218 if (fd_count < 0) {
1219 goto error;
1220 }
1221
1222 assert(fd_count == 0 || fd_count == 1);
1223 if (fd_count == 1) {
1224 struct fd_handle *h =
1225 lttng_payload_view_pop_fd_handle(&view);
1226
1227 if (!h) {
1228 goto error;
1229 }
1230
1231 fd_to_send = fd_handle_get_fd(h);
1232 fd_handle_put(h);
1233 }
1234
1235 lsm.fd_count = fd_count;
1236
1237 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm,
1238 fd_count ? &fd_to_send : NULL, fd_count,
1239 view.buffer.size ? view.buffer.data : NULL,
1240 view.buffer.size, NULL, NULL, 0);
1241 }
1242
1243 error:
1244 if (filter_expression && ctx) {
1245 filter_bytecode_free(ctx);
1246 filter_ir_free(ctx);
1247 filter_parser_ctx_free(ctx);
1248 }
1249 if (free_filter_expression) {
1250 /*
1251 * The filter expression has been replaced and must be freed as
1252 * it is not the original filter expression received as a
1253 * parameter.
1254 */
1255 free(filter_expression);
1256 }
1257 /*
1258 * Return directly to the caller and don't ask the sessiond since
1259 * something went wrong in the parsing of data above.
1260 */
1261 lttng_payload_reset(&payload);
1262 return ret;
1263 }
1264
1265 int lttng_disable_event_ext(struct lttng_handle *handle,
1266 struct lttng_event *ev, const char *channel_name,
1267 const char *original_filter_expression)
1268 {
1269 struct lttcomm_session_msg lsm = { .cmd_type = LTTNG_DISABLE_EVENT };
1270 struct lttng_payload payload;
1271 int ret = 0;
1272 unsigned int free_filter_expression = 0;
1273 struct filter_parser_ctx *ctx = NULL;
1274 size_t bytecode_len = 0;
1275
1276 /*
1277 * We have either a filter or some exclusions, so we need to set up
1278 * a variable-length payload from where to send the data.
1279 */
1280 lttng_payload_init(&payload);
1281
1282 /*
1283 * Cast as non-const since we may replace the filter expression
1284 * by a dynamically allocated string. Otherwise, the original
1285 * string is not modified.
1286 */
1287 char *filter_expression = (char *) original_filter_expression;
1288
1289 if (handle == NULL || ev == NULL) {
1290 ret = -LTTNG_ERR_INVALID;
1291 goto error;
1292 }
1293
1294 /*
1295 * Empty filter string will always be rejected by the parser
1296 * anyway, so treat this corner-case early to eliminate
1297 * lttng_fmemopen error for 0-byte allocation.
1298 */
1299 if (filter_expression && filter_expression[0] == '\0') {
1300 ret = -LTTNG_ERR_INVALID;
1301 goto error;
1302 }
1303
1304 /* Parse filter expression. */
1305 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
1306 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1307 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1308 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
1309 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1310 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1311 char *agent_filter;
1312
1313 /* Setup agent filter if needed. */
1314 agent_filter = set_agent_filter(filter_expression, ev);
1315 if (!agent_filter) {
1316 if (!filter_expression) {
1317 /*
1318 * No JUL and no filter, just skip
1319 * everything below.
1320 */
1321 goto serialize;
1322 }
1323 } else {
1324 /*
1325 * With an agent filter, the original filter has
1326 * been added to it thus replace the filter
1327 * expression.
1328 */
1329 filter_expression = agent_filter;
1330 free_filter_expression = 1;
1331 }
1332 }
1333
1334 if (strnlen(filter_expression, LTTNG_FILTER_MAX_LEN) ==
1335 LTTNG_FILTER_MAX_LEN) {
1336 ret = -LTTNG_ERR_FILTER_INVAL;
1337 goto error;
1338 }
1339
1340 ret = filter_parser_ctx_create_from_filter_expression(filter_expression, &ctx);
1341 if (ret) {
1342 goto error;
1343 }
1344
1345 bytecode_len = bytecode_get_len(&ctx->bytecode->b) +
1346 sizeof(ctx->bytecode->b);
1347 if (bytecode_len > LTTNG_FILTER_MAX_LEN) {
1348 ret = -LTTNG_ERR_FILTER_INVAL;
1349 goto error;
1350 }
1351 }
1352
1353 serialize:
1354 ret = lttng_event_serialize(ev, 0, NULL,
1355 filter_expression, bytecode_len,
1356 (ctx && bytecode_len) ? &ctx->bytecode->b : NULL,
1357 &payload);
1358 if (ret) {
1359 ret = -LTTNG_ERR_INVALID;
1360 goto error;
1361 }
1362
1363 /* If no channel name, send empty string. */
1364 ret = lttng_strncpy(lsm.u.disable.channel_name, channel_name ?: "",
1365 sizeof(lsm.u.disable.channel_name));
1366 if (ret) {
1367 ret = -LTTNG_ERR_INVALID;
1368 goto error;
1369 }
1370
1371 /* Domain */
1372 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
1373
1374 /* Session name */
1375 ret = lttng_strncpy(lsm.session.name, handle->session_name,
1376 sizeof(lsm.session.name));
1377 if (ret) {
1378 ret = -LTTNG_ERR_INVALID;
1379 goto error;
1380 }
1381
1382 /* Length of the serialized event. */
1383 lsm.u.disable.length = (uint32_t) payload.buffer.size;
1384
1385 {
1386 struct lttng_payload_view view = lttng_payload_view_from_payload(
1387 &payload, 0, -1);
1388 int fd_count = lttng_payload_view_get_fd_handle_count(&view);
1389 int fd_to_send;
1390
1391 if (fd_count < 0) {
1392 goto error;
1393 }
1394
1395 assert(fd_count == 0 || fd_count == 1);
1396 if (fd_count == 1) {
1397 struct fd_handle *h =
1398 lttng_payload_view_pop_fd_handle(&view);
1399
1400 if (!h) {
1401 goto error;
1402 }
1403
1404 fd_to_send = fd_handle_get_fd(h);
1405 fd_handle_put(h);
1406 }
1407
1408 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm,
1409 fd_count ? &fd_to_send : NULL, fd_count,
1410 view.buffer.size ? view.buffer.data : NULL,
1411 view.buffer.size, NULL, NULL, 0);
1412 }
1413
1414 error:
1415 if (filter_expression && ctx) {
1416 filter_bytecode_free(ctx);
1417 filter_ir_free(ctx);
1418 filter_parser_ctx_free(ctx);
1419 }
1420 if (free_filter_expression) {
1421 /*
1422 * The filter expression has been replaced and must be freed as
1423 * it is not the original filter expression received as a
1424 * parameter.
1425 */
1426 free(filter_expression);
1427 }
1428 /*
1429 * Return directly to the caller and don't ask the sessiond since
1430 * something went wrong in the parsing of data above.
1431 */
1432 lttng_payload_reset(&payload);
1433 return ret;
1434 }
1435
1436 /*
1437 * Disable event(s) of a channel and domain.
1438 * If no event name is specified, all events are disabled.
1439 * If no channel name is specified, the default 'channel0' is used.
1440 * Returns size of returned session payload data or a negative error code.
1441 */
1442 int lttng_disable_event(struct lttng_handle *handle, const char *name,
1443 const char *channel_name)
1444 {
1445 int ret;
1446 struct lttng_event ev;
1447
1448 memset(&ev, 0, sizeof(ev));
1449 ev.loglevel = -1;
1450 ev.type = LTTNG_EVENT_ALL;
1451 ret = lttng_strncpy(ev.name, name ?: "", sizeof(ev.name));
1452 if (ret) {
1453 ret = -LTTNG_ERR_INVALID;
1454 goto end;
1455 }
1456
1457 ret = lttng_disable_event_ext(handle, &ev, channel_name, NULL);
1458 end:
1459 return ret;
1460 }
1461
1462 struct lttng_channel *lttng_channel_create(struct lttng_domain *domain)
1463 {
1464 struct lttng_channel *channel = NULL;
1465
1466 if (!domain) {
1467 goto end;
1468 }
1469
1470 /* Validate domain. */
1471 switch (domain->type) {
1472 case LTTNG_DOMAIN_UST:
1473 switch (domain->buf_type) {
1474 case LTTNG_BUFFER_PER_UID:
1475 case LTTNG_BUFFER_PER_PID:
1476 break;
1477 default:
1478 goto end;
1479 }
1480 break;
1481 case LTTNG_DOMAIN_KERNEL:
1482 if (domain->buf_type != LTTNG_BUFFER_GLOBAL) {
1483 goto end;
1484 }
1485 break;
1486 default:
1487 goto end;
1488 }
1489
1490 channel = lttng_channel_create_internal();
1491 if (!channel) {
1492 goto end;
1493 }
1494
1495 lttng_channel_set_default_attr(domain, &channel->attr);
1496 end:
1497 return channel;
1498 }
1499
1500 void lttng_channel_destroy(struct lttng_channel *channel)
1501 {
1502 if (!channel) {
1503 return;
1504 }
1505
1506 if (channel->attr.extended.ptr) {
1507 free(channel->attr.extended.ptr);
1508 }
1509 free(channel);
1510 }
1511
1512 /*
1513 * Enable channel per domain
1514 * Returns size of returned session payload data or a negative error code.
1515 */
1516 int lttng_enable_channel(struct lttng_handle *handle,
1517 struct lttng_channel *in_chan)
1518 {
1519 enum lttng_error_code ret_code;
1520 int ret;
1521 struct lttng_dynamic_buffer buffer;
1522 struct lttcomm_session_msg lsm;
1523 uint64_t total_buffer_size_needed_per_cpu = 0;
1524 struct lttng_channel *channel = NULL;
1525
1526 lttng_dynamic_buffer_init(&buffer);
1527
1528 /* NULL arguments are forbidden. No default values. */
1529 if (handle == NULL || in_chan == NULL) {
1530 ret = -LTTNG_ERR_INVALID;
1531 goto end;
1532 }
1533
1534 /*
1535 * Verify that the amount of memory required to create the requested
1536 * buffer is available on the system at the moment.
1537 */
1538 if (in_chan->attr.num_subbuf >
1539 UINT64_MAX / in_chan->attr.subbuf_size) {
1540 /* Overflow */
1541 ret = -LTTNG_ERR_OVERFLOW;
1542 goto end;
1543 }
1544
1545 total_buffer_size_needed_per_cpu =
1546 in_chan->attr.num_subbuf * in_chan->attr.subbuf_size;
1547 ret_code = check_enough_available_memory(
1548 total_buffer_size_needed_per_cpu);
1549 if (ret_code != LTTNG_OK) {
1550 ret = -ret_code;
1551 goto end;
1552 }
1553
1554 /* Copy the channel for easier manipulation. */
1555 channel = lttng_channel_copy(in_chan);
1556 if (!channel) {
1557 ret = -LTTNG_ERR_NOMEM;
1558 goto end;
1559 }
1560
1561 /* Populate the channel extended attribute if necessary. */
1562 if (!channel->attr.extended.ptr) {
1563 struct lttng_channel_extended *extended =
1564 (struct lttng_channel_extended *) zmalloc(
1565 sizeof(*extended));
1566
1567 if (!extended) {
1568 ret = -LTTNG_ERR_NOMEM;
1569 goto end;
1570 }
1571 lttng_channel_set_default_extended_attr(
1572 &handle->domain, extended);
1573 channel->attr.extended.ptr = extended;
1574 }
1575
1576 /* Prepare the payload */
1577 memset(&lsm, 0, sizeof(lsm));
1578
1579 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
1580 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
1581
1582 ret = lttng_strncpy(lsm.session.name, handle->session_name,
1583 sizeof(lsm.session.name));
1584 if (ret) {
1585 ret = -LTTNG_ERR_INVALID;
1586 goto end;
1587 }
1588
1589 ret = lttng_channel_serialize(channel, &buffer);
1590 if (ret) {
1591 ret = -LTTNG_ERR_FATAL;
1592 goto end;
1593 }
1594
1595 lsm.u.channel.length = buffer.size;
1596
1597 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(
1598 &lsm, buffer.data, buffer.size, NULL);
1599 end:
1600 lttng_channel_destroy(channel);
1601 lttng_dynamic_buffer_reset(&buffer);
1602 return ret;
1603 }
1604
1605 /*
1606 * All tracing will be stopped for registered events of the channel.
1607 * Returns size of returned session payload data or a negative error code.
1608 */
1609 int lttng_disable_channel(struct lttng_handle *handle, const char *name)
1610 {
1611 int ret;
1612 struct lttcomm_session_msg lsm;
1613
1614 /* Safety check. Both are mandatory. */
1615 if (handle == NULL || name == NULL) {
1616 return -LTTNG_ERR_INVALID;
1617 }
1618
1619 memset(&lsm, 0, sizeof(lsm));
1620
1621 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1622
1623 ret = lttng_strncpy(lsm.u.disable.channel_name, name,
1624 sizeof(lsm.u.disable.channel_name));
1625 if (ret) {
1626 ret = -LTTNG_ERR_INVALID;
1627 goto end;
1628 }
1629
1630 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
1631
1632 ret = lttng_strncpy(lsm.session.name, handle->session_name,
1633 sizeof(lsm.session.name));
1634 if (ret) {
1635 ret = -LTTNG_ERR_INVALID;
1636 goto end;
1637 }
1638
1639 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1640 end:
1641 return ret;
1642 }
1643
1644 /*
1645 * Lists all available tracepoints of domain.
1646 * Sets the contents of the events array.
1647 * Returns the number of lttng_event entries in events;
1648 * on error, returns a negative value.
1649 */
1650 int lttng_list_tracepoints(struct lttng_handle *handle,
1651 struct lttng_event **events)
1652 {
1653 enum lttng_error_code ret_code;
1654 int ret, total_payload_received;
1655 char *reception_buffer = NULL;
1656 struct lttcomm_session_msg lsm = { .cmd_type = LTTNG_LIST_TRACEPOINTS };
1657 struct lttcomm_list_command_header *cmd_header = NULL;
1658 size_t cmd_header_len;
1659 unsigned int nb_events = 0;
1660
1661 if (handle == NULL) {
1662 ret = -LTTNG_ERR_INVALID;
1663 goto end;
1664 }
1665
1666 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
1667
1668 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm, NULL, 0, NULL, 0,
1669 (void **) &reception_buffer, (void **) &cmd_header,
1670 &cmd_header_len);
1671 if (ret < 0) {
1672 goto end;
1673 }
1674
1675 total_payload_received = ret;
1676
1677 if (!cmd_header) {
1678 ret = -LTTNG_ERR_UNK;
1679 goto end;
1680 }
1681
1682 if (cmd_header->count > INT_MAX) {
1683 ret = -LTTNG_ERR_OVERFLOW;
1684 goto end;
1685 }
1686
1687 nb_events = (unsigned int) cmd_header->count;
1688
1689 {
1690 struct lttng_buffer_view events_view =
1691 lttng_buffer_view_init(reception_buffer, 0,
1692 total_payload_received);
1693 struct lttng_payload_view events_payload_view =
1694 lttng_payload_view_from_buffer_view(
1695 &events_view, 0, -1);
1696
1697 ret_code = lttng_events_create_and_flatten_from_payload(
1698 &events_payload_view, nb_events, events);
1699 if (ret_code != LTTNG_OK) {
1700 ret = -ret_code;
1701 goto end;
1702 }
1703 }
1704
1705 ret = (int) nb_events;
1706
1707 end:
1708 free(cmd_header);
1709 free(reception_buffer);
1710 return ret;
1711 }
1712
1713 /*
1714 * Lists all available tracepoint fields of domain.
1715 * Sets the contents of the event field array.
1716 * Returns the number of lttng_event_field entries in events;
1717 * on error, returns a negative value.
1718 */
1719 int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1720 struct lttng_event_field **fields)
1721 {
1722 int ret;
1723 struct lttcomm_session_msg lsm;
1724
1725 if (handle == NULL) {
1726 return -LTTNG_ERR_INVALID;
1727 }
1728
1729 memset(&lsm, 0, sizeof(lsm));
1730 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
1731 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
1732
1733 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
1734 if (ret < 0) {
1735 return ret;
1736 }
1737
1738 return ret / sizeof(struct lttng_event_field);
1739 }
1740
1741 /*
1742 * Lists all available kernel system calls. Allocates and sets the contents of
1743 * the events array.
1744 *
1745 * Returns the number of lttng_event entries in events; on error, returns a
1746 * negative value.
1747 */
1748 int lttng_list_syscalls(struct lttng_event **events)
1749 {
1750 enum lttng_error_code ret_code;
1751 int ret, total_payload_received;
1752 char *reception_buffer = NULL;
1753 struct lttcomm_session_msg lsm = {};
1754 struct lttcomm_list_command_header *cmd_header = NULL;
1755 size_t cmd_header_len;
1756 uint32_t nb_events = 0;
1757
1758 if (!events) {
1759 ret = -LTTNG_ERR_INVALID;
1760 goto end;
1761 }
1762
1763 lsm.cmd_type = LTTNG_LIST_SYSCALLS;
1764 /* Force kernel domain for system calls. */
1765 lsm.domain.type = LTTNG_DOMAIN_KERNEL;
1766
1767 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm, NULL, 0, NULL, 0,
1768 (void **) &reception_buffer, (void **) &cmd_header,
1769 &cmd_header_len);
1770 if (ret < 0) {
1771 goto end;
1772 }
1773 total_payload_received = ret;
1774
1775 if (!cmd_header) {
1776 ret = -LTTNG_ERR_UNK;
1777 goto end;
1778 }
1779
1780 if (cmd_header->count > INT_MAX) {
1781 ret = -LTTNG_ERR_OVERFLOW;
1782 goto end;
1783 }
1784
1785 nb_events = (unsigned int) cmd_header->count;
1786
1787 {
1788 const struct lttng_buffer_view events_view =
1789 lttng_buffer_view_init(reception_buffer, 0,
1790 total_payload_received);
1791 struct lttng_payload_view events_payload_view =
1792 lttng_payload_view_from_buffer_view(
1793 &events_view, 0, -1);
1794
1795 ret_code = lttng_events_create_and_flatten_from_payload(
1796 &events_payload_view, nb_events, events);
1797 if (ret_code != LTTNG_OK) {
1798 ret = -ret_code;
1799 goto end;
1800 }
1801 }
1802
1803 ret = (int) nb_events;
1804
1805 end:
1806 free(reception_buffer);
1807 free(cmd_header);
1808 return ret;
1809 }
1810
1811 /*
1812 * Returns a human readable string describing
1813 * the error code (a negative value).
1814 */
1815 const char *lttng_strerror(int code)
1816 {
1817 return error_get_str(code);
1818 }
1819
1820 enum lttng_error_code lttng_create_session_ext(
1821 struct lttng_session_descriptor *session_descriptor)
1822 {
1823 enum lttng_error_code ret_code;
1824 struct lttcomm_session_msg lsm = {
1825 .cmd_type = LTTNG_CREATE_SESSION_EXT,
1826 };
1827 void *reply = NULL;
1828 struct lttng_buffer_view reply_view;
1829 int reply_ret;
1830 bool sessiond_must_generate_ouput;
1831 struct lttng_dynamic_buffer payload;
1832 int ret;
1833 size_t descriptor_size;
1834 struct lttng_session_descriptor *descriptor_reply = NULL;
1835
1836 lttng_dynamic_buffer_init(&payload);
1837 if (!session_descriptor) {
1838 ret_code = LTTNG_ERR_INVALID;
1839 goto end;
1840 }
1841
1842 sessiond_must_generate_ouput =
1843 !lttng_session_descriptor_is_output_destination_initialized(
1844 session_descriptor);
1845 if (sessiond_must_generate_ouput) {
1846 const char *home_dir = utils_get_home_dir();
1847 size_t home_dir_len = home_dir ? strlen(home_dir) + 1 : 0;
1848
1849 if (!home_dir || home_dir_len > LTTNG_PATH_MAX) {
1850 ret_code = LTTNG_ERR_FATAL;
1851 goto end;
1852 }
1853
1854 lsm.u.create_session.home_dir_size = (uint16_t) home_dir_len;
1855 ret = lttng_dynamic_buffer_append(&payload, home_dir,
1856 home_dir_len);
1857 if (ret) {
1858 ret_code = LTTNG_ERR_NOMEM;
1859 goto end;
1860 }
1861 }
1862
1863 descriptor_size = payload.size;
1864 ret = lttng_session_descriptor_serialize(session_descriptor,
1865 &payload);
1866 if (ret) {
1867 ret_code = LTTNG_ERR_INVALID;
1868 goto end;
1869 }
1870 descriptor_size = payload.size - descriptor_size;
1871 lsm.u.create_session.session_descriptor_size = descriptor_size;
1872
1873 /* Command returns a session descriptor on success. */
1874 reply_ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, payload.data,
1875 payload.size, &reply);
1876 if (reply_ret < 0) {
1877 ret_code = -reply_ret;
1878 goto end;
1879 } else if (reply_ret == 0) {
1880 /* Socket unexpectedly closed by the session daemon. */
1881 ret_code = LTTNG_ERR_FATAL;
1882 goto end;
1883 }
1884
1885 reply_view = lttng_buffer_view_init(reply, 0, reply_ret);
1886 ret = lttng_session_descriptor_create_from_buffer(&reply_view,
1887 &descriptor_reply);
1888 if (ret < 0) {
1889 ret_code = LTTNG_ERR_FATAL;
1890 goto end;
1891 }
1892 ret_code = LTTNG_OK;
1893 lttng_session_descriptor_assign(session_descriptor, descriptor_reply);
1894 end:
1895 free(reply);
1896 lttng_dynamic_buffer_reset(&payload);
1897 lttng_session_descriptor_destroy(descriptor_reply);
1898 return ret_code;
1899 }
1900
1901 /*
1902 * Create a new session using name and url for destination.
1903 *
1904 * Return 0 on success else a negative LTTng error code.
1905 */
1906 int lttng_create_session(const char *name, const char *url)
1907 {
1908 int ret;
1909 ssize_t size;
1910 struct lttng_uri *uris = NULL;
1911 struct lttng_session_descriptor *descriptor = NULL;
1912 enum lttng_error_code ret_code;
1913
1914 if (!name) {
1915 ret = -LTTNG_ERR_INVALID;
1916 goto end;
1917 }
1918
1919 size = uri_parse_str_urls(url, NULL, &uris);
1920 if (size < 0) {
1921 ret = -LTTNG_ERR_INVALID;
1922 goto end;
1923 }
1924 switch (size) {
1925 case 0:
1926 descriptor = lttng_session_descriptor_create(name);
1927 break;
1928 case 1:
1929 if (uris[0].dtype != LTTNG_DST_PATH) {
1930 ret = -LTTNG_ERR_INVALID;
1931 goto end;
1932 }
1933 descriptor = lttng_session_descriptor_local_create(name,
1934 uris[0].dst.path);
1935 break;
1936 case 2:
1937 descriptor = lttng_session_descriptor_network_create(name, url,
1938 NULL);
1939 break;
1940 default:
1941 ret = -LTTNG_ERR_INVALID;
1942 goto end;
1943 }
1944 if (!descriptor) {
1945 ret = -LTTNG_ERR_INVALID;
1946 goto end;
1947 }
1948 ret_code = lttng_create_session_ext(descriptor);
1949 ret = ret_code == LTTNG_OK ? 0 : -ret_code;
1950 end:
1951 lttng_session_descriptor_destroy(descriptor);
1952 free(uris);
1953 return ret;
1954 }
1955
1956 /*
1957 * Create a session exclusively used for snapshot.
1958 *
1959 * Return 0 on success else a negative LTTng error code.
1960 */
1961 int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
1962 {
1963 int ret;
1964 enum lttng_error_code ret_code;
1965 ssize_t size;
1966 struct lttng_uri *uris = NULL;
1967 struct lttng_session_descriptor *descriptor = NULL;
1968
1969 if (!name) {
1970 ret = -LTTNG_ERR_INVALID;
1971 goto end;
1972 }
1973
1974 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
1975 if (size < 0) {
1976 ret = -LTTNG_ERR_INVALID;
1977 goto end;
1978 }
1979 /*
1980 * If the user does not specify a custom subdir, use the session name.
1981 */
1982 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH &&
1983 strlen(uris[0].subdir) == 0) {
1984 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s",
1985 name);
1986 if (ret < 0) {
1987 PERROR("Failed to set session name as network destination sub-directory");
1988 ret = -LTTNG_ERR_FATAL;
1989 goto end;
1990 } else if (ret >= sizeof(uris[0].subdir)) {
1991 /* Truncated output. */
1992 ret = -LTTNG_ERR_INVALID;
1993 goto end;
1994 }
1995 }
1996
1997 switch (size) {
1998 case 0:
1999 descriptor = lttng_session_descriptor_snapshot_create(name);
2000 break;
2001 case 1:
2002 if (uris[0].dtype != LTTNG_DST_PATH) {
2003 ret = -LTTNG_ERR_INVALID;
2004 goto end;
2005 }
2006 descriptor = lttng_session_descriptor_snapshot_local_create(
2007 name,
2008 uris[0].dst.path);
2009 break;
2010 case 2:
2011 descriptor = lttng_session_descriptor_snapshot_network_create(
2012 name,
2013 snapshot_url,
2014 NULL);
2015 break;
2016 default:
2017 ret = -LTTNG_ERR_INVALID;
2018 goto end;
2019 }
2020 if (!descriptor) {
2021 ret = -LTTNG_ERR_INVALID;
2022 goto end;
2023 }
2024 ret_code = lttng_create_session_ext(descriptor);
2025 ret = ret_code == LTTNG_OK ? 0 : -ret_code;
2026 end:
2027 lttng_session_descriptor_destroy(descriptor);
2028 free(uris);
2029 return ret;
2030 }
2031
2032 /*
2033 * Create a session exclusively used for live.
2034 *
2035 * Return 0 on success else a negative LTTng error code.
2036 */
2037 int lttng_create_session_live(const char *name, const char *url,
2038 unsigned int timer_interval)
2039 {
2040 int ret;
2041 enum lttng_error_code ret_code;
2042 struct lttng_session_descriptor *descriptor = NULL;
2043
2044 if (!name) {
2045 ret = -LTTNG_ERR_INVALID;
2046 goto end;
2047 }
2048
2049 if (url) {
2050 descriptor = lttng_session_descriptor_live_network_create(
2051 name, url, NULL, timer_interval);
2052 } else {
2053 descriptor = lttng_session_descriptor_live_create(
2054 name, timer_interval);
2055 }
2056 if (!descriptor) {
2057 ret = -LTTNG_ERR_INVALID;
2058 goto end;
2059 }
2060 ret_code = lttng_create_session_ext(descriptor);
2061 ret = ret_code == LTTNG_OK ? 0 : -ret_code;
2062 end:
2063 lttng_session_descriptor_destroy(descriptor);
2064 return ret;
2065 }
2066
2067 /*
2068 * Stop the session and wait for the data before destroying it
2069 *
2070 * Return 0 on success else a negative LTTng error code.
2071 */
2072 int lttng_destroy_session(const char *session_name)
2073 {
2074 int ret;
2075 enum lttng_error_code ret_code;
2076 enum lttng_destruction_handle_status status;
2077 struct lttng_destruction_handle *handle = NULL;
2078
2079 /*
2080 * Stop the tracing and wait for the data to be
2081 * consumed.
2082 */
2083 ret = _lttng_stop_tracing(session_name, 1);
2084 if (ret && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
2085 goto end;
2086 }
2087
2088 ret_code = lttng_destroy_session_ext(session_name, &handle);
2089 if (ret_code != LTTNG_OK) {
2090 ret = (int) -ret_code;
2091 goto end;
2092 }
2093 assert(handle);
2094
2095 /* Block until the completion of the destruction of the session. */
2096 status = lttng_destruction_handle_wait_for_completion(handle, -1);
2097 if (status != LTTNG_DESTRUCTION_HANDLE_STATUS_COMPLETED) {
2098 ret = -LTTNG_ERR_UNK;
2099 goto end;
2100 }
2101
2102 status = lttng_destruction_handle_get_result(handle, &ret_code);
2103 if (status != LTTNG_DESTRUCTION_HANDLE_STATUS_OK) {
2104 ret = -LTTNG_ERR_UNK;
2105 goto end;
2106 }
2107 ret = ret_code == LTTNG_OK ? 0 : -ret_code;
2108 end:
2109 lttng_destruction_handle_destroy(handle);
2110 return ret;
2111 }
2112
2113 /*
2114 * Destroy the session without waiting for the data.
2115 */
2116 int lttng_destroy_session_no_wait(const char *session_name)
2117 {
2118 enum lttng_error_code ret_code;
2119
2120 ret_code = lttng_destroy_session_ext(session_name, NULL);
2121 return ret_code == LTTNG_OK ? 0 : -ret_code;
2122 }
2123
2124 /*
2125 * Ask the session daemon for all available sessions.
2126 * Sets the contents of the sessions array.
2127 * Returns the number of lttng_session entries in sessions;
2128 * on error, returns a negative value.
2129 */
2130 int lttng_list_sessions(struct lttng_session **out_sessions)
2131 {
2132 int ret;
2133 struct lttcomm_session_msg lsm;
2134 const size_t session_size = sizeof(struct lttng_session) +
2135 sizeof(struct lttng_session_extended);
2136 size_t session_count, i;
2137 struct lttng_session_extended *sessions_extended_begin;
2138 struct lttng_session *sessions = NULL;
2139
2140 memset(&lsm, 0, sizeof(lsm));
2141 lsm.cmd_type = LTTNG_LIST_SESSIONS;
2142 /*
2143 * Initialize out_sessions to NULL so it is initialized when
2144 * lttng_list_sessions returns 0, thus allowing *out_sessions to
2145 * be subsequently freed.
2146 */
2147 *out_sessions = NULL;
2148 ret = lttng_ctl_ask_sessiond(&lsm, (void**) &sessions);
2149 if (ret <= 0) {
2150 goto end;
2151 }
2152 if (!sessions) {
2153 ret = -LTTNG_ERR_FATAL;
2154 goto end;
2155 }
2156
2157 if (ret % session_size) {
2158 ret = -LTTNG_ERR_UNK;
2159 free(sessions);
2160 goto end;
2161 }
2162 session_count = (size_t) ret / session_size;
2163 sessions_extended_begin = (struct lttng_session_extended *)
2164 (&sessions[session_count]);
2165
2166 /* Set extended session info pointers. */
2167 for (i = 0; i < session_count; i++) {
2168 struct lttng_session *session = &sessions[i];
2169 struct lttng_session_extended *extended =
2170 &(sessions_extended_begin[i]);
2171
2172 session->extended.ptr = extended;
2173 }
2174
2175 ret = (int) session_count;
2176 *out_sessions = sessions;
2177 end:
2178 return ret;
2179 }
2180
2181 enum lttng_error_code lttng_session_get_creation_time(
2182 const struct lttng_session *session, uint64_t *creation_time)
2183 {
2184 enum lttng_error_code ret = LTTNG_OK;
2185 struct lttng_session_extended *extended;
2186
2187 if (!session || !creation_time || !session->extended.ptr) {
2188 ret = LTTNG_ERR_INVALID;
2189 goto end;
2190 }
2191
2192 extended = session->extended.ptr;
2193 if (!extended->creation_time.is_set) {
2194 /* Not created on the session daemon yet. */
2195 ret = LTTNG_ERR_SESSION_NOT_EXIST;
2196 goto end;
2197 }
2198 *creation_time = extended->creation_time.value;
2199 end:
2200 return ret;
2201 }
2202
2203 int lttng_set_session_shm_path(const char *session_name,
2204 const char *shm_path)
2205 {
2206 int ret;
2207 struct lttcomm_session_msg lsm;
2208
2209 if (session_name == NULL) {
2210 return -LTTNG_ERR_INVALID;
2211 }
2212
2213 memset(&lsm, 0, sizeof(lsm));
2214 lsm.cmd_type = LTTNG_SET_SESSION_SHM_PATH;
2215
2216 ret = lttng_strncpy(lsm.session.name, session_name,
2217 sizeof(lsm.session.name));
2218 if (ret) {
2219 ret = -LTTNG_ERR_INVALID;
2220 goto end;
2221 }
2222
2223 ret = lttng_strncpy(lsm.u.set_shm_path.shm_path, shm_path ?: "",
2224 sizeof(lsm.u.set_shm_path.shm_path));
2225 if (ret) {
2226 ret = -LTTNG_ERR_INVALID;
2227 goto end;
2228 }
2229
2230 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
2231 end:
2232 return ret;
2233 }
2234
2235 /*
2236 * Ask the session daemon for all available domains of a session.
2237 * Sets the contents of the domains array.
2238 * Returns the number of lttng_domain entries in domains;
2239 * on error, returns a negative value.
2240 */
2241 int lttng_list_domains(const char *session_name,
2242 struct lttng_domain **domains)
2243 {
2244 int ret;
2245 struct lttcomm_session_msg lsm;
2246
2247 if (session_name == NULL) {
2248 ret = -LTTNG_ERR_INVALID;
2249 goto error;
2250 }
2251
2252 memset(&lsm, 0, sizeof(lsm));
2253 lsm.cmd_type = LTTNG_LIST_DOMAINS;
2254
2255 ret = lttng_strncpy(lsm.session.name, session_name,
2256 sizeof(lsm.session.name));
2257 if (ret) {
2258 ret = -LTTNG_ERR_INVALID;
2259 goto error;
2260 }
2261
2262 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
2263 if (ret < 0) {
2264 goto error;
2265 }
2266
2267 return ret / sizeof(struct lttng_domain);
2268 error:
2269 return ret;
2270 }
2271
2272 /*
2273 * Ask the session daemon for all available channels of a session.
2274 * Sets the contents of the channels array.
2275 * Returns the number of lttng_channel entries in channels;
2276 * on error, returns a negative value.
2277 */
2278 int lttng_list_channels(struct lttng_handle *handle,
2279 struct lttng_channel **channels)
2280 {
2281 int ret, total_payload_received;
2282 struct lttcomm_session_msg lsm;
2283 char *reception_buffer = NULL;
2284 size_t cmd_header_len = 0;
2285 struct lttcomm_list_command_header *cmd_header = NULL;
2286 struct lttng_dynamic_buffer tmp_buffer;
2287
2288 lttng_dynamic_buffer_init(&tmp_buffer);
2289
2290 if (handle == NULL) {
2291 ret = -LTTNG_ERR_INVALID;
2292 goto end;
2293 }
2294
2295 memset(&lsm, 0, sizeof(lsm));
2296 lsm.cmd_type = LTTNG_LIST_CHANNELS;
2297 ret = lttng_strncpy(lsm.session.name, handle->session_name,
2298 sizeof(lsm.session.name));
2299 if (ret) {
2300 ret = -LTTNG_ERR_INVALID;
2301 goto end;
2302 }
2303
2304 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
2305
2306 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm, NULL, 0, NULL, 0,
2307 (void **) &reception_buffer, (void **) &cmd_header,
2308 &cmd_header_len);
2309 if (ret < 0) {
2310 goto end;
2311 }
2312
2313 total_payload_received = ret;
2314
2315 if (cmd_header_len != sizeof(*cmd_header)) {
2316 ret = -LTTNG_ERR_FATAL;
2317 goto end;
2318 }
2319
2320 if (!cmd_header) {
2321 ret = LTTNG_ERR_UNK;
2322 goto end;
2323 }
2324
2325 if (cmd_header->count > INT_MAX) {
2326 ret = -LTTNG_ERR_OVERFLOW;
2327 goto end;
2328 }
2329
2330 {
2331 enum lttng_error_code ret_code;
2332 const struct lttng_buffer_view events_view =
2333 lttng_buffer_view_init(reception_buffer, 0,
2334 total_payload_received);
2335
2336 ret_code = lttng_channels_create_and_flatten_from_buffer(
2337 &events_view, cmd_header->count, channels);
2338 if (ret_code != LTTNG_OK) {
2339 ret = -ret_code;
2340 goto end;
2341 }
2342 }
2343
2344 ret = (int) cmd_header->count;
2345 end:
2346 free(cmd_header);
2347 free(reception_buffer);
2348 return ret;
2349 }
2350
2351 /*
2352 * Ask the session daemon for all available events of a session channel.
2353 * Sets the contents of the events array.
2354 * Returns the number of lttng_event entries in events;
2355 * on error, returns a negative value.
2356 */
2357 int lttng_list_events(struct lttng_handle *handle,
2358 const char *channel_name, struct lttng_event **events)
2359 {
2360 int ret;
2361 struct lttcomm_session_msg lsm = {};
2362 struct lttng_payload reply;
2363 struct lttng_payload_view lsm_view =
2364 lttng_payload_view_init_from_buffer(
2365 (const char *) &lsm, 0, sizeof(lsm));
2366 unsigned int nb_events = 0;
2367
2368 /* Safety check. An handle and channel name are mandatory. */
2369 if (handle == NULL || channel_name == NULL) {
2370 ret = -LTTNG_ERR_INVALID;
2371 goto end;
2372 }
2373
2374 lttng_payload_init(&reply);
2375
2376 /* Initialize command parameters. */
2377 lsm.cmd_type = LTTNG_LIST_EVENTS;
2378 ret = lttng_strncpy(lsm.session.name, handle->session_name,
2379 sizeof(lsm.session.name));
2380 if (ret) {
2381 ret = -LTTNG_ERR_INVALID;
2382 goto end;
2383 }
2384
2385 ret = lttng_strncpy(lsm.u.list.channel_name, channel_name,
2386 sizeof(lsm.u.list.channel_name));
2387 if (ret) {
2388 ret = -LTTNG_ERR_INVALID;
2389 goto end;
2390 }
2391
2392 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
2393
2394 /* Execute command against the session daemon. */
2395 ret = lttng_ctl_ask_sessiond_payload(&lsm_view, &reply);
2396 if (ret < 0) {
2397 goto end;
2398 }
2399
2400 {
2401 const struct lttcomm_list_command_header *cmd_reply_header =
2402 NULL;
2403 const struct lttng_payload_view cmd_reply_header_view =
2404 lttng_payload_view_from_payload(&reply, 0,
2405 sizeof(*cmd_reply_header));
2406
2407 if (!lttng_payload_view_is_valid(&cmd_reply_header_view)) {
2408 ret = -LTTNG_ERR_INVALID_PROTOCOL;
2409 goto end;
2410 }
2411
2412 cmd_reply_header = (const struct lttcomm_list_command_header *)
2413 cmd_reply_header_view.buffer
2414 .data;
2415 if (cmd_reply_header->count > INT_MAX) {
2416 ret = -LTTNG_ERR_OVERFLOW;
2417 goto end;
2418 }
2419
2420 nb_events = (unsigned int) cmd_reply_header->count;
2421 }
2422
2423 {
2424 enum lttng_error_code ret_code;
2425 struct lttng_payload_view cmd_reply_payload = lttng_payload_view_from_payload(
2426 &reply,
2427 sizeof(struct lttcomm_list_command_header), -1);
2428
2429 ret_code = lttng_events_create_and_flatten_from_payload(
2430 &cmd_reply_payload, nb_events, events);
2431 if (ret_code != LTTNG_OK) {
2432 ret = -((int) ret_code);
2433 goto end;
2434 }
2435 }
2436
2437 ret = (int) nb_events;
2438 end:
2439 lttng_payload_reset(&reply);
2440 return ret;
2441 }
2442
2443 /*
2444 * Sets the tracing_group variable with name.
2445 * This function allocates memory pointed to by tracing_group.
2446 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
2447 */
2448 int lttng_set_tracing_group(const char *name)
2449 {
2450 char *new_group;
2451 if (name == NULL) {
2452 return -LTTNG_ERR_INVALID;
2453 }
2454
2455 if (asprintf(&new_group, "%s", name) < 0) {
2456 return -LTTNG_ERR_FATAL;
2457 }
2458
2459 free(tracing_group);
2460 tracing_group = new_group;
2461 new_group = NULL;
2462
2463 return 0;
2464 }
2465
2466 int lttng_calibrate(struct lttng_handle *handle,
2467 struct lttng_calibrate *calibrate)
2468 {
2469 /*
2470 * This command was removed in LTTng 2.9.
2471 */
2472 return -LTTNG_ERR_UND;
2473 }
2474
2475 /*
2476 * Set default channel attributes.
2477 * If either or both of the arguments are null, attr content is zeroe'd.
2478 */
2479 void lttng_channel_set_default_attr(struct lttng_domain *domain,
2480 struct lttng_channel_attr *attr)
2481 {
2482 struct lttng_channel_extended *extended;
2483
2484 /* Safety check */
2485 if (attr == NULL || domain == NULL) {
2486 return;
2487 }
2488
2489 /* Save the pointer for later use */
2490 extended = (struct lttng_channel_extended *) attr->extended.ptr;
2491 memset(attr, 0, sizeof(struct lttng_channel_attr));
2492
2493 /* Same for all domains. */
2494 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
2495 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
2496 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
2497
2498 switch (domain->type) {
2499 case LTTNG_DOMAIN_KERNEL:
2500 attr->switch_timer_interval =
2501 DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
2502 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
2503 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
2504 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
2505 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
2506 break;
2507 case LTTNG_DOMAIN_UST:
2508 switch (domain->buf_type) {
2509 case LTTNG_BUFFER_PER_UID:
2510 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
2511 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
2512 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
2513 attr->switch_timer_interval =
2514 DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
2515 attr->read_timer_interval =
2516 DEFAULT_UST_UID_CHANNEL_READ_TIMER;
2517 break;
2518 case LTTNG_BUFFER_PER_PID:
2519 default:
2520 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
2521 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
2522 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
2523 attr->switch_timer_interval =
2524 DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
2525 attr->read_timer_interval =
2526 DEFAULT_UST_PID_CHANNEL_READ_TIMER;
2527 break;
2528 }
2529 default:
2530 /* Default behavior: leave set to 0. */
2531 break;
2532 }
2533
2534 if (extended) {
2535 lttng_channel_set_default_extended_attr(domain, extended);
2536 }
2537
2538 /* Reassign the extended pointer. */
2539 attr->extended.ptr = extended;
2540 }
2541
2542 int lttng_channel_get_discarded_event_count(struct lttng_channel *channel,
2543 uint64_t *discarded_events)
2544 {
2545 int ret = 0;
2546 struct lttng_channel_extended *chan_ext;
2547
2548 if (!channel || !discarded_events) {
2549 ret = -LTTNG_ERR_INVALID;
2550 goto end;
2551 }
2552
2553 chan_ext = channel->attr.extended.ptr;
2554 if (!chan_ext) {
2555 /*
2556 * This can happen since the lttng_channel structure is
2557 * used for other tasks where this pointer is never set.
2558 */
2559 *discarded_events = 0;
2560 goto end;
2561 }
2562
2563 *discarded_events = chan_ext->discarded_events;
2564 end:
2565 return ret;
2566 }
2567
2568 int lttng_channel_get_lost_packet_count(struct lttng_channel *channel,
2569 uint64_t *lost_packets)
2570 {
2571 int ret = 0;
2572 struct lttng_channel_extended *chan_ext;
2573
2574 if (!channel || !lost_packets) {
2575 ret = -LTTNG_ERR_INVALID;
2576 goto end;
2577 }
2578
2579 chan_ext = channel->attr.extended.ptr;
2580 if (!chan_ext) {
2581 /*
2582 * This can happen since the lttng_channel structure is
2583 * used for other tasks where this pointer is never set.
2584 */
2585 *lost_packets = 0;
2586 goto end;
2587 }
2588
2589 *lost_packets = chan_ext->lost_packets;
2590 end:
2591 return ret;
2592 }
2593
2594 int lttng_channel_get_monitor_timer_interval(struct lttng_channel *chan,
2595 uint64_t *monitor_timer_interval)
2596 {
2597 int ret = 0;
2598
2599 if (!chan || !monitor_timer_interval) {
2600 ret = -LTTNG_ERR_INVALID;
2601 goto end;
2602 }
2603
2604 if (!chan->attr.extended.ptr) {
2605 ret = -LTTNG_ERR_INVALID;
2606 goto end;
2607 }
2608
2609 *monitor_timer_interval = ((struct lttng_channel_extended *)
2610 chan->attr.extended.ptr)->monitor_timer_interval;
2611 end:
2612 return ret;
2613 }
2614
2615 int lttng_channel_set_monitor_timer_interval(struct lttng_channel *chan,
2616 uint64_t monitor_timer_interval)
2617 {
2618 int ret = 0;
2619
2620 if (!chan || !chan->attr.extended.ptr) {
2621 ret = -LTTNG_ERR_INVALID;
2622 goto end;
2623 }
2624
2625 ((struct lttng_channel_extended *)
2626 chan->attr.extended.ptr)->monitor_timer_interval =
2627 monitor_timer_interval;
2628 end:
2629 return ret;
2630 }
2631
2632 int lttng_channel_get_blocking_timeout(struct lttng_channel *chan,
2633 int64_t *blocking_timeout)
2634 {
2635 int ret = 0;
2636
2637 if (!chan || !blocking_timeout) {
2638 ret = -LTTNG_ERR_INVALID;
2639 goto end;
2640 }
2641
2642 if (!chan->attr.extended.ptr) {
2643 ret = -LTTNG_ERR_INVALID;
2644 goto end;
2645 }
2646
2647 *blocking_timeout = ((struct lttng_channel_extended *)
2648 chan->attr.extended.ptr)->blocking_timeout;
2649 end:
2650 return ret;
2651 }
2652
2653 int lttng_channel_set_blocking_timeout(struct lttng_channel *chan,
2654 int64_t blocking_timeout)
2655 {
2656 int ret = 0;
2657 int64_t msec_timeout;
2658
2659 if (!chan || !chan->attr.extended.ptr) {
2660 ret = -LTTNG_ERR_INVALID;
2661 goto end;
2662 }
2663
2664 if (blocking_timeout < 0 && blocking_timeout != -1) {
2665 ret = -LTTNG_ERR_INVALID;
2666 goto end;
2667 }
2668
2669 /*
2670 * LTTng-ust's use of poll() to implement this timeout mechanism forces
2671 * us to accept a narrower range of values (msecs expressed as a signed
2672 * 32-bit integer).
2673 */
2674 msec_timeout = blocking_timeout / 1000;
2675 if (msec_timeout != (int32_t) msec_timeout) {
2676 ret = -LTTNG_ERR_INVALID;
2677 goto end;
2678 }
2679
2680 ((struct lttng_channel_extended *)
2681 chan->attr.extended.ptr)->blocking_timeout =
2682 blocking_timeout;
2683 end:
2684 return ret;
2685 }
2686
2687 /*
2688 * Check if session daemon is alive.
2689 *
2690 * Return 1 if alive or 0 if not.
2691 * On error returns a negative value.
2692 */
2693 int lttng_session_daemon_alive(void)
2694 {
2695 int ret;
2696
2697 ret = set_session_daemon_path();
2698 if (ret < 0) {
2699 /* Error. */
2700 return ret;
2701 }
2702
2703 if (*sessiond_sock_path == '\0') {
2704 /*
2705 * No socket path set. Weird error which means the constructor
2706 * was not called.
2707 */
2708 assert(0);
2709 }
2710
2711 ret = try_connect_sessiond(sessiond_sock_path);
2712 if (ret < 0) {
2713 /* Not alive. */
2714 return 0;
2715 }
2716
2717 /* Is alive. */
2718 return 1;
2719 }
2720
2721 /*
2722 * Set URL for a consumer for a session and domain.
2723 *
2724 * Return 0 on success, else a negative value.
2725 */
2726 int lttng_set_consumer_url(struct lttng_handle *handle,
2727 const char *control_url, const char *data_url)
2728 {
2729 int ret;
2730 ssize_t size;
2731 struct lttcomm_session_msg lsm;
2732 struct lttng_uri *uris = NULL;
2733
2734 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
2735 ret = -LTTNG_ERR_INVALID;
2736 goto error;
2737 }
2738
2739 memset(&lsm, 0, sizeof(lsm));
2740
2741 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
2742
2743 ret = lttng_strncpy(lsm.session.name, handle->session_name,
2744 sizeof(lsm.session.name));
2745 if (ret) {
2746 ret = -LTTNG_ERR_INVALID;
2747 goto error;
2748 }
2749
2750 COPY_DOMAIN_PACKED(lsm.domain, handle->domain);
2751
2752 size = uri_parse_str_urls(control_url, data_url, &uris);
2753 if (size < 0) {
2754 ret = -LTTNG_ERR_INVALID;
2755 goto error;
2756 }
2757
2758 lsm.u.uri.size = size;
2759
2760 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
2761 sizeof(struct lttng_uri) * size, NULL);
2762
2763 free(uris);
2764 error:
2765 return ret;
2766 }
2767
2768 /*
2769 * [OBSOLETE]
2770 */
2771 int lttng_enable_consumer(struct lttng_handle *handle);
2772 int lttng_enable_consumer(struct lttng_handle *handle)
2773 {
2774 return -ENOSYS;
2775 }
2776
2777 /*
2778 * [OBSOLETE]
2779 */
2780 int lttng_disable_consumer(struct lttng_handle *handle);
2781 int lttng_disable_consumer(struct lttng_handle *handle)
2782 {
2783 return -ENOSYS;
2784 }
2785
2786 /*
2787 * [OBSOLETE]
2788 */
2789 int _lttng_create_session_ext(const char *name, const char *url,
2790 const char *datetime);
2791 int _lttng_create_session_ext(const char *name, const char *url,
2792 const char *datetime)
2793 {
2794 return -ENOSYS;
2795 }
2796
2797 /*
2798 * For a given session name, this call checks if the data is ready to be read
2799 * or is still being extracted by the consumer(s) hence not ready to be used by
2800 * any readers.
2801 */
2802 int lttng_data_pending(const char *session_name)
2803 {
2804 int ret;
2805 struct lttcomm_session_msg lsm;
2806 uint8_t *pending = NULL;
2807
2808 if (session_name == NULL) {
2809 return -LTTNG_ERR_INVALID;
2810 }
2811
2812 memset(&lsm, 0, sizeof(lsm));
2813 lsm.cmd_type = LTTNG_DATA_PENDING;
2814
2815 ret = lttng_strncpy(lsm.session.name, session_name,
2816 sizeof(lsm.session.name));
2817 if (ret) {
2818 ret = -LTTNG_ERR_INVALID;
2819 goto end;
2820 }
2821
2822 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &pending);
2823 if (ret < 0) {
2824 goto end;
2825 } else if (ret != 1) {
2826 /* Unexpected payload size */
2827 ret = -LTTNG_ERR_INVALID;
2828 goto end;
2829 } else if (!pending) {
2830 /* Internal error. */
2831 ret = -LTTNG_ERR_UNK;
2832 goto end;
2833 }
2834
2835 ret = (int) *pending;
2836 end:
2837 free(pending);
2838 return ret;
2839 }
2840
2841 /*
2842 * Regenerate the metadata for a session.
2843 * Return 0 on success, a negative error code on error.
2844 */
2845 int lttng_regenerate_metadata(const char *session_name)
2846 {
2847 int ret;
2848 struct lttcomm_session_msg lsm;
2849
2850 if (!session_name) {
2851 ret = -LTTNG_ERR_INVALID;
2852 goto end;
2853 }
2854
2855 memset(&lsm, 0, sizeof(lsm));
2856 lsm.cmd_type = LTTNG_REGENERATE_METADATA;
2857
2858 ret = lttng_strncpy(lsm.session.name, session_name,
2859 sizeof(lsm.session.name));
2860 if (ret) {
2861 ret = -LTTNG_ERR_INVALID;
2862 goto end;
2863 }
2864
2865 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
2866 if (ret < 0) {
2867 goto end;
2868 }
2869
2870 ret = 0;
2871 end:
2872 return ret;
2873 }
2874
2875 /*
2876 * Deprecated, replaced by lttng_regenerate_metadata.
2877 */
2878 int lttng_metadata_regenerate(const char *session_name)
2879 {
2880 return lttng_regenerate_metadata(session_name);
2881 }
2882
2883 /*
2884 * Regenerate the statedump of a session.
2885 * Return 0 on success, a negative error code on error.
2886 */
2887 int lttng_regenerate_statedump(const char *session_name)
2888 {
2889 int ret;
2890 struct lttcomm_session_msg lsm;
2891
2892 if (!session_name) {
2893 ret = -LTTNG_ERR_INVALID;
2894 goto end;
2895 }
2896
2897 memset(&lsm, 0, sizeof(lsm));
2898 lsm.cmd_type = LTTNG_REGENERATE_STATEDUMP;
2899
2900 ret = lttng_strncpy(lsm.session.name, session_name,
2901 sizeof(lsm.session.name));
2902 if (ret) {
2903 ret = -LTTNG_ERR_INVALID;
2904 goto end;
2905 }
2906
2907 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
2908 if (ret < 0) {
2909 goto end;
2910 }
2911
2912 ret = 0;
2913 end:
2914 return ret;
2915 }
2916
2917 static
2918 int _lttng_register_trigger(struct lttng_trigger *trigger, const char *name,
2919 bool generate_name)
2920 {
2921 int ret;
2922 struct lttcomm_session_msg lsm = {
2923 .cmd_type = LTTNG_REGISTER_TRIGGER,
2924 .u.trigger.is_trigger_anonymous = !name && !generate_name,
2925 };
2926 struct lttcomm_session_msg *message_lsm;
2927 struct lttng_payload message;
2928 struct lttng_payload reply;
2929 struct lttng_trigger *reply_trigger = NULL;
2930 enum lttng_domain_type domain_type;
2931 const struct lttng_credentials user_creds = {
2932 .uid = LTTNG_OPTIONAL_INIT_VALUE(geteuid()),
2933 .gid = LTTNG_OPTIONAL_INIT_UNSET,
2934 };
2935 const char *unused_trigger_name = NULL;
2936 enum lttng_trigger_status trigger_status;
2937
2938 lttng_payload_init(&message);
2939 lttng_payload_init(&reply);
2940
2941 if (!trigger) {
2942 ret = -LTTNG_ERR_INVALID;
2943 goto end;
2944 }
2945
2946 trigger_status = lttng_trigger_get_name(trigger, &unused_trigger_name);
2947 if (trigger_status != LTTNG_TRIGGER_STATUS_UNSET) {
2948 /* Re-using already registered trigger. */
2949 ret = -LTTNG_ERR_INVALID;
2950 goto end;
2951 }
2952
2953 if (name) {
2954 trigger_status = lttng_trigger_set_name(trigger, name);
2955 if (trigger_status != LTTNG_TRIGGER_STATUS_OK) {
2956 ret = -LTTNG_ERR_NOMEM;
2957 goto end;
2958 }
2959 }
2960
2961 if (!trigger->creds.uid.is_set) {
2962 /* Use the client's credentials as the trigger credentials. */
2963 lttng_trigger_set_credentials(trigger, &user_creds);
2964 } else {
2965 /*
2966 * Validate that either the current trigger credentials and the
2967 * client credentials are identical or that the current user is
2968 * root. The root user can register, unregister triggers for
2969 * himself and other users.
2970 *
2971 * This check is also present on the sessiond side, using the
2972 * credentials passed on the socket. These check are all
2973 * "safety" checks.
2974 */
2975 const struct lttng_credentials *trigger_creds =
2976 lttng_trigger_get_credentials(trigger);
2977
2978 if (!lttng_credentials_is_equal_uid(trigger_creds, &user_creds)) {
2979 if (lttng_credentials_get_uid(&user_creds) != 0) {
2980 ret = -LTTNG_ERR_EPERM;
2981 goto end_unset_name;
2982 }
2983 }
2984 }
2985
2986 if (!lttng_trigger_validate(trigger)) {
2987 ret = -LTTNG_ERR_INVALID_TRIGGER;
2988 goto end_unset_name;
2989 }
2990
2991 domain_type = lttng_trigger_get_underlying_domain_type_restriction(
2992 trigger);
2993
2994 lsm.domain.type = domain_type;
2995
2996 ret = lttng_dynamic_buffer_append(&message.buffer, &lsm, sizeof(lsm));
2997 if (ret) {
2998 ret = -LTTNG_ERR_NOMEM;
2999 goto end_unset_name;
3000 }
3001
3002 ret = lttng_trigger_serialize(trigger, &message);
3003 if (ret < 0) {
3004 ret = -LTTNG_ERR_UNK;
3005 goto end_unset_name;
3006 }
3007
3008 /*
3009 * This is needed to populate the trigger object size for the command
3010 * header.
3011 */
3012 message_lsm = (struct lttcomm_session_msg *) message.buffer.data;
3013
3014 message_lsm->u.trigger.length = (uint32_t) message.buffer.size - sizeof(lsm);
3015
3016 {
3017 struct lttng_payload_view message_view =
3018 lttng_payload_view_from_payload(
3019 &message, 0, -1);
3020
3021 message_lsm->fd_count = lttng_payload_view_get_fd_handle_count(
3022 &message_view);
3023 ret = lttng_ctl_ask_sessiond_payload(&message_view, &reply);
3024 if (ret < 0) {
3025 goto end_unset_name;
3026 }
3027 }
3028
3029 {
3030 struct lttng_payload_view reply_view =
3031 lttng_payload_view_from_payload(
3032 &reply, 0, reply.buffer.size);
3033
3034 ret = lttng_trigger_create_from_payload(
3035 &reply_view, &reply_trigger);
3036 if (ret < 0) {
3037 ret = -LTTNG_ERR_INVALID_PROTOCOL;
3038 goto end_unset_name;
3039 }
3040 }
3041
3042 if (name || generate_name) {
3043 ret = lttng_trigger_assign_name(trigger, reply_trigger);
3044 if (ret < 0) {
3045 ret = -LTTNG_ERR_NOMEM;
3046 goto end;
3047 }
3048 }
3049
3050 ret = 0;
3051 goto end;
3052
3053 end_unset_name:
3054 trigger_status = lttng_trigger_set_name(trigger, NULL);
3055 if (trigger_status != LTTNG_TRIGGER_STATUS_OK) {
3056 ret = -LTTNG_ERR_UNK;
3057 }
3058 end:
3059 lttng_payload_reset(&message);
3060 lttng_payload_reset(&reply);
3061 lttng_trigger_destroy(reply_trigger);
3062 return ret;
3063 }
3064
3065 int lttng_register_trigger(struct lttng_trigger *trigger)
3066 {
3067 /* Register an anonymous trigger. */
3068 return _lttng_register_trigger(trigger, NULL, false);
3069 }
3070
3071 enum lttng_error_code lttng_register_trigger_with_name(
3072 struct lttng_trigger *trigger, const char *name)
3073 {
3074 const int ret = _lttng_register_trigger(trigger, name, false);
3075
3076 return ret == 0 ? LTTNG_OK : (enum lttng_error_code) -ret;
3077 }
3078
3079 enum lttng_error_code lttng_register_trigger_with_automatic_name(
3080 struct lttng_trigger *trigger)
3081 {
3082 const int ret = _lttng_register_trigger(trigger, false, true);
3083
3084 return ret == 0 ? LTTNG_OK : (enum lttng_error_code) -ret;
3085 }
3086
3087 enum lttng_error_code lttng_error_query_execute(
3088 const struct lttng_error_query *query,
3089 const struct lttng_endpoint *endpoint,
3090 struct lttng_error_query_results **results)
3091 {
3092 int ret;
3093 enum lttng_error_code ret_code;
3094 struct lttcomm_session_msg lsm = {
3095 .cmd_type = LTTNG_EXECUTE_ERROR_QUERY,
3096 };
3097 struct lttng_payload message;
3098 struct lttng_payload reply;
3099 struct lttcomm_session_msg *message_lsm;
3100
3101 lttng_payload_init(&message);
3102 lttng_payload_init(&reply);
3103
3104 if (!query || !results) {
3105 ret_code = LTTNG_ERR_INVALID;
3106 goto end;
3107 }
3108
3109 if (endpoint != lttng_session_daemon_command_endpoint) {
3110 ret_code = LTTNG_ERR_INVALID_ERROR_QUERY_TARGET;
3111 goto end;
3112 }
3113
3114 ret = lttng_dynamic_buffer_append(&message.buffer, &lsm, sizeof(lsm));
3115 if (ret) {
3116 ret_code = LTTNG_ERR_NOMEM;
3117 goto end;
3118 }
3119
3120 ret = lttng_error_query_serialize(query, &message);
3121 if (ret) {
3122 ret_code = LTTNG_ERR_UNK;
3123 goto end;
3124 }
3125
3126 message_lsm = (struct lttcomm_session_msg *) message.buffer.data;
3127 message_lsm->u.error_query.length =
3128 (uint32_t) message.buffer.size - sizeof(lsm);
3129
3130 {
3131 struct lttng_payload_view message_view =
3132 lttng_payload_view_from_payload(
3133 &message, 0, -1);
3134
3135 message_lsm->fd_count = lttng_payload_view_get_fd_handle_count(
3136 &message_view);
3137 ret = lttng_ctl_ask_sessiond_payload(&message_view, &reply);
3138 if (ret < 0) {
3139 ret_code = -ret;
3140 goto end;
3141 }
3142 }
3143
3144 {
3145 ssize_t reply_create_ret;
3146 struct lttng_payload_view reply_view =
3147 lttng_payload_view_from_payload(
3148 &reply, 0, reply.buffer.size);
3149
3150 reply_create_ret = lttng_error_query_results_create_from_payload(
3151 &reply_view, results);
3152 if (reply_create_ret < 0) {
3153 ret_code = LTTNG_ERR_INVALID_PROTOCOL;
3154 goto end;
3155 }
3156 }
3157
3158 ret_code = LTTNG_OK;
3159 end:
3160 lttng_payload_reset(&message);
3161 lttng_payload_reset(&reply);
3162 return ret_code;
3163 }
3164
3165 int lttng_unregister_trigger(const struct lttng_trigger *trigger)
3166 {
3167 int ret;
3168 struct lttcomm_session_msg lsm;
3169 struct lttcomm_session_msg *message_lsm;
3170 struct lttng_payload message;
3171 struct lttng_payload reply;
3172 struct lttng_trigger *copy = NULL;
3173 const struct lttng_credentials user_creds = {
3174 .uid = LTTNG_OPTIONAL_INIT_VALUE(geteuid()),
3175 .gid = LTTNG_OPTIONAL_INIT_UNSET,
3176 };
3177
3178 lttng_payload_init(&message);
3179 lttng_payload_init(&reply);
3180
3181 if (!trigger) {
3182 ret = -LTTNG_ERR_INVALID;
3183 goto end;
3184 }
3185
3186 copy = lttng_trigger_copy(trigger);
3187 if (!copy) {
3188 ret = -LTTNG_ERR_UNK;
3189 goto end;
3190 }
3191
3192 if (!copy->creds.uid.is_set) {
3193 /* Use the client credentials as the trigger credentials */
3194 lttng_trigger_set_credentials(copy, &user_creds);
3195 } else {
3196 /*
3197 * Validate that either the current trigger credentials and the
3198 * client credentials are identical or that the current user is
3199 * root. The root user can register, unregister triggers for
3200 * himself and other users.
3201 *
3202 * This check is also present on the sessiond side, using the
3203 * credentials passed on the socket. These check are all
3204 * "safety" checks.
3205 */
3206 const struct lttng_credentials *trigger_creds =
3207 lttng_trigger_get_credentials(copy);
3208 if (!lttng_credentials_is_equal_uid(trigger_creds, &user_creds)) {
3209 if (lttng_credentials_get_uid(&user_creds) != 0) {
3210 ret = -LTTNG_ERR_EPERM;
3211 goto end;
3212 }
3213 }
3214 }
3215
3216 if (!lttng_trigger_validate(copy)) {
3217 ret = -LTTNG_ERR_INVALID_TRIGGER;
3218 goto end;
3219 }
3220
3221 memset(&lsm, 0, sizeof(lsm));
3222 lsm.cmd_type = LTTNG_UNREGISTER_TRIGGER;
3223
3224 ret = lttng_dynamic_buffer_append(&message.buffer, &lsm, sizeof(lsm));
3225 if (ret) {
3226 ret = -LTTNG_ERR_NOMEM;
3227 goto end;
3228 }
3229
3230 ret = lttng_trigger_serialize(copy, &message);
3231 if (ret < 0) {
3232 ret = -LTTNG_ERR_UNK;
3233 goto end;
3234 }
3235
3236 /*
3237 * This is needed to populate the trigger object size for the command
3238 * header and number of fds sent.
3239 */
3240 message_lsm = (struct lttcomm_session_msg *) message.buffer.data;
3241
3242 message_lsm->u.trigger.length = (uint32_t) message.buffer.size - sizeof(lsm);
3243
3244 {
3245 struct lttng_payload_view message_view =
3246 lttng_payload_view_from_payload(
3247 &message, 0, -1);
3248
3249 /*
3250 * Update the message header with the number of fd that will be
3251 * sent.
3252 */
3253 message_lsm->fd_count = lttng_payload_view_get_fd_handle_count(
3254 &message_view);
3255
3256 ret = lttng_ctl_ask_sessiond_payload(&message_view, &reply);
3257 if (ret < 0) {
3258 goto end;
3259 }
3260 }
3261
3262 ret = 0;
3263 end:
3264 lttng_trigger_destroy(copy);
3265 lttng_payload_reset(&message);
3266 lttng_payload_reset(&reply);
3267 return ret;
3268 }
3269
3270 /*
3271 * Ask the session daemon for all registered triggers for the current user.
3272 *
3273 * Allocates and return an lttng_triggers set.
3274 * On error, returns a suitable lttng_error_code.
3275 */
3276 enum lttng_error_code lttng_list_triggers(struct lttng_triggers **triggers)
3277 {
3278 int ret;
3279 enum lttng_error_code ret_code = LTTNG_OK;
3280 struct lttcomm_session_msg lsm = { .cmd_type = LTTNG_LIST_TRIGGERS };
3281 struct lttng_triggers *local_triggers = NULL;
3282 struct lttng_payload reply;
3283 struct lttng_payload_view lsm_view =
3284 lttng_payload_view_init_from_buffer(
3285 (const char *) &lsm, 0, sizeof(lsm));
3286
3287 lttng_payload_init(&reply);
3288
3289 ret = lttng_ctl_ask_sessiond_payload(&lsm_view, &reply);
3290 if (ret < 0) {
3291 ret_code = (enum lttng_error_code) -ret;
3292 goto end;
3293 }
3294
3295 {
3296 struct lttng_payload_view reply_view =
3297 lttng_payload_view_from_payload(
3298 &reply, 0, reply.buffer.size);
3299
3300 ret = lttng_triggers_create_from_payload(
3301 &reply_view, &local_triggers);
3302 if (ret < 0) {
3303 ret_code = LTTNG_ERR_FATAL;
3304 goto end;
3305 }
3306 }
3307
3308 *triggers = local_triggers;
3309 local_triggers = NULL;
3310 end:
3311 lttng_payload_reset(&reply);
3312 lttng_triggers_destroy(local_triggers);
3313 return ret_code;
3314 }
3315
3316 /*
3317 * lib constructor.
3318 */
3319 static void __attribute__((constructor)) init(void)
3320 {
3321 /* Set default session group */
3322 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
3323 }
3324
3325 /*
3326 * lib destructor.
3327 */
3328 static void __attribute__((destructor)) lttng_ctl_exit(void)
3329 {
3330 free(tracing_group);
3331 }
This page took 0.198344 seconds and 4 git commands to generate.