Fix: filter-parser.y: use zmalloc(), missing OOM check
[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>
fac6795d 7 *
d14d33bf
AM
8 * This library is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License, version 2.1 only,
10 * as published by the Free Software Foundation.
82a3637f
DG
11 *
12 * This library is distributed in the hope that it will be useful,
fac6795d 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
82a3637f
DG
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
d14d33bf
AM
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
fac6795d
DG
20 */
21
22#define _GNU_SOURCE
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 */
153static int send_session_varlen(void *data, size_t len)
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/*
1c8d13c8 201 * Check if we are in the specified group.
65beb5ff 202 *
2269e89e 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) {
224 perror("getgroups");
225 goto end;
226 }
227
228 /* Alloc group list of the right size */
229 grp_list = malloc(grp_list_size * sizeof(gid_t));
00795392 230 if (!grp_list) {
1c8d13c8 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) {
947308c4
DG
236 perror("getgroups");
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) {
272 /* Not alive */
2f70b271 273 goto error;
2269e89e
DG
274 }
275
276 ret = lttcomm_close_unix_sock(ret);
277 if (ret < 0) {
278 perror("lttcomm_close_unix_sock");
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{
2269e89e
DG
296 int in_tgroup = 0; /* In tracing group */
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
TD
314 if (in_tgroup) {
315 /* Tracing group */
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 /*
325 * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small;
326 * With GNU C >= 2.1, snprintf returns the required size (excluding closing null)
327 */
328 ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path),
feb0f3e5 329 DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir());
08a9c49f 330 if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) {
2f70b271 331 goto error;
947308c4 332 }
947308c4 333 }
08a9c49f 334end:
947308c4 335 return 0;
2f70b271
DG
336
337error:
338 return -1;
947308c4
DG
339}
340
65beb5ff
DG
341/*
342 * Connect to the LTTng session daemon.
343 *
344 * On success, return 0. On error, return -1.
345 */
346static int connect_sessiond(void)
347{
348 int ret;
349
da3c9ec1
DG
350 /* Don't try to connect if already connected. */
351 if (connected) {
352 return 0;
353 }
354
65beb5ff
DG
355 ret = set_session_daemon_path();
356 if (ret < 0) {
2f70b271 357 goto error;
65beb5ff
DG
358 }
359
360 /* Connect to the sesssion daemon */
361 ret = lttcomm_connect_unix_sock(sessiond_sock_path);
362 if (ret < 0) {
2f70b271 363 goto error;
65beb5ff
DG
364 }
365
366 sessiond_socket = ret;
367 connected = 1;
368
369 return 0;
2f70b271
DG
370
371error:
372 return -1;
65beb5ff
DG
373}
374
375/*
1c8d13c8
TD
376 * Clean disconnect from the session daemon.
377 * On success, return 0. On error, return -1.
65beb5ff
DG
378 */
379static int disconnect_sessiond(void)
380{
381 int ret = 0;
382
383 if (connected) {
384 ret = lttcomm_close_unix_sock(sessiond_socket);
385 sessiond_socket = 0;
386 connected = 0;
387 }
388
389 return ret;
390}
391
35a6fdb7 392/*
cd80958d 393 * Ask the session daemon a specific command and put the data into buf.
53a80697 394 * Takes extra var. len. data as input to send to the session daemon.
65beb5ff 395 *
af87c45a 396 * Return size of data (only payload, not header) or a negative error code.
65beb5ff 397 */
cac3069d
DG
398LTTNG_HIDDEN
399int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg *lsm,
a4b92340 400 void *vardata, size_t varlen, void **buf)
65beb5ff
DG
401{
402 int ret;
403 size_t size;
404 void *data = NULL;
cd80958d 405 struct lttcomm_lttng_msg llm;
65beb5ff
DG
406
407 ret = connect_sessiond();
408 if (ret < 0) {
2f70b271 409 ret = -LTTNG_ERR_NO_SESSIOND;
65beb5ff
DG
410 goto end;
411 }
412
65beb5ff 413 /* Send command to session daemon */
cd80958d 414 ret = send_session_msg(lsm);
65beb5ff 415 if (ret < 0) {
2f70b271 416 /* Ret value is a valid lttng error code. */
65beb5ff
DG
417 goto end;
418 }
53a80697
MD
419 /* Send var len data */
420 ret = send_session_varlen(vardata, varlen);
421 if (ret < 0) {
2f70b271 422 /* Ret value is a valid lttng error code. */
53a80697
MD
423 goto end;
424 }
65beb5ff
DG
425
426 /* Get header from data transmission */
427 ret = recv_data_sessiond(&llm, sizeof(llm));
428 if (ret < 0) {
2f70b271 429 /* Ret value is a valid lttng error code. */
65beb5ff
DG
430 goto end;
431 }
432
433 /* Check error code if OK */
f73fabfd 434 if (llm.ret_code != LTTNG_OK) {
65beb5ff
DG
435 ret = -llm.ret_code;
436 goto end;
437 }
438
439 size = llm.data_size;
440 if (size == 0) {
874d3f84 441 /* If client free with size 0 */
a45d5536
DG
442 if (buf != NULL) {
443 *buf = NULL;
444 }
7d29a247 445 ret = 0;
65beb5ff
DG
446 goto end;
447 }
448
449 data = (void*) malloc(size);
450
451 /* Get payload data */
452 ret = recv_data_sessiond(data, size);
453 if (ret < 0) {
454 free(data);
455 goto end;
456 }
457
83009e5e
DG
458 /*
459 * Extra protection not to dereference a NULL pointer. If buf is NULL at
460 * this point, an error is returned and data is freed.
461 */
462 if (buf == NULL) {
2f70b271 463 ret = -LTTNG_ERR_INVALID;
83009e5e
DG
464 free(data);
465 goto end;
466 }
467
65beb5ff
DG
468 *buf = data;
469 ret = size;
470
471end:
472 disconnect_sessiond();
473 return ret;
474}
475
9f19cc17 476/*
cd80958d 477 * Create lttng handle and return pointer.
1c8d13c8 478 * The returned pointer will be NULL in case of malloc() error.
9f19cc17 479 */
cd80958d
DG
480struct lttng_handle *lttng_create_handle(const char *session_name,
481 struct lttng_domain *domain)
9f19cc17 482{
2f70b271
DG
483 struct lttng_handle *handle = NULL;
484
485 if (domain == NULL) {
486 goto end;
487 }
cd80958d
DG
488
489 handle = malloc(sizeof(struct lttng_handle));
490 if (handle == NULL) {
2f70b271 491 PERROR("malloc handle");
cd80958d
DG
492 goto end;
493 }
494
495 /* Copy session name */
cac3069d 496 lttng_ctl_copy_string(handle->session_name, session_name,
cd80958d
DG
497 sizeof(handle->session_name));
498
499 /* Copy lttng domain */
cac3069d 500 lttng_ctl_copy_lttng_domain(&handle->domain, domain);
cd80958d
DG
501
502end:
503 return handle;
504}
505
506/*
507 * Destroy handle by free(3) the pointer.
508 */
509void lttng_destroy_handle(struct lttng_handle *handle)
510{
0e428499 511 free(handle);
eb354453
DG
512}
513
d9800920
DG
514/*
515 * Register an outside consumer.
1c8d13c8 516 * Returns size of returned session payload data or a negative error code.
d9800920
DG
517 */
518int lttng_register_consumer(struct lttng_handle *handle,
519 const char *socket_path)
520{
521 struct lttcomm_session_msg lsm;
522
2f70b271
DG
523 if (handle == NULL || socket_path == NULL) {
524 return -LTTNG_ERR_INVALID;
525 }
526
53efb85a 527 memset(&lsm, 0, sizeof(lsm));
d9800920 528 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
cac3069d 529 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
d9800920 530 sizeof(lsm.session.name));
cac3069d 531 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d9800920 532
cac3069d 533 lttng_ctl_copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path));
d9800920 534
cac3069d 535 return lttng_ctl_ask_sessiond(&lsm, NULL);
d9800920
DG
536}
537
1df4dedd 538/*
1c8d13c8
TD
539 * Start tracing for all traces of the session.
540 * Returns size of returned session payload data or a negative error code.
1df4dedd 541 */
6a4f824d 542int lttng_start_tracing(const char *session_name)
f3ed775e 543{
cd80958d
DG
544 struct lttcomm_session_msg lsm;
545
6a4f824d 546 if (session_name == NULL) {
2f70b271 547 return -LTTNG_ERR_INVALID;
cd80958d
DG
548 }
549
53efb85a 550 memset(&lsm, 0, sizeof(lsm));
cd80958d 551 lsm.cmd_type = LTTNG_START_TRACE;
6a4f824d 552
cac3069d
DG
553 lttng_ctl_copy_string(lsm.session.name, session_name,
554 sizeof(lsm.session.name));
cd80958d 555
cac3069d 556 return lttng_ctl_ask_sessiond(&lsm, NULL);
f3ed775e 557}
1df4dedd
DG
558
559/*
38ee087f 560 * Stop tracing for all traces of the session.
f3ed775e 561 */
38ee087f 562static int _lttng_stop_tracing(const char *session_name, int wait)
f3ed775e 563{
38ee087f 564 int ret, data_ret;
cd80958d
DG
565 struct lttcomm_session_msg lsm;
566
6a4f824d 567 if (session_name == NULL) {
2f70b271 568 return -LTTNG_ERR_INVALID;
6a4f824d
DG
569 }
570
53efb85a 571 memset(&lsm, 0, sizeof(lsm));
cd80958d 572 lsm.cmd_type = LTTNG_STOP_TRACE;
6a4f824d 573
cac3069d
DG
574 lttng_ctl_copy_string(lsm.session.name, session_name,
575 sizeof(lsm.session.name));
cd80958d 576
cac3069d 577 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
38ee087f
DG
578 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
579 goto error;
580 }
581
582 if (!wait) {
583 goto end;
584 }
585
38ee087f
DG
586 /* Check for data availability */
587 do {
6d805429 588 data_ret = lttng_data_pending(session_name);
38ee087f
DG
589 if (data_ret < 0) {
590 /* Return the data available call error. */
591 ret = data_ret;
592 goto error;
593 }
594
595 /*
596 * Data sleep time before retrying (in usec). Don't sleep if the call
597 * returned value indicates availability.
598 */
6d805429 599 if (data_ret) {
38ee087f 600 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
38ee087f 601 }
6d805429 602 } while (data_ret != 0);
38ee087f 603
38ee087f
DG
604end:
605error:
606 return ret;
607}
608
609/*
610 * Stop tracing and wait for data availability.
611 */
612int lttng_stop_tracing(const char *session_name)
613{
614 return _lttng_stop_tracing(session_name, 1);
615}
616
617/*
618 * Stop tracing but _don't_ wait for data availability.
619 */
620int lttng_stop_tracing_no_wait(const char *session_name)
621{
622 return _lttng_stop_tracing(session_name, 0);
f3ed775e
DG
623}
624
625/*
601d5acf
DG
626 * Add context to a channel.
627 *
628 * If the given channel is NULL, add the contexts to all channels.
629 * The event_name param is ignored.
af87c45a
DG
630 *
631 * Returns the size of the returned payload data or a negative error code.
1df4dedd 632 */
cd80958d 633int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
634 struct lttng_event_context *ctx, const char *event_name,
635 const char *channel_name)
d65106b1 636{
cd80958d
DG
637 struct lttcomm_session_msg lsm;
638
9d697d3d
DG
639 /* Safety check. Both are mandatory */
640 if (handle == NULL || ctx == NULL) {
2f70b271 641 return -LTTNG_ERR_INVALID;
cd80958d
DG
642 }
643
441c16a7
MD
644 memset(&lsm, 0, sizeof(lsm));
645
cd80958d
DG
646 lsm.cmd_type = LTTNG_ADD_CONTEXT;
647
85076754
MD
648 /* If no channel name, send empty string. */
649 if (channel_name == NULL) {
650 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
651 sizeof(lsm.u.context.channel_name));
652 } else {
653 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
654 sizeof(lsm.u.context.channel_name));
655 }
cd80958d 656
cac3069d 657 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d65106b1 658
9d697d3d 659 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
d65106b1 660
cac3069d 661 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
662 sizeof(lsm.session.name));
663
cac3069d 664 return lttng_ctl_ask_sessiond(&lsm, NULL);
d65106b1
DG
665}
666
f3ed775e 667/*
1c8d13c8
TD
668 * Enable event(s) for a channel.
669 * If no event name is specified, all events are enabled.
670 * If no channel name is specified, the default 'channel0' is used.
671 * Returns size of returned session payload data or a negative error code.
f3ed775e 672 */
cd80958d 673int lttng_enable_event(struct lttng_handle *handle,
38057ed1 674 struct lttng_event *ev, const char *channel_name)
1df4dedd 675{
f8a96544
JI
676 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
677 NULL, 0, NULL);
1df4dedd
DG
678}
679
53a80697 680/*
025faf73 681 * Create or enable an event with a filter expression.
178191b3 682 *
53a80697
MD
683 * Return negative error value on error.
684 * Return size of returned session payload data if OK.
685 */
025faf73 686int lttng_enable_event_with_filter(struct lttng_handle *handle,
178191b3 687 struct lttng_event *event, const char *channel_name,
53a80697
MD
688 const char *filter_expression)
689{
f8a96544
JI
690 return lttng_enable_event_with_exclusions(handle, event, channel_name,
691 filter_expression, 0, NULL);
53a80697
MD
692}
693
347c5ab5 694/*
0e115563 695 * Depending on the event, return a newly allocated agent filter expression or
347c5ab5
DG
696 * NULL if not applicable.
697 *
698 * An event with NO loglevel and the name is * will return NULL.
699 */
0e115563 700static char *set_agent_filter(const char *filter, struct lttng_event *ev)
347c5ab5
DG
701{
702 int err;
0e115563 703 char *agent_filter = NULL;
347c5ab5
DG
704
705 assert(ev);
706
707 /* Don't add filter for the '*' event. */
708 if (ev->name[0] != '*') {
709 if (filter) {
0e115563 710 err = asprintf(&agent_filter, "(%s) && (logger_name == \"%s\")", filter,
347c5ab5
DG
711 ev->name);
712 } else {
0e115563 713 err = asprintf(&agent_filter, "logger_name == \"%s\"", ev->name);
347c5ab5
DG
714 }
715 if (err < 0) {
716 PERROR("asprintf");
6a556f7b 717 goto error;
347c5ab5
DG
718 }
719 }
720
721 /* Add loglevel filtering if any for the JUL domain. */
722 if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) {
723 char *op;
724
725 if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) {
726 op = ">=";
727 } else {
728 op = "==";
729 }
730
0e115563 731 if (filter || agent_filter) {
6a556f7b
JG
732 char *new_filter;
733
fb0edb23 734 err = asprintf(&new_filter, "(%s) && (int_loglevel %s %d)",
0e115563 735 agent_filter ? agent_filter : filter, op,
347c5ab5 736 ev->loglevel);
0e115563
DG
737 if (agent_filter) {
738 free(agent_filter);
6a556f7b 739 }
0e115563 740 agent_filter = new_filter;
347c5ab5 741 } else {
0e115563 742 err = asprintf(&agent_filter, "int_loglevel %s %d", op,
347c5ab5
DG
743 ev->loglevel);
744 }
745 if (err < 0) {
746 PERROR("asprintf");
6a556f7b 747 goto error;
347c5ab5
DG
748 }
749 }
750
0e115563 751 return agent_filter;
6a556f7b 752error:
0e115563 753 free(agent_filter);
6a556f7b 754 return NULL;
347c5ab5
DG
755}
756
137b9942
DG
757/*
758 * Generate the filter bytecode from a give filter expression string. Put the
759 * newly allocated parser context in ctxp and populate the lsm object with the
760 * expression len.
761 *
762 * Return 0 on success else a LTTNG_ERR_* code and ctxp is untouched.
763 */
764static int generate_filter(char *filter_expression,
765 struct lttcomm_session_msg *lsm, struct filter_parser_ctx **ctxp)
766{
767 int ret;
768 struct filter_parser_ctx *ctx = NULL;
769 FILE *fmem = NULL;
770
771 assert(filter_expression);
772 assert(lsm);
773 assert(ctxp);
774
775 /*
776 * Casting const to non-const, as the underlying function will use it in
777 * read-only mode.
778 */
779 fmem = lttng_fmemopen((void *) filter_expression,
780 strlen(filter_expression), "r");
781 if (!fmem) {
782 fprintf(stderr, "Error opening memory as stream\n");
783 ret = -LTTNG_ERR_FILTER_NOMEM;
784 goto error;
785 }
786 ctx = filter_parser_ctx_alloc(fmem);
787 if (!ctx) {
788 fprintf(stderr, "Error allocating parser\n");
789 ret = -LTTNG_ERR_FILTER_NOMEM;
790 goto filter_alloc_error;
791 }
792 ret = filter_parser_ctx_append_ast(ctx);
793 if (ret) {
794 fprintf(stderr, "Parse error\n");
795 ret = -LTTNG_ERR_FILTER_INVAL;
796 goto parse_error;
797 }
798 ret = filter_visitor_set_parent(ctx);
799 if (ret) {
800 fprintf(stderr, "Set parent error\n");
801 ret = -LTTNG_ERR_FILTER_INVAL;
802 goto parse_error;
803 }
804 if (print_xml) {
805 ret = filter_visitor_print_xml(ctx, stdout, 0);
806 if (ret) {
807 fflush(stdout);
808 fprintf(stderr, "XML print error\n");
809 ret = -LTTNG_ERR_FILTER_INVAL;
810 goto parse_error;
811 }
812 }
813
814 dbg_printf("Generating IR... ");
815 fflush(stdout);
816 ret = filter_visitor_ir_generate(ctx);
817 if (ret) {
818 fprintf(stderr, "Generate IR error\n");
819 ret = -LTTNG_ERR_FILTER_INVAL;
820 goto parse_error;
821 }
822 dbg_printf("done\n");
823
824 dbg_printf("Validating IR... ");
825 fflush(stdout);
826 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
827 if (ret) {
828 ret = -LTTNG_ERR_FILTER_INVAL;
829 goto parse_error;
830 }
dcd5daf2
JG
831 /* Validate strings used as literals in the expression */
832 ret = filter_visitor_ir_validate_string(ctx);
833 if (ret) {
834 ret = -LTTNG_ERR_FILTER_INVAL;
835 goto parse_error;
836 }
137b9942
DG
837 dbg_printf("done\n");
838
839 dbg_printf("Generating bytecode... ");
840 fflush(stdout);
841 ret = filter_visitor_bytecode_generate(ctx);
842 if (ret) {
843 fprintf(stderr, "Generate bytecode error\n");
844 ret = -LTTNG_ERR_FILTER_INVAL;
845 goto parse_error;
846 }
847 dbg_printf("done\n");
848 dbg_printf("Size of bytecode generated: %u bytes.\n",
849 bytecode_get_len(&ctx->bytecode->b));
850
851 lsm->u.enable.bytecode_len = sizeof(ctx->bytecode->b)
852 + bytecode_get_len(&ctx->bytecode->b);
853 lsm->u.enable.expression_len = strlen(filter_expression) + 1;
854
855 /* No need to keep the memory stream. */
856 if (fclose(fmem) != 0) {
857 perror("fclose");
858 }
859
860 *ctxp = ctx;
861 return 0;
862
863parse_error:
137b9942
DG
864 filter_ir_free(ctx);
865 filter_parser_ctx_free(ctx);
866filter_alloc_error:
867 if (fclose(fmem) != 0) {
868 perror("fclose");
869 }
870error:
871 return ret;
872}
873
93deb080
JI
874/*
875 * Enable event(s) for a channel, possibly with exclusions and a filter.
876 * If no event name is specified, all events are enabled.
877 * If no channel name is specified, the default name is used.
878 * If filter expression is not NULL, the filter is set for the event.
879 * If exclusion count is not zero, the exclusions are set for the event.
880 * Returns size of returned session payload data or a negative error code.
881 */
882int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
883 struct lttng_event *ev, const char *channel_name,
e9efbcd3 884 const char *original_filter_expression,
93deb080
JI
885 int exclusion_count, char **exclusion_list)
886{
887 struct lttcomm_session_msg lsm;
64226865 888 char *varlen_data;
93deb080 889 int ret = 0;
137b9942 890 unsigned int free_filter_expression = 0;
93deb080 891 struct filter_parser_ctx *ctx = NULL;
e9efbcd3
JG
892 /*
893 * Cast as non-const since we may replace the filter expression
894 * by a dynamically allocated string. Otherwise, the original
895 * string is not modified.
896 */
897 char *filter_expression = (char *) original_filter_expression;
93deb080
JI
898
899 if (handle == NULL || ev == NULL) {
137b9942
DG
900 ret = -LTTNG_ERR_INVALID;
901 goto error;
93deb080
JI
902 }
903
904 /* Empty filter string will always be rejected by the parser
905 * anyway, so treat this corner-case early to eliminate
906 * lttng_fmemopen error for 0-byte allocation.
907 */
908 if (filter_expression && filter_expression[0] == '\0') {
137b9942
DG
909 ret = -LTTNG_ERR_INVALID;
910 goto error;
93deb080
JI
911 }
912
913 memset(&lsm, 0, sizeof(lsm));
914
915 /* If no channel name, send empty string. */
916 if (channel_name == NULL) {
917 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
918 sizeof(lsm.u.enable.channel_name));
919 } else {
920 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
921 sizeof(lsm.u.enable.channel_name));
922 }
923
18a720cd
MD
924 lsm.cmd_type = LTTNG_ENABLE_EVENT;
925 if (ev->name[0] == '\0') {
926 /* Enable all events */
927 lttng_ctl_copy_string(ev->name, "*", sizeof(ev->name));
6565421f 928 }
93deb080 929
6565421f 930 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
6e911cad 931 /* FIXME: copying non-packed struct to packed struct. */
93deb080
JI
932 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
933
934 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
935 sizeof(lsm.session.name));
936 lsm.u.enable.exclusion_count = exclusion_count;
937 lsm.u.enable.bytecode_len = 0;
938
9b21e6d5
DG
939 /*
940 * For the JUL domain, a filter is enforced except for the enable all
941 * event. This is done to avoid having the event in all sessions thus
942 * filtering by logger name.
943 */
944 if (exclusion_count == 0 && filter_expression == NULL &&
5cdb6027 945 (handle->domain.type != LTTNG_DOMAIN_JUL &&
0e115563
DG
946 handle->domain.type != LTTNG_DOMAIN_LOG4J &&
947 handle->domain.type != LTTNG_DOMAIN_PYTHON)) {
3e1c9ff7 948 goto ask_sessiond;
93deb080
JI
949 }
950
951 /*
952 * We have either a filter or some exclusions, so we need to set up
953 * a variable-length memory block from where to send the data
954 */
955
956 /* Parse filter expression */
5cdb6027 957 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
0e115563
DG
958 || handle->domain.type == LTTNG_DOMAIN_LOG4J
959 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
5cdb6027 960 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
0e115563
DG
961 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
962 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
963 char *agent_filter;
64226865 964
347c5ab5 965 /* Setup JUL filter if needed. */
0e115563
DG
966 agent_filter = set_agent_filter(filter_expression, ev);
967 if (!agent_filter) {
137b9942
DG
968 if (!filter_expression) {
969 /* No JUL and no filter, just skip everything below. */
970 goto ask_sessiond;
971 }
64226865
DG
972 } else {
973 /*
0e115563
DG
974 * With an agent filter, the original filter has been added to
975 * it thus replace the filter expression.
64226865 976 */
0e115563 977 filter_expression = agent_filter;
e9efbcd3 978 free_filter_expression = 1;
9b21e6d5 979 }
9b21e6d5 980 }
93deb080 981
137b9942 982 ret = generate_filter(filter_expression, &lsm, &ctx);
93deb080 983 if (ret) {
137b9942 984 goto filter_error;
93deb080 985 }
6b453b5e
JG
986 }
987
988 varlen_data = zmalloc(lsm.u.enable.bytecode_len
137b9942
DG
989 + lsm.u.enable.expression_len
990 + LTTNG_SYMBOL_NAME_LEN * exclusion_count);
6b453b5e
JG
991 if (!varlen_data) {
992 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
7ca1dc6f 993 goto mem_error;
6b453b5e 994 }
137b9942 995
6b453b5e
JG
996 /* Put exclusion names first in the data */
997 while (exclusion_count--) {
998 strncpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * exclusion_count,
137b9942 999 *(exclusion_list + exclusion_count), LTTNG_SYMBOL_NAME_LEN);
6b453b5e
JG
1000 }
1001 /* Add filter expression next */
1002 if (lsm.u.enable.expression_len != 0) {
1003 memcpy(varlen_data
1004 + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count,
1005 filter_expression,
1006 lsm.u.enable.expression_len);
1007 }
1008 /* Add filter bytecode next */
137b9942 1009 if (ctx && lsm.u.enable.bytecode_len != 0) {
6b453b5e
JG
1010 memcpy(varlen_data
1011 + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count
1012 + lsm.u.enable.expression_len,
1013 &ctx->bytecode->b,
1014 lsm.u.enable.bytecode_len);
93deb080
JI
1015 }
1016
1017 ret = lttng_ctl_ask_sessiond_varlen(&lsm, varlen_data,
67676bd8 1018 (LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count) +
137b9942 1019 lsm.u.enable.bytecode_len + lsm.u.enable.expression_len, NULL);
6b453b5e 1020 free(varlen_data);
93deb080 1021
7ca1dc6f
DG
1022mem_error:
1023 if (filter_expression && ctx) {
93deb080
JI
1024 filter_bytecode_free(ctx);
1025 filter_ir_free(ctx);
1026 filter_parser_ctx_free(ctx);
7ca1dc6f
DG
1027 }
1028filter_error:
1029 if (free_filter_expression) {
1030 /*
1031 * The filter expression has been replaced and must be freed as it is
1032 * not the original filter expression received as a parameter.
1033 */
1034 free(filter_expression);
93deb080 1035 }
137b9942
DG
1036error:
1037 /*
1038 * Return directly to the caller and don't ask the sessiond since something
1039 * went wrong in the parsing of data above.
1040 */
93deb080 1041 return ret;
3e1c9ff7
DG
1042
1043ask_sessiond:
1044 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1045 return ret;
93deb080
JI
1046}
1047
6e911cad
MD
1048int lttng_disable_event_ext(struct lttng_handle *handle,
1049 struct lttng_event *ev, const char *channel_name,
1050 const char *original_filter_expression)
1df4dedd 1051{
cd80958d 1052 struct lttcomm_session_msg lsm;
6e911cad
MD
1053 char *varlen_data;
1054 int ret = 0;
1055 unsigned int free_filter_expression = 0;
1056 struct filter_parser_ctx *ctx = NULL;
1057 /*
1058 * Cast as non-const since we may replace the filter expression
1059 * by a dynamically allocated string. Otherwise, the original
1060 * string is not modified.
1061 */
1062 char *filter_expression = (char *) original_filter_expression;
1df4dedd 1063
6e911cad
MD
1064 if (handle == NULL || ev == NULL) {
1065 ret = -LTTNG_ERR_INVALID;
1066 goto error;
1067 }
1068
1069 /* Empty filter string will always be rejected by the parser
1070 * anyway, so treat this corner-case early to eliminate
1071 * lttng_fmemopen error for 0-byte allocation.
1072 */
1073 if (filter_expression && filter_expression[0] == '\0') {
1074 ret = -LTTNG_ERR_INVALID;
1075 goto error;
cd80958d
DG
1076 }
1077
441c16a7
MD
1078 memset(&lsm, 0, sizeof(lsm));
1079
85076754
MD
1080 /* If no channel name, send empty string. */
1081 if (channel_name == NULL) {
1082 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
cd80958d 1083 sizeof(lsm.u.disable.channel_name));
f3ed775e 1084 } else {
85076754 1085 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
cd80958d 1086 sizeof(lsm.u.disable.channel_name));
eb354453
DG
1087 }
1088
18a720cd
MD
1089 lsm.cmd_type = LTTNG_DISABLE_EVENT;
1090 if (ev->name[0] == '\0') {
1091 /* Disable all events */
1092 lttng_ctl_copy_string(ev->name, "*", sizeof(ev->name));
f3ed775e
DG
1093 }
1094
6e911cad
MD
1095 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
1096 /* FIXME: copying non-packed struct to packed struct. */
1097 memcpy(&lsm.u.disable.event, ev, sizeof(lsm.u.disable.event));
1098
cac3069d 1099 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1100 sizeof(lsm.session.name));
6e911cad 1101 lsm.u.disable.bytecode_len = 0;
cd80958d 1102
6e911cad
MD
1103 /*
1104 * For the JUL domain, a filter is enforced except for the
1105 * disable all event. This is done to avoid having the event in
1106 * all sessions thus filtering by logger name.
1107 */
1108 if (filter_expression == NULL &&
1109 (handle->domain.type != LTTNG_DOMAIN_JUL &&
0e115563
DG
1110 handle->domain.type != LTTNG_DOMAIN_LOG4J &&
1111 handle->domain.type != LTTNG_DOMAIN_PYTHON)) {
6e911cad
MD
1112 goto ask_sessiond;
1113 }
1114
1115 /*
1116 * We have a filter, so we need to set up a variable-length
1117 * memory block from where to send the data.
1118 */
1119
1120 /* Parse filter expression */
1121 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL
0e115563
DG
1122 || handle->domain.type == LTTNG_DOMAIN_LOG4J
1123 || handle->domain.type == LTTNG_DOMAIN_PYTHON) {
6e911cad 1124 if (handle->domain.type == LTTNG_DOMAIN_JUL ||
0e115563
DG
1125 handle->domain.type == LTTNG_DOMAIN_LOG4J ||
1126 handle->domain.type == LTTNG_DOMAIN_PYTHON) {
1127 char *agent_filter;
6e911cad
MD
1128
1129 /* Setup JUL filter if needed. */
0e115563
DG
1130 agent_filter = set_agent_filter(filter_expression, ev);
1131 if (!agent_filter) {
6e911cad
MD
1132 if (!filter_expression) {
1133 /* No JUL and no filter, just skip everything below. */
1134 goto ask_sessiond;
1135 }
1136 } else {
1137 /*
1138 * With a JUL filter, the original filter has been added to it
1139 * thus replace the filter expression.
1140 */
0e115563 1141 filter_expression = agent_filter;
6e911cad
MD
1142 free_filter_expression = 1;
1143 }
1144 }
1145
1146 ret = generate_filter(filter_expression, &lsm, &ctx);
1147 if (ret) {
1148 goto filter_error;
1149 }
1150 }
1151
1152 varlen_data = zmalloc(lsm.u.disable.bytecode_len
1153 + lsm.u.disable.expression_len);
1154 if (!varlen_data) {
1155 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
1156 goto mem_error;
1157 }
1158
1159 /* Add filter expression */
1160 if (lsm.u.disable.expression_len != 0) {
1161 memcpy(varlen_data,
1162 filter_expression,
1163 lsm.u.disable.expression_len);
1164 }
1165 /* Add filter bytecode next */
1166 if (ctx && lsm.u.disable.bytecode_len != 0) {
1167 memcpy(varlen_data
1168 + lsm.u.disable.expression_len,
1169 &ctx->bytecode->b,
1170 lsm.u.disable.bytecode_len);
1171 }
1172
1173 ret = lttng_ctl_ask_sessiond_varlen(&lsm, varlen_data,
1174 lsm.u.disable.bytecode_len + lsm.u.disable.expression_len, NULL);
1175 free(varlen_data);
1176
1177mem_error:
1178 if (filter_expression && ctx) {
1179 filter_bytecode_free(ctx);
1180 filter_ir_free(ctx);
1181 filter_parser_ctx_free(ctx);
1182 }
1183filter_error:
1184 if (free_filter_expression) {
1185 /*
1186 * The filter expression has been replaced and must be freed as it is
1187 * not the original filter expression received as a parameter.
1188 */
1189 free(filter_expression);
1190 }
1191error:
1192 /*
1193 * Return directly to the caller and don't ask the sessiond since something
1194 * went wrong in the parsing of data above.
1195 */
1196 return ret;
1197
1198ask_sessiond:
1199 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
1200 return ret;
1201}
1202
1203/*
1204 * Disable event(s) of a channel and domain.
1205 * If no event name is specified, all events are disabled.
1206 * If no channel name is specified, the default 'channel0' is used.
1207 * Returns size of returned session payload data or a negative error code.
1208 */
1209int lttng_disable_event(struct lttng_handle *handle, const char *name,
1210 const char *channel_name)
1211{
1212 struct lttng_event ev;
1213
1214 memset(&ev, 0, sizeof(ev));
1215 ev.type = LTTNG_EVENT_ALL;
1216 lttng_ctl_copy_string(ev.name, name, sizeof(ev.name));
1217 return lttng_disable_event_ext(handle, &ev, channel_name, NULL);
1df4dedd
DG
1218}
1219
1220/*
1c8d13c8
TD
1221 * Enable channel per domain
1222 * Returns size of returned session payload data or a negative error code.
a5c5a2bd 1223 */
cd80958d 1224int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 1225 struct lttng_channel *chan)
a5c5a2bd 1226{
cd80958d
DG
1227 struct lttcomm_session_msg lsm;
1228
5117eeec
DG
1229 /*
1230 * NULL arguments are forbidden. No default values.
1231 */
1232 if (handle == NULL || chan == NULL) {
2f70b271 1233 return -LTTNG_ERR_INVALID;
cd80958d
DG
1234 }
1235
441c16a7
MD
1236 memset(&lsm, 0, sizeof(lsm));
1237
5117eeec 1238 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
7d29a247 1239
cd80958d
DG
1240 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
1241
cac3069d 1242 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
7d29a247 1243
cac3069d 1244 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1245 sizeof(lsm.session.name));
1246
cac3069d 1247 return lttng_ctl_ask_sessiond(&lsm, NULL);
8c0faa1d 1248}
1df4dedd 1249
2ef84c95 1250/*
1c8d13c8
TD
1251 * All tracing will be stopped for registered events of the channel.
1252 * Returns size of returned session payload data or a negative error code.
2ef84c95 1253 */
cd80958d 1254int lttng_disable_channel(struct lttng_handle *handle, const char *name)
2ef84c95 1255{
cd80958d
DG
1256 struct lttcomm_session_msg lsm;
1257
9d697d3d
DG
1258 /* Safety check. Both are mandatory */
1259 if (handle == NULL || name == NULL) {
2f70b271 1260 return -LTTNG_ERR_INVALID;
cd80958d
DG
1261 }
1262
441c16a7
MD
1263 memset(&lsm, 0, sizeof(lsm));
1264
cd80958d 1265 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1df4dedd 1266
cac3069d 1267 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
9d697d3d
DG
1268 sizeof(lsm.u.disable.channel_name));
1269
cac3069d 1270 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cd80958d 1271
cac3069d 1272 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1273 sizeof(lsm.session.name));
1274
cac3069d 1275 return lttng_ctl_ask_sessiond(&lsm, NULL);
ca95a216
DG
1276}
1277
fac6795d 1278/*
1c8d13c8
TD
1279 * Lists all available tracepoints of domain.
1280 * Sets the contents of the events array.
1281 * Returns the number of lttng_event entries in events;
1282 * on error, returns a negative value.
fac6795d 1283 */
cd80958d 1284int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 1285 struct lttng_event **events)
fac6795d 1286{
052da939 1287 int ret;
cd80958d
DG
1288 struct lttcomm_session_msg lsm;
1289
9d697d3d 1290 if (handle == NULL) {
2f70b271 1291 return -LTTNG_ERR_INVALID;
cd80958d 1292 }
fac6795d 1293
53efb85a 1294 memset(&lsm, 0, sizeof(lsm));
cd80958d 1295 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
cac3069d 1296 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2a71efd5 1297
cac3069d 1298 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
052da939
DG
1299 if (ret < 0) {
1300 return ret;
eb354453 1301 }
fac6795d 1302
9f19cc17 1303 return ret / sizeof(struct lttng_event);
fac6795d
DG
1304}
1305
f37d259d
MD
1306/*
1307 * Lists all available tracepoint fields of domain.
1308 * Sets the contents of the event field array.
1309 * Returns the number of lttng_event_field entries in events;
1310 * on error, returns a negative value.
1311 */
1312int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1313 struct lttng_event_field **fields)
1314{
1315 int ret;
1316 struct lttcomm_session_msg lsm;
1317
1318 if (handle == NULL) {
2f70b271 1319 return -LTTNG_ERR_INVALID;
f37d259d
MD
1320 }
1321
53efb85a 1322 memset(&lsm, 0, sizeof(lsm));
f37d259d 1323 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
cac3069d 1324 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f37d259d 1325
cac3069d 1326 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
f37d259d
MD
1327 if (ret < 0) {
1328 return ret;
1329 }
1330
1331 return ret / sizeof(struct lttng_event_field);
1332}
1333
834978fd
DG
1334/*
1335 * Lists all available kernel system calls. Allocates and sets the contents of
1336 * the events array.
1337 *
1338 * Returns the number of lttng_event entries in events; on error, returns a
1339 * negative value.
1340 */
1341int lttng_list_syscalls(struct lttng_event **events)
1342{
1343 int ret;
1344 struct lttcomm_session_msg lsm;
1345
1346 if (!events) {
1347 return -LTTNG_ERR_INVALID;
1348 }
1349
1350 memset(&lsm, 0, sizeof(lsm));
1351 lsm.cmd_type = LTTNG_LIST_SYSCALLS;
1352 /* Force kernel domain for system calls. */
1353 lsm.domain.type = LTTNG_DOMAIN_KERNEL;
1354
1355 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
1356 if (ret < 0) {
1357 return ret;
1358 }
1359
1360 return ret / sizeof(struct lttng_event);
1361}
1362
1657e9bb 1363/*
1c8d13c8
TD
1364 * Returns a human readable string describing
1365 * the error code (a negative value).
1657e9bb 1366 */
9a745bc7 1367const char *lttng_strerror(int code)
1657e9bb 1368{
f73fabfd 1369 return error_get_str(code);
1657e9bb
DG
1370}
1371
aaf97519 1372/*
a4b92340
DG
1373 * Create a brand new session using name and url for destination.
1374 *
f73fabfd 1375 * Returns LTTNG_OK on success or a negative error code.
00e2e675 1376 */
a4b92340 1377int lttng_create_session(const char *name, const char *url)
00e2e675 1378{
3dd05a85 1379 int ret;
a4b92340 1380 ssize_t size;
00e2e675 1381 struct lttcomm_session_msg lsm;
a4b92340 1382 struct lttng_uri *uris = NULL;
00e2e675 1383
a4b92340 1384 if (name == NULL) {
2f70b271 1385 return -LTTNG_ERR_INVALID;
00e2e675
DG
1386 }
1387
a4b92340 1388 memset(&lsm, 0, sizeof(lsm));
00e2e675 1389
a4b92340 1390 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1391 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
a4b92340
DG
1392
1393 /* There should never be a data URL */
bc894455 1394 size = uri_parse_str_urls(url, NULL, &uris);
a4b92340 1395 if (size < 0) {
2f70b271 1396 return -LTTNG_ERR_INVALID;
00e2e675
DG
1397 }
1398
a4b92340
DG
1399 lsm.u.uri.size = size;
1400
cac3069d
DG
1401 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1402 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1403
1404 free(uris);
1405 return ret;
00e2e675
DG
1406}
1407
8028d920 1408/*
8028d920 1409 * Destroy session using name.
1c8d13c8 1410 * Returns size of returned session payload data or a negative error code.
8028d920 1411 */
843f5df9 1412int lttng_destroy_session(const char *session_name)
8028d920 1413{
cd80958d
DG
1414 struct lttcomm_session_msg lsm;
1415
843f5df9 1416 if (session_name == NULL) {
2f70b271 1417 return -LTTNG_ERR_INVALID;
cd80958d
DG
1418 }
1419
53efb85a 1420 memset(&lsm, 0, sizeof(lsm));
cd80958d 1421 lsm.cmd_type = LTTNG_DESTROY_SESSION;
843f5df9 1422
cac3069d
DG
1423 lttng_ctl_copy_string(lsm.session.name, session_name,
1424 sizeof(lsm.session.name));
cd80958d 1425
cac3069d 1426 return lttng_ctl_ask_sessiond(&lsm, NULL);
aaf97519
DG
1427}
1428
57167058 1429/*
57167058 1430 * Ask the session daemon for all available sessions.
1c8d13c8
TD
1431 * Sets the contents of the sessions array.
1432 * Returns the number of lttng_session entries in sessions;
1433 * on error, returns a negative value.
57167058 1434 */
ca95a216 1435int lttng_list_sessions(struct lttng_session **sessions)
57167058 1436{
ca95a216 1437 int ret;
cd80958d 1438 struct lttcomm_session_msg lsm;
57167058 1439
53efb85a 1440 memset(&lsm, 0, sizeof(lsm));
cd80958d 1441 lsm.cmd_type = LTTNG_LIST_SESSIONS;
cac3069d 1442 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
57167058 1443 if (ret < 0) {
ca95a216 1444 return ret;
57167058
DG
1445 }
1446
ca95a216 1447 return ret / sizeof(struct lttng_session);
57167058
DG
1448}
1449
9f19cc17 1450/*
1c8d13c8
TD
1451 * Ask the session daemon for all available domains of a session.
1452 * Sets the contents of the domains array.
1453 * Returns the number of lttng_domain entries in domains;
1454 * on error, returns a negative value.
9f19cc17 1455 */
330be774 1456int lttng_list_domains(const char *session_name,
cd80958d 1457 struct lttng_domain **domains)
9f19cc17
DG
1458{
1459 int ret;
cd80958d
DG
1460 struct lttcomm_session_msg lsm;
1461
330be774 1462 if (session_name == NULL) {
2f70b271 1463 return -LTTNG_ERR_INVALID;
cd80958d 1464 }
9f19cc17 1465
53efb85a 1466 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
1467 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1468
cac3069d
DG
1469 lttng_ctl_copy_string(lsm.session.name, session_name,
1470 sizeof(lsm.session.name));
cd80958d 1471
cac3069d 1472 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
9f19cc17
DG
1473 if (ret < 0) {
1474 return ret;
1475 }
1476
1477 return ret / sizeof(struct lttng_domain);
1478}
1479
1480/*
1c8d13c8
TD
1481 * Ask the session daemon for all available channels of a session.
1482 * Sets the contents of the channels array.
1483 * Returns the number of lttng_channel entries in channels;
1484 * on error, returns a negative value.
9f19cc17 1485 */
cd80958d
DG
1486int lttng_list_channels(struct lttng_handle *handle,
1487 struct lttng_channel **channels)
9f19cc17
DG
1488{
1489 int ret;
cd80958d
DG
1490 struct lttcomm_session_msg lsm;
1491
9d697d3d 1492 if (handle == NULL) {
2f70b271 1493 return -LTTNG_ERR_INVALID;
cd80958d
DG
1494 }
1495
53efb85a 1496 memset(&lsm, 0, sizeof(lsm));
cd80958d 1497 lsm.cmd_type = LTTNG_LIST_CHANNELS;
cac3069d 1498 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1499 sizeof(lsm.session.name));
9f19cc17 1500
cac3069d 1501 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1502
cac3069d 1503 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
9f19cc17
DG
1504 if (ret < 0) {
1505 return ret;
1506 }
1507
1508 return ret / sizeof(struct lttng_channel);
1509}
1510
1511/*
1c8d13c8
TD
1512 * Ask the session daemon for all available events of a session channel.
1513 * Sets the contents of the events array.
1514 * Returns the number of lttng_event entries in events;
1515 * on error, returns a negative value.
9f19cc17 1516 */
cd80958d
DG
1517int lttng_list_events(struct lttng_handle *handle,
1518 const char *channel_name, struct lttng_event **events)
9f19cc17
DG
1519{
1520 int ret;
cd80958d 1521 struct lttcomm_session_msg lsm;
9f19cc17 1522
9d697d3d
DG
1523 /* Safety check. An handle and channel name are mandatory */
1524 if (handle == NULL || channel_name == NULL) {
2f70b271 1525 return -LTTNG_ERR_INVALID;
cd80958d
DG
1526 }
1527
53efb85a 1528 memset(&lsm, 0, sizeof(lsm));
cd80958d 1529 lsm.cmd_type = LTTNG_LIST_EVENTS;
cac3069d 1530 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1531 sizeof(lsm.session.name));
cac3069d 1532 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
cd80958d
DG
1533 sizeof(lsm.u.list.channel_name));
1534
cac3069d 1535 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1536
cac3069d 1537 ret = lttng_ctl_ask_sessiond(&lsm, (void**) events);
9f19cc17
DG
1538 if (ret < 0) {
1539 return ret;
1540 }
1541
1542 return ret / sizeof(struct lttng_event);
1543}
1544
fac6795d 1545/*
1c8d13c8
TD
1546 * Sets the tracing_group variable with name.
1547 * This function allocates memory pointed to by tracing_group.
1548 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
fac6795d
DG
1549 */
1550int lttng_set_tracing_group(const char *name)
1551{
9d697d3d 1552 if (name == NULL) {
2f70b271 1553 return -LTTNG_ERR_INVALID;
9d697d3d
DG
1554 }
1555
fac6795d 1556 if (asprintf(&tracing_group, "%s", name) < 0) {
2f70b271 1557 return -LTTNG_ERR_FATAL;
fac6795d
DG
1558 }
1559
1560 return 0;
1561}
1562
d0254c7c 1563/*
af87c45a 1564 * Returns size of returned session payload data or a negative error code.
d0254c7c 1565 */
cd80958d 1566int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
1567 struct lttng_calibrate *calibrate)
1568{
cd80958d 1569 struct lttcomm_session_msg lsm;
d0254c7c 1570
9d697d3d
DG
1571 /* Safety check. NULL pointer are forbidden */
1572 if (handle == NULL || calibrate == NULL) {
2f70b271 1573 return -LTTNG_ERR_INVALID;
cd80958d 1574 }
d0254c7c 1575
53efb85a 1576 memset(&lsm, 0, sizeof(lsm));
cd80958d 1577 lsm.cmd_type = LTTNG_CALIBRATE;
cac3069d 1578 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d0254c7c 1579
cd80958d
DG
1580 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
1581
cac3069d 1582 return lttng_ctl_ask_sessiond(&lsm, NULL);
d0254c7c
MD
1583}
1584
5edd7e09
DG
1585/*
1586 * Set default channel attributes.
441c16a7 1587 * If either or both of the arguments are null, attr content is zeroe'd.
5edd7e09
DG
1588 */
1589void lttng_channel_set_default_attr(struct lttng_domain *domain,
1590 struct lttng_channel_attr *attr)
1591{
1592 /* Safety check */
1593 if (attr == NULL || domain == NULL) {
1594 return;
1595 }
1596
eacaa7a6
DS
1597 memset(attr, 0, sizeof(struct lttng_channel_attr));
1598
0a9c6494
DG
1599 /* Same for all domains. */
1600 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
1601 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
1602 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
1603
5edd7e09
DG
1604 switch (domain->type) {
1605 case LTTNG_DOMAIN_KERNEL:
d92ff3ef
DG
1606 attr->switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
1607 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
3e230f92 1608 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
5edd7e09
DG
1609 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
1610 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1611 break;
1612 case LTTNG_DOMAIN_UST:
0a9c6494
DG
1613 switch (domain->buf_type) {
1614 case LTTNG_BUFFER_PER_UID:
1615 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
1616 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
1617 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
1618 attr->switch_timer_interval = DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
1619 attr->read_timer_interval = DEFAULT_UST_UID_CHANNEL_READ_TIMER;
1620 break;
1621 case LTTNG_BUFFER_PER_PID:
1622 default:
1623 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
1624 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
1625 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
1626 attr->switch_timer_interval = DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
1627 attr->read_timer_interval = DEFAULT_UST_PID_CHANNEL_READ_TIMER;
1628 break;
1629 }
5edd7e09 1630 default:
441c16a7 1631 /* Default behavior: leave set to 0. */
5edd7e09
DG
1632 break;
1633 }
1634}
1635
fac6795d 1636/*
2269e89e 1637 * Check if session daemon is alive.
fac6795d 1638 *
2269e89e 1639 * Return 1 if alive or 0 if not.
1c8d13c8 1640 * On error returns a negative value.
fac6795d 1641 */
947308c4 1642int lttng_session_daemon_alive(void)
fac6795d
DG
1643{
1644 int ret;
1645
1646 ret = set_session_daemon_path();
1647 if (ret < 0) {
947308c4 1648 /* Error */
fac6795d
DG
1649 return ret;
1650 }
1651
9d035200 1652 if (*sessiond_sock_path == '\0') {
2f70b271
DG
1653 /*
1654 * No socket path set. Weird error which means the constructor was not
1655 * called.
1656 */
1657 assert(0);
fac6795d
DG
1658 }
1659
2269e89e 1660 ret = try_connect_sessiond(sessiond_sock_path);
7d8234d9
MD
1661 if (ret < 0) {
1662 /* Not alive */
1663 return 0;
1664 }
7d8234d9 1665
947308c4
DG
1666 /* Is alive */
1667 return 1;
fac6795d
DG
1668}
1669
00e2e675 1670/*
a4b92340 1671 * Set URL for a consumer for a session and domain.
00e2e675
DG
1672 *
1673 * Return 0 on success, else a negative value.
1674 */
a4b92340
DG
1675int lttng_set_consumer_url(struct lttng_handle *handle,
1676 const char *control_url, const char *data_url)
00e2e675 1677{
3dd05a85 1678 int ret;
a4b92340 1679 ssize_t size;
00e2e675 1680 struct lttcomm_session_msg lsm;
a4b92340 1681 struct lttng_uri *uris = NULL;
00e2e675 1682
a4b92340 1683 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
2f70b271 1684 return -LTTNG_ERR_INVALID;
00e2e675
DG
1685 }
1686
a4b92340
DG
1687 memset(&lsm, 0, sizeof(lsm));
1688
00e2e675
DG
1689 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
1690
cac3069d 1691 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
00e2e675 1692 sizeof(lsm.session.name));
cac3069d 1693 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
00e2e675 1694
bc894455 1695 size = uri_parse_str_urls(control_url, data_url, &uris);
a4b92340 1696 if (size < 0) {
2f70b271 1697 return -LTTNG_ERR_INVALID;
a4b92340
DG
1698 }
1699
1700 lsm.u.uri.size = size;
00e2e675 1701
cac3069d
DG
1702 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1703 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1704
1705 free(uris);
1706 return ret;
00e2e675
DG
1707}
1708
1709/*
9c6bda17 1710 * [OBSOLETE]
00e2e675
DG
1711 */
1712int lttng_enable_consumer(struct lttng_handle *handle)
1713{
785d2d0d 1714 return -ENOSYS;
00e2e675
DG
1715}
1716
1717/*
9c6bda17 1718 * [OBSOLETE]
00e2e675
DG
1719 */
1720int lttng_disable_consumer(struct lttng_handle *handle)
1721{
785d2d0d 1722 return -ENOSYS;
00e2e675
DG
1723}
1724
07424f16
DG
1725/*
1726 * This is an extension of create session that is ONLY and SHOULD only be used
1727 * by the lttng command line program. It exists to avoid using URI parsing in
1728 * the lttng client.
1729 *
1730 * We need the date and time for the trace path subdirectory for the case where
1731 * the user does NOT define one using either -o or -U. Using the normal
1732 * lttng_create_session API call, we have no clue on the session daemon side if
1733 * the URL was generated automatically by the client or define by the user.
1734 *
1735 * So this function "wrapper" is hidden from the public API, takes the datetime
1736 * string and appends it if necessary to the URI subdirectory before sending it
1737 * to the session daemon.
1738 *
1739 * With this extra function, the lttng_create_session call behavior is not
1740 * changed and the timestamp is appended to the URI on the session daemon side
1741 * if necessary.
1742 */
1743int _lttng_create_session_ext(const char *name, const char *url,
1744 const char *datetime)
1745{
3dd05a85 1746 int ret;
07424f16
DG
1747 ssize_t size;
1748 struct lttcomm_session_msg lsm;
1749 struct lttng_uri *uris = NULL;
1750
2bba9e53 1751 if (name == NULL || datetime == NULL) {
2f70b271 1752 return -LTTNG_ERR_INVALID;
07424f16
DG
1753 }
1754
1755 memset(&lsm, 0, sizeof(lsm));
1756
1757 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1758 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
07424f16
DG
1759
1760 /* There should never be a data URL */
bc894455 1761 size = uri_parse_str_urls(url, NULL, &uris);
07424f16 1762 if (size < 0) {
3dd05a85
DG
1763 ret = -LTTNG_ERR_INVALID;
1764 goto error;
07424f16
DG
1765 }
1766
1767 lsm.u.uri.size = size;
1768
4b35a6b3 1769 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
da4aa2b8
DG
1770 /* Don't append datetime if the name was automatically created. */
1771 if (strncmp(name, DEFAULT_SESSION_NAME "-",
1772 strlen(DEFAULT_SESSION_NAME) + 1)) {
1773 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
1774 name, datetime);
1775 } else {
1776 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
1777 }
07424f16
DG
1778 if (ret < 0) {
1779 PERROR("snprintf uri subdir");
3dd05a85
DG
1780 ret = -LTTNG_ERR_FATAL;
1781 goto error;
07424f16
DG
1782 }
1783 }
1784
cac3069d
DG
1785 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1786 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1787
1788error:
1789 free(uris);
1790 return ret;
07424f16
DG
1791}
1792
806e2684
DG
1793/*
1794 * For a given session name, this call checks if the data is ready to be read
1795 * or is still being extracted by the consumer(s) hence not ready to be used by
1796 * any readers.
1797 */
6d805429 1798int lttng_data_pending(const char *session_name)
806e2684
DG
1799{
1800 int ret;
1801 struct lttcomm_session_msg lsm;
1802
1803 if (session_name == NULL) {
1804 return -LTTNG_ERR_INVALID;
1805 }
1806
53efb85a 1807 memset(&lsm, 0, sizeof(lsm));
6d805429 1808 lsm.cmd_type = LTTNG_DATA_PENDING;
806e2684 1809
cac3069d
DG
1810 lttng_ctl_copy_string(lsm.session.name, session_name,
1811 sizeof(lsm.session.name));
806e2684 1812
cac3069d 1813 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
806e2684
DG
1814
1815 /*
cac3069d
DG
1816 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1817 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1818 * that the data is available. Yes it is hackish but for now this is the
1819 * only way.
806e2684
DG
1820 */
1821 if (ret == -1) {
1822 ret = 1;
1823 }
1824
1825 return ret;
1826}
1827
27babd3a
DG
1828/*
1829 * Create a session exclusively used for snapshot.
1830 *
1831 * Returns LTTNG_OK on success or a negative error code.
1832 */
1833int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
1834{
1835 int ret;
1836 ssize_t size;
1837 struct lttcomm_session_msg lsm;
1838 struct lttng_uri *uris = NULL;
1839
1840 if (name == NULL) {
1841 return -LTTNG_ERR_INVALID;
1842 }
1843
1844 memset(&lsm, 0, sizeof(lsm));
1845
1846 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
1847 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1848
1849 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
1850 if (size < 0) {
1851 return -LTTNG_ERR_INVALID;
1852 }
1853
1854 lsm.u.uri.size = size;
1855
1856 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1857 sizeof(struct lttng_uri) * size, NULL);
1858
1859 free(uris);
1860 return ret;
1861}
1862
ecc48a90
JD
1863/*
1864 * Create a session exclusively used for live.
1865 *
1866 * Returns LTTNG_OK on success or a negative error code.
1867 */
1868int lttng_create_session_live(const char *name, const char *url,
1869 unsigned int timer_interval)
1870{
1871 int ret;
1872 ssize_t size;
1873 struct lttcomm_session_msg lsm;
1874 struct lttng_uri *uris = NULL;
1875
1876 if (name == NULL) {
1877 return -LTTNG_ERR_INVALID;
1878 }
1879
1880 memset(&lsm, 0, sizeof(lsm));
1881
1882 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
1883 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1884
1a241656
DG
1885 if (url) {
1886 size = uri_parse_str_urls(url, NULL, &uris);
1887 if (size <= 0) {
1888 ret = -LTTNG_ERR_INVALID;
1889 goto end;
1890 }
ecc48a90 1891
1a241656
DG
1892 /* file:// is not accepted for live session. */
1893 if (uris[0].dtype == LTTNG_DST_PATH) {
1894 ret = -LTTNG_ERR_INVALID;
1895 goto end;
1896 }
1897 } else {
1898 size = 0;
ecc48a90
JD
1899 }
1900
1901 lsm.u.session_live.nb_uri = size;
1902 lsm.u.session_live.timer_interval = timer_interval;
1903
1904 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1905 sizeof(struct lttng_uri) * size, NULL);
1906
1907end:
1908 free(uris);
1909 return ret;
1910}
1911
fac6795d
DG
1912/*
1913 * lib constructor
1914 */
1915static void __attribute__((constructor)) init()
1916{
1917 /* Set default session group */
bbccc3d2 1918 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
fac6795d 1919}
49cca668
DG
1920
1921/*
1922 * lib destructor
1923 */
1924static void __attribute__((destructor)) lttng_ctl_exit()
1925{
1926 free(tracing_group);
1927}
This page took 0.167951 seconds and 5 git commands to generate.