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