Lttng-ctl: Expose sessiond cmd_clear_session command
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
CommitLineData
826d496d 1/*
eb5c4f4e 2 * lttng-ctl.c
82a3637f
DG
3 *
4 * Linux Trace Toolkit Control Library
5 *
826d496d 6 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
2001793c 7 * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
fac6795d 8 *
d14d33bf
AM
9 * This library is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License, version 2.1 only,
11 * as published by the Free Software Foundation.
82a3637f
DG
12 *
13 * This library is distributed in the hope that it will be useful,
fac6795d 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
82a3637f
DG
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
d14d33bf
AM
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this library; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
fac6795d
DG
21 */
22
6c1c0768 23#define _LGPL_SOURCE
44a5e5eb 24#include <assert.h>
fac6795d 25#include <grp.h>
1e307fab 26#include <errno.h>
fac6795d
DG
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <unistd.h>
31
990570ed 32#include <common/common.h>
15e37663 33#include <common/compat/string.h>
990570ed 34#include <common/defaults.h>
db758600 35#include <common/sessiond-comm/sessiond-comm.h>
a4b92340 36#include <common/uri.h>
feb0f3e5 37#include <common/utils.h>
de453daa 38#include <common/dynamic-buffer.h>
1e307fab 39#include <lttng/lttng.h>
0c89d795 40#include <lttng/health-internal.h>
a58c490f
JG
41#include <lttng/trigger/trigger-internal.h>
42#include <lttng/endpoint.h>
43#include <lttng/channel-internal.h>
de453daa 44#include <lttng/event-internal.h>
15e37663 45#include <lttng/userspace-probe-internal.h>
fac6795d 46
d00c599e
DG
47#include "filter/filter-ast.h"
48#include "filter/filter-parser.h"
49#include "filter/filter-bytecode.h"
50#include "filter/memstream.h"
cac3069d 51#include "lttng-ctl-helper.h"
53a80697
MD
52
53#ifdef DEBUG
d00c599e 54static const int print_xml = 1;
53a80697
MD
55#define dbg_printf(fmt, args...) \
56 printf("[debug liblttng-ctl] " fmt, ## args)
57#else
d00c599e 58static const int print_xml = 0;
53a80697
MD
59#define dbg_printf(fmt, args...) \
60do { \
61 /* do nothing but check printf format */ \
62 if (0) \
63 printf("[debug liblttnctl] " fmt, ## args); \
64} while (0)
65#endif
66
67
fac6795d
DG
68/* Socket to session daemon for communication */
69static int sessiond_socket;
70static char sessiond_sock_path[PATH_MAX];
71
fac6795d
DG
72/* Variables */
73static char *tracing_group;
74static int connected;
75
97e19046
DG
76/* Global */
77
78/*
79 * Those two variables are used by error.h to silent or control the verbosity of
80 * error message. They are global to the library so application linking with it
81 * are able to compile correctly and also control verbosity of the library.
97e19046
DG
82 */
83int lttng_opt_quiet;
84int lttng_opt_verbose;
c7e35b03 85int lttng_opt_mi;
97e19046 86
99497cd0
MD
87/*
88 * Copy string from src to dst and enforce null terminated byte.
89 */
cac3069d
DG
90LTTNG_HIDDEN
91void lttng_ctl_copy_string(char *dst, const char *src, size_t len)
99497cd0 92{
e7d6716d 93 if (src && dst) {
99497cd0
MD
94 strncpy(dst, src, len);
95 /* Enforce the NULL terminated byte */
96 dst[len - 1] = '\0';
cd80958d
DG
97 } else if (dst) {
98 dst[0] = '\0';
99497cd0
MD
99 }
100}
101
fac6795d 102/*
cd80958d 103 * Copy domain to lttcomm_session_msg domain.
fac6795d 104 *
cd80958d
DG
105 * If domain is unknown, default domain will be the kernel.
106 */
cac3069d
DG
107LTTNG_HIDDEN
108void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst,
109 struct lttng_domain *src)
cd80958d
DG
110{
111 if (src && dst) {
112 switch (src->type) {
00e2e675
DG
113 case LTTNG_DOMAIN_KERNEL:
114 case LTTNG_DOMAIN_UST:
b9dfb167 115 case LTTNG_DOMAIN_JUL:
5cdb6027 116 case LTTNG_DOMAIN_LOG4J:
0e115563 117 case LTTNG_DOMAIN_PYTHON:
00e2e675
DG
118 memcpy(dst, src, sizeof(struct lttng_domain));
119 break;
120 default:
121 memset(dst, 0, sizeof(struct lttng_domain));
00e2e675 122 break;
cd80958d
DG
123 }
124 }
125}
126
127/*
128 * Send lttcomm_session_msg to the session daemon.
fac6795d 129 *
1c8d13c8
TD
130 * On success, returns the number of bytes sent (>=0)
131 * On error, returns -1
fac6795d 132 */
cd80958d 133static int send_session_msg(struct lttcomm_session_msg *lsm)
fac6795d
DG
134{
135 int ret;
136
137 if (!connected) {
2f70b271 138 ret = -LTTNG_ERR_NO_SESSIOND;
e065084a 139 goto end;
fac6795d
DG
140 }
141
a4b92340
DG
142 DBG("LSM cmd type : %d", lsm->cmd_type);
143
be040666 144 ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm,
cd80958d 145 sizeof(struct lttcomm_session_msg));
2f70b271
DG
146 if (ret < 0) {
147 ret = -LTTNG_ERR_FATAL;
148 }
e065084a
DG
149
150end:
151 return ret;
152}
153
53a80697
MD
154/*
155 * Send var len data to the session daemon.
156 *
157 * On success, returns the number of bytes sent (>=0)
158 * On error, returns -1
159 */
c2d69327 160static int send_session_varlen(const void *data, size_t len)
53a80697
MD
161{
162 int ret;
163
164 if (!connected) {
2f70b271 165 ret = -LTTNG_ERR_NO_SESSIOND;
53a80697
MD
166 goto end;
167 }
a4b92340 168
53a80697
MD
169 if (!data || !len) {
170 ret = 0;
171 goto end;
172 }
173
174 ret = lttcomm_send_unix_sock(sessiond_socket, data, len);
2f70b271
DG
175 if (ret < 0) {
176 ret = -LTTNG_ERR_FATAL;
177 }
53a80697
MD
178
179end:
180 return ret;
181}
182
a04d53fc
FD
183/*
184 * Send file descriptors to the session daemon.
185 *
186 * On success, returns the number of bytes sent (>=0)
187 * On error, returns -1
188 */
189static int send_session_fds(const int *fds, size_t nb_fd)
190{
191 int ret;
192
193 if (!connected) {
194 ret = -LTTNG_ERR_NO_SESSIOND;
195 goto end;
196 }
197
198 if (!fds || !nb_fd) {
199 ret = 0;
200 goto end;
201 }
202
203 ret = lttcomm_send_fds_unix_sock(sessiond_socket, fds, nb_fd);
204 if (ret < 0) {
205 ret = -LTTNG_ERR_FATAL;
206 }
207
208end:
209 return ret;
210}
211
e065084a 212/*
cd80958d 213 * Receive data from the sessiond socket.
e065084a 214 *
1c8d13c8
TD
215 * On success, returns the number of bytes received (>=0)
216 * On error, returns -1 (recvmsg() error) or -ENOTCONN
e065084a 217 */
ca95a216 218static int recv_data_sessiond(void *buf, size_t len)
e065084a
DG
219{
220 int ret;
221
222 if (!connected) {
2f70b271 223 ret = -LTTNG_ERR_NO_SESSIOND;
e065084a 224 goto end;
fac6795d
DG
225 }
226
ca95a216 227 ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len);
2f70b271
DG
228 if (ret < 0) {
229 ret = -LTTNG_ERR_FATAL;
230 }
fac6795d 231
e065084a 232end:
fac6795d
DG
233 return ret;
234}
235
236/*
9ae110e2 237 * Check if we are in the specified group.
65beb5ff 238 *
9ae110e2 239 * If yes return 1, else return -1.
947308c4 240 */
6c71277b
MD
241LTTNG_HIDDEN
242int lttng_check_tracing_group(void)
947308c4
DG
243{
244 struct group *grp_tracing; /* no free(). See getgrnam(3) */
245 gid_t *grp_list;
246 int grp_list_size, grp_id, i;
247 int ret = -1;
6c71277b 248 const char *grp_name = tracing_group;
947308c4
DG
249
250 /* Get GID of group 'tracing' */
251 grp_tracing = getgrnam(grp_name);
b4d8603b
MD
252 if (!grp_tracing) {
253 /* If grp_tracing is NULL, the group does not exist. */
947308c4
DG
254 goto end;
255 }
256
257 /* Get number of supplementary group IDs */
258 grp_list_size = getgroups(0, NULL);
259 if (grp_list_size < 0) {
6f04ed72 260 PERROR("getgroups");
947308c4
DG
261 goto end;
262 }
263
264 /* Alloc group list of the right size */
3f451dc0 265 grp_list = zmalloc(grp_list_size * sizeof(gid_t));
00795392 266 if (!grp_list) {
6f04ed72 267 PERROR("malloc");
00795392
MD
268 goto end;
269 }
947308c4 270 grp_id = getgroups(grp_list_size, grp_list);
1c8d13c8 271 if (grp_id < 0) {
6f04ed72 272 PERROR("getgroups");
947308c4
DG
273 goto free_list;
274 }
275
276 for (i = 0; i < grp_list_size; i++) {
277 if (grp_list[i] == grp_tracing->gr_gid) {
2269e89e 278 ret = 1;
947308c4
DG
279 break;
280 }
281 }
282
283free_list:
284 free(grp_list);
285
286end:
287 return ret;
288}
289
09b72f7a
FD
290static int check_enough_available_memory(size_t num_bytes_requested_per_cpu)
291{
292 int ret;
293 long num_cpu;
294 size_t best_mem_info;
295 size_t num_bytes_requested_total;
296
297 /*
298 * Get the number of CPU currently online to compute the amount of
299 * memory needed to create a buffer for every CPU.
300 */
301 num_cpu = sysconf(_SC_NPROCESSORS_ONLN);
302 if (num_cpu == -1) {
303 goto error;
304 }
305
306 num_bytes_requested_total = num_bytes_requested_per_cpu * num_cpu;
307
308 /*
309 * Try to get the `MemAvail` field of `/proc/meminfo`. This is the most
310 * reliable estimate we can get but it is only exposed by the kernel
311 * since 3.14. (See Linux kernel commit:
312 * 34e431b0ae398fc54ea69ff85ec700722c9da773)
313 */
314 ret = utils_get_memory_available(&best_mem_info);
315 if (ret >= 0) {
316 goto success;
317 }
318
319 /*
320 * As a backup plan, use `MemTotal` field of `/proc/meminfo`. This
321 * is a sanity check for obvious user error.
322 */
323 ret = utils_get_memory_total(&best_mem_info);
324 if (ret >= 0) {
325 goto success;
326 }
327
328error:
329 return -1;
330success:
331 return best_mem_info >= num_bytes_requested_total;
332}
333
947308c4 334/*
2269e89e
DG
335 * Try connect to session daemon with sock_path.
336 *
337 * Return 0 on success, else -1
338 */
339static int try_connect_sessiond(const char *sock_path)
340{
341 int ret;
342
343 /* If socket exist, we check if the daemon listens for connect. */
344 ret = access(sock_path, F_OK);
345 if (ret < 0) {
346 /* Not alive */
2f70b271 347 goto error;
2269e89e
DG
348 }
349
350 ret = lttcomm_connect_unix_sock(sock_path);
351 if (ret < 0) {
9ae110e2 352 /* Not alive. */
2f70b271 353 goto error;
2269e89e
DG
354 }
355
356 ret = lttcomm_close_unix_sock(ret);
357 if (ret < 0) {
6f04ed72 358 PERROR("lttcomm_close_unix_sock");
2269e89e
DG
359 }
360
361 return 0;
2f70b271
DG
362
363error:
364 return -1;
2269e89e
DG
365}
366
367/*
2f70b271
DG
368 * Set sessiond socket path by putting it in the global sessiond_sock_path
369 * variable.
370 *
371 * Returns 0 on success, negative value on failure (the sessiond socket path
372 * is somehow too long or ENOMEM).
947308c4
DG
373 */
374static int set_session_daemon_path(void)
375{
9ae110e2 376 int in_tgroup = 0; /* In tracing group. */
2269e89e
DG
377 uid_t uid;
378
379 uid = getuid();
947308c4 380
2269e89e
DG
381 if (uid != 0) {
382 /* Are we in the tracing group ? */
6c71277b 383 in_tgroup = lttng_check_tracing_group();
2269e89e
DG
384 }
385
08a9c49f 386 if ((uid == 0) || in_tgroup) {
cac3069d
DG
387 lttng_ctl_copy_string(sessiond_sock_path,
388 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK, sizeof(sessiond_sock_path));
08a9c49f 389 }
2269e89e 390
08a9c49f 391 if (uid != 0) {
c617c0c6
MD
392 int ret;
393
08a9c49f 394 if (in_tgroup) {
9ae110e2 395 /* Tracing group. */
08a9c49f
TD
396 ret = try_connect_sessiond(sessiond_sock_path);
397 if (ret >= 0) {
398 goto end;
2269e89e 399 }
08a9c49f 400 /* Global session daemon not available... */
2269e89e 401 }
08a9c49f
TD
402 /* ...or not in tracing group (and not root), default */
403
404 /*
9ae110e2
JG
405 * With GNU C < 2.1, snprintf returns -1 if the target buffer
406 * is too small;
407 * With GNU C >= 2.1, snprintf returns the required size
408 * (excluding closing null)
08a9c49f
TD
409 */
410 ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path),
feb0f3e5 411 DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir());
08a9c49f 412 if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) {
2f70b271 413 goto error;
947308c4 414 }
947308c4 415 }
08a9c49f 416end:
947308c4 417 return 0;
2f70b271
DG
418
419error:
420 return -1;
947308c4
DG
421}
422
65beb5ff 423/*
9ae110e2 424 * Connect to the LTTng session daemon.
65beb5ff 425 *
9ae110e2 426 * On success, return 0. On error, return -1.
65beb5ff
DG
427 */
428static int connect_sessiond(void)
429{
430 int ret;
431
da3c9ec1
DG
432 /* Don't try to connect if already connected. */
433 if (connected) {
434 return 0;
435 }
436
65beb5ff
DG
437 ret = set_session_daemon_path();
438 if (ret < 0) {
2f70b271 439 goto error;
65beb5ff
DG
440 }
441
9ae110e2 442 /* Connect to the sesssion daemon. */
65beb5ff
DG
443 ret = lttcomm_connect_unix_sock(sessiond_sock_path);
444 if (ret < 0) {
2f70b271 445 goto error;
65beb5ff
DG
446 }
447
448 sessiond_socket = ret;
449 connected = 1;
450
451 return 0;
2f70b271
DG
452
453error:
454 return -1;
65beb5ff
DG
455}
456
457/*
1c8d13c8 458 * Clean disconnect from the session daemon.
9ae110e2 459 *
1c8d13c8 460 * On success, return 0. On error, return -1.
65beb5ff
DG
461 */
462static int disconnect_sessiond(void)
463{
464 int ret = 0;
465
466 if (connected) {
467 ret = lttcomm_close_unix_sock(sessiond_socket);
468 sessiond_socket = 0;
469 connected = 0;
470 }
471
472 return ret;
473}
474
795a978d
PP
475static int recv_sessiond_optional_data(size_t len, void **user_buf,
476 size_t *user_len)
477{
478 int ret = 0;
479 void *buf = NULL;
480
481 if (len) {
482 if (!user_len) {
483 ret = -LTTNG_ERR_INVALID;
484 goto end;
485 }
486
487 buf = zmalloc(len);
488 if (!buf) {
489 ret = -ENOMEM;
490 goto end;
491 }
492
493 ret = recv_data_sessiond(buf, len);
494 if (ret < 0) {
495 goto end;
496 }
497
498 if (!user_buf) {
499 ret = -LTTNG_ERR_INVALID;
500 goto end;
501 }
502
503 /* Move ownership of command header buffer to user. */
504 *user_buf = buf;
505 buf = NULL;
506 *user_len = len;
507 } else {
508 /* No command header. */
509 if (user_len) {
510 *user_len = 0;
511 }
512
513 if (user_buf) {
514 *user_buf = NULL;
515 }
516 }
517
518end:
519 free(buf);
520 return ret;
521}
522
35a6fdb7 523/*
cd80958d 524 * Ask the session daemon a specific command and put the data into buf.
a04d53fc
FD
525 * Takes extra var. len. data and file descriptors as input to send to the
526 * session daemon.
65beb5ff 527 *
af87c45a 528 * Return size of data (only payload, not header) or a negative error code.
65beb5ff 529 */
cac3069d 530LTTNG_HIDDEN
a04d53fc
FD
531int lttng_ctl_ask_sessiond_fds_varlen(struct lttcomm_session_msg *lsm,
532 const int *fds, size_t nb_fd, const void *vardata,
533 size_t vardata_len, void **user_payload_buf,
534 void **user_cmd_header_buf, size_t *user_cmd_header_len)
65beb5ff
DG
535{
536 int ret;
795a978d 537 size_t payload_len;
cd80958d 538 struct lttcomm_lttng_msg llm;
65beb5ff
DG
539
540 ret = connect_sessiond();
541 if (ret < 0) {
2f70b271 542 ret = -LTTNG_ERR_NO_SESSIOND;
65beb5ff
DG
543 goto end;
544 }
545
65beb5ff 546 /* Send command to session daemon */
cd80958d 547 ret = send_session_msg(lsm);
65beb5ff 548 if (ret < 0) {
2f70b271 549 /* Ret value is a valid lttng error code. */
65beb5ff
DG
550 goto end;
551 }
53a80697 552 /* Send var len data */
795a978d 553 ret = send_session_varlen(vardata, vardata_len);
53a80697 554 if (ret < 0) {
2f70b271 555 /* Ret value is a valid lttng error code. */
53a80697
MD
556 goto end;
557 }
65beb5ff 558
a04d53fc
FD
559 /* Send fds */
560 ret = send_session_fds(fds, nb_fd);
561 if (ret < 0) {
562 /* Ret value is a valid lttng error code. */
563 goto end;
564 }
565
65beb5ff
DG
566 /* Get header from data transmission */
567 ret = recv_data_sessiond(&llm, sizeof(llm));
568 if (ret < 0) {
2f70b271 569 /* Ret value is a valid lttng error code. */
65beb5ff
DG
570 goto end;
571 }
572
573 /* Check error code if OK */
f73fabfd 574 if (llm.ret_code != LTTNG_OK) {
65beb5ff
DG
575 ret = -llm.ret_code;
576 goto end;
577 }
578
795a978d
PP
579 /* Get command header from data transmission */
580 ret = recv_sessiond_optional_data(llm.cmd_header_size,
581 user_cmd_header_buf, user_cmd_header_len);
65beb5ff 582 if (ret < 0) {
65beb5ff
DG
583 goto end;
584 }
585
795a978d
PP
586 /* Get payload from data transmission */
587 ret = recv_sessiond_optional_data(llm.data_size, user_payload_buf,
588 &payload_len);
589 if (ret < 0) {
83009e5e
DG
590 goto end;
591 }
592
795a978d 593 ret = llm.data_size;
65beb5ff
DG
594
595end:
596 disconnect_sessiond();
597 return ret;
598}
599
9f19cc17 600/*
cd80958d 601 * Create lttng handle and return pointer.
9ae110e2 602 *
1c8d13c8 603 * The returned pointer will be NULL in case of malloc() error.
9f19cc17 604 */
cd80958d
DG
605struct lttng_handle *lttng_create_handle(const char *session_name,
606 struct lttng_domain *domain)
9f19cc17 607{
2f70b271
DG
608 struct lttng_handle *handle = NULL;
609
3f451dc0 610 handle = zmalloc(sizeof(struct lttng_handle));
cd80958d 611 if (handle == NULL) {
2f70b271 612 PERROR("malloc handle");
cd80958d
DG
613 goto end;
614 }
615
616 /* Copy session name */
cac3069d 617 lttng_ctl_copy_string(handle->session_name, session_name,
cd80958d
DG
618 sizeof(handle->session_name));
619
95681498
JG
620 /* Copy lttng domain or leave initialized to 0. */
621 if (domain) {
622 lttng_ctl_copy_lttng_domain(&handle->domain, domain);
623 }
cd80958d
DG
624
625end:
626 return handle;
627}
628
629/*
630 * Destroy handle by free(3) the pointer.
631 */
632void lttng_destroy_handle(struct lttng_handle *handle)
633{
0e428499 634 free(handle);
eb354453
DG
635}
636
d9800920
DG
637/*
638 * Register an outside consumer.
9ae110e2 639 *
1c8d13c8 640 * Returns size of returned session payload data or a negative error code.
d9800920
DG
641 */
642int lttng_register_consumer(struct lttng_handle *handle,
643 const char *socket_path)
644{
645 struct lttcomm_session_msg lsm;
646
2f70b271
DG
647 if (handle == NULL || socket_path == NULL) {
648 return -LTTNG_ERR_INVALID;
649 }
650
53efb85a 651 memset(&lsm, 0, sizeof(lsm));
d9800920 652 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
cac3069d 653 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
d9800920 654 sizeof(lsm.session.name));
cac3069d 655 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d9800920 656
9ae110e2
JG
657 lttng_ctl_copy_string(lsm.u.reg.path, socket_path,
658 sizeof(lsm.u.reg.path));
d9800920 659
cac3069d 660 return lttng_ctl_ask_sessiond(&lsm, NULL);
d9800920
DG
661}
662
1df4dedd 663/*
9ae110e2
JG
664 * Start tracing for all traces of the session.
665 *
666 * Returns size of returned session payload data or a negative error code.
1df4dedd 667 */
6a4f824d 668int lttng_start_tracing(const char *session_name)
f3ed775e 669{
cd80958d
DG
670 struct lttcomm_session_msg lsm;
671
6a4f824d 672 if (session_name == NULL) {
2f70b271 673 return -LTTNG_ERR_INVALID;
cd80958d
DG
674 }
675
53efb85a 676 memset(&lsm, 0, sizeof(lsm));
cd80958d 677 lsm.cmd_type = LTTNG_START_TRACE;
6a4f824d 678
cac3069d
DG
679 lttng_ctl_copy_string(lsm.session.name, session_name,
680 sizeof(lsm.session.name));
cd80958d 681
cac3069d 682 return lttng_ctl_ask_sessiond(&lsm, NULL);
f3ed775e 683}
1df4dedd
DG
684
685/*
38ee087f 686 * Stop tracing for all traces of the session.
f3ed775e 687 */
38ee087f 688static int _lttng_stop_tracing(const char *session_name, int wait)
f3ed775e 689{
38ee087f 690 int ret, data_ret;
cd80958d
DG
691 struct lttcomm_session_msg lsm;
692
6a4f824d 693 if (session_name == NULL) {
2f70b271 694 return -LTTNG_ERR_INVALID;
6a4f824d
DG
695 }
696
53efb85a 697 memset(&lsm, 0, sizeof(lsm));
cd80958d 698 lsm.cmd_type = LTTNG_STOP_TRACE;
6a4f824d 699
cac3069d
DG
700 lttng_ctl_copy_string(lsm.session.name, session_name,
701 sizeof(lsm.session.name));
cd80958d 702
cac3069d 703 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
38ee087f
DG
704 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
705 goto error;
706 }
707
708 if (!wait) {
709 goto end;
710 }
711
38ee087f
DG
712 /* Check for data availability */
713 do {
6d805429 714 data_ret = lttng_data_pending(session_name);
38ee087f
DG
715 if (data_ret < 0) {
716 /* Return the data available call error. */
717 ret = data_ret;
718 goto error;
719 }
720
721 /*
9ae110e2
JG
722 * Data sleep time before retrying (in usec). Don't sleep if the
723 * call returned value indicates availability.
38ee087f 724 */
6d805429 725 if (data_ret) {
38ee087f 726 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
38ee087f 727 }
6d805429 728 } while (data_ret != 0);
38ee087f 729
38ee087f
DG
730end:
731error:
732 return ret;
733}
734
735/*
736 * Stop tracing and wait for data availability.
737 */
738int lttng_stop_tracing(const char *session_name)
739{
740 return _lttng_stop_tracing(session_name, 1);
741}
742
743/*
744 * Stop tracing but _don't_ wait for data availability.
745 */
746int lttng_stop_tracing_no_wait(const char *session_name)
747{
748 return _lttng_stop_tracing(session_name, 0);
f3ed775e
DG
749}
750
751/*
601d5acf
DG
752 * Add context to a channel.
753 *
754 * If the given channel is NULL, add the contexts to all channels.
755 * The event_name param is ignored.
af87c45a
DG
756 *
757 * Returns the size of the returned payload data or a negative error code.
1df4dedd 758 */
cd80958d 759int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
760 struct lttng_event_context *ctx, const char *event_name,
761 const char *channel_name)
d65106b1 762{
2001793c
JG
763 int ret;
764 size_t len = 0;
765 char *buf = NULL;
cd80958d
DG
766 struct lttcomm_session_msg lsm;
767
9ae110e2 768 /* Safety check. Both are mandatory. */
9d697d3d 769 if (handle == NULL || ctx == NULL) {
2001793c
JG
770 ret = -LTTNG_ERR_INVALID;
771 goto end;
cd80958d
DG
772 }
773
441c16a7 774 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
775 lsm.cmd_type = LTTNG_ADD_CONTEXT;
776
85076754
MD
777 /* If no channel name, send empty string. */
778 if (channel_name == NULL) {
779 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
780 sizeof(lsm.u.context.channel_name));
781 } else {
782 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
783 sizeof(lsm.u.context.channel_name));
784 }
cd80958d 785
cac3069d 786 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cac3069d 787 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
788 sizeof(lsm.session.name));
789
2001793c
JG
790 if (ctx->ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
791 size_t provider_len, ctx_len;
792 const char *provider_name = ctx->u.app_ctx.provider_name;
793 const char *ctx_name = ctx->u.app_ctx.ctx_name;
794
795 if (!provider_name || !ctx_name) {
796 ret = -LTTNG_ERR_INVALID;
797 goto end;
798 }
799
800 provider_len = strlen(provider_name);
801 if (provider_len == 0) {
802 ret = -LTTNG_ERR_INVALID;
803 goto end;
804 }
805 lsm.u.context.provider_name_len = provider_len;
806
807 ctx_len = strlen(ctx_name);
808 if (ctx_len == 0) {
809 ret = -LTTNG_ERR_INVALID;
810 goto end;
811 }
812 lsm.u.context.context_name_len = ctx_len;
813
814 len = provider_len + ctx_len;
815 buf = zmalloc(len);
816 if (!buf) {
817 ret = -LTTNG_ERR_NOMEM;
818 goto end;
819 }
820
821 memcpy(buf, provider_name, provider_len);
822 memcpy(buf + provider_len, ctx_name, ctx_len);
823 }
824 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
46f44e2a
JR
825
826 if (ctx->ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
827 /*
828 * Don't leak application addresses to the sessiond.
829 * This is only necessary when ctx is for an app ctx otherwise
830 * the values inside the union (type & config) are overwritten.
831 */
832 lsm.u.context.ctx.u.app_ctx.provider_name = NULL;
833 lsm.u.context.ctx.u.app_ctx.ctx_name = NULL;
834 }
2001793c 835
795a978d 836 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, buf, len, NULL);
2001793c
JG
837end:
838 free(buf);
839 return ret;
d65106b1
DG
840}
841
f3ed775e 842/*
9ae110e2
JG
843 * Enable event(s) for a channel.
844 *
845 * If no event name is specified, all events are enabled.
846 * If no channel name is specified, the default 'channel0' is used.
847 *
848 * Returns size of returned session payload data or a negative error code.
f3ed775e 849 */
cd80958d 850int lttng_enable_event(struct lttng_handle *handle,
38057ed1 851 struct lttng_event *ev, const char *channel_name)
1df4dedd 852{
f8a96544
JI
853 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
854 NULL, 0, NULL);
1df4dedd
DG
855}
856
53a80697 857/*
025faf73 858 * Create or enable an event with a filter expression.
178191b3 859 *
53a80697
MD
860 * Return negative error value on error.
861 * Return size of returned session payload data if OK.
862 */
025faf73 863int lttng_enable_event_with_filter(struct lttng_handle *handle,
178191b3 864 struct lttng_event *event, const char *channel_name,
53a80697
MD
865 const char *filter_expression)
866{
f8a96544
JI
867 return lttng_enable_event_with_exclusions(handle, event, channel_name,
868 filter_expression, 0, NULL);
53a80697
MD
869}
870
347c5ab5 871/*
0e115563 872 * Depending on the event, return a newly allocated agent filter expression or
347c5ab5
DG
873 * NULL if not applicable.
874 *
875 * An event with NO loglevel and the name is * will return NULL.
876 */
0e115563 877static char *set_agent_filter(const char *filter, struct lttng_event *ev)
347c5ab5
DG
878{
879 int err;
0e115563 880 char *agent_filter = NULL;
347c5ab5
DG
881
882 assert(ev);
883
884 /* Don't add filter for the '*' event. */
9f449915 885 if (strcmp(ev->name, "*") != 0) {
347c5ab5 886 if (filter) {
0e115563 887 err = asprintf(&agent_filter, "(%s) && (logger_name == \"%s\")", filter,
347c5ab5
DG
888 ev->name);
889 } else {
0e115563 890 err = asprintf(&agent_filter, "logger_name == \"%s\"", ev->name);
347c5ab5
DG
891 }
892 if (err < 0) {
893 PERROR("asprintf");
6a556f7b 894 goto error;
347c5ab5
DG
895 }
896 }
897
898 /* Add loglevel filtering if any for the JUL domain. */
899 if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) {
900 char *op;
901
902 if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) {
903 op = ">=";
904 } else {
905 op = "==";
906 }
907
0e115563 908 if (filter || agent_filter) {
6a556f7b
JG
909 char *new_filter;
910
fb0edb23 911 err = asprintf(&new_filter, "(%s) && (int_loglevel %s %d)",
0e115563 912 agent_filter ? agent_filter : filter, op,
347c5ab5 913 ev->loglevel);
0e115563
DG
914 if (agent_filter) {
915 free(agent_filter);
6a556f7b 916 }
0e115563 917 agent_filter = new_filter;
347c5ab5 918 } else {
0e115563 919 err = asprintf(&agent_filter, "int_loglevel %s %d", op,
347c5ab5
DG
920 ev->loglevel);
921 }
922 if (err < 0) {
923 PERROR("asprintf");
6a556f7b 924 goto error;
347c5ab5
DG
925 }
926 }
927
0e115563 928 return agent_filter;
6a556f7b 929error:
0e115563 930 free(agent_filter);
6a556f7b 931 return NULL;
347c5ab5
DG
932}
933
137b9942 934/*
ec166985 935 * Generate the filter bytecode from a given filter expression string. Put the
137b9942
DG
936 * newly allocated parser context in ctxp and populate the lsm object with the
937 * expression len.
938 *
939 * Return 0 on success else a LTTNG_ERR_* code and ctxp is untouched.
940 */
941static int generate_filter(char *filter_expression,
942 struct lttcomm_session_msg *lsm, struct filter_parser_ctx **ctxp)
943{
944 int ret;
945 struct filter_parser_ctx *ctx = NULL;
946 FILE *fmem = NULL;
947
948 assert(filter_expression);
949 assert(lsm);
950 assert(ctxp);
951
952 /*
953 * Casting const to non-const, as the underlying function will use it in
954 * read-only mode.
955 */
956 fmem = lttng_fmemopen((void *) filter_expression,
957 strlen(filter_expression), "r");
958 if (!fmem) {
959 fprintf(stderr, "Error opening memory as stream\n");
960 ret = -LTTNG_ERR_FILTER_NOMEM;
961 goto error;
962 }
963 ctx = filter_parser_ctx_alloc(fmem);
964 if (!ctx) {
965 fprintf(stderr, "Error allocating parser\n");
966 ret = -LTTNG_ERR_FILTER_NOMEM;
967 goto filter_alloc_error;
968 }
969 ret = filter_parser_ctx_append_ast(ctx);
970 if (ret) {
971 fprintf(stderr, "Parse error\n");
972 ret = -LTTNG_ERR_FILTER_INVAL;
973 goto parse_error;
974 }
137b9942
DG
975 if (print_xml) {
976 ret = filter_visitor_print_xml(ctx, stdout, 0);
977 if (ret) {
978 fflush(stdout);
979 fprintf(stderr, "XML print error\n");
980 ret = -LTTNG_ERR_FILTER_INVAL;
981 goto parse_error;
982 }
983 }
984
985 dbg_printf("Generating IR... ");
986 fflush(stdout);
987 ret = filter_visitor_ir_generate(ctx);
988 if (ret) {
989 fprintf(stderr, "Generate IR error\n");
990 ret = -LTTNG_ERR_FILTER_INVAL;
991 goto parse_error;
992 }
993 dbg_printf("done\n");
994
995 dbg_printf("Validating IR... ");
996 fflush(stdout);
997 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
998 if (ret) {
999 ret = -LTTNG_ERR_FILTER_INVAL;
1000 goto parse_error;
1001 }
9f449915
PP
1002
1003 /* Normalize globbing patterns in the expression. */
1004 ret = filter_visitor_ir_normalize_glob_patterns(ctx);
1005 if (ret) {
1006 ret = -LTTNG_ERR_FILTER_INVAL;
1007 goto parse_error;
1008 }
1009
9ae110e2 1010 /* Validate strings used as literals in the expression. */
dcd5daf2
JG
1011 ret = filter_visitor_ir_validate_string(ctx);
1012 if (ret) {
1013 ret = -LTTNG_ERR_FILTER_INVAL;
1014 goto parse_error;
1015 }
9f449915
PP
1016
1017 /* Validate globbing patterns in the expression. */
1018 ret = filter_visitor_ir_validate_globbing(ctx);
1019 if (ret) {
1020 ret = -LTTNG_ERR_FILTER_INVAL;
1021 goto parse_error;
1022 }
1023
137b9942
DG
1024 dbg_printf("done\n");
1025
1026 dbg_printf("Generating bytecode... ");
1027 fflush(stdout);
1028 ret = filter_visitor_bytecode_generate(ctx);
1029 if (ret) {
1030 fprintf(stderr, "Generate bytecode error\n");
1031 ret = -LTTNG_ERR_FILTER_INVAL;
1032 goto parse_error;
1033 }
1034 dbg_printf("done\n");
1035 dbg_printf("Size of bytecode generated: %u bytes.\n",
1036 bytecode_get_len(&ctx->bytecode->b));
1037
1038 lsm->u.enable.bytecode_len = sizeof(ctx->bytecode->b)
1039 + bytecode_get_len(&ctx->bytecode->b);
1040 lsm->u.enable.expression_len = strlen(filter_expression) + 1;
1041
1042 /* No need to keep the memory stream. */
1043 if (fclose(fmem) != 0) {
6f04ed72 1044 PERROR("fclose");
137b9942
DG
1045 }
1046
1047 *ctxp = ctx;
1048 return 0;
1049
1050parse_error:
137b9942
DG
1051 filter_ir_free(ctx);
1052 filter_parser_ctx_free(ctx);
1053filter_alloc_error:
1054 if (fclose(fmem) != 0) {
6f04ed72 1055 PERROR("fclose");
137b9942
DG
1056 }
1057error:
1058 return ret;
1059}
1060
93deb080
JI
1061/*
1062 * Enable event(s) for a channel, possibly with exclusions and a filter.
1063 * If no event name is specified, all events are enabled.
1064 * If no channel name is specified, the default name is used.
1065 * If filter expression is not NULL, the filter is set for the event.
1066 * If exclusion count is not zero, the exclusions are set for the event.
1067 * Returns size of returned session payload data or a negative error code.
1068 */
1069int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
1070 struct lttng_event *ev, const char *channel_name,
e9efbcd3 1071 const char *original_filter_expression,
93deb080
JI
1072 int exclusion_count, char **exclusion_list)
1073{
1074 struct lttcomm_session_msg lsm;
15e37663
JG
1075 struct lttng_dynamic_buffer send_buffer;
1076 int ret = 0, i, fd_to_send = -1;
1077 bool send_fd = false;
137b9942 1078 unsigned int free_filter_expression = 0;
93deb080 1079 struct filter_parser_ctx *ctx = NULL;
ec005ec6
FD
1080
1081 memset(&send_buffer, 0, sizeof(send_buffer));
1082
e9efbcd3
JG
1083 /*
1084 * Cast as non-const since we may replace the filter expression
1085 * by a dynamically allocated string. Otherwise, the original
1086 * string is not modified.
1087 */
1088 char *filter_expression = (char *) original_filter_expression;
93deb080
JI
1089
1090 if (handle == NULL || ev == NULL) {
137b9942
DG
1091 ret = -LTTNG_ERR_INVALID;
1092 goto error;
93deb080
JI
1093 }
1094
9ae110e2
JG
1095 /*
1096 * Empty filter string will always be rejected by the parser
93deb080
JI
1097 * anyway, so treat this corner-case early to eliminate
1098 * lttng_fmemopen error for 0-byte allocation.
1099 */
1100 if (filter_expression && filter_expression[0] == '\0') {
137b9942
DG
1101 ret = -LTTNG_ERR_INVALID;
1102 goto error;
93deb080
JI
1103 }
1104
1105 memset(&lsm, 0, sizeof(lsm));
1106
1107 /* If no channel name, send empty string. */
1108 if (channel_name == NULL) {
1109 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
1110 sizeof(lsm.u.enable.channel_name));
1111 } else {
1112 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
1113 sizeof(lsm.u.enable.channel_name));
1114 }
1115
18a720cd
MD
1116 lsm.cmd_type = LTTNG_ENABLE_EVENT;
1117 if (ev->name[0] == '\0') {
1118 /* Enable all events */
1119 lttng_ctl_copy_string(ev->name, "*", sizeof(ev->name));
6565421f 1120 }
93deb080 1121
6565421f 1122 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
6e911cad 1123 /* FIXME: copying non-packed struct to packed struct. */
93deb080
JI
1124 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
1125
1126 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1127 sizeof(lsm.session.name));
1128 lsm.u.enable.exclusion_count = exclusion_count;
1129 lsm.u.enable.bytecode_len = 0;
1130
93deb080
JI
1131 /*
1132 * We have either a filter or some exclusions, so we need to set up
9ae110e2 1133 * a variable-length memory block from where to send the data.
93deb080 1134 */
15e37663 1135 lttng_dynamic_buffer_init(&send_buffer);
93deb080 1136
9ae110e2 1137 /* Parse filter expression. */
5cdb6027 1138 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
0e115563
DG
1139 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1140 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
5cdb6027 1141 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
0e115563
DG
1142 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1143 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1144 char *agent_filter;
64226865 1145
347c5ab5 1146 /* Setup JUL filter if needed. */
0e115563
DG
1147 agent_filter = set_agent_filter(filter_expression, ev);
1148 if (!agent_filter) {
137b9942 1149 if (!filter_expression) {
9ae110e2
JG
1150 /*
1151 * No JUL and no filter, just skip
1152 * everything below.
1153 */
137b9942
DG
1154 goto ask_sessiond;
1155 }
64226865
DG
1156 } else {
1157 /*
9ae110e2
JG
1158 * With an agent filter, the original filter has
1159 * been added to it thus replace the filter
1160 * expression.
64226865 1161 */
0e115563 1162 filter_expression = agent_filter;
e9efbcd3 1163 free_filter_expression = 1;
9b21e6d5 1164 }
9b21e6d5 1165 }
93deb080 1166
137b9942 1167 ret = generate_filter(filter_expression, &lsm, &ctx);
93deb080 1168 if (ret) {
137b9942 1169 goto filter_error;
93deb080 1170 }
6b453b5e
JG
1171 }
1172
15e37663
JG
1173 ret = lttng_dynamic_buffer_set_capacity(&send_buffer,
1174 lsm.u.enable.bytecode_len
137b9942
DG
1175 + lsm.u.enable.expression_len
1176 + LTTNG_SYMBOL_NAME_LEN * exclusion_count);
15e37663 1177 if (ret) {
6b453b5e 1178 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
7ca1dc6f 1179 goto mem_error;
6b453b5e 1180 }
137b9942 1181
9ae110e2 1182 /* Put exclusion names first in the data. */
15e37663
JG
1183 for (i = 0; i < exclusion_count; i++) {
1184 size_t exclusion_len;
1185
1186 exclusion_len = lttng_strnlen(*(exclusion_list + i),
1187 LTTNG_SYMBOL_NAME_LEN);
1188 if (exclusion_len == LTTNG_SYMBOL_NAME_LEN) {
1189 /* Exclusion is not NULL-terminated. */
1190 ret = -LTTNG_ERR_INVALID;
1191 goto mem_error;
1192 }
1193
1194 ret = lttng_dynamic_buffer_append(&send_buffer,
1195 *(exclusion_list + i),
1196 LTTNG_SYMBOL_NAME_LEN);
1197 if (ret) {
1198 goto mem_error;
1199 }
6b453b5e 1200 }
15e37663 1201
9ae110e2 1202 /* Add filter expression next. */
15e37663
JG
1203 if (filter_expression) {
1204 ret = lttng_dynamic_buffer_append(&send_buffer,
1205 filter_expression, lsm.u.enable.expression_len);
1206 if (ret) {
1207 goto mem_error;
1208 }
6b453b5e 1209 }
9ae110e2 1210 /* Add filter bytecode next. */
137b9942 1211 if (ctx && lsm.u.enable.bytecode_len != 0) {
15e37663
JG
1212 ret = lttng_dynamic_buffer_append(&send_buffer,
1213 &ctx->bytecode->b, lsm.u.enable.bytecode_len);
1214 if (ret) {
1215 goto mem_error;
1216 }
1217 }
1218 if (ev->extended.ptr) {
1219 struct lttng_event_extended *ev_ext =
1220 (struct lttng_event_extended *) ev->extended.ptr;
1221
1222 if (ev_ext->probe_location) {
1223 /*
1224 * lttng_userspace_probe_location_serialize returns the
1225 * number of bytes that was appended to the buffer.
1226 */
1227 ret = lttng_userspace_probe_location_serialize(
1228 ev_ext->probe_location, &send_buffer,
1229 &fd_to_send);
56f0bc67 1230 if (ret < 0) {
15e37663
JG
1231 goto mem_error;
1232 }
1233
1234 send_fd = fd_to_send >= 0;
1235 /*
1236 * Set the size of the userspace probe location element
1237 * of the buffer so that the receiving side knows where
1238 * to split it.
1239 */
1240 lsm.u.enable.userspace_probe_location_len = ret;
1241 }
93deb080
JI
1242 }
1243
15e37663
JG
1244 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm,
1245 send_fd ? &fd_to_send : NULL,
1246 send_fd ? 1 : 0,
1247 send_buffer.size ? send_buffer.data : NULL,
1248 send_buffer.size, NULL, NULL, 0);
93deb080 1249
7ca1dc6f
DG
1250mem_error:
1251 if (filter_expression && ctx) {
93deb080
JI
1252 filter_bytecode_free(ctx);
1253 filter_ir_free(ctx);
1254 filter_parser_ctx_free(ctx);
7ca1dc6f
DG
1255 }
1256filter_error:
1257 if (free_filter_expression) {
1258 /*
9ae110e2
JG
1259 * The filter expression has been replaced and must be freed as
1260 * it is not the original filter expression received as a
1261 * parameter.
7ca1dc6f
DG
1262 */
1263 free(filter_expression);
93deb080 1264 }
137b9942
DG
1265error:
1266 /*
9ae110e2
JG
1267 * Return directly to the caller and don't ask the sessiond since
1268 * something went wrong in the parsing of data above.
137b9942 1269 */
15e37663 1270 lttng_dynamic_buffer_reset(&send_buffer);
93deb080 1271 return ret;
3e1c9ff7
DG
1272
1273ask_sessiond:
1274 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1275 return ret;
93deb080
JI
1276}
1277
6e911cad
MD
1278int lttng_disable_event_ext(struct lttng_handle *handle,
1279 struct lttng_event *ev, const char *channel_name,
1280 const char *original_filter_expression)
1df4dedd 1281{
cd80958d 1282 struct lttcomm_session_msg lsm;
6e911cad
MD
1283 char *varlen_data;
1284 int ret = 0;
1285 unsigned int free_filter_expression = 0;
1286 struct filter_parser_ctx *ctx = NULL;
1287 /*
1288 * Cast as non-const since we may replace the filter expression
1289 * by a dynamically allocated string. Otherwise, the original
1290 * string is not modified.
1291 */
1292 char *filter_expression = (char *) original_filter_expression;
1df4dedd 1293
6e911cad
MD
1294 if (handle == NULL || ev == NULL) {
1295 ret = -LTTNG_ERR_INVALID;
1296 goto error;
1297 }
1298
9ae110e2
JG
1299 /*
1300 * Empty filter string will always be rejected by the parser
6e911cad
MD
1301 * anyway, so treat this corner-case early to eliminate
1302 * lttng_fmemopen error for 0-byte allocation.
1303 */
1304 if (filter_expression && filter_expression[0] == '\0') {
1305 ret = -LTTNG_ERR_INVALID;
1306 goto error;
cd80958d
DG
1307 }
1308
441c16a7
MD
1309 memset(&lsm, 0, sizeof(lsm));
1310
85076754
MD
1311 /* If no channel name, send empty string. */
1312 if (channel_name == NULL) {
1313 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
cd80958d 1314 sizeof(lsm.u.disable.channel_name));
f3ed775e 1315 } else {
85076754 1316 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
cd80958d 1317 sizeof(lsm.u.disable.channel_name));
eb354453
DG
1318 }
1319
18a720cd 1320 lsm.cmd_type = LTTNG_DISABLE_EVENT;
f3ed775e 1321
6e911cad
MD
1322 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1323 /* FIXME: copying non-packed struct to packed struct. */
1324 memcpy(&lsm.u.disable.event, ev, sizeof(lsm.u.disable.event));
1325
cac3069d 1326 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1327 sizeof(lsm.session.name));
6e911cad 1328 lsm.u.disable.bytecode_len = 0;
cd80958d 1329
6e911cad
MD
1330 /*
1331 * For the JUL domain, a filter is enforced except for the
1332 * disable all event. This is done to avoid having the event in
1333 * all sessions thus filtering by logger name.
1334 */
1335 if (filter_expression == NULL &&
1336 (handle->domain.type != LTTNG_DOMAIN_JUL &&
0e115563
DG
1337 handle->domain.type != LTTNG_DOMAIN_LOG4J &&
1338 handle->domain.type != LTTNG_DOMAIN_PYTHON)) {
6e911cad
MD
1339 goto ask_sessiond;
1340 }
1341
1342 /*
1343 * We have a filter, so we need to set up a variable-length
1344 * memory block from where to send the data.
1345 */
1346
1347 /* Parse filter expression */
1348 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
0e115563
DG
1349 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1350 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
6e911cad 1351 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
0e115563
DG
1352 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1353 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1354 char *agent_filter;
6e911cad
MD
1355
1356 /* Setup JUL filter if needed. */
0e115563
DG
1357 agent_filter = set_agent_filter(filter_expression, ev);
1358 if (!agent_filter) {
6e911cad 1359 if (!filter_expression) {
9ae110e2
JG
1360 /*
1361 * No JUL and no filter, just skip
1362 * everything below.
1363 */
6e911cad
MD
1364 goto ask_sessiond;
1365 }
1366 } else {
1367 /*
9ae110e2
JG
1368 * With a JUL filter, the original filter has
1369 * been added to it thus replace the filter
1370 * expression.
6e911cad 1371 */
0e115563 1372 filter_expression = agent_filter;
6e911cad
MD
1373 free_filter_expression = 1;
1374 }
1375 }
1376
1377 ret = generate_filter(filter_expression, &lsm, &ctx);
1378 if (ret) {
1379 goto filter_error;
1380 }
1381 }
1382
1383 varlen_data = zmalloc(lsm.u.disable.bytecode_len
1384 + lsm.u.disable.expression_len);
1385 if (!varlen_data) {
1386 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
1387 goto mem_error;
1388 }
1389
9ae110e2 1390 /* Add filter expression. */
6e911cad
MD
1391 if (lsm.u.disable.expression_len != 0) {
1392 memcpy(varlen_data,
1393 filter_expression,
1394 lsm.u.disable.expression_len);
1395 }
9ae110e2 1396 /* Add filter bytecode next. */
6e911cad
MD
1397 if (ctx && lsm.u.disable.bytecode_len != 0) {
1398 memcpy(varlen_data
1399 + lsm.u.disable.expression_len,
1400 &ctx->bytecode->b,
1401 lsm.u.disable.bytecode_len);
1402 }
1403
795a978d 1404 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, varlen_data,
6e911cad
MD
1405 lsm.u.disable.bytecode_len + lsm.u.disable.expression_len, NULL);
1406 free(varlen_data);
1407
1408mem_error:
1409 if (filter_expression && ctx) {
1410 filter_bytecode_free(ctx);
1411 filter_ir_free(ctx);
1412 filter_parser_ctx_free(ctx);
1413 }
1414filter_error:
1415 if (free_filter_expression) {
1416 /*
9ae110e2
JG
1417 * The filter expression has been replaced and must be freed as
1418 * it is not the original filter expression received as a
1419 * parameter.
6e911cad
MD
1420 */
1421 free(filter_expression);
1422 }
1423error:
1424 /*
9ae110e2
JG
1425 * Return directly to the caller and don't ask the sessiond since
1426 * something went wrong in the parsing of data above.
6e911cad
MD
1427 */
1428 return ret;
1429
1430ask_sessiond:
1431 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1432 return ret;
1433}
1434
1435/*
9ae110e2
JG
1436 * Disable event(s) of a channel and domain.
1437 * If no event name is specified, all events are disabled.
1438 * If no channel name is specified, the default 'channel0' is used.
1439 * Returns size of returned session payload data or a negative error code.
6e911cad
MD
1440 */
1441int lttng_disable_event(struct lttng_handle *handle, const char *name,
1442 const char *channel_name)
1443{
1444 struct lttng_event ev;
1445
1446 memset(&ev, 0, sizeof(ev));
9b7431cf 1447 ev.loglevel = -1;
6e911cad
MD
1448 ev.type = LTTNG_EVENT_ALL;
1449 lttng_ctl_copy_string(ev.name, name, sizeof(ev.name));
1450 return lttng_disable_event_ext(handle, &ev, channel_name, NULL);
1df4dedd
DG
1451}
1452
cf0bcb51
JG
1453struct lttng_channel *lttng_channel_create(struct lttng_domain *domain)
1454{
1455 struct lttng_channel *channel = NULL;
1456 struct lttng_channel_extended *extended = NULL;
1457
1458 if (!domain) {
1459 goto error;
1460 }
1461
1462 /* Validate domain. */
1463 switch (domain->type) {
1464 case LTTNG_DOMAIN_UST:
1465 switch (domain->buf_type) {
1466 case LTTNG_BUFFER_PER_UID:
1467 case LTTNG_BUFFER_PER_PID:
1468 break;
1469 default:
1470 goto error;
1471 }
1472 break;
1473 case LTTNG_DOMAIN_KERNEL:
1474 if (domain->buf_type != LTTNG_BUFFER_GLOBAL) {
1475 goto error;
1476 }
1477 break;
1478 default:
1479 goto error;
1480 }
1481
1482 channel = zmalloc(sizeof(*channel));
1483 if (!channel) {
1484 goto error;
1485 }
1486
1487 extended = zmalloc(sizeof(*extended));
1488 if (!extended) {
1489 goto error;
1490 }
1491
1492 channel->attr.extended.ptr = extended;
1493
1494 lttng_channel_set_default_attr(domain, &channel->attr);
1495 return channel;
1496error:
1497 free(channel);
1498 free(extended);
1499 return NULL;
1500}
1501
1502void lttng_channel_destroy(struct lttng_channel *channel)
1503{
1504 if (!channel) {
1505 return;
1506 }
1507
1508 if (channel->attr.extended.ptr) {
1509 free(channel->attr.extended.ptr);
1510 }
1511 free(channel);
1512}
1513
1df4dedd 1514/*
9ae110e2
JG
1515 * Enable channel per domain
1516 * Returns size of returned session payload data or a negative error code.
a5c5a2bd 1517 */
cd80958d 1518int lttng_enable_channel(struct lttng_handle *handle,
cf0bcb51 1519 struct lttng_channel *in_chan)
a5c5a2bd 1520{
cd80958d 1521 struct lttcomm_session_msg lsm;
09b72f7a 1522 size_t total_buffer_size_needed_per_cpu = 0;
cd80958d 1523
9ae110e2 1524 /* NULL arguments are forbidden. No default values. */
cf0bcb51 1525 if (handle == NULL || in_chan == NULL) {
2f70b271 1526 return -LTTNG_ERR_INVALID;
cd80958d
DG
1527 }
1528
441c16a7 1529 memset(&lsm, 0, sizeof(lsm));
cf0bcb51
JG
1530 memcpy(&lsm.u.channel.chan, in_chan, sizeof(lsm.u.channel.chan));
1531 lsm.u.channel.chan.attr.extended.ptr = NULL;
441c16a7 1532
cf0bcb51
JG
1533 if (!in_chan->attr.extended.ptr) {
1534 struct lttng_channel *channel;
1535 struct lttng_channel_extended *extended;
7d29a247 1536
cf0bcb51
JG
1537 channel = lttng_channel_create(&handle->domain);
1538 if (!channel) {
1539 return -LTTNG_ERR_NOMEM;
1540 }
1541
1542 /*
1543 * Create a new channel in order to use default extended
1544 * attribute values.
1545 */
1546 extended = (struct lttng_channel_extended *)
1547 channel->attr.extended.ptr;
1548 memcpy(&lsm.u.channel.extended, extended, sizeof(*extended));
1549 lttng_channel_destroy(channel);
1550 } else {
1551 struct lttng_channel_extended *extended;
1552
1553 extended = (struct lttng_channel_extended *)
1554 in_chan->attr.extended.ptr;
1555 memcpy(&lsm.u.channel.extended, extended, sizeof(*extended));
1556 }
cd80958d 1557
09b72f7a
FD
1558 /*
1559 * Verify that the amount of memory required to create the requested
1560 * buffer is available on the system at the moment.
1561 */
1562 total_buffer_size_needed_per_cpu = lsm.u.channel.chan.attr.num_subbuf *
1563 lsm.u.channel.chan.attr.subbuf_size;
1564 if (!check_enough_available_memory(total_buffer_size_needed_per_cpu)) {
1565 return -LTTNG_ERR_NOMEM;
1566 }
1567
cf0bcb51 1568 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
cac3069d 1569 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
7d29a247 1570
cac3069d 1571 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1572 sizeof(lsm.session.name));
1573
cac3069d 1574 return lttng_ctl_ask_sessiond(&lsm, NULL);
8c0faa1d 1575}
1df4dedd 1576
2ef84c95 1577/*
9ae110e2
JG
1578 * All tracing will be stopped for registered events of the channel.
1579 * Returns size of returned session payload data or a negative error code.
2ef84c95 1580 */
cd80958d 1581int lttng_disable_channel(struct lttng_handle *handle, const char *name)
2ef84c95 1582{
cd80958d
DG
1583 struct lttcomm_session_msg lsm;
1584
9ae110e2 1585 /* Safety check. Both are mandatory. */
9d697d3d 1586 if (handle == NULL || name == NULL) {
2f70b271 1587 return -LTTNG_ERR_INVALID;
cd80958d
DG
1588 }
1589
441c16a7
MD
1590 memset(&lsm, 0, sizeof(lsm));
1591
cd80958d 1592 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1df4dedd 1593
cac3069d 1594 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
9d697d3d
DG
1595 sizeof(lsm.u.disable.channel_name));
1596
cac3069d 1597 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cd80958d 1598
cac3069d 1599 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1600 sizeof(lsm.session.name));
1601
cac3069d 1602 return lttng_ctl_ask_sessiond(&lsm, NULL);
ca95a216
DG
1603}
1604
ccf10263 1605/*
9ae110e2
JG
1606 * Add PID to session tracker.
1607 * Return 0 on success else a negative LTTng error code.
ccf10263
MD
1608 */
1609int lttng_track_pid(struct lttng_handle *handle, int pid)
1610{
1611 struct lttcomm_session_msg lsm;
1612
9ae110e2 1613 /* NULL arguments are forbidden. No default values. */
ccf10263
MD
1614 if (handle == NULL) {
1615 return -LTTNG_ERR_INVALID;
1616 }
1617
1618 memset(&lsm, 0, sizeof(lsm));
1619
1620 lsm.cmd_type = LTTNG_TRACK_PID;
1621 lsm.u.pid_tracker.pid = pid;
1622
1623 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1624
1625 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1626 sizeof(lsm.session.name));
1627
1628 return lttng_ctl_ask_sessiond(&lsm, NULL);
1629}
1630
1631/*
9ae110e2
JG
1632 * Remove PID from session tracker.
1633 * Return 0 on success else a negative LTTng error code.
ccf10263
MD
1634 */
1635int lttng_untrack_pid(struct lttng_handle *handle, int pid)
1636{
1637 struct lttcomm_session_msg lsm;
1638
9ae110e2 1639 /* NULL arguments are forbidden. No default values. */
ccf10263
MD
1640 if (handle == NULL) {
1641 return -LTTNG_ERR_INVALID;
1642 }
1643
1644 memset(&lsm, 0, sizeof(lsm));
1645
1646 lsm.cmd_type = LTTNG_UNTRACK_PID;
1647 lsm.u.pid_tracker.pid = pid;
1648
1649 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1650
1651 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1652 sizeof(lsm.session.name));
1653
1654 return lttng_ctl_ask_sessiond(&lsm, NULL);
1655}
1656
fac6795d 1657/*
9ae110e2
JG
1658 * Lists all available tracepoints of domain.
1659 * Sets the contents of the events array.
1660 * Returns the number of lttng_event entries in events;
1661 * on error, returns a negative value.
fac6795d 1662 */
cd80958d 1663int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 1664 struct lttng_event **events)
fac6795d 1665{
052da939 1666 int ret;
cd80958d
DG
1667 struct lttcomm_session_msg lsm;
1668
9d697d3d 1669 if (handle == NULL) {
2f70b271 1670 return -LTTNG_ERR_INVALID;
cd80958d 1671 }
fac6795d 1672
53efb85a 1673 memset(&lsm, 0, sizeof(lsm));
cd80958d 1674 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
cac3069d 1675 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2a71efd5 1676
cac3069d 1677 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
052da939
DG
1678 if (ret < 0) {
1679 return ret;
eb354453 1680 }
fac6795d 1681
9f19cc17 1682 return ret / sizeof(struct lttng_event);
fac6795d
DG
1683}
1684
f37d259d 1685/*
9ae110e2
JG
1686 * Lists all available tracepoint fields of domain.
1687 * Sets the contents of the event field array.
1688 * Returns the number of lttng_event_field entries in events;
1689 * on error, returns a negative value.
f37d259d
MD
1690 */
1691int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1692 struct lttng_event_field **fields)
1693{
1694 int ret;
1695 struct lttcomm_session_msg lsm;
1696
1697 if (handle == NULL) {
2f70b271 1698 return -LTTNG_ERR_INVALID;
f37d259d
MD
1699 }
1700
53efb85a 1701 memset(&lsm, 0, sizeof(lsm));
f37d259d 1702 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
cac3069d 1703 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f37d259d 1704
cac3069d 1705 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
f37d259d
MD
1706 if (ret < 0) {
1707 return ret;
1708 }
1709
1710 return ret / sizeof(struct lttng_event_field);
1711}
1712
834978fd 1713/*
9ae110e2
JG
1714 * Lists all available kernel system calls. Allocates and sets the contents of
1715 * the events array.
834978fd 1716 *
9ae110e2
JG
1717 * Returns the number of lttng_event entries in events; on error, returns a
1718 * negative value.
834978fd
DG
1719 */
1720int lttng_list_syscalls(struct lttng_event **events)
1721{
1722 int ret;
1723 struct lttcomm_session_msg lsm;
1724
1725 if (!events) {
1726 return -LTTNG_ERR_INVALID;
1727 }
1728
1729 memset(&lsm, 0, sizeof(lsm));
1730 lsm.cmd_type = LTTNG_LIST_SYSCALLS;
1731 /* Force kernel domain for system calls. */
1732 lsm.domain.type = LTTNG_DOMAIN_KERNEL;
1733
1734 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
1735 if (ret < 0) {
1736 return ret;
1737 }
1738
1739 return ret / sizeof(struct lttng_event);
1740}
1741
1657e9bb 1742/*
9ae110e2
JG
1743 * Returns a human readable string describing
1744 * the error code (a negative value).
1657e9bb 1745 */
9a745bc7 1746const char *lttng_strerror(int code)
1657e9bb 1747{
f73fabfd 1748 return error_get_str(code);
1657e9bb
DG
1749}
1750
aaf97519 1751/*
a4b92340
DG
1752 * Create a brand new session using name and url for destination.
1753 *
f73fabfd 1754 * Returns LTTNG_OK on success or a negative error code.
00e2e675 1755 */
a4b92340 1756int lttng_create_session(const char *name, const char *url)
00e2e675 1757{
3dd05a85 1758 int ret;
a4b92340 1759 ssize_t size;
00e2e675 1760 struct lttcomm_session_msg lsm;
a4b92340 1761 struct lttng_uri *uris = NULL;
00e2e675 1762
a4b92340 1763 if (name == NULL) {
2f70b271 1764 return -LTTNG_ERR_INVALID;
00e2e675
DG
1765 }
1766
a4b92340 1767 memset(&lsm, 0, sizeof(lsm));
00e2e675 1768
a4b92340 1769 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1770 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
a4b92340
DG
1771
1772 /* There should never be a data URL */
bc894455 1773 size = uri_parse_str_urls(url, NULL, &uris);
a4b92340 1774 if (size < 0) {
2f70b271 1775 return -LTTNG_ERR_INVALID;
00e2e675
DG
1776 }
1777
a4b92340
DG
1778 lsm.u.uri.size = size;
1779
795a978d 1780 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
cac3069d 1781 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1782
1783 free(uris);
1784 return ret;
00e2e675
DG
1785}
1786
818ea544
JR
1787/*
1788 * Clear the session
1789 */
1790int lttng_clear_session(const char *session_name)
1791{
1792 struct lttcomm_session_msg lsm;
1793
1794 if (session_name == NULL) {
1795 return -LTTNG_ERR_INVALID;
1796 }
1797
1798 memset(&lsm, 0, sizeof(lsm));
1799
1800 lsm.cmd_type = LTTNG_CLEAR_SESSION;
1801 lttng_ctl_copy_string(lsm.session.name, session_name,
1802 sizeof(lsm.session.name));
1803
1804 return lttng_ctl_ask_sessiond(&lsm, NULL);
1805}
1806
8028d920 1807/*
9ae110e2
JG
1808 * Destroy session using name.
1809 * Returns size of returned session payload data or a negative error code.
8028d920 1810 */
8fd2c92c 1811static
e20ee7c2 1812int _lttng_destroy_session(const char *session_name)
8028d920 1813{
cd80958d
DG
1814 struct lttcomm_session_msg lsm;
1815
843f5df9 1816 if (session_name == NULL) {
2f70b271 1817 return -LTTNG_ERR_INVALID;
cd80958d
DG
1818 }
1819
53efb85a 1820 memset(&lsm, 0, sizeof(lsm));
cd80958d 1821 lsm.cmd_type = LTTNG_DESTROY_SESSION;
843f5df9 1822
cac3069d
DG
1823 lttng_ctl_copy_string(lsm.session.name, session_name,
1824 sizeof(lsm.session.name));
cd80958d 1825
cac3069d 1826 return lttng_ctl_ask_sessiond(&lsm, NULL);
aaf97519
DG
1827}
1828
e20ee7c2
JD
1829/*
1830 * Stop the session and wait for the data before destroying it
1831 */
1832int lttng_destroy_session(const char *session_name)
1833{
1834 int ret;
1835
1836 /*
1837 * Stop the tracing and wait for the data.
1838 */
1839 ret = _lttng_stop_tracing(session_name, 1);
1840 if (ret && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
1841 goto end;
1842 }
1843
1844 ret = _lttng_destroy_session(session_name);
1845end:
1846 return ret;
1847}
1848
1849/*
1850 * Destroy the session without waiting for the data.
1851 */
1852int lttng_destroy_session_no_wait(const char *session_name)
1853{
1854 int ret;
1855
1856 /*
1857 * Stop the tracing without waiting for the data.
1858 * The session might already have been stopped, so just
1859 * skip this error.
1860 */
1861 ret = _lttng_stop_tracing(session_name, 0);
1862 if (ret && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
1863 goto end;
1864 }
1865
1866 ret = _lttng_destroy_session(session_name);
1867end:
1868 return ret;
1869}
1870
57167058 1871/*
9ae110e2
JG
1872 * Ask the session daemon for all available sessions.
1873 * Sets the contents of the sessions array.
1874 * Returns the number of lttng_session entries in sessions;
1875 * on error, returns a negative value.
57167058 1876 */
ca95a216 1877int lttng_list_sessions(struct lttng_session **sessions)
57167058 1878{
ca95a216 1879 int ret;
cd80958d 1880 struct lttcomm_session_msg lsm;
57167058 1881
53efb85a 1882 memset(&lsm, 0, sizeof(lsm));
cd80958d 1883 lsm.cmd_type = LTTNG_LIST_SESSIONS;
cac3069d 1884 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
57167058 1885 if (ret < 0) {
ca95a216 1886 return ret;
57167058
DG
1887 }
1888
ca95a216 1889 return ret / sizeof(struct lttng_session);
57167058
DG
1890}
1891
d7ba1388
MD
1892int lttng_set_session_shm_path(const char *session_name,
1893 const char *shm_path)
1894{
1895 struct lttcomm_session_msg lsm;
1896
1897 if (session_name == NULL) {
1898 return -LTTNG_ERR_INVALID;
1899 }
1900
1901 memset(&lsm, 0, sizeof(lsm));
1902 lsm.cmd_type = LTTNG_SET_SESSION_SHM_PATH;
1903
1904 lttng_ctl_copy_string(lsm.session.name, session_name,
1905 sizeof(lsm.session.name));
1906 lttng_ctl_copy_string(lsm.u.set_shm_path.shm_path, shm_path,
1907 sizeof(lsm.u.set_shm_path.shm_path));
1908
1909 return lttng_ctl_ask_sessiond(&lsm, NULL);
1910}
1911
9f19cc17 1912/*
9ae110e2
JG
1913 * Ask the session daemon for all available domains of a session.
1914 * Sets the contents of the domains array.
1915 * Returns the number of lttng_domain entries in domains;
1916 * on error, returns a negative value.
9f19cc17 1917 */
330be774 1918int lttng_list_domains(const char *session_name,
cd80958d 1919 struct lttng_domain **domains)
9f19cc17
DG
1920{
1921 int ret;
cd80958d
DG
1922 struct lttcomm_session_msg lsm;
1923
330be774 1924 if (session_name == NULL) {
2f70b271 1925 return -LTTNG_ERR_INVALID;
cd80958d 1926 }
9f19cc17 1927
53efb85a 1928 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
1929 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1930
cac3069d
DG
1931 lttng_ctl_copy_string(lsm.session.name, session_name,
1932 sizeof(lsm.session.name));
cd80958d 1933
cac3069d 1934 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
9f19cc17
DG
1935 if (ret < 0) {
1936 return ret;
1937 }
1938
1939 return ret / sizeof(struct lttng_domain);
1940}
1941
1942/*
9ae110e2
JG
1943 * Ask the session daemon for all available channels of a session.
1944 * Sets the contents of the channels array.
1945 * Returns the number of lttng_channel entries in channels;
1946 * on error, returns a negative value.
9f19cc17 1947 */
cd80958d
DG
1948int lttng_list_channels(struct lttng_handle *handle,
1949 struct lttng_channel **channels)
9f19cc17
DG
1950{
1951 int ret;
53e367f9
JG
1952 size_t channel_count, i;
1953 const size_t channel_size = sizeof(struct lttng_channel) +
cf0bcb51 1954 sizeof(struct lttng_channel_extended);
cd80958d 1955 struct lttcomm_session_msg lsm;
53e367f9 1956 void *extended_at;
cd80958d 1957
9d697d3d 1958 if (handle == NULL) {
53e367f9
JG
1959 ret = -LTTNG_ERR_INVALID;
1960 goto end;
cd80958d
DG
1961 }
1962
53efb85a 1963 memset(&lsm, 0, sizeof(lsm));
cd80958d 1964 lsm.cmd_type = LTTNG_LIST_CHANNELS;
cac3069d 1965 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1966 sizeof(lsm.session.name));
9f19cc17 1967
cac3069d 1968 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1969
cac3069d 1970 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
9f19cc17 1971 if (ret < 0) {
53e367f9
JG
1972 goto end;
1973 }
1974
1975 if (ret % channel_size) {
1976 ret = -LTTNG_ERR_UNK;
1977 free(*channels);
1978 *channels = NULL;
1979 goto end;
9f19cc17 1980 }
53e367f9 1981 channel_count = (size_t) ret / channel_size;
9f19cc17 1982
53e367f9
JG
1983 /* Set extended info pointers */
1984 extended_at = ((void *) *channels) +
1985 channel_count * sizeof(struct lttng_channel);
1986 for (i = 0; i < channel_count; i++) {
1987 struct lttng_channel *chan = &(*channels)[i];
1988
1989 chan->attr.extended.ptr = extended_at;
cf0bcb51 1990 extended_at += sizeof(struct lttng_channel_extended);
53e367f9
JG
1991 }
1992
1993 ret = (int) channel_count;
1994end:
1995 return ret;
9f19cc17
DG
1996}
1997
1998/*
9ae110e2
JG
1999 * Ask the session daemon for all available events of a session channel.
2000 * Sets the contents of the events array.
2001 * Returns the number of lttng_event entries in events;
2002 * on error, returns a negative value.
9f19cc17 2003 */
cd80958d
DG
2004int lttng_list_events(struct lttng_handle *handle,
2005 const char *channel_name, struct lttng_event **events)
9f19cc17
DG
2006{
2007 int ret;
cd80958d 2008 struct lttcomm_session_msg lsm;
b4e3ceb9
PP
2009 struct lttcomm_event_command_header *cmd_header = NULL;
2010 size_t cmd_header_len;
2011 uint32_t nb_events, i;
de453daa 2012 void *comm_ext_at;
de453daa 2013 char *reception_buffer = NULL;
56f0bc67 2014 struct lttng_dynamic_buffer listing;
de453daa 2015 size_t storage_req;
9f19cc17 2016
9d697d3d
DG
2017 /* Safety check. An handle and channel name are mandatory */
2018 if (handle == NULL || channel_name == NULL) {
2f70b271 2019 return -LTTNG_ERR_INVALID;
cd80958d
DG
2020 }
2021
53efb85a 2022 memset(&lsm, 0, sizeof(lsm));
cd80958d 2023 lsm.cmd_type = LTTNG_LIST_EVENTS;
cac3069d 2024 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 2025 sizeof(lsm.session.name));
cac3069d 2026 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
cd80958d 2027 sizeof(lsm.u.list.channel_name));
cac3069d 2028 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 2029
a04d53fc 2030 ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm, NULL, 0, NULL, 0,
de453daa
JG
2031 (void **) &reception_buffer, (void **) &cmd_header,
2032 &cmd_header_len);
9f19cc17 2033 if (ret < 0) {
de453daa 2034 goto end;
9f19cc17
DG
2035 }
2036
d9f484bc
JG
2037 if (!cmd_header) {
2038 ret = -LTTNG_ERR_UNK;
2039 goto end;
2040 }
2041
b4e3ceb9
PP
2042 /* Set number of events and free command header */
2043 nb_events = cmd_header->nb_events;
2044 if (nb_events > INT_MAX) {
2045 ret = -EOVERFLOW;
de453daa 2046 goto end;
b4e3ceb9 2047 }
b4e3ceb9
PP
2048 free(cmd_header);
2049 cmd_header = NULL;
2050
de453daa
JG
2051 /*
2052 * The buffer that is returned must contain a "flat" version of
2053 * the events that are returned. In other words, all pointers
2054 * within an lttng_event must point to a location within the returned
56f0bc67
JG
2055 * buffer so that the user may free everything by simply calling free()
2056 * on the returned buffer. This is needed in order to maintain API
de453daa
JG
2057 * compatibility.
2058 *
56f0bc67
JG
2059 * A first pass is performed to compute the size of the buffer that
2060 * must be allocated. A second pass is then performed to setup
de453daa
JG
2061 * the returned events so that their members always point within the
2062 * buffer.
2063 *
2064 * The layout of the returned buffer is as follows:
2065 * - struct lttng_event[nb_events],
2066 * - nb_events times the following:
2067 * - struct lttng_event_extended,
2068 * - flattened version of userspace_probe_location
2069 * - filter_expression
2070 * - exclusions
2071 * - padding to align to 64-bits
2072 */
2073 comm_ext_at = reception_buffer +
2074 (nb_events * sizeof(struct lttng_event));
2075 storage_req = nb_events * sizeof(struct lttng_event);
b4e3ceb9
PP
2076
2077 for (i = 0; i < nb_events; i++) {
de453daa
JG
2078 struct lttcomm_event_extended_header *ext_comm =
2079 (struct lttcomm_event_extended_header *) comm_ext_at;
56f0bc67 2080 int probe_storage_req = 0;
b4e3ceb9 2081
de453daa
JG
2082 comm_ext_at += sizeof(*ext_comm);
2083 comm_ext_at += ext_comm->filter_len;
2084 comm_ext_at +=
2085 ext_comm->nb_exclusions * LTTNG_SYMBOL_NAME_LEN;
2086
56f0bc67
JG
2087 if (ext_comm->userspace_probe_location_len) {
2088 struct lttng_userspace_probe_location *probe_location = NULL;
2089 struct lttng_buffer_view probe_location_view;
2090
2091 probe_location_view = lttng_buffer_view_init(
2092 comm_ext_at, 0,
2093 ext_comm->userspace_probe_location_len);
2094
2095 /*
2096 * Create a temporary userspace probe location to
2097 * determine the size needed by a "flattened" version
2098 * of that same probe location.
2099 */
2100 ret = lttng_userspace_probe_location_create_from_buffer(
2101 &probe_location_view, &probe_location);
2102 if (ret < 0) {
2103 ret = -LTTNG_ERR_PROBE_LOCATION_INVAL;
2104 goto end;
2105 }
2106
2107 ret = lttng_userspace_probe_location_flatten(
2108 probe_location, NULL);
2109 lttng_userspace_probe_location_destroy(probe_location);
2110 if (ret < 0) {
2111 ret = -LTTNG_ERR_PROBE_LOCATION_INVAL;
2112 goto end;
2113 }
2114
2115 probe_storage_req = ret;
2116 comm_ext_at += ext_comm->userspace_probe_location_len;
56f0bc67
JG
2117 }
2118
de453daa 2119 storage_req += sizeof(struct lttng_event_extended);
de453daa
JG
2120 storage_req += ext_comm->filter_len;
2121 storage_req += ext_comm->nb_exclusions * LTTNG_SYMBOL_NAME_LEN;
56f0bc67
JG
2122 /* Padding to ensure the flat probe is aligned. */
2123 storage_req = ALIGN_TO(storage_req, sizeof(uint64_t));
2124 storage_req += probe_storage_req;
b4e3ceb9
PP
2125 }
2126
56f0bc67
JG
2127 lttng_dynamic_buffer_init(&listing);
2128 /*
2129 * We must ensure that "listing" is never resized so as to preserve
2130 * the validity of the flattened objects.
2131 */
2132 ret = lttng_dynamic_buffer_set_capacity(&listing, storage_req);
2133 if (ret) {
2134 ret = -LTTNG_ERR_NOMEM;
de453daa
JG
2135 goto end;
2136 }
56f0bc67
JG
2137
2138 ret = lttng_dynamic_buffer_append(&listing, reception_buffer,
2139 nb_events * sizeof(struct lttng_event));
2140 if (ret) {
2141 ret = -LTTNG_ERR_NOMEM;
2142 goto free_dynamic_buffer;
2143 }
de453daa
JG
2144
2145 comm_ext_at = reception_buffer +
56f0bc67 2146 (nb_events * sizeof(struct lttng_event));
de453daa
JG
2147 for (i = 0; i < nb_events; i++) {
2148 struct lttng_event *event = (struct lttng_event *)
56f0bc67 2149 (listing.data + (sizeof(struct lttng_event) * i));
de453daa
JG
2150 struct lttcomm_event_extended_header *ext_comm =
2151 (struct lttcomm_event_extended_header *) comm_ext_at;
2152 struct lttng_event_extended *event_extended =
56f0bc67
JG
2153 (struct lttng_event_extended *)
2154 (listing.data + listing.size);
de453daa 2155
56f0bc67
JG
2156 /* Insert struct lttng_event_extended. */
2157 ret = lttng_dynamic_buffer_set_size(&listing,
2158 listing.size + sizeof(*event_extended));
2159 if (ret) {
2160 ret = -LTTNG_ERR_NOMEM;
2161 goto free_dynamic_buffer;
2162 }
de453daa 2163 event->extended.ptr = event_extended;
56f0bc67 2164
de453daa
JG
2165 comm_ext_at += sizeof(*ext_comm);
2166
56f0bc67
JG
2167 /* Insert filter expression. */
2168 if (ext_comm->filter_len) {
2169 event_extended->filter_expression = listing.data +
2170 listing.size;
2171 ret = lttng_dynamic_buffer_append(&listing, comm_ext_at,
2172 ext_comm->filter_len);
2173 if (ret) {
2174 ret = -LTTNG_ERR_NOMEM;
2175 goto free_dynamic_buffer;
2176 }
2177 comm_ext_at += ext_comm->filter_len;
2178 }
2179
2180 /* Insert exclusions. */
2181 if (ext_comm->nb_exclusions) {
2182 event_extended->exclusions.count =
2183 ext_comm->nb_exclusions;
2184 event_extended->exclusions.strings =
2185 listing.data + listing.size;
2186
2187 ret = lttng_dynamic_buffer_append(&listing,
2188 comm_ext_at,
2189 ext_comm->nb_exclusions * LTTNG_SYMBOL_NAME_LEN);
2190 if (ret) {
2191 ret = -LTTNG_ERR_NOMEM;
5e4f4898 2192 goto free_dynamic_buffer;
56f0bc67
JG
2193 }
2194 comm_ext_at += ext_comm->nb_exclusions * LTTNG_SYMBOL_NAME_LEN;
2195 }
2196
2197 /* Insert padding to align to 64-bits. */
2198 ret = lttng_dynamic_buffer_set_size(&listing,
2199 ALIGN_TO(listing.size, sizeof(uint64_t)));
2200 if (ret) {
2201 ret = -LTTNG_ERR_NOMEM;
2202 goto free_dynamic_buffer;
2203 }
2204
2205 /* Insert flattened userspace probe location. */
2206 if (ext_comm->userspace_probe_location_len) {
2207 struct lttng_userspace_probe_location *probe_location = NULL;
2208 struct lttng_buffer_view probe_location_view;
de453daa 2209
56f0bc67
JG
2210 probe_location_view = lttng_buffer_view_init(
2211 comm_ext_at, 0,
2212 ext_comm->userspace_probe_location_len);
de453daa 2213
56f0bc67
JG
2214 ret = lttng_userspace_probe_location_create_from_buffer(
2215 &probe_location_view, &probe_location);
2216 if (ret < 0) {
2217 ret = -LTTNG_ERR_PROBE_LOCATION_INVAL;
2218 goto free_dynamic_buffer;
2219 }
2220
2221 event_extended->probe_location = (struct lttng_userspace_probe_location *)
2222 (listing.data + listing.size);
2223 ret = lttng_userspace_probe_location_flatten(
2224 probe_location, &listing);
2225 lttng_userspace_probe_location_destroy(probe_location);
2226 if (ret < 0) {
2227 ret = -LTTNG_ERR_PROBE_LOCATION_INVAL;
2228 goto free_dynamic_buffer;
2229 }
2230
2231 comm_ext_at += ext_comm->userspace_probe_location_len;
2232 }
de453daa
JG
2233 }
2234
56f0bc67
JG
2235 /* Don't reset listing buffer as we return its content. */
2236 *events = (struct lttng_event *) listing.data;
2237 lttng_dynamic_buffer_init(&listing);
de453daa 2238 ret = (int) nb_events;
56f0bc67
JG
2239free_dynamic_buffer:
2240 lttng_dynamic_buffer_reset(&listing);
de453daa 2241end:
b4e3ceb9 2242 free(cmd_header);
de453daa 2243 free(reception_buffer);
b4e3ceb9 2244 return ret;
9f19cc17
DG
2245}
2246
fac6795d 2247/*
1c8d13c8
TD
2248 * Sets the tracing_group variable with name.
2249 * This function allocates memory pointed to by tracing_group.
2250 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
fac6795d
DG
2251 */
2252int lttng_set_tracing_group(const char *name)
2253{
9d697d3d 2254 if (name == NULL) {
2f70b271 2255 return -LTTNG_ERR_INVALID;
9d697d3d
DG
2256 }
2257
fac6795d 2258 if (asprintf(&tracing_group, "%s", name) < 0) {
2f70b271 2259 return -LTTNG_ERR_FATAL;
fac6795d
DG
2260 }
2261
2262 return 0;
2263}
2264
cd80958d 2265int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
2266 struct lttng_calibrate *calibrate)
2267{
b812e5ca
PP
2268 /*
2269 * This command was removed in LTTng 2.9.
2270 */
2271 return -LTTNG_ERR_UND;
d0254c7c
MD
2272}
2273
5edd7e09
DG
2274/*
2275 * Set default channel attributes.
441c16a7 2276 * If either or both of the arguments are null, attr content is zeroe'd.
5edd7e09
DG
2277 */
2278void lttng_channel_set_default_attr(struct lttng_domain *domain,
2279 struct lttng_channel_attr *attr)
2280{
294851b0 2281 struct lttng_channel_extended *extended;
cf0bcb51 2282
5edd7e09
DG
2283 /* Safety check */
2284 if (attr == NULL || domain == NULL) {
2285 return;
2286 }
2287
294851b0 2288 extended = (struct lttng_channel_extended *) attr->extended.ptr;
eacaa7a6
DS
2289 memset(attr, 0, sizeof(struct lttng_channel_attr));
2290
0a9c6494
DG
2291 /* Same for all domains. */
2292 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
2293 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
2294 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
2295
5edd7e09
DG
2296 switch (domain->type) {
2297 case LTTNG_DOMAIN_KERNEL:
9ae110e2
JG
2298 attr->switch_timer_interval =
2299 DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
d92ff3ef 2300 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
3e230f92 2301 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
5edd7e09
DG
2302 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
2303 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
cf0bcb51
JG
2304 if (extended) {
2305 extended->monitor_timer_interval =
2306 DEFAULT_KERNEL_CHANNEL_MONITOR_TIMER;
491d1539
MD
2307 extended->blocking_timeout =
2308 DEFAULT_KERNEL_CHANNEL_BLOCKING_TIMEOUT;
cf0bcb51 2309 }
5edd7e09
DG
2310 break;
2311 case LTTNG_DOMAIN_UST:
0a9c6494
DG
2312 switch (domain->buf_type) {
2313 case LTTNG_BUFFER_PER_UID:
2314 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
2315 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
2316 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
9ae110e2
JG
2317 attr->switch_timer_interval =
2318 DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
2319 attr->read_timer_interval =
2320 DEFAULT_UST_UID_CHANNEL_READ_TIMER;
cf0bcb51
JG
2321 if (extended) {
2322 extended->monitor_timer_interval =
2323 DEFAULT_UST_UID_CHANNEL_MONITOR_TIMER;
491d1539
MD
2324 extended->blocking_timeout =
2325 DEFAULT_UST_UID_CHANNEL_BLOCKING_TIMEOUT;
cf0bcb51 2326 }
0a9c6494
DG
2327 break;
2328 case LTTNG_BUFFER_PER_PID:
2329 default:
2330 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
2331 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
2332 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
9ae110e2
JG
2333 attr->switch_timer_interval =
2334 DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
2335 attr->read_timer_interval =
2336 DEFAULT_UST_PID_CHANNEL_READ_TIMER;
cf0bcb51
JG
2337 if (extended) {
2338 extended->monitor_timer_interval =
2339 DEFAULT_UST_PID_CHANNEL_MONITOR_TIMER;
491d1539
MD
2340 extended->blocking_timeout =
2341 DEFAULT_UST_PID_CHANNEL_BLOCKING_TIMEOUT;
cf0bcb51 2342 }
0a9c6494
DG
2343 break;
2344 }
5edd7e09 2345 default:
441c16a7 2346 /* Default behavior: leave set to 0. */
5edd7e09
DG
2347 break;
2348 }
cf0bcb51
JG
2349
2350 attr->extended.ptr = extended;
5edd7e09
DG
2351}
2352
5ba3702f
JG
2353int lttng_channel_get_discarded_event_count(struct lttng_channel *channel,
2354 uint64_t *discarded_events)
2355{
2356 int ret = 0;
cf0bcb51 2357 struct lttng_channel_extended *chan_ext;
5ba3702f
JG
2358
2359 if (!channel || !discarded_events) {
2360 ret = -LTTNG_ERR_INVALID;
2361 goto end;
2362 }
2363
2364 chan_ext = channel->attr.extended.ptr;
2365 if (!chan_ext) {
2366 /*
2367 * This can happen since the lttng_channel structure is
2368 * used for other tasks where this pointer is never set.
2369 */
2370 *discarded_events = 0;
2371 goto end;
2372 }
2373
2374 *discarded_events = chan_ext->discarded_events;
2375end:
2376 return ret;
2377}
2378
2379int lttng_channel_get_lost_packet_count(struct lttng_channel *channel,
2380 uint64_t *lost_packets)
2381{
2382 int ret = 0;
cf0bcb51 2383 struct lttng_channel_extended *chan_ext;
5ba3702f
JG
2384
2385 if (!channel || !lost_packets) {
2386 ret = -LTTNG_ERR_INVALID;
2387 goto end;
2388 }
2389
2390 chan_ext = channel->attr.extended.ptr;
2391 if (!chan_ext) {
2392 /*
2393 * This can happen since the lttng_channel structure is
2394 * used for other tasks where this pointer is never set.
2395 */
2396 *lost_packets = 0;
2397 goto end;
2398 }
2399
2400 *lost_packets = chan_ext->lost_packets;
2401end:
2402 return ret;
2403}
2404
cf0bcb51
JG
2405int lttng_channel_get_monitor_timer_interval(struct lttng_channel *chan,
2406 uint64_t *monitor_timer_interval)
2407{
2408 int ret = 0;
2409
2410 if (!chan || !monitor_timer_interval) {
2411 ret = -LTTNG_ERR_INVALID;
2412 goto end;
2413 }
2414
2415 if (!chan->attr.extended.ptr) {
2416 ret = -LTTNG_ERR_INVALID;
2417 goto end;
2418 }
2419
2420 *monitor_timer_interval = ((struct lttng_channel_extended *)
2421 chan->attr.extended.ptr)->monitor_timer_interval;
2422end:
2423 return ret;
2424}
2425
2426int lttng_channel_set_monitor_timer_interval(struct lttng_channel *chan,
2427 uint64_t monitor_timer_interval)
2428{
2429 int ret = 0;
2430
2431 if (!chan || !chan->attr.extended.ptr) {
2432 ret = -LTTNG_ERR_INVALID;
2433 goto end;
2434 }
2435
2436 ((struct lttng_channel_extended *)
2437 chan->attr.extended.ptr)->monitor_timer_interval =
2438 monitor_timer_interval;
2439end:
2440 return ret;
2441}
2442
491d1539
MD
2443int lttng_channel_get_blocking_timeout(struct lttng_channel *chan,
2444 int64_t *blocking_timeout)
2445{
2446 int ret = 0;
2447
2448 if (!chan || !blocking_timeout) {
2449 ret = -LTTNG_ERR_INVALID;
2450 goto end;
2451 }
2452
2453 if (!chan->attr.extended.ptr) {
2454 ret = -LTTNG_ERR_INVALID;
2455 goto end;
2456 }
2457
2458 *blocking_timeout = ((struct lttng_channel_extended *)
2459 chan->attr.extended.ptr)->blocking_timeout;
2460end:
2461 return ret;
2462}
2463
2464int lttng_channel_set_blocking_timeout(struct lttng_channel *chan,
2465 int64_t blocking_timeout)
2466{
2467 int ret = 0;
2468 int64_t msec_timeout;
2469
2470 if (!chan || !chan->attr.extended.ptr) {
2471 ret = -LTTNG_ERR_INVALID;
2472 goto end;
2473 }
2474
2475 if (blocking_timeout < 0 && blocking_timeout != -1) {
2476 ret = -LTTNG_ERR_INVALID;
2477 goto end;
2478 }
2479
2480 /*
2481 * LTTng-ust's use of poll() to implement this timeout mechanism forces
2482 * us to accept a narrower range of values (msecs expressed as a signed
2483 * 32-bit integer).
2484 */
2485 msec_timeout = blocking_timeout / 1000;
2486 if (msec_timeout != (int32_t) msec_timeout) {
2487 ret = -LTTNG_ERR_INVALID;
2488 goto end;
2489 }
2490
2491 ((struct lttng_channel_extended *)
2492 chan->attr.extended.ptr)->blocking_timeout =
2493 blocking_timeout;
2494end:
2495 return ret;
2496}
2497
fac6795d 2498/*
2269e89e 2499 * Check if session daemon is alive.
fac6795d 2500 *
2269e89e 2501 * Return 1 if alive or 0 if not.
1c8d13c8 2502 * On error returns a negative value.
fac6795d 2503 */
947308c4 2504int lttng_session_daemon_alive(void)
fac6795d
DG
2505{
2506 int ret;
2507
2508 ret = set_session_daemon_path();
2509 if (ret < 0) {
9ae110e2 2510 /* Error. */
fac6795d
DG
2511 return ret;
2512 }
2513
9d035200 2514 if (*sessiond_sock_path == '\0') {
2f70b271 2515 /*
9ae110e2
JG
2516 * No socket path set. Weird error which means the constructor
2517 * was not called.
2f70b271
DG
2518 */
2519 assert(0);
fac6795d
DG
2520 }
2521
2269e89e 2522 ret = try_connect_sessiond(sessiond_sock_path);
7d8234d9 2523 if (ret < 0) {
9ae110e2 2524 /* Not alive. */
7d8234d9
MD
2525 return 0;
2526 }
7d8234d9 2527
9ae110e2 2528 /* Is alive. */
947308c4 2529 return 1;
fac6795d
DG
2530}
2531
00e2e675 2532/*
a4b92340 2533 * Set URL for a consumer for a session and domain.
00e2e675
DG
2534 *
2535 * Return 0 on success, else a negative value.
2536 */
a4b92340
DG
2537int lttng_set_consumer_url(struct lttng_handle *handle,
2538 const char *control_url, const char *data_url)
00e2e675 2539{
3dd05a85 2540 int ret;
a4b92340 2541 ssize_t size;
00e2e675 2542 struct lttcomm_session_msg lsm;
a4b92340 2543 struct lttng_uri *uris = NULL;
00e2e675 2544
a4b92340 2545 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
2f70b271 2546 return -LTTNG_ERR_INVALID;
00e2e675
DG
2547 }
2548
a4b92340
DG
2549 memset(&lsm, 0, sizeof(lsm));
2550
00e2e675
DG
2551 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
2552
cac3069d 2553 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
00e2e675 2554 sizeof(lsm.session.name));
cac3069d 2555 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
00e2e675 2556
bc894455 2557 size = uri_parse_str_urls(control_url, data_url, &uris);
a4b92340 2558 if (size < 0) {
2f70b271 2559 return -LTTNG_ERR_INVALID;
a4b92340
DG
2560 }
2561
2562 lsm.u.uri.size = size;
00e2e675 2563
795a978d 2564 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
cac3069d 2565 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
2566
2567 free(uris);
2568 return ret;
00e2e675
DG
2569}
2570
2571/*
9c6bda17 2572 * [OBSOLETE]
00e2e675
DG
2573 */
2574int lttng_enable_consumer(struct lttng_handle *handle)
2575{
785d2d0d 2576 return -ENOSYS;
00e2e675
DG
2577}
2578
2579/*
9c6bda17 2580 * [OBSOLETE]
00e2e675
DG
2581 */
2582int lttng_disable_consumer(struct lttng_handle *handle)
2583{
785d2d0d 2584 return -ENOSYS;
00e2e675
DG
2585}
2586
07424f16
DG
2587/*
2588 * This is an extension of create session that is ONLY and SHOULD only be used
2589 * by the lttng command line program. It exists to avoid using URI parsing in
2590 * the lttng client.
2591 *
2592 * We need the date and time for the trace path subdirectory for the case where
2593 * the user does NOT define one using either -o or -U. Using the normal
2594 * lttng_create_session API call, we have no clue on the session daemon side if
2595 * the URL was generated automatically by the client or define by the user.
2596 *
2597 * So this function "wrapper" is hidden from the public API, takes the datetime
2598 * string and appends it if necessary to the URI subdirectory before sending it
2599 * to the session daemon.
2600 *
2601 * With this extra function, the lttng_create_session call behavior is not
2602 * changed and the timestamp is appended to the URI on the session daemon side
2603 * if necessary.
2604 */
2605int _lttng_create_session_ext(const char *name, const char *url,
2606 const char *datetime)
2607{
3dd05a85 2608 int ret;
07424f16
DG
2609 ssize_t size;
2610 struct lttcomm_session_msg lsm;
2611 struct lttng_uri *uris = NULL;
2612
2bba9e53 2613 if (name == NULL || datetime == NULL) {
2f70b271 2614 return -LTTNG_ERR_INVALID;
07424f16
DG
2615 }
2616
2617 memset(&lsm, 0, sizeof(lsm));
2618
2619 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 2620 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
07424f16 2621
9ae110e2 2622 /* There should never be a data URL. */
bc894455 2623 size = uri_parse_str_urls(url, NULL, &uris);
07424f16 2624 if (size < 0) {
3dd05a85
DG
2625 ret = -LTTNG_ERR_INVALID;
2626 goto error;
07424f16
DG
2627 }
2628
2629 lsm.u.uri.size = size;
2630
4b35a6b3 2631 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
da4aa2b8
DG
2632 /* Don't append datetime if the name was automatically created. */
2633 if (strncmp(name, DEFAULT_SESSION_NAME "-",
2634 strlen(DEFAULT_SESSION_NAME) + 1)) {
2635 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
2636 name, datetime);
2637 } else {
2638 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
2639 }
07424f16
DG
2640 if (ret < 0) {
2641 PERROR("snprintf uri subdir");
3dd05a85
DG
2642 ret = -LTTNG_ERR_FATAL;
2643 goto error;
07424f16
DG
2644 }
2645 }
2646
795a978d 2647 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
cac3069d 2648 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
2649
2650error:
2651 free(uris);
2652 return ret;
07424f16
DG
2653}
2654
806e2684
DG
2655/*
2656 * For a given session name, this call checks if the data is ready to be read
2657 * or is still being extracted by the consumer(s) hence not ready to be used by
2658 * any readers.
2659 */
6d805429 2660int lttng_data_pending(const char *session_name)
806e2684
DG
2661{
2662 int ret;
2663 struct lttcomm_session_msg lsm;
f6151c55 2664 uint8_t *pending = NULL;
806e2684
DG
2665
2666 if (session_name == NULL) {
2667 return -LTTNG_ERR_INVALID;
2668 }
2669
53efb85a 2670 memset(&lsm, 0, sizeof(lsm));
6d805429 2671 lsm.cmd_type = LTTNG_DATA_PENDING;
806e2684 2672
cac3069d
DG
2673 lttng_ctl_copy_string(lsm.session.name, session_name,
2674 sizeof(lsm.session.name));
806e2684 2675
f6151c55
JG
2676 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &pending);
2677 if (ret < 0) {
2678 goto end;
2679 } else if (ret != 1) {
2680 /* Unexpected payload size */
2681 ret = -LTTNG_ERR_INVALID;
2682 goto end;
806e2684
DG
2683 }
2684
f6151c55
JG
2685 ret = (int) *pending;
2686end:
2687 free(pending);
806e2684
DG
2688 return ret;
2689}
2690
27babd3a
DG
2691/*
2692 * Create a session exclusively used for snapshot.
2693 *
2694 * Returns LTTNG_OK on success or a negative error code.
2695 */
2696int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
2697{
2698 int ret;
2699 ssize_t size;
2700 struct lttcomm_session_msg lsm;
2701 struct lttng_uri *uris = NULL;
2702
2703 if (name == NULL) {
2704 return -LTTNG_ERR_INVALID;
2705 }
2706
2707 memset(&lsm, 0, sizeof(lsm));
2708
2709 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
2710 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
2711
2712 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
2713 if (size < 0) {
2714 return -LTTNG_ERR_INVALID;
2715 }
2716
2717 lsm.u.uri.size = size;
2718
10d65351
JD
2719 /*
2720 * If the user does not specify a custom subdir, use the session name.
2721 */
2722 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
2723 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
2724 if (ret < 0) {
2725 PERROR("snprintf uri subdir");
2726 ret = -LTTNG_ERR_FATAL;
2727 goto error;
2728 }
2729 }
2730
795a978d 2731 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
27babd3a
DG
2732 sizeof(struct lttng_uri) * size, NULL);
2733
10d65351 2734error:
27babd3a
DG
2735 free(uris);
2736 return ret;
2737}
2738
ecc48a90
JD
2739/*
2740 * Create a session exclusively used for live.
2741 *
2742 * Returns LTTNG_OK on success or a negative error code.
2743 */
2744int lttng_create_session_live(const char *name, const char *url,
2745 unsigned int timer_interval)
2746{
2747 int ret;
2748 ssize_t size;
2749 struct lttcomm_session_msg lsm;
2750 struct lttng_uri *uris = NULL;
2751
92805ee4 2752 if (name == NULL || timer_interval == 0) {
ecc48a90
JD
2753 return -LTTNG_ERR_INVALID;
2754 }
2755
2756 memset(&lsm, 0, sizeof(lsm));
2757
2758 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
2759 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
2760
1a241656
DG
2761 if (url) {
2762 size = uri_parse_str_urls(url, NULL, &uris);
2763 if (size <= 0) {
2764 ret = -LTTNG_ERR_INVALID;
2765 goto end;
2766 }
ecc48a90 2767
1a241656
DG
2768 /* file:// is not accepted for live session. */
2769 if (uris[0].dtype == LTTNG_DST_PATH) {
2770 ret = -LTTNG_ERR_INVALID;
2771 goto end;
2772 }
2773 } else {
2774 size = 0;
ecc48a90
JD
2775 }
2776
2777 lsm.u.session_live.nb_uri = size;
2778 lsm.u.session_live.timer_interval = timer_interval;
2779
795a978d 2780 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
ecc48a90
JD
2781 sizeof(struct lttng_uri) * size, NULL);
2782
2783end:
2784 free(uris);
2785 return ret;
2786}
2787
a5dfbb9d
MD
2788/*
2789 * List PIDs in the tracker.
2790 *
1b18ce93
JG
2791 * enabled is set to whether the PID tracker is enabled.
2792 * pids is set to an allocated array of PIDs currently tracked. On
2793 * success, pids must be freed by the caller.
2794 * nr_pids is set to the number of entries contained by the pids array.
a5dfbb9d
MD
2795 *
2796 * Returns 0 on success, else a negative LTTng error code.
2797 */
2798int lttng_list_tracker_pids(struct lttng_handle *handle,
2799 int *_enabled, int32_t **_pids, size_t *_nr_pids)
2800{
ebbf5ab7
JR
2801 int ret;
2802 int enabled = 1;
a5dfbb9d
MD
2803 struct lttcomm_session_msg lsm;
2804 size_t nr_pids;
ff75c11e 2805 int32_t *pids = NULL;
a5dfbb9d
MD
2806
2807 if (handle == NULL) {
2808 return -LTTNG_ERR_INVALID;
2809 }
2810
2811 memset(&lsm, 0, sizeof(lsm));
2812 lsm.cmd_type = LTTNG_LIST_TRACKER_PIDS;
2813 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
2814 sizeof(lsm.session.name));
2815 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2816
2817 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &pids);
2818 if (ret < 0) {
2819 return ret;
2820 }
2821 nr_pids = ret / sizeof(int32_t);
de8218d4
JG
2822 if (nr_pids > 0 && !pids) {
2823 return -LTTNG_ERR_UNK;
2824 }
a5dfbb9d
MD
2825 if (nr_pids == 1 && pids[0] == -1) {
2826 free(pids);
2827 pids = NULL;
2828 enabled = 0;
2829 nr_pids = 0;
2830 }
2831 *_enabled = enabled;
2832 *_pids = pids;
2833 *_nr_pids = nr_pids;
2834 return 0;
2835}
2836
93ec662e
JD
2837/*
2838 * Regenerate the metadata for a session.
2839 * Return 0 on success, a negative error code on error.
2840 */
eded6438 2841int lttng_regenerate_metadata(const char *session_name)
93ec662e
JD
2842{
2843 int ret;
2844 struct lttcomm_session_msg lsm;
2845
2846 if (!session_name) {
2847 ret = -LTTNG_ERR_INVALID;
2848 goto end;
2849 }
2850
2851 memset(&lsm, 0, sizeof(lsm));
eded6438 2852 lsm.cmd_type = LTTNG_REGENERATE_METADATA;
93ec662e
JD
2853
2854 lttng_ctl_copy_string(lsm.session.name, session_name,
2855 sizeof(lsm.session.name));
2856
2857 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
2858 if (ret < 0) {
2859 goto end;
2860 }
2861
2862 ret = 0;
2863end:
2864 return ret;
2865}
2866
eded6438
JD
2867/*
2868 * Deprecated, replaced by lttng_regenerate_metadata.
2869 */
2870int lttng_metadata_regenerate(const char *session_name)
2871{
2872 return lttng_regenerate_metadata(session_name);
2873}
2874
c2561365
JD
2875/*
2876 * Regenerate the statedump of a session.
2877 * Return 0 on success, a negative error code on error.
2878 */
2879int lttng_regenerate_statedump(const char *session_name)
2880{
2881 int ret;
2882 struct lttcomm_session_msg lsm;
2883
2884 if (!session_name) {
2885 ret = -LTTNG_ERR_INVALID;
2886 goto end;
2887 }
2888
2889 memset(&lsm, 0, sizeof(lsm));
2890 lsm.cmd_type = LTTNG_REGENERATE_STATEDUMP;
2891
2892 lttng_ctl_copy_string(lsm.session.name, session_name,
2893 sizeof(lsm.session.name));
2894
2895 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
2896 if (ret < 0) {
2897 goto end;
2898 }
2899
2900 ret = 0;
2901end:
2902 return ret;
2903}
2904
a58c490f
JG
2905int lttng_register_trigger(struct lttng_trigger *trigger)
2906{
2907 int ret;
2908 struct lttcomm_session_msg lsm;
3647288f 2909 struct lttng_dynamic_buffer buffer;
a58c490f 2910
3647288f 2911 lttng_dynamic_buffer_init(&buffer);
a58c490f
JG
2912 if (!trigger) {
2913 ret = -LTTNG_ERR_INVALID;
2914 goto end;
2915 }
2916
2917 if (!lttng_trigger_validate(trigger)) {
eac4828d 2918 ret = -LTTNG_ERR_INVALID_TRIGGER;
a58c490f
JG
2919 goto end;
2920 }
2921
3647288f
JG
2922 ret = lttng_trigger_serialize(trigger, &buffer);
2923 if (ret < 0) {
a58c490f
JG
2924 ret = -LTTNG_ERR_UNK;
2925 goto end;
2926 }
2927
a58c490f
JG
2928 memset(&lsm, 0, sizeof(lsm));
2929 lsm.cmd_type = LTTNG_REGISTER_TRIGGER;
3647288f
JG
2930 lsm.u.trigger.length = (uint32_t) buffer.size;
2931 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, buffer.data,
2932 buffer.size, NULL);
a58c490f 2933end:
3647288f 2934 lttng_dynamic_buffer_reset(&buffer);
a58c490f
JG
2935 return ret;
2936}
2937
2938int lttng_unregister_trigger(struct lttng_trigger *trigger)
2939{
2940 int ret;
2941 struct lttcomm_session_msg lsm;
3647288f 2942 struct lttng_dynamic_buffer buffer;
a58c490f 2943
3647288f 2944 lttng_dynamic_buffer_init(&buffer);
a58c490f
JG
2945 if (!trigger) {
2946 ret = -LTTNG_ERR_INVALID;
2947 goto end;
2948 }
2949
2950 if (!lttng_trigger_validate(trigger)) {
3647288f 2951 ret = -LTTNG_ERR_INVALID_TRIGGER;
a58c490f
JG
2952 goto end;
2953 }
2954
3647288f
JG
2955 ret = lttng_trigger_serialize(trigger, &buffer);
2956 if (ret < 0) {
a58c490f
JG
2957 ret = -LTTNG_ERR_UNK;
2958 goto end;
2959 }
2960
a58c490f
JG
2961 memset(&lsm, 0, sizeof(lsm));
2962 lsm.cmd_type = LTTNG_UNREGISTER_TRIGGER;
3647288f
JG
2963 lsm.u.trigger.length = (uint32_t) buffer.size;
2964 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, buffer.data,
2965 buffer.size, NULL);
a58c490f 2966end:
3647288f 2967 lttng_dynamic_buffer_reset(&buffer);
a58c490f
JG
2968 return ret;
2969}
2970
fac6795d 2971/*
9ae110e2 2972 * lib constructor.
fac6795d 2973 */
b2b89e8a 2974static void __attribute__((constructor)) init(void)
fac6795d
DG
2975{
2976 /* Set default session group */
bbccc3d2 2977 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
fac6795d 2978}
49cca668
DG
2979
2980/*
9ae110e2 2981 * lib destructor.
49cca668 2982 */
b2b89e8a 2983static void __attribute__((destructor)) lttng_ctl_exit(void)
49cca668
DG
2984{
2985 free(tracing_group);
2986}
This page took 0.233453 seconds and 5 git commands to generate.