Fix: systematic overwrite of union values on add context
[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
522 if (domain == NULL) {
523 goto end;
524 }
cd80958d 525
3f451dc0 526 handle = zmalloc(sizeof(struct lttng_handle));
cd80958d 527 if (handle == NULL) {
2f70b271 528 PERROR("malloc handle");
cd80958d
DG
529 goto end;
530 }
531
532 /* Copy session name */
cac3069d 533 lttng_ctl_copy_string(handle->session_name, session_name,
cd80958d
DG
534 sizeof(handle->session_name));
535
536 /* Copy lttng domain */
cac3069d 537 lttng_ctl_copy_lttng_domain(&handle->domain, domain);
cd80958d
DG
538
539end:
540 return handle;
541}
542
543/*
544 * Destroy handle by free(3) the pointer.
545 */
546void lttng_destroy_handle(struct lttng_handle *handle)
547{
0e428499 548 free(handle);
eb354453
DG
549}
550
d9800920
DG
551/*
552 * Register an outside consumer.
9ae110e2 553 *
1c8d13c8 554 * Returns size of returned session payload data or a negative error code.
d9800920
DG
555 */
556int lttng_register_consumer(struct lttng_handle *handle,
557 const char *socket_path)
558{
559 struct lttcomm_session_msg lsm;
560
2f70b271
DG
561 if (handle == NULL || socket_path == NULL) {
562 return -LTTNG_ERR_INVALID;
563 }
564
53efb85a 565 memset(&lsm, 0, sizeof(lsm));
d9800920 566 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
cac3069d 567 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
d9800920 568 sizeof(lsm.session.name));
cac3069d 569 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d9800920 570
9ae110e2
JG
571 lttng_ctl_copy_string(lsm.u.reg.path, socket_path,
572 sizeof(lsm.u.reg.path));
d9800920 573
cac3069d 574 return lttng_ctl_ask_sessiond(&lsm, NULL);
d9800920
DG
575}
576
1df4dedd 577/*
9ae110e2
JG
578 * Start tracing for all traces of the session.
579 *
580 * Returns size of returned session payload data or a negative error code.
1df4dedd 581 */
6a4f824d 582int lttng_start_tracing(const char *session_name)
f3ed775e 583{
cd80958d
DG
584 struct lttcomm_session_msg lsm;
585
6a4f824d 586 if (session_name == NULL) {
2f70b271 587 return -LTTNG_ERR_INVALID;
cd80958d
DG
588 }
589
53efb85a 590 memset(&lsm, 0, sizeof(lsm));
cd80958d 591 lsm.cmd_type = LTTNG_START_TRACE;
6a4f824d 592
cac3069d
DG
593 lttng_ctl_copy_string(lsm.session.name, session_name,
594 sizeof(lsm.session.name));
cd80958d 595
cac3069d 596 return lttng_ctl_ask_sessiond(&lsm, NULL);
f3ed775e 597}
1df4dedd
DG
598
599/*
38ee087f 600 * Stop tracing for all traces of the session.
f3ed775e 601 */
38ee087f 602static int _lttng_stop_tracing(const char *session_name, int wait)
f3ed775e 603{
38ee087f 604 int ret, data_ret;
cd80958d
DG
605 struct lttcomm_session_msg lsm;
606
6a4f824d 607 if (session_name == NULL) {
2f70b271 608 return -LTTNG_ERR_INVALID;
6a4f824d
DG
609 }
610
53efb85a 611 memset(&lsm, 0, sizeof(lsm));
cd80958d 612 lsm.cmd_type = LTTNG_STOP_TRACE;
6a4f824d 613
cac3069d
DG
614 lttng_ctl_copy_string(lsm.session.name, session_name,
615 sizeof(lsm.session.name));
cd80958d 616
cac3069d 617 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
38ee087f
DG
618 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
619 goto error;
620 }
621
622 if (!wait) {
623 goto end;
624 }
625
38ee087f
DG
626 /* Check for data availability */
627 do {
6d805429 628 data_ret = lttng_data_pending(session_name);
38ee087f
DG
629 if (data_ret < 0) {
630 /* Return the data available call error. */
631 ret = data_ret;
632 goto error;
633 }
634
635 /*
9ae110e2
JG
636 * Data sleep time before retrying (in usec). Don't sleep if the
637 * call returned value indicates availability.
38ee087f 638 */
6d805429 639 if (data_ret) {
38ee087f 640 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
38ee087f 641 }
6d805429 642 } while (data_ret != 0);
38ee087f 643
38ee087f
DG
644end:
645error:
646 return ret;
647}
648
649/*
650 * Stop tracing and wait for data availability.
651 */
652int lttng_stop_tracing(const char *session_name)
653{
654 return _lttng_stop_tracing(session_name, 1);
655}
656
657/*
658 * Stop tracing but _don't_ wait for data availability.
659 */
660int lttng_stop_tracing_no_wait(const char *session_name)
661{
662 return _lttng_stop_tracing(session_name, 0);
f3ed775e
DG
663}
664
665/*
601d5acf
DG
666 * Add context to a channel.
667 *
668 * If the given channel is NULL, add the contexts to all channels.
669 * The event_name param is ignored.
af87c45a
DG
670 *
671 * Returns the size of the returned payload data or a negative error code.
1df4dedd 672 */
cd80958d 673int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
674 struct lttng_event_context *ctx, const char *event_name,
675 const char *channel_name)
d65106b1 676{
2001793c
JG
677 int ret;
678 size_t len = 0;
679 char *buf = NULL;
cd80958d
DG
680 struct lttcomm_session_msg lsm;
681
9ae110e2 682 /* Safety check. Both are mandatory. */
9d697d3d 683 if (handle == NULL || ctx == NULL) {
2001793c
JG
684 ret = -LTTNG_ERR_INVALID;
685 goto end;
cd80958d
DG
686 }
687
441c16a7 688 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
689 lsm.cmd_type = LTTNG_ADD_CONTEXT;
690
85076754
MD
691 /* If no channel name, send empty string. */
692 if (channel_name == NULL) {
693 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
694 sizeof(lsm.u.context.channel_name));
695 } else {
696 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
697 sizeof(lsm.u.context.channel_name));
698 }
cd80958d 699
cac3069d 700 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cac3069d 701 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
702 sizeof(lsm.session.name));
703
2001793c
JG
704 if (ctx->ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
705 size_t provider_len, ctx_len;
706 const char *provider_name = ctx->u.app_ctx.provider_name;
707 const char *ctx_name = ctx->u.app_ctx.ctx_name;
708
709 if (!provider_name || !ctx_name) {
710 ret = -LTTNG_ERR_INVALID;
711 goto end;
712 }
713
714 provider_len = strlen(provider_name);
715 if (provider_len == 0) {
716 ret = -LTTNG_ERR_INVALID;
717 goto end;
718 }
719 lsm.u.context.provider_name_len = provider_len;
720
721 ctx_len = strlen(ctx_name);
722 if (ctx_len == 0) {
723 ret = -LTTNG_ERR_INVALID;
724 goto end;
725 }
726 lsm.u.context.context_name_len = ctx_len;
727
728 len = provider_len + ctx_len;
729 buf = zmalloc(len);
730 if (!buf) {
731 ret = -LTTNG_ERR_NOMEM;
732 goto end;
733 }
734
735 memcpy(buf, provider_name, provider_len);
736 memcpy(buf + provider_len, ctx_name, ctx_len);
737 }
738 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
46f44e2a
JR
739
740 if (ctx->ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
741 /*
742 * Don't leak application addresses to the sessiond.
743 * This is only necessary when ctx is for an app ctx otherwise
744 * the values inside the union (type & config) are overwritten.
745 */
746 lsm.u.context.ctx.u.app_ctx.provider_name = NULL;
747 lsm.u.context.ctx.u.app_ctx.ctx_name = NULL;
748 }
2001793c 749
795a978d 750 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, buf, len, NULL);
2001793c
JG
751end:
752 free(buf);
753 return ret;
d65106b1
DG
754}
755
f3ed775e 756/*
9ae110e2
JG
757 * Enable event(s) for a channel.
758 *
759 * If no event name is specified, all events are enabled.
760 * If no channel name is specified, the default 'channel0' is used.
761 *
762 * Returns size of returned session payload data or a negative error code.
f3ed775e 763 */
cd80958d 764int lttng_enable_event(struct lttng_handle *handle,
38057ed1 765 struct lttng_event *ev, const char *channel_name)
1df4dedd 766{
f8a96544
JI
767 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
768 NULL, 0, NULL);
1df4dedd
DG
769}
770
53a80697 771/*
025faf73 772 * Create or enable an event with a filter expression.
178191b3 773 *
53a80697
MD
774 * Return negative error value on error.
775 * Return size of returned session payload data if OK.
776 */
025faf73 777int lttng_enable_event_with_filter(struct lttng_handle *handle,
178191b3 778 struct lttng_event *event, const char *channel_name,
53a80697
MD
779 const char *filter_expression)
780{
f8a96544
JI
781 return lttng_enable_event_with_exclusions(handle, event, channel_name,
782 filter_expression, 0, NULL);
53a80697
MD
783}
784
347c5ab5 785/*
0e115563 786 * Depending on the event, return a newly allocated agent filter expression or
347c5ab5
DG
787 * NULL if not applicable.
788 *
789 * An event with NO loglevel and the name is * will return NULL.
790 */
0e115563 791static char *set_agent_filter(const char *filter, struct lttng_event *ev)
347c5ab5
DG
792{
793 int err;
0e115563 794 char *agent_filter = NULL;
347c5ab5
DG
795
796 assert(ev);
797
798 /* Don't add filter for the '*' event. */
799 if (ev->name[0] != '*') {
800 if (filter) {
0e115563 801 err = asprintf(&agent_filter, "(%s) && (logger_name == \"%s\")", filter,
347c5ab5
DG
802 ev->name);
803 } else {
0e115563 804 err = asprintf(&agent_filter, "logger_name == \"%s\"", ev->name);
347c5ab5
DG
805 }
806 if (err < 0) {
807 PERROR("asprintf");
6a556f7b 808 goto error;
347c5ab5
DG
809 }
810 }
811
812 /* Add loglevel filtering if any for the JUL domain. */
813 if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) {
814 char *op;
815
816 if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) {
817 op = ">=";
818 } else {
819 op = "==";
820 }
821
0e115563 822 if (filter || agent_filter) {
6a556f7b
JG
823 char *new_filter;
824
fb0edb23 825 err = asprintf(&new_filter, "(%s) && (int_loglevel %s %d)",
0e115563 826 agent_filter ? agent_filter : filter, op,
347c5ab5 827 ev->loglevel);
0e115563
DG
828 if (agent_filter) {
829 free(agent_filter);
6a556f7b 830 }
0e115563 831 agent_filter = new_filter;
347c5ab5 832 } else {
0e115563 833 err = asprintf(&agent_filter, "int_loglevel %s %d", op,
347c5ab5
DG
834 ev->loglevel);
835 }
836 if (err < 0) {
837 PERROR("asprintf");
6a556f7b 838 goto error;
347c5ab5
DG
839 }
840 }
841
0e115563 842 return agent_filter;
6a556f7b 843error:
0e115563 844 free(agent_filter);
6a556f7b 845 return NULL;
347c5ab5
DG
846}
847
137b9942 848/*
ec166985 849 * Generate the filter bytecode from a given filter expression string. Put the
137b9942
DG
850 * newly allocated parser context in ctxp and populate the lsm object with the
851 * expression len.
852 *
853 * Return 0 on success else a LTTNG_ERR_* code and ctxp is untouched.
854 */
855static int generate_filter(char *filter_expression,
856 struct lttcomm_session_msg *lsm, struct filter_parser_ctx **ctxp)
857{
858 int ret;
859 struct filter_parser_ctx *ctx = NULL;
860 FILE *fmem = NULL;
861
862 assert(filter_expression);
863 assert(lsm);
864 assert(ctxp);
865
866 /*
867 * Casting const to non-const, as the underlying function will use it in
868 * read-only mode.
869 */
870 fmem = lttng_fmemopen((void *) filter_expression,
871 strlen(filter_expression), "r");
872 if (!fmem) {
873 fprintf(stderr, "Error opening memory as stream\n");
874 ret = -LTTNG_ERR_FILTER_NOMEM;
875 goto error;
876 }
877 ctx = filter_parser_ctx_alloc(fmem);
878 if (!ctx) {
879 fprintf(stderr, "Error allocating parser\n");
880 ret = -LTTNG_ERR_FILTER_NOMEM;
881 goto filter_alloc_error;
882 }
883 ret = filter_parser_ctx_append_ast(ctx);
884 if (ret) {
885 fprintf(stderr, "Parse error\n");
886 ret = -LTTNG_ERR_FILTER_INVAL;
887 goto parse_error;
888 }
889 ret = filter_visitor_set_parent(ctx);
890 if (ret) {
891 fprintf(stderr, "Set parent error\n");
892 ret = -LTTNG_ERR_FILTER_INVAL;
893 goto parse_error;
894 }
895 if (print_xml) {
896 ret = filter_visitor_print_xml(ctx, stdout, 0);
897 if (ret) {
898 fflush(stdout);
899 fprintf(stderr, "XML print error\n");
900 ret = -LTTNG_ERR_FILTER_INVAL;
901 goto parse_error;
902 }
903 }
904
905 dbg_printf("Generating IR... ");
906 fflush(stdout);
907 ret = filter_visitor_ir_generate(ctx);
908 if (ret) {
909 fprintf(stderr, "Generate IR error\n");
910 ret = -LTTNG_ERR_FILTER_INVAL;
911 goto parse_error;
912 }
913 dbg_printf("done\n");
914
915 dbg_printf("Validating IR... ");
916 fflush(stdout);
917 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
918 if (ret) {
919 ret = -LTTNG_ERR_FILTER_INVAL;
920 goto parse_error;
921 }
9ae110e2 922 /* Validate strings used as literals in the expression. */
dcd5daf2
JG
923 ret = filter_visitor_ir_validate_string(ctx);
924 if (ret) {
925 ret = -LTTNG_ERR_FILTER_INVAL;
926 goto parse_error;
927 }
137b9942
DG
928 dbg_printf("done\n");
929
930 dbg_printf("Generating bytecode... ");
931 fflush(stdout);
932 ret = filter_visitor_bytecode_generate(ctx);
933 if (ret) {
934 fprintf(stderr, "Generate bytecode error\n");
935 ret = -LTTNG_ERR_FILTER_INVAL;
936 goto parse_error;
937 }
938 dbg_printf("done\n");
939 dbg_printf("Size of bytecode generated: %u bytes.\n",
940 bytecode_get_len(&ctx->bytecode->b));
941
942 lsm->u.enable.bytecode_len = sizeof(ctx->bytecode->b)
943 + bytecode_get_len(&ctx->bytecode->b);
944 lsm->u.enable.expression_len = strlen(filter_expression) + 1;
945
946 /* No need to keep the memory stream. */
947 if (fclose(fmem) != 0) {
6f04ed72 948 PERROR("fclose");
137b9942
DG
949 }
950
951 *ctxp = ctx;
952 return 0;
953
954parse_error:
137b9942
DG
955 filter_ir_free(ctx);
956 filter_parser_ctx_free(ctx);
957filter_alloc_error:
958 if (fclose(fmem) != 0) {
6f04ed72 959 PERROR("fclose");
137b9942
DG
960 }
961error:
962 return ret;
963}
964
93deb080
JI
965/*
966 * Enable event(s) for a channel, possibly with exclusions and a filter.
967 * If no event name is specified, all events are enabled.
968 * If no channel name is specified, the default name is used.
969 * If filter expression is not NULL, the filter is set for the event.
970 * If exclusion count is not zero, the exclusions are set for the event.
971 * Returns size of returned session payload data or a negative error code.
972 */
973int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
974 struct lttng_event *ev, const char *channel_name,
e9efbcd3 975 const char *original_filter_expression,
93deb080
JI
976 int exclusion_count, char **exclusion_list)
977{
978 struct lttcomm_session_msg lsm;
64226865 979 char *varlen_data;
93deb080 980 int ret = 0;
137b9942 981 unsigned int free_filter_expression = 0;
93deb080 982 struct filter_parser_ctx *ctx = NULL;
e9efbcd3
JG
983 /*
984 * Cast as non-const since we may replace the filter expression
985 * by a dynamically allocated string. Otherwise, the original
986 * string is not modified.
987 */
988 char *filter_expression = (char *) original_filter_expression;
93deb080
JI
989
990 if (handle == NULL || ev == NULL) {
137b9942
DG
991 ret = -LTTNG_ERR_INVALID;
992 goto error;
93deb080
JI
993 }
994
9ae110e2
JG
995 /*
996 * Empty filter string will always be rejected by the parser
93deb080
JI
997 * anyway, so treat this corner-case early to eliminate
998 * lttng_fmemopen error for 0-byte allocation.
999 */
1000 if (filter_expression && filter_expression[0] == '\0') {
137b9942
DG
1001 ret = -LTTNG_ERR_INVALID;
1002 goto error;
93deb080
JI
1003 }
1004
1005 memset(&lsm, 0, sizeof(lsm));
1006
1007 /* If no channel name, send empty string. */
1008 if (channel_name == NULL) {
1009 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
1010 sizeof(lsm.u.enable.channel_name));
1011 } else {
1012 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
1013 sizeof(lsm.u.enable.channel_name));
1014 }
1015
18a720cd
MD
1016 lsm.cmd_type = LTTNG_ENABLE_EVENT;
1017 if (ev->name[0] == '\0') {
1018 /* Enable all events */
1019 lttng_ctl_copy_string(ev->name, "*", sizeof(ev->name));
6565421f 1020 }
93deb080 1021
6565421f 1022 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
6e911cad 1023 /* FIXME: copying non-packed struct to packed struct. */
93deb080
JI
1024 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
1025
1026 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1027 sizeof(lsm.session.name));
1028 lsm.u.enable.exclusion_count = exclusion_count;
1029 lsm.u.enable.bytecode_len = 0;
1030
9b21e6d5
DG
1031 /*
1032 * For the JUL domain, a filter is enforced except for the enable all
1033 * event. This is done to avoid having the event in all sessions thus
1034 * filtering by logger name.
1035 */
1036 if (exclusion_count == 0 && filter_expression == NULL &&
5cdb6027 1037 (handle->domain.type != LTTNG_DOMAIN_JUL &&
0e115563
DG
1038 handle->domain.type != LTTNG_DOMAIN_LOG4J &&
1039 handle->domain.type != LTTNG_DOMAIN_PYTHON)) {
3e1c9ff7 1040 goto ask_sessiond;
93deb080
JI
1041 }
1042
1043 /*
1044 * We have either a filter or some exclusions, so we need to set up
9ae110e2 1045 * a variable-length memory block from where to send the data.
93deb080
JI
1046 */
1047
9ae110e2 1048 /* Parse filter expression. */
5cdb6027 1049 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
0e115563
DG
1050 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1051 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
5cdb6027 1052 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
0e115563
DG
1053 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1054 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1055 char *agent_filter;
64226865 1056
347c5ab5 1057 /* Setup JUL filter if needed. */
0e115563
DG
1058 agent_filter = set_agent_filter(filter_expression, ev);
1059 if (!agent_filter) {
137b9942 1060 if (!filter_expression) {
9ae110e2
JG
1061 /*
1062 * No JUL and no filter, just skip
1063 * everything below.
1064 */
137b9942
DG
1065 goto ask_sessiond;
1066 }
64226865
DG
1067 } else {
1068 /*
9ae110e2
JG
1069 * With an agent filter, the original filter has
1070 * been added to it thus replace the filter
1071 * expression.
64226865 1072 */
0e115563 1073 filter_expression = agent_filter;
e9efbcd3 1074 free_filter_expression = 1;
9b21e6d5 1075 }
9b21e6d5 1076 }
93deb080 1077
137b9942 1078 ret = generate_filter(filter_expression, &lsm, &ctx);
93deb080 1079 if (ret) {
137b9942 1080 goto filter_error;
93deb080 1081 }
6b453b5e
JG
1082 }
1083
1084 varlen_data = zmalloc(lsm.u.enable.bytecode_len
137b9942
DG
1085 + lsm.u.enable.expression_len
1086 + LTTNG_SYMBOL_NAME_LEN * exclusion_count);
6b453b5e
JG
1087 if (!varlen_data) {
1088 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
7ca1dc6f 1089 goto mem_error;
6b453b5e 1090 }
137b9942 1091
9ae110e2 1092 /* Put exclusion names first in the data. */
6b453b5e
JG
1093 while (exclusion_count--) {
1094 strncpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * exclusion_count,
0c82ac62
PP
1095 *(exclusion_list + exclusion_count),
1096 LTTNG_SYMBOL_NAME_LEN - 1);
6b453b5e 1097 }
9ae110e2 1098 /* Add filter expression next. */
6b453b5e
JG
1099 if (lsm.u.enable.expression_len != 0) {
1100 memcpy(varlen_data
1101 + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count,
1102 filter_expression,
1103 lsm.u.enable.expression_len);
1104 }
9ae110e2 1105 /* Add filter bytecode next. */
137b9942 1106 if (ctx && lsm.u.enable.bytecode_len != 0) {
6b453b5e
JG
1107 memcpy(varlen_data
1108 + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count
1109 + lsm.u.enable.expression_len,
1110 &ctx->bytecode->b,
1111 lsm.u.enable.bytecode_len);
93deb080
JI
1112 }
1113
795a978d 1114 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, varlen_data,
67676bd8 1115 (LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count) +
9ae110e2
JG
1116 lsm.u.enable.bytecode_len + lsm.u.enable.expression_len,
1117 NULL);
6b453b5e 1118 free(varlen_data);
93deb080 1119
7ca1dc6f
DG
1120mem_error:
1121 if (filter_expression && ctx) {
93deb080
JI
1122 filter_bytecode_free(ctx);
1123 filter_ir_free(ctx);
1124 filter_parser_ctx_free(ctx);
7ca1dc6f
DG
1125 }
1126filter_error:
1127 if (free_filter_expression) {
1128 /*
9ae110e2
JG
1129 * The filter expression has been replaced and must be freed as
1130 * it is not the original filter expression received as a
1131 * parameter.
7ca1dc6f
DG
1132 */
1133 free(filter_expression);
93deb080 1134 }
137b9942
DG
1135error:
1136 /*
9ae110e2
JG
1137 * Return directly to the caller and don't ask the sessiond since
1138 * something went wrong in the parsing of data above.
137b9942 1139 */
93deb080 1140 return ret;
3e1c9ff7
DG
1141
1142ask_sessiond:
1143 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1144 return ret;
93deb080
JI
1145}
1146
6e911cad
MD
1147int lttng_disable_event_ext(struct lttng_handle *handle,
1148 struct lttng_event *ev, const char *channel_name,
1149 const char *original_filter_expression)
1df4dedd 1150{
cd80958d 1151 struct lttcomm_session_msg lsm;
6e911cad
MD
1152 char *varlen_data;
1153 int ret = 0;
1154 unsigned int free_filter_expression = 0;
1155 struct filter_parser_ctx *ctx = NULL;
1156 /*
1157 * Cast as non-const since we may replace the filter expression
1158 * by a dynamically allocated string. Otherwise, the original
1159 * string is not modified.
1160 */
1161 char *filter_expression = (char *) original_filter_expression;
1df4dedd 1162
6e911cad
MD
1163 if (handle == NULL || ev == NULL) {
1164 ret = -LTTNG_ERR_INVALID;
1165 goto error;
1166 }
1167
9ae110e2
JG
1168 /*
1169 * Empty filter string will always be rejected by the parser
6e911cad
MD
1170 * anyway, so treat this corner-case early to eliminate
1171 * lttng_fmemopen error for 0-byte allocation.
1172 */
1173 if (filter_expression && filter_expression[0] == '\0') {
1174 ret = -LTTNG_ERR_INVALID;
1175 goto error;
cd80958d
DG
1176 }
1177
441c16a7
MD
1178 memset(&lsm, 0, sizeof(lsm));
1179
85076754
MD
1180 /* If no channel name, send empty string. */
1181 if (channel_name == NULL) {
1182 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
cd80958d 1183 sizeof(lsm.u.disable.channel_name));
f3ed775e 1184 } else {
85076754 1185 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
cd80958d 1186 sizeof(lsm.u.disable.channel_name));
eb354453
DG
1187 }
1188
18a720cd 1189 lsm.cmd_type = LTTNG_DISABLE_EVENT;
f3ed775e 1190
6e911cad
MD
1191 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1192 /* FIXME: copying non-packed struct to packed struct. */
1193 memcpy(&lsm.u.disable.event, ev, sizeof(lsm.u.disable.event));
1194
cac3069d 1195 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1196 sizeof(lsm.session.name));
6e911cad 1197 lsm.u.disable.bytecode_len = 0;
cd80958d 1198
6e911cad
MD
1199 /*
1200 * For the JUL domain, a filter is enforced except for the
1201 * disable all event. This is done to avoid having the event in
1202 * all sessions thus filtering by logger name.
1203 */
1204 if (filter_expression == NULL &&
1205 (handle->domain.type != LTTNG_DOMAIN_JUL &&
0e115563
DG
1206 handle->domain.type != LTTNG_DOMAIN_LOG4J &&
1207 handle->domain.type != LTTNG_DOMAIN_PYTHON)) {
6e911cad
MD
1208 goto ask_sessiond;
1209 }
1210
1211 /*
1212 * We have a filter, so we need to set up a variable-length
1213 * memory block from where to send the data.
1214 */
1215
1216 /* Parse filter expression */
1217 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
0e115563
DG
1218 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1219 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
6e911cad 1220 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
0e115563
DG
1221 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1222 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1223 char *agent_filter;
6e911cad
MD
1224
1225 /* Setup JUL filter if needed. */
0e115563
DG
1226 agent_filter = set_agent_filter(filter_expression, ev);
1227 if (!agent_filter) {
6e911cad 1228 if (!filter_expression) {
9ae110e2
JG
1229 /*
1230 * No JUL and no filter, just skip
1231 * everything below.
1232 */
6e911cad
MD
1233 goto ask_sessiond;
1234 }
1235 } else {
1236 /*
9ae110e2
JG
1237 * With a JUL filter, the original filter has
1238 * been added to it thus replace the filter
1239 * expression.
6e911cad 1240 */
0e115563 1241 filter_expression = agent_filter;
6e911cad
MD
1242 free_filter_expression = 1;
1243 }
1244 }
1245
1246 ret = generate_filter(filter_expression, &lsm, &ctx);
1247 if (ret) {
1248 goto filter_error;
1249 }
1250 }
1251
1252 varlen_data = zmalloc(lsm.u.disable.bytecode_len
1253 + lsm.u.disable.expression_len);
1254 if (!varlen_data) {
1255 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
1256 goto mem_error;
1257 }
1258
9ae110e2 1259 /* Add filter expression. */
6e911cad
MD
1260 if (lsm.u.disable.expression_len != 0) {
1261 memcpy(varlen_data,
1262 filter_expression,
1263 lsm.u.disable.expression_len);
1264 }
9ae110e2 1265 /* Add filter bytecode next. */
6e911cad
MD
1266 if (ctx && lsm.u.disable.bytecode_len != 0) {
1267 memcpy(varlen_data
1268 + lsm.u.disable.expression_len,
1269 &ctx->bytecode->b,
1270 lsm.u.disable.bytecode_len);
1271 }
1272
795a978d 1273 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, varlen_data,
6e911cad
MD
1274 lsm.u.disable.bytecode_len + lsm.u.disable.expression_len, NULL);
1275 free(varlen_data);
1276
1277mem_error:
1278 if (filter_expression && ctx) {
1279 filter_bytecode_free(ctx);
1280 filter_ir_free(ctx);
1281 filter_parser_ctx_free(ctx);
1282 }
1283filter_error:
1284 if (free_filter_expression) {
1285 /*
9ae110e2
JG
1286 * The filter expression has been replaced and must be freed as
1287 * it is not the original filter expression received as a
1288 * parameter.
6e911cad
MD
1289 */
1290 free(filter_expression);
1291 }
1292error:
1293 /*
9ae110e2
JG
1294 * Return directly to the caller and don't ask the sessiond since
1295 * something went wrong in the parsing of data above.
6e911cad
MD
1296 */
1297 return ret;
1298
1299ask_sessiond:
1300 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1301 return ret;
1302}
1303
1304/*
9ae110e2
JG
1305 * Disable event(s) of a channel and domain.
1306 * If no event name is specified, all events are disabled.
1307 * If no channel name is specified, the default 'channel0' is used.
1308 * Returns size of returned session payload data or a negative error code.
6e911cad
MD
1309 */
1310int lttng_disable_event(struct lttng_handle *handle, const char *name,
1311 const char *channel_name)
1312{
1313 struct lttng_event ev;
1314
1315 memset(&ev, 0, sizeof(ev));
9b7431cf 1316 ev.loglevel = -1;
6e911cad
MD
1317 ev.type = LTTNG_EVENT_ALL;
1318 lttng_ctl_copy_string(ev.name, name, sizeof(ev.name));
1319 return lttng_disable_event_ext(handle, &ev, channel_name, NULL);
1df4dedd
DG
1320}
1321
1322/*
9ae110e2
JG
1323 * Enable channel per domain
1324 * Returns size of returned session payload data or a negative error code.
a5c5a2bd 1325 */
cd80958d 1326int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 1327 struct lttng_channel *chan)
a5c5a2bd 1328{
cd80958d
DG
1329 struct lttcomm_session_msg lsm;
1330
9ae110e2 1331 /* NULL arguments are forbidden. No default values. */
5117eeec 1332 if (handle == NULL || chan == NULL) {
2f70b271 1333 return -LTTNG_ERR_INVALID;
cd80958d
DG
1334 }
1335
441c16a7
MD
1336 memset(&lsm, 0, sizeof(lsm));
1337
5117eeec 1338 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
7d29a247 1339
cd80958d
DG
1340 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
1341
cac3069d 1342 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
7d29a247 1343
cac3069d 1344 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1345 sizeof(lsm.session.name));
1346
cac3069d 1347 return lttng_ctl_ask_sessiond(&lsm, NULL);
8c0faa1d 1348}
1df4dedd 1349
2ef84c95 1350/*
9ae110e2
JG
1351 * All tracing will be stopped for registered events of the channel.
1352 * Returns size of returned session payload data or a negative error code.
2ef84c95 1353 */
cd80958d 1354int lttng_disable_channel(struct lttng_handle *handle, const char *name)
2ef84c95 1355{
cd80958d
DG
1356 struct lttcomm_session_msg lsm;
1357
9ae110e2 1358 /* Safety check. Both are mandatory. */
9d697d3d 1359 if (handle == NULL || name == NULL) {
2f70b271 1360 return -LTTNG_ERR_INVALID;
cd80958d
DG
1361 }
1362
441c16a7
MD
1363 memset(&lsm, 0, sizeof(lsm));
1364
cd80958d 1365 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1df4dedd 1366
cac3069d 1367 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
9d697d3d
DG
1368 sizeof(lsm.u.disable.channel_name));
1369
cac3069d 1370 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cd80958d 1371
cac3069d 1372 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1373 sizeof(lsm.session.name));
1374
cac3069d 1375 return lttng_ctl_ask_sessiond(&lsm, NULL);
ca95a216
DG
1376}
1377
ccf10263 1378/*
9ae110e2
JG
1379 * Add PID to session tracker.
1380 * Return 0 on success else a negative LTTng error code.
ccf10263
MD
1381 */
1382int lttng_track_pid(struct lttng_handle *handle, int pid)
1383{
1384 struct lttcomm_session_msg lsm;
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
1393 lsm.cmd_type = LTTNG_TRACK_PID;
1394 lsm.u.pid_tracker.pid = pid;
1395
1396 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1397
1398 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1399 sizeof(lsm.session.name));
1400
1401 return lttng_ctl_ask_sessiond(&lsm, NULL);
1402}
1403
1404/*
9ae110e2
JG
1405 * Remove PID from session tracker.
1406 * Return 0 on success else a negative LTTng error code.
ccf10263
MD
1407 */
1408int lttng_untrack_pid(struct lttng_handle *handle, int pid)
1409{
1410 struct lttcomm_session_msg lsm;
1411
9ae110e2 1412 /* NULL arguments are forbidden. No default values. */
ccf10263
MD
1413 if (handle == NULL) {
1414 return -LTTNG_ERR_INVALID;
1415 }
1416
1417 memset(&lsm, 0, sizeof(lsm));
1418
1419 lsm.cmd_type = LTTNG_UNTRACK_PID;
1420 lsm.u.pid_tracker.pid = pid;
1421
1422 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1423
1424 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
1425 sizeof(lsm.session.name));
1426
1427 return lttng_ctl_ask_sessiond(&lsm, NULL);
1428}
1429
fac6795d 1430/*
9ae110e2
JG
1431 * Lists all available tracepoints of domain.
1432 * Sets the contents of the events array.
1433 * Returns the number of lttng_event entries in events;
1434 * on error, returns a negative value.
fac6795d 1435 */
cd80958d 1436int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 1437 struct lttng_event **events)
fac6795d 1438{
052da939 1439 int ret;
cd80958d
DG
1440 struct lttcomm_session_msg lsm;
1441
9d697d3d 1442 if (handle == NULL) {
2f70b271 1443 return -LTTNG_ERR_INVALID;
cd80958d 1444 }
fac6795d 1445
53efb85a 1446 memset(&lsm, 0, sizeof(lsm));
cd80958d 1447 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
cac3069d 1448 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2a71efd5 1449
cac3069d 1450 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
052da939
DG
1451 if (ret < 0) {
1452 return ret;
eb354453 1453 }
fac6795d 1454
9f19cc17 1455 return ret / sizeof(struct lttng_event);
fac6795d
DG
1456}
1457
f37d259d 1458/*
9ae110e2
JG
1459 * Lists all available tracepoint fields of domain.
1460 * Sets the contents of the event field array.
1461 * Returns the number of lttng_event_field entries in events;
1462 * on error, returns a negative value.
f37d259d
MD
1463 */
1464int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1465 struct lttng_event_field **fields)
1466{
1467 int ret;
1468 struct lttcomm_session_msg lsm;
1469
1470 if (handle == NULL) {
2f70b271 1471 return -LTTNG_ERR_INVALID;
f37d259d
MD
1472 }
1473
53efb85a 1474 memset(&lsm, 0, sizeof(lsm));
f37d259d 1475 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
cac3069d 1476 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f37d259d 1477
cac3069d 1478 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
f37d259d
MD
1479 if (ret < 0) {
1480 return ret;
1481 }
1482
1483 return ret / sizeof(struct lttng_event_field);
1484}
1485
834978fd 1486/*
9ae110e2
JG
1487 * Lists all available kernel system calls. Allocates and sets the contents of
1488 * the events array.
834978fd 1489 *
9ae110e2
JG
1490 * Returns the number of lttng_event entries in events; on error, returns a
1491 * negative value.
834978fd
DG
1492 */
1493int lttng_list_syscalls(struct lttng_event **events)
1494{
1495 int ret;
1496 struct lttcomm_session_msg lsm;
1497
1498 if (!events) {
1499 return -LTTNG_ERR_INVALID;
1500 }
1501
1502 memset(&lsm, 0, sizeof(lsm));
1503 lsm.cmd_type = LTTNG_LIST_SYSCALLS;
1504 /* Force kernel domain for system calls. */
1505 lsm.domain.type = LTTNG_DOMAIN_KERNEL;
1506
1507 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
1508 if (ret < 0) {
1509 return ret;
1510 }
1511
1512 return ret / sizeof(struct lttng_event);
1513}
1514
1657e9bb 1515/*
9ae110e2
JG
1516 * Returns a human readable string describing
1517 * the error code (a negative value).
1657e9bb 1518 */
9a745bc7 1519const char *lttng_strerror(int code)
1657e9bb 1520{
f73fabfd 1521 return error_get_str(code);
1657e9bb
DG
1522}
1523
aaf97519 1524/*
a4b92340
DG
1525 * Create a brand new session using name and url for destination.
1526 *
f73fabfd 1527 * Returns LTTNG_OK on success or a negative error code.
00e2e675 1528 */
a4b92340 1529int lttng_create_session(const char *name, const char *url)
00e2e675 1530{
3dd05a85 1531 int ret;
a4b92340 1532 ssize_t size;
00e2e675 1533 struct lttcomm_session_msg lsm;
a4b92340 1534 struct lttng_uri *uris = NULL;
00e2e675 1535
a4b92340 1536 if (name == NULL) {
2f70b271 1537 return -LTTNG_ERR_INVALID;
00e2e675
DG
1538 }
1539
a4b92340 1540 memset(&lsm, 0, sizeof(lsm));
00e2e675 1541
a4b92340 1542 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1543 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
a4b92340
DG
1544
1545 /* There should never be a data URL */
bc894455 1546 size = uri_parse_str_urls(url, NULL, &uris);
a4b92340 1547 if (size < 0) {
2f70b271 1548 return -LTTNG_ERR_INVALID;
00e2e675
DG
1549 }
1550
a4b92340
DG
1551 lsm.u.uri.size = size;
1552
795a978d 1553 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
cac3069d 1554 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1555
1556 free(uris);
1557 return ret;
00e2e675
DG
1558}
1559
8028d920 1560/*
9ae110e2
JG
1561 * Destroy session using name.
1562 * Returns size of returned session payload data or a negative error code.
8028d920 1563 */
e20ee7c2 1564int _lttng_destroy_session(const char *session_name)
8028d920 1565{
cd80958d
DG
1566 struct lttcomm_session_msg lsm;
1567
843f5df9 1568 if (session_name == NULL) {
2f70b271 1569 return -LTTNG_ERR_INVALID;
cd80958d
DG
1570 }
1571
53efb85a 1572 memset(&lsm, 0, sizeof(lsm));
cd80958d 1573 lsm.cmd_type = LTTNG_DESTROY_SESSION;
843f5df9 1574
cac3069d
DG
1575 lttng_ctl_copy_string(lsm.session.name, session_name,
1576 sizeof(lsm.session.name));
cd80958d 1577
cac3069d 1578 return lttng_ctl_ask_sessiond(&lsm, NULL);
aaf97519
DG
1579}
1580
e20ee7c2
JD
1581/*
1582 * Stop the session and wait for the data before destroying it
1583 */
1584int lttng_destroy_session(const char *session_name)
1585{
1586 int ret;
1587
1588 /*
1589 * Stop the tracing and wait for the data.
1590 */
1591 ret = _lttng_stop_tracing(session_name, 1);
1592 if (ret && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
1593 goto end;
1594 }
1595
1596 ret = _lttng_destroy_session(session_name);
1597end:
1598 return ret;
1599}
1600
1601/*
1602 * Destroy the session without waiting for the data.
1603 */
1604int lttng_destroy_session_no_wait(const char *session_name)
1605{
1606 int ret;
1607
1608 /*
1609 * Stop the tracing without waiting for the data.
1610 * The session might already have been stopped, so just
1611 * skip this error.
1612 */
1613 ret = _lttng_stop_tracing(session_name, 0);
1614 if (ret && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
1615 goto end;
1616 }
1617
1618 ret = _lttng_destroy_session(session_name);
1619end:
1620 return ret;
1621}
1622
57167058 1623/*
9ae110e2
JG
1624 * Ask the session daemon for all available sessions.
1625 * Sets the contents of the sessions array.
1626 * Returns the number of lttng_session entries in sessions;
1627 * on error, returns a negative value.
57167058 1628 */
ca95a216 1629int lttng_list_sessions(struct lttng_session **sessions)
57167058 1630{
ca95a216 1631 int ret;
cd80958d 1632 struct lttcomm_session_msg lsm;
57167058 1633
53efb85a 1634 memset(&lsm, 0, sizeof(lsm));
cd80958d 1635 lsm.cmd_type = LTTNG_LIST_SESSIONS;
cac3069d 1636 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
57167058 1637 if (ret < 0) {
ca95a216 1638 return ret;
57167058
DG
1639 }
1640
ca95a216 1641 return ret / sizeof(struct lttng_session);
57167058
DG
1642}
1643
d7ba1388
MD
1644int lttng_set_session_shm_path(const char *session_name,
1645 const char *shm_path)
1646{
1647 struct lttcomm_session_msg lsm;
1648
1649 if (session_name == NULL) {
1650 return -LTTNG_ERR_INVALID;
1651 }
1652
1653 memset(&lsm, 0, sizeof(lsm));
1654 lsm.cmd_type = LTTNG_SET_SESSION_SHM_PATH;
1655
1656 lttng_ctl_copy_string(lsm.session.name, session_name,
1657 sizeof(lsm.session.name));
1658 lttng_ctl_copy_string(lsm.u.set_shm_path.shm_path, shm_path,
1659 sizeof(lsm.u.set_shm_path.shm_path));
1660
1661 return lttng_ctl_ask_sessiond(&lsm, NULL);
1662}
1663
9f19cc17 1664/*
9ae110e2
JG
1665 * Ask the session daemon for all available domains of a session.
1666 * Sets the contents of the domains array.
1667 * Returns the number of lttng_domain entries in domains;
1668 * on error, returns a negative value.
9f19cc17 1669 */
330be774 1670int lttng_list_domains(const char *session_name,
cd80958d 1671 struct lttng_domain **domains)
9f19cc17
DG
1672{
1673 int ret;
cd80958d
DG
1674 struct lttcomm_session_msg lsm;
1675
330be774 1676 if (session_name == NULL) {
2f70b271 1677 return -LTTNG_ERR_INVALID;
cd80958d 1678 }
9f19cc17 1679
53efb85a 1680 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
1681 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1682
cac3069d
DG
1683 lttng_ctl_copy_string(lsm.session.name, session_name,
1684 sizeof(lsm.session.name));
cd80958d 1685
cac3069d 1686 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
9f19cc17
DG
1687 if (ret < 0) {
1688 return ret;
1689 }
1690
1691 return ret / sizeof(struct lttng_domain);
1692}
1693
1694/*
9ae110e2
JG
1695 * Ask the session daemon for all available channels of a session.
1696 * Sets the contents of the channels array.
1697 * Returns the number of lttng_channel entries in channels;
1698 * on error, returns a negative value.
9f19cc17 1699 */
cd80958d
DG
1700int lttng_list_channels(struct lttng_handle *handle,
1701 struct lttng_channel **channels)
9f19cc17
DG
1702{
1703 int ret;
53e367f9
JG
1704 size_t channel_count, i;
1705 const size_t channel_size = sizeof(struct lttng_channel) +
1706 sizeof(struct lttcomm_channel_extended);
cd80958d 1707 struct lttcomm_session_msg lsm;
53e367f9 1708 void *extended_at;
cd80958d 1709
9d697d3d 1710 if (handle == NULL) {
53e367f9
JG
1711 ret = -LTTNG_ERR_INVALID;
1712 goto end;
cd80958d
DG
1713 }
1714
53efb85a 1715 memset(&lsm, 0, sizeof(lsm));
cd80958d 1716 lsm.cmd_type = LTTNG_LIST_CHANNELS;
cac3069d 1717 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1718 sizeof(lsm.session.name));
9f19cc17 1719
cac3069d 1720 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1721
cac3069d 1722 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
9f19cc17 1723 if (ret < 0) {
53e367f9
JG
1724 goto end;
1725 }
1726
1727 if (ret % channel_size) {
1728 ret = -LTTNG_ERR_UNK;
1729 free(*channels);
1730 *channels = NULL;
1731 goto end;
9f19cc17 1732 }
53e367f9 1733 channel_count = (size_t) ret / channel_size;
9f19cc17 1734
53e367f9
JG
1735 /* Set extended info pointers */
1736 extended_at = ((void *) *channels) +
1737 channel_count * sizeof(struct lttng_channel);
1738 for (i = 0; i < channel_count; i++) {
1739 struct lttng_channel *chan = &(*channels)[i];
1740
1741 chan->attr.extended.ptr = extended_at;
1742 extended_at += sizeof(struct lttcomm_channel_extended);
1743 }
1744
1745 ret = (int) channel_count;
1746end:
1747 return ret;
9f19cc17
DG
1748}
1749
1750/*
9ae110e2
JG
1751 * Ask the session daemon for all available events of a session channel.
1752 * Sets the contents of the events array.
1753 * Returns the number of lttng_event entries in events;
1754 * on error, returns a negative value.
9f19cc17 1755 */
cd80958d
DG
1756int lttng_list_events(struct lttng_handle *handle,
1757 const char *channel_name, struct lttng_event **events)
9f19cc17
DG
1758{
1759 int ret;
cd80958d 1760 struct lttcomm_session_msg lsm;
b4e3ceb9
PP
1761 struct lttcomm_event_command_header *cmd_header = NULL;
1762 size_t cmd_header_len;
1763 uint32_t nb_events, i;
1764 void *extended_at;
9f19cc17 1765
9d697d3d
DG
1766 /* Safety check. An handle and channel name are mandatory */
1767 if (handle == NULL || channel_name == NULL) {
2f70b271 1768 return -LTTNG_ERR_INVALID;
cd80958d
DG
1769 }
1770
53efb85a 1771 memset(&lsm, 0, sizeof(lsm));
cd80958d 1772 lsm.cmd_type = LTTNG_LIST_EVENTS;
cac3069d 1773 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1774 sizeof(lsm.session.name));
cac3069d 1775 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
cd80958d 1776 sizeof(lsm.u.list.channel_name));
cac3069d 1777 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1778
b4e3ceb9
PP
1779 ret = lttng_ctl_ask_sessiond_varlen(&lsm, NULL, 0, (void **) events,
1780 (void **) &cmd_header, &cmd_header_len);
9f19cc17 1781 if (ret < 0) {
b4e3ceb9 1782 goto error;
9f19cc17
DG
1783 }
1784
b4e3ceb9
PP
1785 /* Set number of events and free command header */
1786 nb_events = cmd_header->nb_events;
1787 if (nb_events > INT_MAX) {
1788 ret = -EOVERFLOW;
1789 goto error;
1790 }
1791 ret = (int) nb_events;
1792 free(cmd_header);
1793 cmd_header = NULL;
1794
1795 /* Set extended info pointers */
1796 extended_at = ((void*) (*events)) +
1797 nb_events * sizeof(struct lttng_event);
1798
1799 for (i = 0; i < nb_events; i++) {
1800 struct lttcomm_event_extended_header *ext_header;
1801 struct lttng_event *event = &(*events)[i];
1802
1803 event->extended.ptr = extended_at;
1804 ext_header =
1805 (struct lttcomm_event_extended_header *) extended_at;
1806 extended_at += sizeof(*ext_header);
1807 extended_at += ext_header->filter_len;
795d57ce
PP
1808 extended_at +=
1809 ext_header->nb_exclusions * LTTNG_SYMBOL_NAME_LEN;
b4e3ceb9
PP
1810 }
1811
1812 return ret;
1813error:
1814 free(cmd_header);
1815 free(*events);
1816 return ret;
9f19cc17
DG
1817}
1818
134e72ed
JG
1819int lttng_event_get_filter_expression(struct lttng_event *event,
1820 const char **filter_expression)
d31d3e8c
PP
1821{
1822 int ret = 0;
1823 struct lttcomm_event_extended_header *ext_header;
1824
134e72ed 1825 if (!event || !filter_expression) {
d31d3e8c
PP
1826 ret = -LTTNG_ERR_INVALID;
1827 goto end;
1828 }
1829
1830 ext_header = event->extended.ptr;
1831
1832 if (!ext_header) {
1833 /*
1834 * This can happen since the lttng_event structure is
1835 * used for other tasks where this pointer is never set.
1836 */
134e72ed 1837 *filter_expression = NULL;
d31d3e8c
PP
1838 goto end;
1839 }
1840
1841 if (ext_header->filter_len) {
134e72ed
JG
1842 *filter_expression = ((const char *) (ext_header)) +
1843 sizeof(*ext_header);
d31d3e8c 1844 } else {
134e72ed 1845 *filter_expression = NULL;
d31d3e8c
PP
1846 }
1847
1848end:
1849 return ret;
1850}
b4e3ceb9 1851
f086e50e
PP
1852int lttng_event_get_exclusion_name_count(struct lttng_event *event)
1853{
1854 int ret;
1855 struct lttcomm_event_extended_header *ext_header;
1856
1857 if (!event) {
1858 ret = -LTTNG_ERR_INVALID;
1859 goto end;
1860 }
1861
1862 ext_header = event->extended.ptr;
1863 if (!ext_header) {
1864 /*
1865 * This can happen since the lttng_event structure is
1866 * used for other tasks where this pointer is never set.
1867 */
1868 ret = 0;
1869 goto end;
1870 }
1871
1872 if (ext_header->nb_exclusions > INT_MAX) {
1873 ret = -LTTNG_ERR_OVERFLOW;
1874 goto end;
1875 }
1876 ret = (int) ext_header->nb_exclusions;
1877end:
1878 return ret;
1879}
1880
1881int lttng_event_get_exclusion_name(struct lttng_event *event,
1882 size_t index, const char **exclusion_name)
1883{
1884 int ret = 0;
1885 struct lttcomm_event_extended_header *ext_header;
1886 void *at;
1887
1888 if (!event || !exclusion_name) {
1889 ret = -LTTNG_ERR_INVALID;
1890 goto end;
1891 }
1892
1893 ext_header = event->extended.ptr;
1894 if (!ext_header) {
1895 ret = -LTTNG_ERR_INVALID;
1896 goto end;
1897 }
1898
1899 if (index >= ext_header->nb_exclusions) {
1900 ret = -LTTNG_ERR_INVALID;
1901 goto end;
1902 }
1903
1904 at = (void *) ext_header + sizeof(*ext_header);
1905 at += ext_header->filter_len;
1906 at += index * LTTNG_SYMBOL_NAME_LEN;
1907 *exclusion_name = at;
1908
1909end:
1910 return ret;
1911}
1912
fac6795d 1913/*
1c8d13c8
TD
1914 * Sets the tracing_group variable with name.
1915 * This function allocates memory pointed to by tracing_group.
1916 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
fac6795d
DG
1917 */
1918int lttng_set_tracing_group(const char *name)
1919{
9d697d3d 1920 if (name == NULL) {
2f70b271 1921 return -LTTNG_ERR_INVALID;
9d697d3d
DG
1922 }
1923
fac6795d 1924 if (asprintf(&tracing_group, "%s", name) < 0) {
2f70b271 1925 return -LTTNG_ERR_FATAL;
fac6795d
DG
1926 }
1927
1928 return 0;
1929}
1930
d0254c7c 1931/*
af87c45a 1932 * Returns size of returned session payload data or a negative error code.
d0254c7c 1933 */
cd80958d 1934int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
1935 struct lttng_calibrate *calibrate)
1936{
cd80958d 1937 struct lttcomm_session_msg lsm;
d0254c7c 1938
9d697d3d
DG
1939 /* Safety check. NULL pointer are forbidden */
1940 if (handle == NULL || calibrate == NULL) {
2f70b271 1941 return -LTTNG_ERR_INVALID;
cd80958d 1942 }
d0254c7c 1943
53efb85a 1944 memset(&lsm, 0, sizeof(lsm));
cd80958d 1945 lsm.cmd_type = LTTNG_CALIBRATE;
cac3069d 1946 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d0254c7c 1947
cd80958d
DG
1948 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
1949
cac3069d 1950 return lttng_ctl_ask_sessiond(&lsm, NULL);
d0254c7c
MD
1951}
1952
5edd7e09
DG
1953/*
1954 * Set default channel attributes.
441c16a7 1955 * If either or both of the arguments are null, attr content is zeroe'd.
5edd7e09
DG
1956 */
1957void lttng_channel_set_default_attr(struct lttng_domain *domain,
1958 struct lttng_channel_attr *attr)
1959{
1960 /* Safety check */
1961 if (attr == NULL || domain == NULL) {
1962 return;
1963 }
1964
eacaa7a6
DS
1965 memset(attr, 0, sizeof(struct lttng_channel_attr));
1966
0a9c6494
DG
1967 /* Same for all domains. */
1968 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
1969 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
1970 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
1971
5edd7e09
DG
1972 switch (domain->type) {
1973 case LTTNG_DOMAIN_KERNEL:
9ae110e2
JG
1974 attr->switch_timer_interval =
1975 DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
d92ff3ef 1976 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
3e230f92 1977 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
5edd7e09
DG
1978 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
1979 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1980 break;
1981 case LTTNG_DOMAIN_UST:
0a9c6494
DG
1982 switch (domain->buf_type) {
1983 case LTTNG_BUFFER_PER_UID:
1984 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
1985 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
1986 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
9ae110e2
JG
1987 attr->switch_timer_interval =
1988 DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
1989 attr->read_timer_interval =
1990 DEFAULT_UST_UID_CHANNEL_READ_TIMER;
0a9c6494
DG
1991 break;
1992 case LTTNG_BUFFER_PER_PID:
1993 default:
1994 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
1995 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
1996 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
9ae110e2
JG
1997 attr->switch_timer_interval =
1998 DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
1999 attr->read_timer_interval =
2000 DEFAULT_UST_PID_CHANNEL_READ_TIMER;
0a9c6494
DG
2001 break;
2002 }
5edd7e09 2003 default:
441c16a7 2004 /* Default behavior: leave set to 0. */
5edd7e09
DG
2005 break;
2006 }
2007}
2008
5ba3702f
JG
2009int lttng_channel_get_discarded_event_count(struct lttng_channel *channel,
2010 uint64_t *discarded_events)
2011{
2012 int ret = 0;
2013 struct lttcomm_channel_extended *chan_ext;
2014
2015 if (!channel || !discarded_events) {
2016 ret = -LTTNG_ERR_INVALID;
2017 goto end;
2018 }
2019
2020 chan_ext = channel->attr.extended.ptr;
2021 if (!chan_ext) {
2022 /*
2023 * This can happen since the lttng_channel structure is
2024 * used for other tasks where this pointer is never set.
2025 */
2026 *discarded_events = 0;
2027 goto end;
2028 }
2029
2030 *discarded_events = chan_ext->discarded_events;
2031end:
2032 return ret;
2033}
2034
2035int lttng_channel_get_lost_packet_count(struct lttng_channel *channel,
2036 uint64_t *lost_packets)
2037{
2038 int ret = 0;
2039 struct lttcomm_channel_extended *chan_ext;
2040
2041 if (!channel || !lost_packets) {
2042 ret = -LTTNG_ERR_INVALID;
2043 goto end;
2044 }
2045
2046 chan_ext = channel->attr.extended.ptr;
2047 if (!chan_ext) {
2048 /*
2049 * This can happen since the lttng_channel structure is
2050 * used for other tasks where this pointer is never set.
2051 */
2052 *lost_packets = 0;
2053 goto end;
2054 }
2055
2056 *lost_packets = chan_ext->lost_packets;
2057end:
2058 return ret;
2059}
2060
fac6795d 2061/*
2269e89e 2062 * Check if session daemon is alive.
fac6795d 2063 *
2269e89e 2064 * Return 1 if alive or 0 if not.
1c8d13c8 2065 * On error returns a negative value.
fac6795d 2066 */
947308c4 2067int lttng_session_daemon_alive(void)
fac6795d
DG
2068{
2069 int ret;
2070
2071 ret = set_session_daemon_path();
2072 if (ret < 0) {
9ae110e2 2073 /* Error. */
fac6795d
DG
2074 return ret;
2075 }
2076
9d035200 2077 if (*sessiond_sock_path == '\0') {
2f70b271 2078 /*
9ae110e2
JG
2079 * No socket path set. Weird error which means the constructor
2080 * was not called.
2f70b271
DG
2081 */
2082 assert(0);
fac6795d
DG
2083 }
2084
2269e89e 2085 ret = try_connect_sessiond(sessiond_sock_path);
7d8234d9 2086 if (ret < 0) {
9ae110e2 2087 /* Not alive. */
7d8234d9
MD
2088 return 0;
2089 }
7d8234d9 2090
9ae110e2 2091 /* Is alive. */
947308c4 2092 return 1;
fac6795d
DG
2093}
2094
00e2e675 2095/*
a4b92340 2096 * Set URL for a consumer for a session and domain.
00e2e675
DG
2097 *
2098 * Return 0 on success, else a negative value.
2099 */
a4b92340
DG
2100int lttng_set_consumer_url(struct lttng_handle *handle,
2101 const char *control_url, const char *data_url)
00e2e675 2102{
3dd05a85 2103 int ret;
a4b92340 2104 ssize_t size;
00e2e675 2105 struct lttcomm_session_msg lsm;
a4b92340 2106 struct lttng_uri *uris = NULL;
00e2e675 2107
a4b92340 2108 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
2f70b271 2109 return -LTTNG_ERR_INVALID;
00e2e675
DG
2110 }
2111
a4b92340
DG
2112 memset(&lsm, 0, sizeof(lsm));
2113
00e2e675
DG
2114 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
2115
cac3069d 2116 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
00e2e675 2117 sizeof(lsm.session.name));
cac3069d 2118 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
00e2e675 2119
bc894455 2120 size = uri_parse_str_urls(control_url, data_url, &uris);
a4b92340 2121 if (size < 0) {
2f70b271 2122 return -LTTNG_ERR_INVALID;
a4b92340
DG
2123 }
2124
2125 lsm.u.uri.size = size;
00e2e675 2126
795a978d 2127 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
cac3069d 2128 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
2129
2130 free(uris);
2131 return ret;
00e2e675
DG
2132}
2133
2134/*
9c6bda17 2135 * [OBSOLETE]
00e2e675
DG
2136 */
2137int lttng_enable_consumer(struct lttng_handle *handle)
2138{
785d2d0d 2139 return -ENOSYS;
00e2e675
DG
2140}
2141
2142/*
9c6bda17 2143 * [OBSOLETE]
00e2e675
DG
2144 */
2145int lttng_disable_consumer(struct lttng_handle *handle)
2146{
785d2d0d 2147 return -ENOSYS;
00e2e675
DG
2148}
2149
07424f16
DG
2150/*
2151 * This is an extension of create session that is ONLY and SHOULD only be used
2152 * by the lttng command line program. It exists to avoid using URI parsing in
2153 * the lttng client.
2154 *
2155 * We need the date and time for the trace path subdirectory for the case where
2156 * the user does NOT define one using either -o or -U. Using the normal
2157 * lttng_create_session API call, we have no clue on the session daemon side if
2158 * the URL was generated automatically by the client or define by the user.
2159 *
2160 * So this function "wrapper" is hidden from the public API, takes the datetime
2161 * string and appends it if necessary to the URI subdirectory before sending it
2162 * to the session daemon.
2163 *
2164 * With this extra function, the lttng_create_session call behavior is not
2165 * changed and the timestamp is appended to the URI on the session daemon side
2166 * if necessary.
2167 */
2168int _lttng_create_session_ext(const char *name, const char *url,
2169 const char *datetime)
2170{
3dd05a85 2171 int ret;
07424f16
DG
2172 ssize_t size;
2173 struct lttcomm_session_msg lsm;
2174 struct lttng_uri *uris = NULL;
2175
2bba9e53 2176 if (name == NULL || datetime == NULL) {
2f70b271 2177 return -LTTNG_ERR_INVALID;
07424f16
DG
2178 }
2179
2180 memset(&lsm, 0, sizeof(lsm));
2181
2182 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 2183 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
07424f16 2184
9ae110e2 2185 /* There should never be a data URL. */
bc894455 2186 size = uri_parse_str_urls(url, NULL, &uris);
07424f16 2187 if (size < 0) {
3dd05a85
DG
2188 ret = -LTTNG_ERR_INVALID;
2189 goto error;
07424f16
DG
2190 }
2191
2192 lsm.u.uri.size = size;
2193
4b35a6b3 2194 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
da4aa2b8
DG
2195 /* Don't append datetime if the name was automatically created. */
2196 if (strncmp(name, DEFAULT_SESSION_NAME "-",
2197 strlen(DEFAULT_SESSION_NAME) + 1)) {
2198 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
2199 name, datetime);
2200 } else {
2201 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
2202 }
07424f16
DG
2203 if (ret < 0) {
2204 PERROR("snprintf uri subdir");
3dd05a85
DG
2205 ret = -LTTNG_ERR_FATAL;
2206 goto error;
07424f16
DG
2207 }
2208 }
2209
795a978d 2210 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
cac3069d 2211 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
2212
2213error:
2214 free(uris);
2215 return ret;
07424f16
DG
2216}
2217
806e2684
DG
2218/*
2219 * For a given session name, this call checks if the data is ready to be read
2220 * or is still being extracted by the consumer(s) hence not ready to be used by
2221 * any readers.
2222 */
6d805429 2223int lttng_data_pending(const char *session_name)
806e2684
DG
2224{
2225 int ret;
2226 struct lttcomm_session_msg lsm;
f6151c55 2227 uint8_t *pending = NULL;
806e2684
DG
2228
2229 if (session_name == NULL) {
2230 return -LTTNG_ERR_INVALID;
2231 }
2232
53efb85a 2233 memset(&lsm, 0, sizeof(lsm));
6d805429 2234 lsm.cmd_type = LTTNG_DATA_PENDING;
806e2684 2235
cac3069d
DG
2236 lttng_ctl_copy_string(lsm.session.name, session_name,
2237 sizeof(lsm.session.name));
806e2684 2238
f6151c55
JG
2239 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &pending);
2240 if (ret < 0) {
2241 goto end;
2242 } else if (ret != 1) {
2243 /* Unexpected payload size */
2244 ret = -LTTNG_ERR_INVALID;
2245 goto end;
806e2684
DG
2246 }
2247
f6151c55
JG
2248 ret = (int) *pending;
2249end:
2250 free(pending);
806e2684
DG
2251 return ret;
2252}
2253
27babd3a
DG
2254/*
2255 * Create a session exclusively used for snapshot.
2256 *
2257 * Returns LTTNG_OK on success or a negative error code.
2258 */
2259int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
2260{
2261 int ret;
2262 ssize_t size;
2263 struct lttcomm_session_msg lsm;
2264 struct lttng_uri *uris = NULL;
2265
2266 if (name == NULL) {
2267 return -LTTNG_ERR_INVALID;
2268 }
2269
2270 memset(&lsm, 0, sizeof(lsm));
2271
2272 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
2273 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
2274
2275 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
2276 if (size < 0) {
2277 return -LTTNG_ERR_INVALID;
2278 }
2279
2280 lsm.u.uri.size = size;
2281
795a978d 2282 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
27babd3a
DG
2283 sizeof(struct lttng_uri) * size, NULL);
2284
2285 free(uris);
2286 return ret;
2287}
2288
ecc48a90
JD
2289/*
2290 * Create a session exclusively used for live.
2291 *
2292 * Returns LTTNG_OK on success or a negative error code.
2293 */
2294int lttng_create_session_live(const char *name, const char *url,
2295 unsigned int timer_interval)
2296{
2297 int ret;
2298 ssize_t size;
2299 struct lttcomm_session_msg lsm;
2300 struct lttng_uri *uris = NULL;
2301
92805ee4 2302 if (name == NULL || timer_interval == 0) {
ecc48a90
JD
2303 return -LTTNG_ERR_INVALID;
2304 }
2305
2306 memset(&lsm, 0, sizeof(lsm));
2307
2308 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
2309 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
2310
1a241656
DG
2311 if (url) {
2312 size = uri_parse_str_urls(url, NULL, &uris);
2313 if (size <= 0) {
2314 ret = -LTTNG_ERR_INVALID;
2315 goto end;
2316 }
ecc48a90 2317
1a241656
DG
2318 /* file:// is not accepted for live session. */
2319 if (uris[0].dtype == LTTNG_DST_PATH) {
2320 ret = -LTTNG_ERR_INVALID;
2321 goto end;
2322 }
2323 } else {
2324 size = 0;
ecc48a90
JD
2325 }
2326
2327 lsm.u.session_live.nb_uri = size;
2328 lsm.u.session_live.timer_interval = timer_interval;
2329
795a978d 2330 ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris,
ecc48a90
JD
2331 sizeof(struct lttng_uri) * size, NULL);
2332
2333end:
2334 free(uris);
2335 return ret;
2336}
2337
a5dfbb9d
MD
2338/*
2339 * List PIDs in the tracker.
2340 *
1b18ce93
JG
2341 * enabled is set to whether the PID tracker is enabled.
2342 * pids is set to an allocated array of PIDs currently tracked. On
2343 * success, pids must be freed by the caller.
2344 * nr_pids is set to the number of entries contained by the pids array.
a5dfbb9d
MD
2345 *
2346 * Returns 0 on success, else a negative LTTng error code.
2347 */
2348int lttng_list_tracker_pids(struct lttng_handle *handle,
2349 int *_enabled, int32_t **_pids, size_t *_nr_pids)
2350{
ebbf5ab7
JR
2351 int ret;
2352 int enabled = 1;
a5dfbb9d
MD
2353 struct lttcomm_session_msg lsm;
2354 size_t nr_pids;
2355 int32_t *pids;
2356
2357 if (handle == NULL) {
2358 return -LTTNG_ERR_INVALID;
2359 }
2360
2361 memset(&lsm, 0, sizeof(lsm));
2362 lsm.cmd_type = LTTNG_LIST_TRACKER_PIDS;
2363 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
2364 sizeof(lsm.session.name));
2365 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2366
2367 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &pids);
2368 if (ret < 0) {
2369 return ret;
2370 }
2371 nr_pids = ret / sizeof(int32_t);
2372 if (nr_pids == 1 && pids[0] == -1) {
2373 free(pids);
2374 pids = NULL;
2375 enabled = 0;
2376 nr_pids = 0;
2377 }
2378 *_enabled = enabled;
2379 *_pids = pids;
2380 *_nr_pids = nr_pids;
2381 return 0;
2382}
2383
93ec662e
JD
2384/*
2385 * Regenerate the metadata for a session.
2386 * Return 0 on success, a negative error code on error.
2387 */
2388int lttng_metadata_regenerate(const char *session_name)
2389{
2390 int ret;
2391 struct lttcomm_session_msg lsm;
2392
2393 if (!session_name) {
2394 ret = -LTTNG_ERR_INVALID;
2395 goto end;
2396 }
2397
2398 memset(&lsm, 0, sizeof(lsm));
2399 lsm.cmd_type = LTTNG_METADATA_REGENERATE;
2400
2401 lttng_ctl_copy_string(lsm.session.name, session_name,
2402 sizeof(lsm.session.name));
2403
2404 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
2405 if (ret < 0) {
2406 goto end;
2407 }
2408
2409 ret = 0;
2410end:
2411 return ret;
2412}
2413
fac6795d 2414/*
9ae110e2 2415 * lib constructor.
fac6795d
DG
2416 */
2417static void __attribute__((constructor)) init()
2418{
2419 /* Set default session group */
bbccc3d2 2420 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
fac6795d 2421}
49cca668
DG
2422
2423/*
9ae110e2 2424 * lib destructor.
49cca668
DG
2425 */
2426static void __attribute__((destructor)) lttng_ctl_exit()
2427{
2428 free(tracing_group);
2429}
This page took 0.197349 seconds and 4 git commands to generate.