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