Fix: tcp4 and net4 protocol support in uri_parse
[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 */
225 grp_list = malloc(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
445 data = (void*) malloc(size);
446
447 /* Get payload data */
448 ret = recv_data_sessiond(data, size);
449 if (ret < 0) {
450 free(data);
451 goto end;
452 }
453
83009e5e
DG
454 /*
455 * Extra protection not to dereference a NULL pointer. If buf is NULL at
456 * this point, an error is returned and data is freed.
457 */
458 if (buf == NULL) {
2f70b271 459 ret = -LTTNG_ERR_INVALID;
83009e5e
DG
460 free(data);
461 goto end;
462 }
463
65beb5ff
DG
464 *buf = data;
465 ret = size;
466
467end:
468 disconnect_sessiond();
469 return ret;
470}
471
9f19cc17 472/*
cd80958d 473 * Create lttng handle and return pointer.
1c8d13c8 474 * The returned pointer will be NULL in case of malloc() error.
9f19cc17 475 */
cd80958d
DG
476struct lttng_handle *lttng_create_handle(const char *session_name,
477 struct lttng_domain *domain)
9f19cc17 478{
2f70b271
DG
479 struct lttng_handle *handle = NULL;
480
481 if (domain == NULL) {
482 goto end;
483 }
cd80958d
DG
484
485 handle = malloc(sizeof(struct lttng_handle));
486 if (handle == NULL) {
2f70b271 487 PERROR("malloc handle");
cd80958d
DG
488 goto end;
489 }
490
491 /* Copy session name */
cac3069d 492 lttng_ctl_copy_string(handle->session_name, session_name,
cd80958d
DG
493 sizeof(handle->session_name));
494
495 /* Copy lttng domain */
cac3069d 496 lttng_ctl_copy_lttng_domain(&handle->domain, domain);
cd80958d
DG
497
498end:
499 return handle;
500}
501
502/*
503 * Destroy handle by free(3) the pointer.
504 */
505void lttng_destroy_handle(struct lttng_handle *handle)
506{
0e428499 507 free(handle);
eb354453
DG
508}
509
d9800920
DG
510/*
511 * Register an outside consumer.
1c8d13c8 512 * Returns size of returned session payload data or a negative error code.
d9800920
DG
513 */
514int lttng_register_consumer(struct lttng_handle *handle,
515 const char *socket_path)
516{
517 struct lttcomm_session_msg lsm;
518
2f70b271
DG
519 if (handle == NULL || socket_path == NULL) {
520 return -LTTNG_ERR_INVALID;
521 }
522
53efb85a 523 memset(&lsm, 0, sizeof(lsm));
d9800920 524 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
cac3069d 525 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
d9800920 526 sizeof(lsm.session.name));
cac3069d 527 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d9800920 528
cac3069d 529 lttng_ctl_copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path));
d9800920 530
cac3069d 531 return lttng_ctl_ask_sessiond(&lsm, NULL);
d9800920
DG
532}
533
1df4dedd 534/*
1c8d13c8
TD
535 * Start tracing for all traces of the session.
536 * Returns size of returned session payload data or a negative error code.
1df4dedd 537 */
6a4f824d 538int lttng_start_tracing(const char *session_name)
f3ed775e 539{
cd80958d
DG
540 struct lttcomm_session_msg lsm;
541
6a4f824d 542 if (session_name == NULL) {
2f70b271 543 return -LTTNG_ERR_INVALID;
cd80958d
DG
544 }
545
53efb85a 546 memset(&lsm, 0, sizeof(lsm));
cd80958d 547 lsm.cmd_type = LTTNG_START_TRACE;
6a4f824d 548
cac3069d
DG
549 lttng_ctl_copy_string(lsm.session.name, session_name,
550 sizeof(lsm.session.name));
cd80958d 551
cac3069d 552 return lttng_ctl_ask_sessiond(&lsm, NULL);
f3ed775e 553}
1df4dedd
DG
554
555/*
38ee087f 556 * Stop tracing for all traces of the session.
f3ed775e 557 */
38ee087f 558static int _lttng_stop_tracing(const char *session_name, int wait)
f3ed775e 559{
38ee087f 560 int ret, data_ret;
cd80958d
DG
561 struct lttcomm_session_msg lsm;
562
6a4f824d 563 if (session_name == NULL) {
2f70b271 564 return -LTTNG_ERR_INVALID;
6a4f824d
DG
565 }
566
53efb85a 567 memset(&lsm, 0, sizeof(lsm));
cd80958d 568 lsm.cmd_type = LTTNG_STOP_TRACE;
6a4f824d 569
cac3069d
DG
570 lttng_ctl_copy_string(lsm.session.name, session_name,
571 sizeof(lsm.session.name));
cd80958d 572
cac3069d 573 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
38ee087f
DG
574 if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) {
575 goto error;
576 }
577
578 if (!wait) {
579 goto end;
580 }
581
582 _MSG("Waiting for data availability");
b7a81c24 583 fflush(stdout);
38ee087f
DG
584
585 /* Check for data availability */
586 do {
6d805429 587 data_ret = lttng_data_pending(session_name);
38ee087f
DG
588 if (data_ret < 0) {
589 /* Return the data available call error. */
590 ret = data_ret;
591 goto error;
592 }
593
594 /*
595 * Data sleep time before retrying (in usec). Don't sleep if the call
596 * returned value indicates availability.
597 */
6d805429 598 if (data_ret) {
38ee087f
DG
599 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
600 _MSG(".");
b7a81c24 601 fflush(stdout);
38ee087f 602 }
6d805429 603 } while (data_ret != 0);
38ee087f
DG
604
605 MSG("");
606
607end:
608error:
609 return ret;
610}
611
612/*
613 * Stop tracing and wait for data availability.
614 */
615int lttng_stop_tracing(const char *session_name)
616{
617 return _lttng_stop_tracing(session_name, 1);
618}
619
620/*
621 * Stop tracing but _don't_ wait for data availability.
622 */
623int lttng_stop_tracing_no_wait(const char *session_name)
624{
625 return _lttng_stop_tracing(session_name, 0);
f3ed775e
DG
626}
627
628/*
601d5acf
DG
629 * Add context to a channel.
630 *
631 * If the given channel is NULL, add the contexts to all channels.
632 * The event_name param is ignored.
af87c45a
DG
633 *
634 * Returns the size of the returned payload data or a negative error code.
1df4dedd 635 */
cd80958d 636int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
637 struct lttng_event_context *ctx, const char *event_name,
638 const char *channel_name)
d65106b1 639{
cd80958d
DG
640 struct lttcomm_session_msg lsm;
641
9d697d3d
DG
642 /* Safety check. Both are mandatory */
643 if (handle == NULL || ctx == NULL) {
2f70b271 644 return -LTTNG_ERR_INVALID;
cd80958d
DG
645 }
646
441c16a7
MD
647 memset(&lsm, 0, sizeof(lsm));
648
cd80958d
DG
649 lsm.cmd_type = LTTNG_ADD_CONTEXT;
650
85076754
MD
651 /* If no channel name, send empty string. */
652 if (channel_name == NULL) {
653 lttng_ctl_copy_string(lsm.u.context.channel_name, "",
654 sizeof(lsm.u.context.channel_name));
655 } else {
656 lttng_ctl_copy_string(lsm.u.context.channel_name, channel_name,
657 sizeof(lsm.u.context.channel_name));
658 }
cd80958d 659
cac3069d 660 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d65106b1 661
9d697d3d 662 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
d65106b1 663
cac3069d 664 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
665 sizeof(lsm.session.name));
666
cac3069d 667 return lttng_ctl_ask_sessiond(&lsm, NULL);
d65106b1
DG
668}
669
f3ed775e 670/*
1c8d13c8
TD
671 * Enable event(s) for a channel.
672 * If no event name is specified, all events are enabled.
673 * If no channel name is specified, the default 'channel0' is used.
674 * Returns size of returned session payload data or a negative error code.
f3ed775e 675 */
cd80958d 676int lttng_enable_event(struct lttng_handle *handle,
38057ed1 677 struct lttng_event *ev, const char *channel_name)
1df4dedd 678{
f8a96544
JI
679 return lttng_enable_event_with_exclusions(handle, ev, channel_name,
680 NULL, 0, NULL);
1df4dedd
DG
681}
682
53a80697 683/*
025faf73 684 * Create or enable an event with a filter expression.
178191b3 685 *
53a80697
MD
686 * Return negative error value on error.
687 * Return size of returned session payload data if OK.
688 */
025faf73 689int lttng_enable_event_with_filter(struct lttng_handle *handle,
178191b3 690 struct lttng_event *event, const char *channel_name,
53a80697
MD
691 const char *filter_expression)
692{
f8a96544
JI
693 return lttng_enable_event_with_exclusions(handle, event, channel_name,
694 filter_expression, 0, NULL);
53a80697
MD
695}
696
93deb080
JI
697/*
698 * Enable event(s) for a channel, possibly with exclusions and a filter.
699 * If no event name is specified, all events are enabled.
700 * If no channel name is specified, the default name is used.
701 * If filter expression is not NULL, the filter is set for the event.
702 * If exclusion count is not zero, the exclusions are set for the event.
703 * Returns size of returned session payload data or a negative error code.
704 */
705int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
706 struct lttng_event *ev, const char *channel_name,
707 const char *filter_expression,
708 int exclusion_count, char **exclusion_list)
709{
710 struct lttcomm_session_msg lsm;
711 char *varlen_data;
712 int ret = 0;
713 struct filter_parser_ctx *ctx = NULL;
714 FILE *fmem = NULL;
715
716 if (handle == NULL || ev == NULL) {
717 return -LTTNG_ERR_INVALID;
718 }
719
720 /* Empty filter string will always be rejected by the parser
721 * anyway, so treat this corner-case early to eliminate
722 * lttng_fmemopen error for 0-byte allocation.
723 */
724 if (filter_expression && filter_expression[0] == '\0') {
725 return -LTTNG_ERR_INVALID;
726 }
727
728 memset(&lsm, 0, sizeof(lsm));
729
730 /* If no channel name, send empty string. */
731 if (channel_name == NULL) {
732 lttng_ctl_copy_string(lsm.u.enable.channel_name, "",
733 sizeof(lsm.u.enable.channel_name));
734 } else {
735 lttng_ctl_copy_string(lsm.u.enable.channel_name, channel_name,
736 sizeof(lsm.u.enable.channel_name));
737 }
738
6565421f
DG
739 if (ev->name[0] != '\0') {
740 lsm.cmd_type = LTTNG_ENABLE_EVENT;
741 } else {
742 lsm.cmd_type = LTTNG_ENABLE_ALL_EVENT;
743 }
93deb080 744
6565421f 745 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
93deb080
JI
746 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
747
748 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
749 sizeof(lsm.session.name));
750 lsm.u.enable.exclusion_count = exclusion_count;
751 lsm.u.enable.bytecode_len = 0;
752
753 if (exclusion_count == 0 && filter_expression == NULL) {
754 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
755 return ret;
756 }
757
758 /*
759 * We have either a filter or some exclusions, so we need to set up
760 * a variable-length memory block from where to send the data
761 */
762
763 /* Parse filter expression */
764 if (filter_expression != NULL) {
765
766 /*
767 * casting const to non-const, as the underlying function will
768 * use it in read-only mode.
769 */
770 fmem = lttng_fmemopen((void *) filter_expression,
771 strlen(filter_expression), "r");
772 if (!fmem) {
773 fprintf(stderr, "Error opening memory as stream\n");
774 return -LTTNG_ERR_FILTER_NOMEM;
775 }
776 ctx = filter_parser_ctx_alloc(fmem);
777 if (!ctx) {
778 fprintf(stderr, "Error allocating parser\n");
779 ret = -LTTNG_ERR_FILTER_NOMEM;
780 goto filter_alloc_error;
781 }
782 ret = filter_parser_ctx_append_ast(ctx);
783 if (ret) {
784 fprintf(stderr, "Parse error\n");
785 ret = -LTTNG_ERR_FILTER_INVAL;
786 goto parse_error;
787 }
788 ret = filter_visitor_set_parent(ctx);
789 if (ret) {
790 fprintf(stderr, "Set parent error\n");
791 ret = -LTTNG_ERR_FILTER_INVAL;
792 goto parse_error;
793 }
794 if (print_xml) {
795 ret = filter_visitor_print_xml(ctx, stdout, 0);
796 if (ret) {
797 fflush(stdout);
798 fprintf(stderr, "XML print error\n");
799 ret = -LTTNG_ERR_FILTER_INVAL;
800 goto parse_error;
801 }
802 }
803
804 dbg_printf("Generating IR... ");
805 fflush(stdout);
806 ret = filter_visitor_ir_generate(ctx);
807 if (ret) {
808 fprintf(stderr, "Generate IR error\n");
809 ret = -LTTNG_ERR_FILTER_INVAL;
810 goto parse_error;
811 }
812 dbg_printf("done\n");
813
814 dbg_printf("Validating IR... ");
815 fflush(stdout);
816 ret = filter_visitor_ir_check_binary_op_nesting(ctx);
817 if (ret) {
818 ret = -LTTNG_ERR_FILTER_INVAL;
819 goto parse_error;
820 }
821 dbg_printf("done\n");
822
823 dbg_printf("Generating bytecode... ");
824 fflush(stdout);
825 ret = filter_visitor_bytecode_generate(ctx);
826 if (ret) {
827 fprintf(stderr, "Generate bytecode error\n");
828 ret = -LTTNG_ERR_FILTER_INVAL;
829 goto parse_error;
830 }
831 dbg_printf("done\n");
832 dbg_printf("Size of bytecode generated: %u bytes.\n",
833 bytecode_get_len(&ctx->bytecode->b));
834
835 lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b)
836 + bytecode_get_len(&ctx->bytecode->b);
837 }
838
839 /* Allocate variable length data */
840 if (lsm.u.enable.exclusion_count != 0) {
841 varlen_data = zmalloc(lsm.u.enable.bytecode_len
842 + LTTNG_SYMBOL_NAME_LEN * exclusion_count);
843 if (!varlen_data) {
844 ret = -LTTNG_ERR_EXCLUSION_NOMEM;
845 goto varlen_alloc_error;
846 }
847 /* Put exclusion names first in the data */
848 while (exclusion_count--) {
849 strncpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * exclusion_count,
850 *(exclusion_list + exclusion_count),
851 LTTNG_SYMBOL_NAME_LEN);
852 }
853 /* Add filter bytecode next */
854 if (lsm.u.enable.bytecode_len != 0) {
855 memcpy(varlen_data + LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count,
856 &ctx->bytecode->b,
857 lsm.u.enable.bytecode_len);
858 }
859 } else {
860 /* no exclusions - use the already allocated filter bytecode */
861 varlen_data = (char *)(&ctx->bytecode->b);
862 }
863
864 ret = lttng_ctl_ask_sessiond_varlen(&lsm, varlen_data,
67676bd8
DG
865 (LTTNG_SYMBOL_NAME_LEN * lsm.u.enable.exclusion_count) +
866 lsm.u.enable.bytecode_len, NULL);
93deb080
JI
867
868 if (lsm.u.enable.exclusion_count != 0) {
869 free(varlen_data);
870 }
871
872varlen_alloc_error:
873 if (filter_expression) {
874 filter_bytecode_free(ctx);
875 filter_ir_free(ctx);
876 filter_parser_ctx_free(ctx);
877 if (fclose(fmem) != 0) {
878 perror("fclose");
879 }
880 }
881 return ret;
882
883parse_error:
884 filter_bytecode_free(ctx);
885 filter_ir_free(ctx);
886 filter_parser_ctx_free(ctx);
887filter_alloc_error:
888 if (fclose(fmem) != 0) {
889 perror("fclose");
890 }
891 return ret;
892}
893
1df4dedd 894/*
1c8d13c8
TD
895 * Disable event(s) of a channel and domain.
896 * If no event name is specified, all events are disabled.
897 * If no channel name is specified, the default 'channel0' is used.
898 * Returns size of returned session payload data or a negative error code.
1df4dedd 899 */
cd80958d 900int lttng_disable_event(struct lttng_handle *handle, const char *name,
38057ed1 901 const char *channel_name)
1df4dedd 902{
cd80958d 903 struct lttcomm_session_msg lsm;
1df4dedd 904
9d697d3d 905 if (handle == NULL) {
2f70b271 906 return -LTTNG_ERR_INVALID;
cd80958d
DG
907 }
908
441c16a7
MD
909 memset(&lsm, 0, sizeof(lsm));
910
85076754
MD
911 /* If no channel name, send empty string. */
912 if (channel_name == NULL) {
913 lttng_ctl_copy_string(lsm.u.disable.channel_name, "",
cd80958d 914 sizeof(lsm.u.disable.channel_name));
f3ed775e 915 } else {
85076754 916 lttng_ctl_copy_string(lsm.u.disable.channel_name, channel_name,
cd80958d 917 sizeof(lsm.u.disable.channel_name));
eb354453
DG
918 }
919
cac3069d 920 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f5177a38 921
f84efadf 922 if (name != NULL) {
cac3069d
DG
923 lttng_ctl_copy_string(lsm.u.disable.name, name,
924 sizeof(lsm.u.disable.name));
cd80958d 925 lsm.cmd_type = LTTNG_DISABLE_EVENT;
f5177a38 926 } else {
cd80958d 927 lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT;
f3ed775e
DG
928 }
929
cac3069d 930 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
931 sizeof(lsm.session.name));
932
cac3069d 933 return lttng_ctl_ask_sessiond(&lsm, NULL);
1df4dedd
DG
934}
935
936/*
1c8d13c8
TD
937 * Enable channel per domain
938 * Returns size of returned session payload data or a negative error code.
a5c5a2bd 939 */
cd80958d 940int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 941 struct lttng_channel *chan)
a5c5a2bd 942{
cd80958d
DG
943 struct lttcomm_session_msg lsm;
944
5117eeec
DG
945 /*
946 * NULL arguments are forbidden. No default values.
947 */
948 if (handle == NULL || chan == NULL) {
2f70b271 949 return -LTTNG_ERR_INVALID;
cd80958d
DG
950 }
951
441c16a7
MD
952 memset(&lsm, 0, sizeof(lsm));
953
5117eeec 954 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
7d29a247 955
cd80958d
DG
956 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
957
cac3069d 958 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
7d29a247 959
cac3069d 960 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
961 sizeof(lsm.session.name));
962
cac3069d 963 return lttng_ctl_ask_sessiond(&lsm, NULL);
8c0faa1d 964}
1df4dedd 965
2ef84c95 966/*
1c8d13c8
TD
967 * All tracing will be stopped for registered events of the channel.
968 * Returns size of returned session payload data or a negative error code.
2ef84c95 969 */
cd80958d 970int lttng_disable_channel(struct lttng_handle *handle, const char *name)
2ef84c95 971{
cd80958d
DG
972 struct lttcomm_session_msg lsm;
973
9d697d3d
DG
974 /* Safety check. Both are mandatory */
975 if (handle == NULL || name == NULL) {
2f70b271 976 return -LTTNG_ERR_INVALID;
cd80958d
DG
977 }
978
441c16a7
MD
979 memset(&lsm, 0, sizeof(lsm));
980
cd80958d 981 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1df4dedd 982
cac3069d 983 lttng_ctl_copy_string(lsm.u.disable.channel_name, name,
9d697d3d
DG
984 sizeof(lsm.u.disable.channel_name));
985
cac3069d 986 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
cd80958d 987
cac3069d 988 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d
DG
989 sizeof(lsm.session.name));
990
cac3069d 991 return lttng_ctl_ask_sessiond(&lsm, NULL);
ca95a216
DG
992}
993
fac6795d 994/*
1c8d13c8
TD
995 * Lists all available tracepoints of domain.
996 * Sets the contents of the events array.
997 * Returns the number of lttng_event entries in events;
998 * on error, returns a negative value.
fac6795d 999 */
cd80958d 1000int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 1001 struct lttng_event **events)
fac6795d 1002{
052da939 1003 int ret;
cd80958d
DG
1004 struct lttcomm_session_msg lsm;
1005
9d697d3d 1006 if (handle == NULL) {
2f70b271 1007 return -LTTNG_ERR_INVALID;
cd80958d 1008 }
fac6795d 1009
53efb85a 1010 memset(&lsm, 0, sizeof(lsm));
cd80958d 1011 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
cac3069d 1012 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
2a71efd5 1013
cac3069d 1014 ret = lttng_ctl_ask_sessiond(&lsm, (void **) events);
052da939
DG
1015 if (ret < 0) {
1016 return ret;
eb354453 1017 }
fac6795d 1018
9f19cc17 1019 return ret / sizeof(struct lttng_event);
fac6795d
DG
1020}
1021
f37d259d
MD
1022/*
1023 * Lists all available tracepoint fields of domain.
1024 * Sets the contents of the event field array.
1025 * Returns the number of lttng_event_field entries in events;
1026 * on error, returns a negative value.
1027 */
1028int lttng_list_tracepoint_fields(struct lttng_handle *handle,
1029 struct lttng_event_field **fields)
1030{
1031 int ret;
1032 struct lttcomm_session_msg lsm;
1033
1034 if (handle == NULL) {
2f70b271 1035 return -LTTNG_ERR_INVALID;
f37d259d
MD
1036 }
1037
53efb85a 1038 memset(&lsm, 0, sizeof(lsm));
f37d259d 1039 lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS;
cac3069d 1040 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
f37d259d 1041
cac3069d 1042 ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields);
f37d259d
MD
1043 if (ret < 0) {
1044 return ret;
1045 }
1046
1047 return ret / sizeof(struct lttng_event_field);
1048}
1049
1657e9bb 1050/*
1c8d13c8
TD
1051 * Returns a human readable string describing
1052 * the error code (a negative value).
1657e9bb 1053 */
9a745bc7 1054const char *lttng_strerror(int code)
1657e9bb 1055{
f73fabfd 1056 return error_get_str(code);
1657e9bb
DG
1057}
1058
aaf97519 1059/*
a4b92340
DG
1060 * Create a brand new session using name and url for destination.
1061 *
f73fabfd 1062 * Returns LTTNG_OK on success or a negative error code.
00e2e675 1063 */
a4b92340 1064int lttng_create_session(const char *name, const char *url)
00e2e675 1065{
3dd05a85 1066 int ret;
a4b92340 1067 ssize_t size;
00e2e675 1068 struct lttcomm_session_msg lsm;
a4b92340 1069 struct lttng_uri *uris = NULL;
00e2e675 1070
a4b92340 1071 if (name == NULL) {
2f70b271 1072 return -LTTNG_ERR_INVALID;
00e2e675
DG
1073 }
1074
a4b92340 1075 memset(&lsm, 0, sizeof(lsm));
00e2e675 1076
a4b92340 1077 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1078 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
a4b92340
DG
1079
1080 /* There should never be a data URL */
bc894455 1081 size = uri_parse_str_urls(url, NULL, &uris);
a4b92340 1082 if (size < 0) {
2f70b271 1083 return -LTTNG_ERR_INVALID;
00e2e675
DG
1084 }
1085
a4b92340
DG
1086 lsm.u.uri.size = size;
1087
cac3069d
DG
1088 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1089 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1090
1091 free(uris);
1092 return ret;
00e2e675
DG
1093}
1094
8028d920 1095/*
8028d920 1096 * Destroy session using name.
1c8d13c8 1097 * Returns size of returned session payload data or a negative error code.
8028d920 1098 */
843f5df9 1099int lttng_destroy_session(const char *session_name)
8028d920 1100{
cd80958d
DG
1101 struct lttcomm_session_msg lsm;
1102
843f5df9 1103 if (session_name == NULL) {
2f70b271 1104 return -LTTNG_ERR_INVALID;
cd80958d
DG
1105 }
1106
53efb85a 1107 memset(&lsm, 0, sizeof(lsm));
cd80958d 1108 lsm.cmd_type = LTTNG_DESTROY_SESSION;
843f5df9 1109
cac3069d
DG
1110 lttng_ctl_copy_string(lsm.session.name, session_name,
1111 sizeof(lsm.session.name));
cd80958d 1112
cac3069d 1113 return lttng_ctl_ask_sessiond(&lsm, NULL);
aaf97519
DG
1114}
1115
57167058 1116/*
57167058 1117 * Ask the session daemon for all available sessions.
1c8d13c8
TD
1118 * Sets the contents of the sessions array.
1119 * Returns the number of lttng_session entries in sessions;
1120 * on error, returns a negative value.
57167058 1121 */
ca95a216 1122int lttng_list_sessions(struct lttng_session **sessions)
57167058 1123{
ca95a216 1124 int ret;
cd80958d 1125 struct lttcomm_session_msg lsm;
57167058 1126
53efb85a 1127 memset(&lsm, 0, sizeof(lsm));
cd80958d 1128 lsm.cmd_type = LTTNG_LIST_SESSIONS;
cac3069d 1129 ret = lttng_ctl_ask_sessiond(&lsm, (void**) sessions);
57167058 1130 if (ret < 0) {
ca95a216 1131 return ret;
57167058
DG
1132 }
1133
ca95a216 1134 return ret / sizeof(struct lttng_session);
57167058
DG
1135}
1136
9f19cc17 1137/*
1c8d13c8
TD
1138 * Ask the session daemon for all available domains of a session.
1139 * Sets the contents of the domains array.
1140 * Returns the number of lttng_domain entries in domains;
1141 * on error, returns a negative value.
9f19cc17 1142 */
330be774 1143int lttng_list_domains(const char *session_name,
cd80958d 1144 struct lttng_domain **domains)
9f19cc17
DG
1145{
1146 int ret;
cd80958d
DG
1147 struct lttcomm_session_msg lsm;
1148
330be774 1149 if (session_name == NULL) {
2f70b271 1150 return -LTTNG_ERR_INVALID;
cd80958d 1151 }
9f19cc17 1152
53efb85a 1153 memset(&lsm, 0, sizeof(lsm));
cd80958d
DG
1154 lsm.cmd_type = LTTNG_LIST_DOMAINS;
1155
cac3069d
DG
1156 lttng_ctl_copy_string(lsm.session.name, session_name,
1157 sizeof(lsm.session.name));
cd80958d 1158
cac3069d 1159 ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains);
9f19cc17
DG
1160 if (ret < 0) {
1161 return ret;
1162 }
1163
1164 return ret / sizeof(struct lttng_domain);
1165}
1166
1167/*
1c8d13c8
TD
1168 * Ask the session daemon for all available channels of a session.
1169 * Sets the contents of the channels array.
1170 * Returns the number of lttng_channel entries in channels;
1171 * on error, returns a negative value.
9f19cc17 1172 */
cd80958d
DG
1173int lttng_list_channels(struct lttng_handle *handle,
1174 struct lttng_channel **channels)
9f19cc17
DG
1175{
1176 int ret;
cd80958d
DG
1177 struct lttcomm_session_msg lsm;
1178
9d697d3d 1179 if (handle == NULL) {
2f70b271 1180 return -LTTNG_ERR_INVALID;
cd80958d
DG
1181 }
1182
53efb85a 1183 memset(&lsm, 0, sizeof(lsm));
cd80958d 1184 lsm.cmd_type = LTTNG_LIST_CHANNELS;
cac3069d 1185 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1186 sizeof(lsm.session.name));
9f19cc17 1187
cac3069d 1188 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1189
cac3069d 1190 ret = lttng_ctl_ask_sessiond(&lsm, (void**) channels);
9f19cc17
DG
1191 if (ret < 0) {
1192 return ret;
1193 }
1194
1195 return ret / sizeof(struct lttng_channel);
1196}
1197
1198/*
1c8d13c8
TD
1199 * Ask the session daemon for all available events of a session channel.
1200 * Sets the contents of the events array.
1201 * Returns the number of lttng_event entries in events;
1202 * on error, returns a negative value.
9f19cc17 1203 */
cd80958d
DG
1204int lttng_list_events(struct lttng_handle *handle,
1205 const char *channel_name, struct lttng_event **events)
9f19cc17
DG
1206{
1207 int ret;
cd80958d 1208 struct lttcomm_session_msg lsm;
9f19cc17 1209
9d697d3d
DG
1210 /* Safety check. An handle and channel name are mandatory */
1211 if (handle == NULL || channel_name == NULL) {
2f70b271 1212 return -LTTNG_ERR_INVALID;
cd80958d
DG
1213 }
1214
53efb85a 1215 memset(&lsm, 0, sizeof(lsm));
cd80958d 1216 lsm.cmd_type = LTTNG_LIST_EVENTS;
cac3069d 1217 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
cd80958d 1218 sizeof(lsm.session.name));
cac3069d 1219 lttng_ctl_copy_string(lsm.u.list.channel_name, channel_name,
cd80958d
DG
1220 sizeof(lsm.u.list.channel_name));
1221
cac3069d 1222 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 1223
cac3069d 1224 ret = lttng_ctl_ask_sessiond(&lsm, (void**) events);
9f19cc17
DG
1225 if (ret < 0) {
1226 return ret;
1227 }
1228
1229 return ret / sizeof(struct lttng_event);
1230}
1231
fac6795d 1232/*
1c8d13c8
TD
1233 * Sets the tracing_group variable with name.
1234 * This function allocates memory pointed to by tracing_group.
1235 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
fac6795d
DG
1236 */
1237int lttng_set_tracing_group(const char *name)
1238{
9d697d3d 1239 if (name == NULL) {
2f70b271 1240 return -LTTNG_ERR_INVALID;
9d697d3d
DG
1241 }
1242
fac6795d 1243 if (asprintf(&tracing_group, "%s", name) < 0) {
2f70b271 1244 return -LTTNG_ERR_FATAL;
fac6795d
DG
1245 }
1246
1247 return 0;
1248}
1249
d0254c7c 1250/*
af87c45a 1251 * Returns size of returned session payload data or a negative error code.
d0254c7c 1252 */
cd80958d 1253int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
1254 struct lttng_calibrate *calibrate)
1255{
cd80958d 1256 struct lttcomm_session_msg lsm;
d0254c7c 1257
9d697d3d
DG
1258 /* Safety check. NULL pointer are forbidden */
1259 if (handle == NULL || calibrate == NULL) {
2f70b271 1260 return -LTTNG_ERR_INVALID;
cd80958d 1261 }
d0254c7c 1262
53efb85a 1263 memset(&lsm, 0, sizeof(lsm));
cd80958d 1264 lsm.cmd_type = LTTNG_CALIBRATE;
cac3069d 1265 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
d0254c7c 1266
cd80958d
DG
1267 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
1268
cac3069d 1269 return lttng_ctl_ask_sessiond(&lsm, NULL);
d0254c7c
MD
1270}
1271
5edd7e09
DG
1272/*
1273 * Set default channel attributes.
441c16a7 1274 * If either or both of the arguments are null, attr content is zeroe'd.
5edd7e09
DG
1275 */
1276void lttng_channel_set_default_attr(struct lttng_domain *domain,
1277 struct lttng_channel_attr *attr)
1278{
1279 /* Safety check */
1280 if (attr == NULL || domain == NULL) {
1281 return;
1282 }
1283
eacaa7a6
DS
1284 memset(attr, 0, sizeof(struct lttng_channel_attr));
1285
0a9c6494
DG
1286 /* Same for all domains. */
1287 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
1288 attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE;
1289 attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT;
1290
5edd7e09
DG
1291 switch (domain->type) {
1292 case LTTNG_DOMAIN_KERNEL:
d92ff3ef
DG
1293 attr->switch_timer_interval = DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER;
1294 attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER;
3e230f92 1295 attr->subbuf_size = default_get_kernel_channel_subbuf_size();
5edd7e09
DG
1296 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
1297 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1298 break;
1299 case LTTNG_DOMAIN_UST:
0a9c6494
DG
1300 switch (domain->buf_type) {
1301 case LTTNG_BUFFER_PER_UID:
1302 attr->subbuf_size = default_get_ust_uid_channel_subbuf_size();
1303 attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM;
1304 attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT;
1305 attr->switch_timer_interval = DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER;
1306 attr->read_timer_interval = DEFAULT_UST_UID_CHANNEL_READ_TIMER;
1307 break;
1308 case LTTNG_BUFFER_PER_PID:
1309 default:
1310 attr->subbuf_size = default_get_ust_pid_channel_subbuf_size();
1311 attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM;
1312 attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT;
1313 attr->switch_timer_interval = DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER;
1314 attr->read_timer_interval = DEFAULT_UST_PID_CHANNEL_READ_TIMER;
1315 break;
1316 }
5edd7e09 1317 default:
441c16a7 1318 /* Default behavior: leave set to 0. */
5edd7e09
DG
1319 break;
1320 }
1321}
1322
fac6795d 1323/*
2269e89e 1324 * Check if session daemon is alive.
fac6795d 1325 *
2269e89e 1326 * Return 1 if alive or 0 if not.
1c8d13c8 1327 * On error returns a negative value.
fac6795d 1328 */
947308c4 1329int lttng_session_daemon_alive(void)
fac6795d
DG
1330{
1331 int ret;
1332
1333 ret = set_session_daemon_path();
1334 if (ret < 0) {
947308c4 1335 /* Error */
fac6795d
DG
1336 return ret;
1337 }
1338
9d035200 1339 if (*sessiond_sock_path == '\0') {
2f70b271
DG
1340 /*
1341 * No socket path set. Weird error which means the constructor was not
1342 * called.
1343 */
1344 assert(0);
fac6795d
DG
1345 }
1346
2269e89e 1347 ret = try_connect_sessiond(sessiond_sock_path);
7d8234d9
MD
1348 if (ret < 0) {
1349 /* Not alive */
1350 return 0;
1351 }
7d8234d9 1352
947308c4
DG
1353 /* Is alive */
1354 return 1;
fac6795d
DG
1355}
1356
00e2e675 1357/*
a4b92340 1358 * Set URL for a consumer for a session and domain.
00e2e675
DG
1359 *
1360 * Return 0 on success, else a negative value.
1361 */
a4b92340
DG
1362int lttng_set_consumer_url(struct lttng_handle *handle,
1363 const char *control_url, const char *data_url)
00e2e675 1364{
3dd05a85 1365 int ret;
a4b92340 1366 ssize_t size;
00e2e675 1367 struct lttcomm_session_msg lsm;
a4b92340 1368 struct lttng_uri *uris = NULL;
00e2e675 1369
a4b92340 1370 if (handle == NULL || (control_url == NULL && data_url == NULL)) {
2f70b271 1371 return -LTTNG_ERR_INVALID;
00e2e675
DG
1372 }
1373
a4b92340
DG
1374 memset(&lsm, 0, sizeof(lsm));
1375
00e2e675
DG
1376 lsm.cmd_type = LTTNG_SET_CONSUMER_URI;
1377
cac3069d 1378 lttng_ctl_copy_string(lsm.session.name, handle->session_name,
00e2e675 1379 sizeof(lsm.session.name));
cac3069d 1380 lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
00e2e675 1381
bc894455 1382 size = uri_parse_str_urls(control_url, data_url, &uris);
a4b92340 1383 if (size < 0) {
2f70b271 1384 return -LTTNG_ERR_INVALID;
a4b92340
DG
1385 }
1386
1387 lsm.u.uri.size = size;
00e2e675 1388
cac3069d
DG
1389 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1390 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1391
1392 free(uris);
1393 return ret;
00e2e675
DG
1394}
1395
1396/*
9c6bda17 1397 * [OBSOLETE]
00e2e675
DG
1398 */
1399int lttng_enable_consumer(struct lttng_handle *handle)
1400{
785d2d0d 1401 return -ENOSYS;
00e2e675
DG
1402}
1403
1404/*
9c6bda17 1405 * [OBSOLETE]
00e2e675
DG
1406 */
1407int lttng_disable_consumer(struct lttng_handle *handle)
1408{
785d2d0d 1409 return -ENOSYS;
00e2e675
DG
1410}
1411
07424f16
DG
1412/*
1413 * This is an extension of create session that is ONLY and SHOULD only be used
1414 * by the lttng command line program. It exists to avoid using URI parsing in
1415 * the lttng client.
1416 *
1417 * We need the date and time for the trace path subdirectory for the case where
1418 * the user does NOT define one using either -o or -U. Using the normal
1419 * lttng_create_session API call, we have no clue on the session daemon side if
1420 * the URL was generated automatically by the client or define by the user.
1421 *
1422 * So this function "wrapper" is hidden from the public API, takes the datetime
1423 * string and appends it if necessary to the URI subdirectory before sending it
1424 * to the session daemon.
1425 *
1426 * With this extra function, the lttng_create_session call behavior is not
1427 * changed and the timestamp is appended to the URI on the session daemon side
1428 * if necessary.
1429 */
1430int _lttng_create_session_ext(const char *name, const char *url,
1431 const char *datetime)
1432{
3dd05a85 1433 int ret;
07424f16
DG
1434 ssize_t size;
1435 struct lttcomm_session_msg lsm;
1436 struct lttng_uri *uris = NULL;
1437
2bba9e53 1438 if (name == NULL || datetime == NULL) {
2f70b271 1439 return -LTTNG_ERR_INVALID;
07424f16
DG
1440 }
1441
1442 memset(&lsm, 0, sizeof(lsm));
1443
1444 lsm.cmd_type = LTTNG_CREATE_SESSION;
cac3069d 1445 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
07424f16
DG
1446
1447 /* There should never be a data URL */
bc894455 1448 size = uri_parse_str_urls(url, NULL, &uris);
07424f16 1449 if (size < 0) {
3dd05a85
DG
1450 ret = -LTTNG_ERR_INVALID;
1451 goto error;
07424f16
DG
1452 }
1453
1454 lsm.u.uri.size = size;
1455
4b35a6b3 1456 if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) {
da4aa2b8
DG
1457 /* Don't append datetime if the name was automatically created. */
1458 if (strncmp(name, DEFAULT_SESSION_NAME "-",
1459 strlen(DEFAULT_SESSION_NAME) + 1)) {
1460 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s",
1461 name, datetime);
1462 } else {
1463 ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", name);
1464 }
07424f16
DG
1465 if (ret < 0) {
1466 PERROR("snprintf uri subdir");
3dd05a85
DG
1467 ret = -LTTNG_ERR_FATAL;
1468 goto error;
07424f16
DG
1469 }
1470 }
1471
cac3069d
DG
1472 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1473 sizeof(struct lttng_uri) * size, NULL);
3dd05a85
DG
1474
1475error:
1476 free(uris);
1477 return ret;
07424f16
DG
1478}
1479
806e2684
DG
1480/*
1481 * For a given session name, this call checks if the data is ready to be read
1482 * or is still being extracted by the consumer(s) hence not ready to be used by
1483 * any readers.
1484 */
6d805429 1485int lttng_data_pending(const char *session_name)
806e2684
DG
1486{
1487 int ret;
1488 struct lttcomm_session_msg lsm;
1489
1490 if (session_name == NULL) {
1491 return -LTTNG_ERR_INVALID;
1492 }
1493
53efb85a 1494 memset(&lsm, 0, sizeof(lsm));
6d805429 1495 lsm.cmd_type = LTTNG_DATA_PENDING;
806e2684 1496
cac3069d
DG
1497 lttng_ctl_copy_string(lsm.session.name, session_name,
1498 sizeof(lsm.session.name));
806e2684 1499
cac3069d 1500 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
806e2684
DG
1501
1502 /*
cac3069d
DG
1503 * The lttng_ctl_ask_sessiond function negate the return code if it's not
1504 * LTTNG_OK so getting -1 means that the reply ret_code was 1 thus meaning
1505 * that the data is available. Yes it is hackish but for now this is the
1506 * only way.
806e2684
DG
1507 */
1508 if (ret == -1) {
1509 ret = 1;
1510 }
1511
1512 return ret;
1513}
1514
27babd3a
DG
1515/*
1516 * Create a session exclusively used for snapshot.
1517 *
1518 * Returns LTTNG_OK on success or a negative error code.
1519 */
1520int lttng_create_session_snapshot(const char *name, const char *snapshot_url)
1521{
1522 int ret;
1523 ssize_t size;
1524 struct lttcomm_session_msg lsm;
1525 struct lttng_uri *uris = NULL;
1526
1527 if (name == NULL) {
1528 return -LTTNG_ERR_INVALID;
1529 }
1530
1531 memset(&lsm, 0, sizeof(lsm));
1532
1533 lsm.cmd_type = LTTNG_CREATE_SESSION_SNAPSHOT;
1534 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1535
1536 size = uri_parse_str_urls(snapshot_url, NULL, &uris);
1537 if (size < 0) {
1538 return -LTTNG_ERR_INVALID;
1539 }
1540
1541 lsm.u.uri.size = size;
1542
1543 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1544 sizeof(struct lttng_uri) * size, NULL);
1545
1546 free(uris);
1547 return ret;
1548}
1549
ecc48a90
JD
1550/*
1551 * Create a session exclusively used for live.
1552 *
1553 * Returns LTTNG_OK on success or a negative error code.
1554 */
1555int lttng_create_session_live(const char *name, const char *url,
1556 unsigned int timer_interval)
1557{
1558 int ret;
1559 ssize_t size;
1560 struct lttcomm_session_msg lsm;
1561 struct lttng_uri *uris = NULL;
1562
1563 if (name == NULL) {
1564 return -LTTNG_ERR_INVALID;
1565 }
1566
1567 memset(&lsm, 0, sizeof(lsm));
1568
1569 lsm.cmd_type = LTTNG_CREATE_SESSION_LIVE;
1570 lttng_ctl_copy_string(lsm.session.name, name, sizeof(lsm.session.name));
1571
1572 size = uri_parse_str_urls(url, NULL, &uris);
903055ea 1573 if (size <= 0) {
ecc48a90
JD
1574 ret = -LTTNG_ERR_INVALID;
1575 goto end;
1576 }
1577
1578 /* file:// is not accepted for live session. */
1579 if (uris[0].dtype == LTTNG_DST_PATH) {
1580 ret = -LTTNG_ERR_INVALID;
1581 goto end;
1582 }
1583
1584 lsm.u.session_live.nb_uri = size;
1585 lsm.u.session_live.timer_interval = timer_interval;
1586
1587 ret = lttng_ctl_ask_sessiond_varlen(&lsm, uris,
1588 sizeof(struct lttng_uri) * size, NULL);
1589
1590end:
1591 free(uris);
1592 return ret;
1593}
1594
fac6795d
DG
1595/*
1596 * lib constructor
1597 */
1598static void __attribute__((constructor)) init()
1599{
1600 /* Set default session group */
bbccc3d2 1601 lttng_set_tracing_group(DEFAULT_TRACING_GROUP);
fac6795d 1602}
49cca668
DG
1603
1604/*
1605 * lib destructor
1606 */
1607static void __attribute__((destructor)) lttng_ctl_exit()
1608{
1609 free(tracing_group);
1610}
This page took 0.145354 seconds and 4 git commands to generate.