Fix: lttng-ctl: 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
44a5e5eb 23#include <assert.h>
fac6795d 24#include <grp.h>
1e307fab 25#include <errno.h>
fac6795d
DG
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <unistd.h>
30
990570ed
DG
31#include <common/common.h>
32#include <common/defaults.h>
db758600 33#include <common/sessiond-comm/sessiond-comm.h>
a4b92340 34#include <common/uri.h>
feb0f3e5 35#include <common/utils.h>
1e307fab 36#include <lttng/lttng.h>
0c89d795 37#include <lttng/health-internal.h>
fac6795d 38
d00c599e
DG
39#include "filter/filter-ast.h"
40#include "filter/filter-parser.h"
41#include "filter/filter-bytecode.h"
42#include "filter/memstream.h"
cac3069d 43#include "lttng-ctl-helper.h"
53a80697
MD
44
45#ifdef DEBUG
d00c599e 46static const int print_xml = 1;
53a80697
MD
47#define dbg_printf(fmt, args...) \
48 printf("[debug liblttng-ctl] " fmt, ## args)
49#else
d00c599e 50static const int print_xml = 0;
53a80697
MD
51#define dbg_printf(fmt, args...) \
52do { \
53 /* do nothing but check printf format */ \
54 if (0) \
55 printf("[debug liblttnctl] " fmt, ## args); \
56} while (0)
57#endif
58
59
fac6795d
DG
60/* Socket to session daemon for communication */
61static int sessiond_socket;
62static char sessiond_sock_path[PATH_MAX];
63
fac6795d
DG
64/* Variables */
65static char *tracing_group;
66static int connected;
67
97e19046
DG
68/* Global */
69
70/*
71 * Those two variables are used by error.h to silent or control the verbosity of
72 * error message. They are global to the library so application linking with it
73 * are able to compile correctly and also control verbosity of the library.
97e19046
DG
74 */
75int lttng_opt_quiet;
76int lttng_opt_verbose;
77
99497cd0
MD
78/*
79 * Copy string from src to dst and enforce null terminated byte.
80 */
cac3069d
DG
81LTTNG_HIDDEN
82void lttng_ctl_copy_string(char *dst, const char *src, size_t len)
99497cd0 83{
e7d6716d 84 if (src && dst) {
99497cd0
MD
85 strncpy(dst, src, len);
86 /* Enforce the NULL terminated byte */
87 dst[len - 1] = '\0';
cd80958d
DG
88 } else if (dst) {
89 dst[0] = '\0';
99497cd0
MD
90 }
91}
92
fac6795d 93/*
cd80958d 94 * Copy domain to lttcomm_session_msg domain.
fac6795d 95 *
cd80958d
DG
96 * If domain is unknown, default domain will be the kernel.
97 */
cac3069d
DG
98LTTNG_HIDDEN
99void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst,
100 struct lttng_domain *src)
cd80958d
DG
101{
102 if (src && dst) {
103 switch (src->type) {
00e2e675
DG
104 case LTTNG_DOMAIN_KERNEL:
105 case LTTNG_DOMAIN_UST:
b9dfb167 106 case LTTNG_DOMAIN_JUL:
00e2e675
DG
107 memcpy(dst, src, sizeof(struct lttng_domain));
108 break;
109 default:
110 memset(dst, 0, sizeof(struct lttng_domain));
00e2e675 111 break;
cd80958d
DG
112 }
113 }
114}
115
116/*
117 * Send lttcomm_session_msg to the session daemon.
fac6795d 118 *
1c8d13c8
TD
119 * On success, returns the number of bytes sent (>=0)
120 * On error, returns -1
fac6795d 121 */
cd80958d 122static int send_session_msg(struct lttcomm_session_msg *lsm)
fac6795d
DG
123{
124 int ret;
125
126 if (!connected) {
2f70b271 127 ret = -LTTNG_ERR_NO_SESSIOND;
e065084a 128 goto end;
fac6795d
DG
129 }
130
a4b92340
DG
131 DBG("LSM cmd type : %d", lsm->cmd_type);
132
be040666 133 ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm,
cd80958d 134 sizeof(struct lttcomm_session_msg));
2f70b271
DG
135 if (ret < 0) {
136 ret = -LTTNG_ERR_FATAL;
137 }
e065084a
DG
138
139end:
140 return ret;
141}
142
53a80697
MD
143/*
144 * Send var len data to the session daemon.
145 *
146 * On success, returns the number of bytes sent (>=0)
147 * On error, returns -1
148 */
149static int send_session_varlen(void *data, size_t len)
150{
151 int ret;
152
153 if (!connected) {
2f70b271 154 ret = -LTTNG_ERR_NO_SESSIOND;
53a80697
MD
155 goto end;
156 }
a4b92340 157
53a80697
MD
158 if (!data || !len) {
159 ret = 0;
160 goto end;
161 }
162
163 ret = lttcomm_send_unix_sock(sessiond_socket, data, len);
2f70b271
DG
164 if (ret < 0) {
165 ret = -LTTNG_ERR_FATAL;
166 }
53a80697
MD
167
168end:
169 return ret;
170}
171
e065084a 172/*
cd80958d 173 * Receive data from the sessiond socket.
e065084a 174 *
1c8d13c8
TD
175 * On success, returns the number of bytes received (>=0)
176 * On error, returns -1 (recvmsg() error) or -ENOTCONN
e065084a 177 */
ca95a216 178static int recv_data_sessiond(void *buf, size_t len)
e065084a
DG
179{
180 int ret;
181
182 if (!connected) {
2f70b271 183 ret = -LTTNG_ERR_NO_SESSIOND;
e065084a 184 goto end;
fac6795d
DG
185 }
186
ca95a216 187 ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len);
2f70b271
DG
188 if (ret < 0) {
189 ret = -LTTNG_ERR_FATAL;
190 }
fac6795d 191
e065084a 192end:
fac6795d
DG
193 return ret;
194}
195
196/*
1c8d13c8 197 * Check if we are in the specified group.
65beb5ff 198 *
2269e89e 199 * If yes return 1, else return -1.
947308c4 200 */
6c71277b
MD
201LTTNG_HIDDEN
202int lttng_check_tracing_group(void)
947308c4
DG
203{
204 struct group *grp_tracing; /* no free(). See getgrnam(3) */
205 gid_t *grp_list;
206 int grp_list_size, grp_id, i;
207 int ret = -1;
6c71277b 208 const char *grp_name = tracing_group;
947308c4
DG
209
210 /* Get GID of group 'tracing' */
211 grp_tracing = getgrnam(grp_name);
b4d8603b
MD
212 if (!grp_tracing) {
213 /* If grp_tracing is NULL, the group does not exist. */
947308c4
DG
214 goto end;
215 }
216
217 /* Get number of supplementary group IDs */
218 grp_list_size = getgroups(0, NULL);
219 if (grp_list_size < 0) {
220 perror("getgroups");
221 goto end;
222 }
223
224 /* Alloc group list of the right size */
633dd985 225 grp_list = zmalloc(grp_list_size * sizeof(gid_t));
00795392 226 if (!grp_list) {
1c8d13c8 227 perror("malloc");
00795392
MD
228 goto end;
229 }
947308c4 230 grp_id = getgroups(grp_list_size, grp_list);
1c8d13c8 231 if (grp_id < 0) {
947308c4
DG
232 perror("getgroups");
233 goto free_list;
234 }
235
236 for (i = 0; i < grp_list_size; i++) {
237 if (grp_list[i] == grp_tracing->gr_gid) {
2269e89e 238 ret = 1;
947308c4
DG
239 break;
240 }
241 }
242
243free_list:
244 free(grp_list);
245
246end:
247 return ret;
248}
249
250/*
2269e89e
DG
251 * Try connect to session daemon with sock_path.
252 *
253 * Return 0 on success, else -1
254 */
255static int try_connect_sessiond(const char *sock_path)
256{
257 int ret;
258
259 /* If socket exist, we check if the daemon listens for connect. */
260 ret = access(sock_path, F_OK);
261 if (ret < 0) {
262 /* Not alive */
2f70b271 263 goto error;
2269e89e
DG
264 }
265
266 ret = lttcomm_connect_unix_sock(sock_path);
267 if (ret < 0) {
268 /* Not alive */
2f70b271 269 goto error;
2269e89e
DG
270 }
271
272 ret = lttcomm_close_unix_sock(ret);
273 if (ret < 0) {
274 perror("lttcomm_close_unix_sock");
275 }
276
277 return 0;
2f70b271
DG
278
279error:
280 return -1;
2269e89e
DG
281}
282
283/*
2f70b271
DG
284 * Set sessiond socket path by putting it in the global sessiond_sock_path
285 * variable.
286 *
287 * Returns 0 on success, negative value on failure (the sessiond socket path
288 * is somehow too long or ENOMEM).
947308c4
DG
289 */
290static int set_session_daemon_path(void)
291{
2269e89e
DG
292 int in_tgroup = 0; /* In tracing group */
293 uid_t uid;
294
295 uid = getuid();
947308c4 296
2269e89e
DG
297 if (uid != 0) {
298 /* Are we in the tracing group ? */
6c71277b 299 in_tgroup = lttng_check_tracing_group();
2269e89e
DG
300 }
301
08a9c49f 302 if ((uid == 0) || in_tgroup) {
cac3069d
DG
303 lttng_ctl_copy_string(sessiond_sock_path,
304 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK, sizeof(sessiond_sock_path));
08a9c49f 305 }
2269e89e 306
08a9c49f 307 if (uid != 0) {
c617c0c6
MD
308 int ret;
309
08a9c49f
TD
310 if (in_tgroup) {
311 /* Tracing group */
312 ret = try_connect_sessiond(sessiond_sock_path);
313 if (ret >= 0) {
314 goto end;
2269e89e 315 }
08a9c49f 316 /* Global session daemon not available... */
2269e89e 317 }
08a9c49f
TD
318 /* ...or not in tracing group (and not root), default */
319
320 /*
321 * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small;
322 * With GNU C >= 2.1, snprintf returns the required size (excluding closing null)
323 */
324 ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path),
feb0f3e5 325 DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir());
08a9c49f 326 if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) {
2f70b271 327 goto error;
947308c4 328 }
947308c4 329 }
08a9c49f 330end:
947308c4 331 return 0;
2f70b271
DG
332
333error:
334 return -1;
947308c4
DG
335}
336
65beb5ff
DG
337/*
338 * Connect to the LTTng session daemon.
339 *
340 * On success, return 0. On error, return -1.
341 */
342static int connect_sessiond(void)
343{
344 int ret;
345
da3c9ec1
DG
346 /* Don't try to connect if already connected. */
347 if (connected) {
348 return 0;
349 }
350
65beb5ff
DG
351 ret = set_session_daemon_path();
352 if (ret < 0) {
2f70b271 353 goto error;
65beb5ff
DG
354 }
355
356 /* Connect to the sesssion daemon */
357 ret = lttcomm_connect_unix_sock(sessiond_sock_path);
358 if (ret < 0) {
2f70b271 359 goto error;
65beb5ff
DG
360 }
361
362 sessiond_socket = ret;
363 connected = 1;
364
365 return 0;
2f70b271
DG
366
367error:
368 return -1;
65beb5ff
DG
369}
370
371/*
1c8d13c8
TD
372 * Clean disconnect from the session daemon.
373 * On success, return 0. On error, return -1.
65beb5ff
DG
374 */
375static int disconnect_sessiond(void)
376{
377 int ret = 0;
378
379 if (connected) {
380 ret = lttcomm_close_unix_sock(sessiond_socket);
381 sessiond_socket = 0;
382 connected = 0;
383 }
384
385 return ret;
386}
387
35a6fdb7 388/*
cd80958d 389 * Ask the session daemon a specific command and put the data into buf.
53a80697 390 * Takes extra var. len. data as input to send to the session daemon.
65beb5ff 391 *
af87c45a 392 * Return size of data (only payload, not header) or a negative error code.
65beb5ff 393 */
cac3069d
DG
394LTTNG_HIDDEN
395int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg *lsm,
a4b92340 396 void *vardata, size_t varlen, void **buf)
65beb5ff
DG
397{
398 int ret;
399 size_t size;
400 void *data = NULL;
cd80958d 401 struct lttcomm_lttng_msg llm;
65beb5ff
DG
402
403 ret = connect_sessiond();
404 if (ret < 0) {
2f70b271 405 ret = -LTTNG_ERR_NO_SESSIOND;
65beb5ff
DG
406 goto end;
407 }
408
65beb5ff 409 /* Send command to session daemon */
cd80958d 410 ret = send_session_msg(lsm);
65beb5ff 411 if (ret < 0) {
2f70b271 412 /* Ret value is a valid lttng error code. */
65beb5ff
DG
413 goto end;
414 }
53a80697
MD
415 /* Send var len data */
416 ret = send_session_varlen(vardata, varlen);
417 if (ret < 0) {
2f70b271 418 /* Ret value is a valid lttng error code. */
53a80697
MD
419 goto end;
420 }
65beb5ff
DG
421
422 /* Get header from data transmission */
423 ret = recv_data_sessiond(&llm, sizeof(llm));
424 if (ret < 0) {
2f70b271 425 /* Ret value is a valid lttng error code. */
65beb5ff
DG
426 goto end;
427 }
428
429 /* Check error code if OK */
f73fabfd 430 if (llm.ret_code != LTTNG_OK) {
65beb5ff
DG
431 ret = -llm.ret_code;
432 goto end;
433 }
434
435 size = llm.data_size;
436 if (size == 0) {
874d3f84 437 /* If client free with size 0 */
a45d5536
DG
438 if (buf != NULL) {
439 *buf = NULL;
440 }
7d29a247 441 ret = 0;
65beb5ff
DG
442 goto end;
443 }
444
633dd985
MD
445 data = zmalloc(size);
446 if (!data) {
447 ret = -ENOMEM;
448 goto end;
449 }
65beb5ff
DG
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 488
633dd985 489 handle = zmalloc(sizeof(struct lttng_handle));
cd80958d 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
239f3aec 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
239f3aec 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
239f3aec 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
586 _MSG("Waiting for data availability");
b7a81c24 587 fflush(stdout);
38ee087f
DG
588
589 /* Check for data availability */
590 do {
6d805429 591 data_ret = lttng_data_pending(session_name);
38ee087f
DG
592 if (data_ret < 0) {
593 /* Return the data available call error. */
594 ret = data_ret;
595 goto error;
596 }
597
598 /*
599 * Data sleep time before retrying (in usec). Don't sleep if the call
600 * returned value indicates availability.
601 */
6d805429 602 if (data_ret) {
38ee087f
DG
603 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
604 _MSG(".");
b7a81c24 605 fflush(stdout);
38ee087f 606 }
6d805429 607 } while (data_ret != 0);
38ee087f
DG
608
609 MSG("");
610
611end:
612error:
613 return ret;
614}
615
616/*
617 * Stop tracing and wait for data availability.
618 */
619int lttng_stop_tracing(const char *session_name)
620{
621 return _lttng_stop_tracing(session_name, 1);
622}
623
624/*
625 * Stop tracing but _don't_ wait for data availability.
626 */
627int lttng_stop_tracing_no_wait(const char *session_name)
628{
629 return _lttng_stop_tracing(session_name, 0);
f3ed775e
DG
630}
631
632/*
601d5acf
DG
633 * Add context to a channel.
634 *
635 * If the given channel is NULL, add the contexts to all channels.
636 * The event_name param is ignored.
af87c45a
DG
637 *
638 * Returns the size of the returned payload data or a negative error code.
1df4dedd 639 */
cd80958d 640int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
641 struct lttng_event_context *ctx, const char *event_name,
642 const char *channel_name)
d65106b1 643{
cd80958d
DG
644 struct lttcomm_session_msg lsm;
645
9d697d3d
DG
646 /* Safety check. Both are mandatory */
647 if (handle == NULL || ctx == NULL) {
2f70b271 648 return -LTTNG_ERR_INVALID;
cd80958d
DG
649 }
650
441c16a7
MD
651 memset(&lsm, 0, sizeof(lsm));
652
cd80958d
DG
653 lsm.cmd_type = LTTNG_ADD_CONTEXT;
654
85076754
MD
655 /* If no channel name, send empty string. */
656 if (channel_name == NULL) {
657 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
658 sizeof(lsm.u.context.channel_name));
659 } else {
660 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
661 sizeof(lsm.u.context.channel_name));
662 }
cd80958d 663
cac3069d 664 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d65106b1 665
9d697d3d 666 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
d65106b1 667
cac3069d 668 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
669 sizeof(lsm.session.name));
670
cac3069d 671 return lttng_ctl_ask_sessiond(&lsm, NULL);
d65106b1
DG
672}
673
f3ed775e 674/*
1c8d13c8
TD
675 * Enable event(s) for a channel.
676 * If no event name is specified, all events are enabled.
677 * If no channel name is specified, the default 'channel0' is used.
678 * Returns size of returned session payload data or a negative error code.
f3ed775e 679 */
cd80958d 680int lttng_enable_event(struct lttng_handle *handle,
38057ed1 681 struct lttng_event *ev, const char *channel_name)
1df4dedd 682{
f8a96544
JI
683 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
684 NULL, 0, NULL);
1df4dedd
DG
685}
686
53a80697 687/*
025faf73 688 * Create or enable an event with a filter expression.
178191b3 689 *
53a80697
MD
690 * Return negative error value on error.
691 * Return size of returned session payload data if OK.
692 */
025faf73 693int lttng_enable_event_with_filter(struct lttng_handle *handle,
178191b3 694 struct lttng_event *event, const char *channel_name,
53a80697
MD
695 const char *filter_expression)
696{
f8a96544
JI
697 return lttng_enable_event_with_exclusions(handle, event, channel_name,
698 filter_expression, 0, NULL);
53a80697
MD
699}
700
c68fda49
DG
701/*
702 * Depending on the event, return a newly allocated JUL filter expression or
703 * NULL if not applicable.
704 *
705 * An event with NO loglevel and the name is * will return NULL.
706 */
707static char *set_jul_filter(const char *filter, struct lttng_event *ev)
708{
709 int err;
710 char *jul_filter = NULL;
711
712 assert(ev);
713
714 /* Don't add filter for the '*' event. */
715 if (ev->name[0] != '*') {
716 if (filter) {
89ce04fc 717 err = asprintf(&jul_filter, "(%s) && (logger_name == \"%s\")", filter,
c68fda49
DG
718 ev->name);
719 } else {
720 err = asprintf(&jul_filter, "logger_name == \"%s\"", ev->name);
721 }
722 if (err < 0) {
723 PERROR("asprintf");
9b1ddda7 724 goto error;
c68fda49
DG
725 }
726 }
727
728 /* Add loglevel filtering if any for the JUL domain. */
729 if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) {
730 char *op;
731
732 if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) {
733 op = ">=";
734 } else {
735 op = "==";
736 }
737
9b1ddda7
JG
738 if (filter || jul_filter) {
739 char *new_filter;
740
89ce04fc 741 err = asprintf(&new_filter, "(%s) && (int_loglevel %s %d)",
9b1ddda7 742 jul_filter ? jul_filter : filter, op,
c68fda49 743 ev->loglevel);
9b1ddda7
JG
744 if (jul_filter) {
745 free(jul_filter);
746 }
747 jul_filter = new_filter;
c68fda49
DG
748 } else {
749 err = asprintf(&jul_filter, "int_loglevel %s %d", op,
750 ev->loglevel);
751 }
752 if (err < 0) {
753 PERROR("asprintf");
9b1ddda7 754 goto error;
c68fda49
DG
755 }
756 }
757
c68fda49 758 return jul_filter;
9b1ddda7
JG
759error:
760 free(jul_filter);
761 return NULL;
c68fda49
DG
762}
763
93deb080
JI
764/*
765 * Enable event(s) for a channel, possibly with exclusions and a filter.
766 * If no event name is specified, all events are enabled.
767 * If no channel name is specified, the default name is used.
768 * If filter expression is not NULL, the filter is set for the event.
769 * If exclusion count is not zero, the exclusions are set for the event.
770 * Returns size of returned session payload data or a negative error code.
771 */
772int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
773 struct lttng_event *ev, const char *channel_name,
7cb477a9 774 const char *original_filter_expression,
93deb080
JI
775 int exclusion_count, char **exclusion_list)
776{
777 struct lttcomm_session_msg lsm;
35557bfa 778 char *varlen_data;
93deb080
JI
779 int ret = 0;
780 struct filter_parser_ctx *ctx = NULL;
781 FILE *fmem = NULL;
7cb477a9
JG
782 /*
783 * Cast as non-const since we may replace the filter expression
784 * by a dynamically allocated string. Otherwise, the original
785 * string is not modified.
786 */
787 char *filter_expression = (char *) original_filter_expression;
788 int free_filter_expression = 0;
93deb080
JI
789
790 if (handle == NULL || ev == NULL) {
791 return -LTTNG_ERR_INVALID;
792 }
793
794 /* Empty filter string will always be rejected by the parser
795 * anyway, so treat this corner-case early to eliminate
796 * lttng_fmemopen error for 0-byte allocation.
797 */
798 if (filter_expression && filter_expression[0] == '\0') {
799 return -LTTNG_ERR_INVALID;
800 }
801
802 memset(&lsm, 0, sizeof(lsm));
803
804 /* If no channel name, send empty string. */
805 if (channel_name == NULL) {
806 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
807 sizeof(lsm.u.enable.channel_name));
808 } else {
809 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
810 sizeof(lsm.u.enable.channel_name));
811 }
812
6565421f
DG
813 if (ev->name[0] != '\0') {
814 lsm.cmd_type = LTTNG_ENABLE_EVENT;
815 } else {
816 lsm.cmd_type = LTTNG_ENABLE_ALL_EVENT;
817 }
93deb080 818
6565421f 819 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
93deb080
JI
820 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
821
822 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
823 sizeof(lsm.session.name));
824 lsm.u.enable.exclusion_count = exclusion_count;
825 lsm.u.enable.bytecode_len = 0;
826
473037af
DG
827 /*
828 * For the JUL domain, a filter is enforced except for the enable all
829 * event. This is done to avoid having the event in all sessions thus
830 * filtering by logger name.
831 */
832 if (exclusion_count == 0 && filter_expression == NULL &&
e8949acb
DG
833 handle->domain.type != LTTNG_DOMAIN_JUL) {
834 goto ask_sessiond;
93deb080
JI
835 }
836
837 /*
838 * We have either a filter or some exclusions, so we need to set up
839 * a variable-length memory block from where to send the data
840 */
841
842 /* Parse filter expression */
e8949acb 843 if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL) {
473037af 844 if (handle->domain.type == LTTNG_DOMAIN_JUL) {
35557bfa
DG
845 char *jul_filter;
846
c68fda49 847 /* Setup JUL filter if needed. */
35557bfa 848 jul_filter = set_jul_filter(filter_expression, ev);
7cb477a9
JG
849 if (!jul_filter && !filter_expression) {
850 /* No JUL and no filter, just skip everything below. */
851 goto ask_sessiond;
35557bfa
DG
852 } else {
853 /*
854 * With a JUL filter, the original filter has been added to it
855 * thus replace the filter expression.
856 */
7cb477a9
JG
857 filter_expression = jul_filter;
858 free_filter_expression = 1;
473037af 859 }
473037af 860 }
93deb080
JI
861
862 /*
863 * casting const to non-const, as the underlying function will
864 * use it in read-only mode.
865 */
866 fmem = lttng_fmemopen((void *) filter_expression,
867 strlen(filter_expression), "r");
868 if (!fmem) {
869 fprintf(stderr, "Error opening memory as stream\n");
870 return -LTTNG_ERR_FILTER_NOMEM;
871 }
872 ctx = filter_parser_ctx_alloc(fmem);
873 if (!ctx) {
874 fprintf(stderr, "Error allocating parser\n");
875 ret = -LTTNG_ERR_FILTER_NOMEM;
876 goto filter_alloc_error;
877 }
878 ret = filter_parser_ctx_append_ast(ctx);
879 if (ret) {
880 fprintf(stderr, "Parse error\n");
881 ret = -LTTNG_ERR_FILTER_INVAL;
882 goto parse_error;
883 }
884 ret = filter_visitor_set_parent(ctx);
885 if (ret) {
886 fprintf(stderr, "Set parent error\n");
887 ret = -LTTNG_ERR_FILTER_INVAL;
888 goto parse_error;
889 }
890 if (print_xml) {
891 ret = filter_visitor_print_xml(ctx, stdout, 0);
892 if (ret) {
893 fflush(stdout);
894 fprintf(stderr, "XML print error\n");
895 ret = -LTTNG_ERR_FILTER_INVAL;
896 goto parse_error;
897 }
898 }
899
900 dbg_printf("Generating IR... ");
901 fflush(stdout);
902 ret = filter_visitor_ir_generate(ctx);
903 if (ret) {
904 fprintf(stderr, "Generate IR error\n");
905 ret = -LTTNG_ERR_FILTER_INVAL;
906 goto parse_error;
907 }
908 dbg_printf("done\n");
909
910 dbg_printf("Validating IR... ");
911 fflush(stdout);
912 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
913 if (ret) {
914 ret = -LTTNG_ERR_FILTER_INVAL;
915 goto parse_error;
916 }
917 dbg_printf("done\n");
918
919 dbg_printf("Generating bytecode... ");
920 fflush(stdout);
921 ret = filter_visitor_bytecode_generate(ctx);
922 if (ret) {
923 fprintf(stderr, "Generate bytecode error\n");
924 ret = -LTTNG_ERR_FILTER_INVAL;
925 goto parse_error;
926 }
927 dbg_printf("done\n");
928 dbg_printf("Size of bytecode generated: %u bytes.\n",
929 bytecode_get_len(&ctx->bytecode->b));
930
931 lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b)
932 + bytecode_get_len(&ctx->bytecode->b);
933 }
934
935 /* Allocate variable length data */
936 if (lsm.u.enable.exclusion_count != 0) {
937 varlen_data = zmalloc(lsm.u.enable.bytecode_len
938 + LTTNG_SYMBOL_NAME_LEN * exclusion_count);
939 if (!varlen_data) {
940 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
941 goto varlen_alloc_error;
942 }
943 /* Put exclusion names first in the data */
944 while (exclusion_count--) {
945 strncpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * exclusion_count,
946 *(exclusion_list + exclusion_count),
947 LTTNG_SYMBOL_NAME_LEN);
948 }
949 /* Add filter bytecode next */
950 if (lsm.u.enable.bytecode_len != 0) {
951 memcpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count,
952 &ctx->bytecode->b,
953 lsm.u.enable.bytecode_len);
954 }
955 } else {
956 /* no exclusions - use the already allocated filter bytecode */
957 varlen_data = (char *)(&ctx->bytecode->b);
958 }
959
960 ret = lttng_ctl_ask_sessiond_varlen(&lsm, varlen_data,
67676bd8
DG
961 (LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count) +
962 lsm.u.enable.bytecode_len, NULL);
93deb080
JI
963
964 if (lsm.u.enable.exclusion_count != 0) {
965 free(varlen_data);
966 }
967
968varlen_alloc_error:
969 if (filter_expression) {
970 filter_bytecode_free(ctx);
971 filter_ir_free(ctx);
972 filter_parser_ctx_free(ctx);
973 if (fclose(fmem) != 0) {
974 perror("fclose");
975 }
7cb477a9
JG
976 if (free_filter_expression) {
977 /*
978 * The filter expression has been replaced and must be
979 * freed as it is not the original filter expression
980 * received as a parameter.
981 */
982 free(filter_expression);
983 }
93deb080
JI
984 }
985 return ret;
986
987parse_error:
988 filter_bytecode_free(ctx);
989 filter_ir_free(ctx);
990 filter_parser_ctx_free(ctx);
991filter_alloc_error:
992 if (fclose(fmem) != 0) {
993 perror("fclose");
994 }
995 return ret;
e8949acb
DG
996
997ask_sessiond:
998 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
999 return ret;
93deb080
JI
1000}
1001
1df4dedd 1002/*
1c8d13c8
TD
1003 * Disable event(s) of a channel and domain.
1004 * If no event name is specified, all events are disabled.
1005 * If no channel name is specified, the default 'channel0' is used.
1006 * Returns size of returned session payload data or a negative error code.
1df4dedd 1007 */
cd80958d 1008int lttng_disable_event(struct lttng_handle *handle, const char *name,
38057ed1 1009 const char *channel_name)
1df4dedd 1010{
cd80958d 1011 struct lttcomm_session_msg lsm;
1df4dedd 1012
9d697d3d 1013 if (handle == NULL) {
2f70b271 1014 return -LTTNG_ERR_INVALID;
cd80958d
DG
1015 }
1016
441c16a7
MD
1017 memset(&lsm, 0, sizeof(lsm));
1018
85076754
MD
1019 /* If no channel name, send empty string. */
1020 if (channel_name == NULL) {
1021 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
cd80958d 1022 sizeof(lsm.u.disable.channel_name));
f3ed775e 1023 } else {
85076754 1024 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
cd80958d 1025 sizeof(lsm.u.disable.channel_name));
eb354453
DG
1026 }
1027
cac3069d 1028 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f5177a38 1029
95b3cee3 1030 if (name != NULL && *name != '*') {
cac3069d
DG
1031 lttng_ctl_copy_string(lsm.u.disable.name, name,
1032 sizeof(lsm.u.disable.name));
cd80958d 1033 lsm.cmd_type = LTTNG_DISABLE_EVENT;
f5177a38 1034 } else {
cd80958d 1035 lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT;
f3ed775e
DG
1036 }
1037
cac3069d 1038 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1039 sizeof(lsm.session.name));
1040
cac3069d 1041 return lttng_ctl_ask_sessiond(&lsm, NULL);
1df4dedd
DG
1042}
1043
1044/*
1c8d13c8
TD
1045 * Enable channel per domain
1046 * Returns size of returned session payload data or a negative error code.
a5c5a2bd 1047 */
cd80958d 1048int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 1049 struct lttng_channel *chan)
a5c5a2bd 1050{
cd80958d
DG
1051 struct lttcomm_session_msg lsm;
1052
5117eeec
DG
1053 /*
1054 * NULL arguments are forbidden. No default values.
1055 */
1056 if (handle == NULL || chan == NULL) {
2f70b271 1057 return -LTTNG_ERR_INVALID;
cd80958d
DG
1058 }
1059
441c16a7
MD
1060 memset(&lsm, 0, sizeof(lsm));
1061
5117eeec 1062 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
7d29a247 1063
cd80958d
DG
1064 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
1065
cac3069d 1066 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
7d29a247 1067
cac3069d 1068 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1069 sizeof(lsm.session.name));
1070
cac3069d 1071 return lttng_ctl_ask_sessiond(&lsm, NULL);
8c0faa1d 1072}
1df4dedd 1073
2ef84c95 1074/*
1c8d13c8
TD
1075 * All tracing will be stopped for registered events of the channel.
1076 * Returns size of returned session payload data or a negative error code.
2ef84c95 1077 */
cd80958d 1078int lttng_disable_channel(struct lttng_handle *handle, const char *name)
2ef84c95 1079{
cd80958d
DG
1080 struct lttcomm_session_msg lsm;
1081
9d697d3d
DG
1082 /* Safety check. Both are mandatory */
1083 if (handle == NULL || name == NULL) {
2f70b271 1084 return -LTTNG_ERR_INVALID;
cd80958d
DG
1085 }
1086
441c16a7
MD
1087 memset(&lsm, 0, sizeof(lsm));
1088
cd80958d 1089 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1df4dedd 1090
cac3069d 1091 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
9d697d3d
DG
1092 sizeof(lsm.u.disable.channel_name));
1093
cac3069d 1094 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cd80958d 1095
cac3069d 1096 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
1097 sizeof(lsm.session.name));
1098
cac3069d 1099 return lttng_ctl_ask_sessiond(&lsm, NULL);
ca95a216
DG
1100}
1101
fac6795d 1102/*
1c8d13c8
TD
1103 * Lists all available tracepoints of domain.
1104 * Sets the contents of the events array.
1105 * Returns the number of lttng_event entries in events;
1106 * on error, returns a negative value.
fac6795d 1107 */
cd80958d 1108int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 1109 struct lttng_event **events)
fac6795d 1110{
052da939 1111 int ret;
cd80958d
DG
1112 struct lttcomm_session_msg lsm;
1113
9d697d3d 1114 if (handle == NULL) {
2f70b271 1115 return -LTTNG_ERR_INVALID;
cd80958d 1116 }
fac6795d 1117
239f3aec 1118 memset(&lsm, 0, sizeof(lsm));
cd80958d 1119 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
cac3069d 1120 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2a71efd5 1121
cac3069d 1122 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
052da939
DG
1123 if (ret < 0) {
1124 return ret;
eb354453 1125 }
fac6795d 1126
9f19cc17 1127 return ret / sizeof(struct lttng_event);
fac6795d
DG
1128}
1129
f37d259d
MD
1130/*
1131 * Lists all available tracepoint fields of domain.
1132 * Sets the contents of the event field array.
1133 * Returns the number of lttng_event_field entries in events;
1134 * on error, returns a negative value.
1135 */
1136int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1137 struct lttng_event_field **fields)
1138{
1139 int ret;
1140 struct lttcomm_session_msg lsm;
1141
1142 if (handle == NULL) {
2f70b271 1143 return -LTTNG_ERR_INVALID;
f37d259d
MD
1144 }
1145
239f3aec 1146 memset(&lsm, 0, sizeof(lsm));
f37d259d 1147 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
cac3069d 1148 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f37d259d 1149
cac3069d 1150 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
f37d259d
MD
1151 if (ret < 0) {
1152 return ret;
1153 }
1154
1155 return ret / sizeof(struct lttng_event_field);
1156}
1157
1657e9bb 1158/*
1c8d13c8
TD
1159 * Returns a human readable string describing
1160 * the error code (a negative value).
1657e9bb 1161 */
9a745bc7 1162const char *lttng_strerror(int code)
1657e9bb 1163{
f73fabfd 1164 return error_get_str(code);
1657e9bb
DG
1165}
1166
aaf97519 1167/*
a4b92340
DG
1168 * Create a brand new session using name and url for destination.
1169 *
f73fabfd 1170 * Returns LTTNG_OK on success or a negative error code.
00e2e675 1171 */
a4b92340 1172int lttng_create_session(const char *name, const char *url)
00e2e675 1173{
3dd05a85 1174 int ret;
a4b92340 1175 ssize_t size;
00e2e675 1176 struct lttcomm_session_msg lsm;
a4b92340 1177 struct lttng_uri *uris = NULL;
00e2e675 1178
a4b92340 1179 if (name == NULL) {
2f70b271 1180 return -LTTNG_ERR_INVALID;
00e2e675
DG
1181 }
1182
a4b92340 1183 memset(&lsm, 0, sizeof(lsm));
00e2e675 1184
a4b92340 1185 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1186 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
a4b92340
DG
1187
1188 /* There should never be a data URL */
bc894455 1189 size = uri_parse_str_urls(url, NULL, &uris);
a4b92340 1190 if (size < 0) {
2f70b271 1191 return -LTTNG_ERR_INVALID;
00e2e675
DG
1192 }
1193
a4b92340
DG
1194 lsm.u.uri.size = size;
1195
cac3069d
DG
1196 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1197 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1198
1199 free(uris);
1200 return ret;
00e2e675
DG
1201}
1202
8028d920 1203/*
8028d920 1204 * Destroy session using name.
1c8d13c8 1205 * Returns size of returned session payload data or a negative error code.
8028d920 1206 */
843f5df9 1207int lttng_destroy_session(const char *session_name)
8028d920 1208{
cd80958d
DG
1209 struct lttcomm_session_msg lsm;
1210
843f5df9 1211 if (session_name == NULL) {
2f70b271 1212 return -LTTNG_ERR_INVALID;
cd80958d
DG
1213 }
1214
239f3aec 1215 memset(&lsm, 0, sizeof(lsm));
cd80958d 1216 lsm.cmd_type = LTTNG_DESTROY_SESSION;
843f5df9 1217
cac3069d
DG
1218 lttng_ctl_copy_string(lsm.session.name, session_name,
1219 sizeof(lsm.session.name));
cd80958d 1220
cac3069d 1221 return lttng_ctl_ask_sessiond(&lsm, NULL);
aaf97519
DG
1222}
1223
57167058 1224/*
57167058 1225 * Ask the session daemon for all available sessions.
1c8d13c8
TD
1226 * Sets the contents of the sessions array.
1227 * Returns the number of lttng_session entries in sessions;
1228 * on error, returns a negative value.
57167058 1229 */
ca95a216 1230int lttng_list_sessions(struct lttng_session **sessions)
57167058 1231{
ca95a216 1232 int ret;
cd80958d 1233 struct lttcomm_session_msg lsm;
57167058 1234
239f3aec 1235 memset(&lsm, 0, sizeof(lsm));
cd80958d 1236 lsm.cmd_type = LTTNG_LIST_SESSIONS;
cac3069d 1237 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
57167058 1238 if (ret < 0) {
ca95a216 1239 return ret;
57167058
DG
1240 }
1241
ca95a216 1242 return ret / sizeof(struct lttng_session);
57167058
DG
1243}
1244
9f19cc17 1245/*
1c8d13c8
TD
1246 * Ask the session daemon for all available domains of a session.
1247 * Sets the contents of the domains array.
1248 * Returns the number of lttng_domain entries in domains;
1249 * on error, returns a negative value.
9f19cc17 1250 */
330be774 1251int lttng_list_domains(const char *session_name,
cd80958d 1252 struct lttng_domain **domains)
9f19cc17
DG
1253{
1254 int ret;
cd80958d
DG
1255 struct lttcomm_session_msg lsm;
1256
330be774 1257 if (session_name == NULL) {
2f70b271 1258 return -LTTNG_ERR_INVALID;
cd80958d 1259 }
9f19cc17 1260
239f3aec 1261 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
1262 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1263
cac3069d
DG
1264 lttng_ctl_copy_string(lsm.session.name, session_name,
1265 sizeof(lsm.session.name));
cd80958d 1266
cac3069d 1267 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
9f19cc17
DG
1268 if (ret < 0) {
1269 return ret;
1270 }
1271
1272 return ret / sizeof(struct lttng_domain);
1273}
1274
1275/*
1c8d13c8
TD
1276 * Ask the session daemon for all available channels of a session.
1277 * Sets the contents of the channels array.
1278 * Returns the number of lttng_channel entries in channels;
1279 * on error, returns a negative value.
9f19cc17 1280 */
cd80958d
DG
1281int lttng_list_channels(struct lttng_handle *handle,
1282 struct lttng_channel **channels)
9f19cc17
DG
1283{
1284 int ret;
cd80958d
DG
1285 struct lttcomm_session_msg lsm;
1286
9d697d3d 1287 if (handle == NULL) {
2f70b271 1288 return -LTTNG_ERR_INVALID;
cd80958d
DG
1289 }
1290
239f3aec 1291 memset(&lsm, 0, sizeof(lsm));
cd80958d 1292 lsm.cmd_type = LTTNG_LIST_CHANNELS;
cac3069d 1293 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1294 sizeof(lsm.session.name));
9f19cc17 1295
cac3069d 1296 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1297
cac3069d 1298 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
9f19cc17
DG
1299 if (ret < 0) {
1300 return ret;
1301 }
1302
1303 return ret / sizeof(struct lttng_channel);
1304}
1305
1306/*
1c8d13c8
TD
1307 * Ask the session daemon for all available events of a session channel.
1308 * Sets the contents of the events array.
1309 * Returns the number of lttng_event entries in events;
1310 * on error, returns a negative value.
9f19cc17 1311 */
cd80958d
DG
1312int lttng_list_events(struct lttng_handle *handle,
1313 const char *channel_name, struct lttng_event **events)
9f19cc17
DG
1314{
1315 int ret;
cd80958d 1316 struct lttcomm_session_msg lsm;
9f19cc17 1317
9d697d3d
DG
1318 /* Safety check. An handle and channel name are mandatory */
1319 if (handle == NULL || channel_name == NULL) {
2f70b271 1320 return -LTTNG_ERR_INVALID;
cd80958d
DG
1321 }
1322
239f3aec 1323 memset(&lsm, 0, sizeof(lsm));
cd80958d 1324 lsm.cmd_type = LTTNG_LIST_EVENTS;
cac3069d 1325 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1326 sizeof(lsm.session.name));
cac3069d 1327 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
cd80958d
DG
1328 sizeof(lsm.u.list.channel_name));
1329
cac3069d 1330 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1331
cac3069d 1332 ret = lttng_ctl_ask_sessiond(&lsm, (void**) events);
9f19cc17
DG
1333 if (ret < 0) {
1334 return ret;
1335 }
1336
1337 return ret / sizeof(struct lttng_event);
1338}
1339
fac6795d 1340/*
1c8d13c8
TD
1341 * Sets the tracing_group variable with name.
1342 * This function allocates memory pointed to by tracing_group.
1343 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
fac6795d
DG
1344 */
1345int lttng_set_tracing_group(const char *name)
1346{
9d697d3d 1347 if (name == NULL) {
2f70b271 1348 return -LTTNG_ERR_INVALID;
9d697d3d
DG
1349 }
1350
fac6795d 1351 if (asprintf(&tracing_group, "%s", name) < 0) {
2f70b271 1352 return -LTTNG_ERR_FATAL;
fac6795d
DG
1353 }
1354
1355 return 0;
1356}
1357
d0254c7c 1358/*
af87c45a 1359 * Returns size of returned session payload data or a negative error code.
d0254c7c 1360 */
cd80958d 1361int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
1362 struct lttng_calibrate *calibrate)
1363{
cd80958d 1364 struct lttcomm_session_msg lsm;
d0254c7c 1365
9d697d3d
DG
1366 /* Safety check. NULL pointer are forbidden */
1367 if (handle == NULL || calibrate == NULL) {
2f70b271 1368 return -LTTNG_ERR_INVALID;
cd80958d 1369 }
d0254c7c 1370
239f3aec 1371 memset(&lsm, 0, sizeof(lsm));
cd80958d 1372 lsm.cmd_type = LTTNG_CALIBRATE;
cac3069d 1373 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d0254c7c 1374
cd80958d
DG
1375 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
1376
cac3069d 1377 return lttng_ctl_ask_sessiond(&lsm, NULL);
d0254c7c
MD
1378}
1379
5edd7e09
DG
1380/*
1381 * Set default channel attributes.
441c16a7 1382 * If either or both of the arguments are null, attr content is zeroe'd.
5edd7e09
DG
1383 */
1384void lttng_channel_set_default_attr(struct lttng_domain *domain,
1385 struct lttng_channel_attr *attr)
1386{
1387 /* Safety check */
1388 if (attr == NULL || domain == NULL) {
1389 return;
1390 }
1391
eacaa7a6
DS
1392 memset(attr, 0, sizeof(struct lttng_channel_attr));
1393
0a9c6494
DG
1394 /* Same for all domains. */
1395 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
1396 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
1397 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
1398
5edd7e09
DG
1399 switch (domain->type) {
1400 case LTTNG_DOMAIN_KERNEL:
d92ff3ef
DG
1401 attr->switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
1402 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
3e230f92 1403 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
5edd7e09
DG
1404 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
1405 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1406 break;
1407 case LTTNG_DOMAIN_UST:
0a9c6494
DG
1408 switch (domain->buf_type) {
1409 case LTTNG_BUFFER_PER_UID:
1410 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
1411 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
1412 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
1413 attr->switch_timer_interval = DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
1414 attr->read_timer_interval = DEFAULT_UST_UID_CHANNEL_READ_TIMER;
1415 break;
1416 case LTTNG_BUFFER_PER_PID:
1417 default:
1418 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
1419 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
1420 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
1421 attr->switch_timer_interval = DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
1422 attr->read_timer_interval = DEFAULT_UST_PID_CHANNEL_READ_TIMER;
1423 break;
1424 }
5edd7e09 1425 default:
441c16a7 1426 /* Default behavior: leave set to 0. */
5edd7e09
DG
1427 break;
1428 }
1429}
1430
fac6795d 1431/*
2269e89e 1432 * Check if session daemon is alive.
fac6795d 1433 *
2269e89e 1434 * Return 1 if alive or 0 if not.
1c8d13c8 1435 * On error returns a negative value.
fac6795d 1436 */
947308c4 1437int lttng_session_daemon_alive(void)
fac6795d
DG
1438{
1439 int ret;
1440
1441 ret = set_session_daemon_path();
1442 if (ret < 0) {
947308c4 1443 /* Error */
fac6795d
DG
1444 return ret;
1445 }
1446
9d035200 1447 if (*sessiond_sock_path == '\0') {
2f70b271
DG
1448 /*
1449 * No socket path set. Weird error which means the constructor was not
1450 * called.
1451 */
1452 assert(0);
fac6795d
DG
1453 }
1454
2269e89e 1455 ret = try_connect_sessiond(sessiond_sock_path);
7d8234d9
MD
1456 if (ret < 0) {
1457 /* Not alive */
1458 return 0;
1459 }
7d8234d9 1460
947308c4
DG
1461 /* Is alive */
1462 return 1;
fac6795d
DG
1463}
1464
00e2e675 1465/*
a4b92340 1466 * Set URL for a consumer for a session and domain.
00e2e675
DG
1467 *
1468 * Return 0 on success, else a negative value.
1469 */
a4b92340
DG
1470int lttng_set_consumer_url(struct lttng_handle *handle,
1471 const char *control_url, const char *data_url)
00e2e675 1472{
3dd05a85 1473 int ret;
a4b92340 1474 ssize_t size;
00e2e675 1475 struct lttcomm_session_msg lsm;
a4b92340 1476 struct lttng_uri *uris = NULL;
00e2e675 1477
a4b92340 1478 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
2f70b271 1479 return -LTTNG_ERR_INVALID;
00e2e675
DG
1480 }
1481
a4b92340
DG
1482 memset(&lsm, 0, sizeof(lsm));
1483
00e2e675
DG
1484 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
1485
cac3069d 1486 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
00e2e675 1487 sizeof(lsm.session.name));
cac3069d 1488 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
00e2e675 1489
bc894455 1490 size = uri_parse_str_urls(control_url, data_url, &uris);
a4b92340 1491 if (size < 0) {
2f70b271 1492 return -LTTNG_ERR_INVALID;
a4b92340
DG
1493 }
1494
1495 lsm.u.uri.size = size;
00e2e675 1496
cac3069d
DG
1497 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1498 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1499
1500 free(uris);
1501 return ret;
00e2e675
DG
1502}
1503
1504/*
9c6bda17 1505 * [OBSOLETE]
00e2e675
DG
1506 */
1507int lttng_enable_consumer(struct lttng_handle *handle)
1508{
785d2d0d 1509 return -ENOSYS;
00e2e675
DG
1510}
1511
1512/*
9c6bda17 1513 * [OBSOLETE]
00e2e675
DG
1514 */
1515int lttng_disable_consumer(struct lttng_handle *handle)
1516{
785d2d0d 1517 return -ENOSYS;
00e2e675
DG
1518}
1519
07424f16
DG
1520/*
1521 * This is an extension of create session that is ONLY and SHOULD only be used
1522 * by the lttng command line program. It exists to avoid using URI parsing in
1523 * the lttng client.
1524 *
1525 * We need the date and time for the trace path subdirectory for the case where
1526 * the user does NOT define one using either -o or -U. Using the normal
1527 * lttng_create_session API call, we have no clue on the session daemon side if
1528 * the URL was generated automatically by the client or define by the user.
1529 *
1530 * So this function "wrapper" is hidden from the public API, takes the datetime
1531 * string and appends it if necessary to the URI subdirectory before sending it
1532 * to the session daemon.
1533 *
1534 * With this extra function, the lttng_create_session call behavior is not
1535 * changed and the timestamp is appended to the URI on the session daemon side
1536 * if necessary.
1537 */
1538int _lttng_create_session_ext(const char *name, const char *url,
1539 const char *datetime)
1540{
3dd05a85 1541 int ret;
07424f16
DG
1542 ssize_t size;
1543 struct lttcomm_session_msg lsm;
1544 struct lttng_uri *uris = NULL;
1545
2bba9e53 1546 if (name == NULL || datetime == NULL) {
2f70b271 1547 return -LTTNG_ERR_INVALID;
07424f16
DG
1548 }
1549
1550 memset(&lsm, 0, sizeof(lsm));
1551
1552 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1553 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
07424f16
DG
1554
1555 /* There should never be a data URL */
bc894455 1556 size = uri_parse_str_urls(url, NULL, &uris);
07424f16 1557 if (size < 0) {
3dd05a85
DG
1558 ret = -LTTNG_ERR_INVALID;
1559 goto error;
07424f16
DG
1560 }
1561
1562 lsm.u.uri.size = size;
1563
4b35a6b3 1564 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
da4aa2b8
DG
1565 /* Don't append datetime if the name was automatically created. */
1566 if (strncmp(name, DEFAULT_SESSION_NAME "-",
1567 strlen(DEFAULT_SESSION_NAME) + 1)) {
1568 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
1569 name, datetime);
1570 } else {
1571 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
1572 }
07424f16
DG
1573 if (ret < 0) {
1574 PERROR("snprintf uri subdir");
3dd05a85
DG
1575 ret = -LTTNG_ERR_FATAL;
1576 goto error;
07424f16
DG
1577 }
1578 }
1579
cac3069d
DG
1580 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1581 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1582
1583error:
1584 free(uris);
1585 return ret;
07424f16
DG
1586}
1587
806e2684
DG
1588/*
1589 * For a given session name, this call checks if the data is ready to be read
1590 * or is still being extracted by the consumer(s) hence not ready to be used by
1591 * any readers.
1592 */
6d805429 1593int lttng_data_pending(const char *session_name)
806e2684
DG
1594{
1595 int ret;
1596 struct lttcomm_session_msg lsm;
1597
1598 if (session_name == NULL) {
1599 return -LTTNG_ERR_INVALID;
1600 }
1601
239f3aec 1602 memset(&lsm, 0, sizeof(lsm));
6d805429 1603 lsm.cmd_type = LTTNG_DATA_PENDING;
806e2684 1604
cac3069d
DG
1605 lttng_ctl_copy_string(lsm.session.name, session_name,
1606 sizeof(lsm.session.name));
806e2684 1607
cac3069d 1608 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
806e2684
DG
1609
1610 /*
cac3069d
DG
1611 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1612 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1613 * that the data is available. Yes it is hackish but for now this is the
1614 * only way.
806e2684
DG
1615 */
1616 if (ret == -1) {
1617 ret = 1;
1618 }
1619
1620 return ret;
1621}
1622
27babd3a
DG
1623/*
1624 * Create a session exclusively used for snapshot.
1625 *
1626 * Returns LTTNG_OK on success or a negative error code.
1627 */
1628int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
1629{
1630 int ret;
1631 ssize_t size;
1632 struct lttcomm_session_msg lsm;
1633 struct lttng_uri *uris = NULL;
1634
1635 if (name == NULL) {
1636 return -LTTNG_ERR_INVALID;
1637 }
1638
1639 memset(&lsm, 0, sizeof(lsm));
1640
1641 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
1642 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1643
1644 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
1645 if (size < 0) {
1646 return -LTTNG_ERR_INVALID;
1647 }
1648
1649 lsm.u.uri.size = size;
1650
1651 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1652 sizeof(struct lttng_uri) * size, NULL);
1653
1654 free(uris);
1655 return ret;
1656}
1657
ecc48a90
JD
1658/*
1659 * Create a session exclusively used for live.
1660 *
1661 * Returns LTTNG_OK on success or a negative error code.
1662 */
1663int lttng_create_session_live(const char *name, const char *url,
1664 unsigned int timer_interval)
1665{
1666 int ret;
1667 ssize_t size;
1668 struct lttcomm_session_msg lsm;
1669 struct lttng_uri *uris = NULL;
1670
1671 if (name == NULL) {
1672 return -LTTNG_ERR_INVALID;
1673 }
1674
1675 memset(&lsm, 0, sizeof(lsm));
1676
1677 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
1678 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1679
d6e4c56b
DG
1680 if (url) {
1681 size = uri_parse_str_urls(url, NULL, &uris);
1682 if (size <= 0) {
1683 ret = -LTTNG_ERR_INVALID;
1684 goto end;
1685 }
ecc48a90 1686
d6e4c56b
DG
1687 /* file:// is not accepted for live session. */
1688 if (uris[0].dtype == LTTNG_DST_PATH) {
1689 ret = -LTTNG_ERR_INVALID;
1690 goto end;
1691 }
1692 } else {
1693 size = 0;
ecc48a90
JD
1694 }
1695
1696 lsm.u.session_live.nb_uri = size;
1697 lsm.u.session_live.timer_interval = timer_interval;
1698
1699 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1700 sizeof(struct lttng_uri) * size, NULL);
1701
1702end:
1703 free(uris);
1704 return ret;
1705}
1706
fac6795d
DG
1707/*
1708 * lib constructor
1709 */
1710static void __attribute__((constructor)) init()
1711{
1712 /* Set default session group */
bbccc3d2 1713 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
fac6795d 1714}
49cca668
DG
1715
1716/*
1717 * lib destructor
1718 */
1719static void __attribute__((destructor)) lttng_ctl_exit()
1720{
1721 free(tracing_group);
1722}
This page took 0.129669 seconds and 4 git commands to generate.