API change for lttng_list_domains prototype
[lttng-tools.git] / liblttngctl / lttngctl.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 *
82a3637f
DG
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
fac6795d 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
82a3637f
DG
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
fac6795d
DG
21 */
22
23#define _GNU_SOURCE
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
e88129fc 31#include <lttng-sessiond-comm.h>
1e307fab
DG
32#include <lttng-share.h>
33#include <lttng/lttng.h>
34#include <lttngerr.h>
fac6795d
DG
35
36/* Socket to session daemon for communication */
37static int sessiond_socket;
38static char sessiond_sock_path[PATH_MAX];
39
fac6795d
DG
40/* Variables */
41static char *tracing_group;
42static int connected;
43
99497cd0
MD
44/*
45 * Copy string from src to dst and enforce null terminated byte.
46 */
47static void copy_string(char *dst, const char *src, size_t len)
48{
e7d6716d 49 if (src && dst) {
99497cd0
MD
50 strncpy(dst, src, len);
51 /* Enforce the NULL terminated byte */
52 dst[len - 1] = '\0';
cd80958d
DG
53 } else if (dst) {
54 dst[0] = '\0';
99497cd0
MD
55 }
56}
57
fac6795d 58/*
cd80958d 59 * Copy domain to lttcomm_session_msg domain.
fac6795d 60 *
cd80958d
DG
61 * If domain is unknown, default domain will be the kernel.
62 */
63static void copy_lttng_domain(struct lttng_domain *dst, struct lttng_domain *src)
64{
65 if (src && dst) {
66 switch (src->type) {
67 case LTTNG_DOMAIN_KERNEL:
68 case LTTNG_DOMAIN_UST:
69 case LTTNG_DOMAIN_UST_EXEC_NAME:
70 case LTTNG_DOMAIN_UST_PID:
71 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
72 memcpy(dst, src, sizeof(struct lttng_domain));
73 break;
74 default:
75 dst->type = LTTNG_DOMAIN_KERNEL;
76 break;
77 }
78 }
79}
80
81/*
82 * Send lttcomm_session_msg to the session daemon.
fac6795d 83 *
cd80958d
DG
84 * On success, return 0
85 * On error, return error code
fac6795d 86 */
cd80958d 87static int send_session_msg(struct lttcomm_session_msg *lsm)
fac6795d
DG
88{
89 int ret;
90
91 if (!connected) {
e065084a
DG
92 ret = -ENOTCONN;
93 goto end;
fac6795d
DG
94 }
95
cd80958d
DG
96 ret = lttcomm_send_unix_sock(sessiond_socket, lsm,
97 sizeof(struct lttcomm_session_msg));
e065084a
DG
98
99end:
100 return ret;
101}
102
103/*
cd80958d 104 * Receive data from the sessiond socket.
e065084a 105 *
cd80958d
DG
106 * On success, return 0
107 * On error, return recv() error code
e065084a 108 */
ca95a216 109static int recv_data_sessiond(void *buf, size_t len)
e065084a
DG
110{
111 int ret;
112
113 if (!connected) {
114 ret = -ENOTCONN;
115 goto end;
fac6795d
DG
116 }
117
ca95a216 118 ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len);
fac6795d 119
e065084a 120end:
fac6795d
DG
121 return ret;
122}
123
124/*
947308c4 125 * Check if the specified group name exist.
65beb5ff 126 *
2269e89e 127 * If yes return 1, else return -1.
947308c4
DG
128 */
129static int check_tracing_group(const char *grp_name)
130{
131 struct group *grp_tracing; /* no free(). See getgrnam(3) */
132 gid_t *grp_list;
133 int grp_list_size, grp_id, i;
134 int ret = -1;
135
136 /* Get GID of group 'tracing' */
137 grp_tracing = getgrnam(grp_name);
138 if (grp_tracing == NULL) {
139 /* NULL means not found also. getgrnam(3) */
140 if (errno != 0) {
141 perror("getgrnam");
142 }
143 goto end;
144 }
145
146 /* Get number of supplementary group IDs */
147 grp_list_size = getgroups(0, NULL);
148 if (grp_list_size < 0) {
149 perror("getgroups");
150 goto end;
151 }
152
153 /* Alloc group list of the right size */
154 grp_list = malloc(grp_list_size * sizeof(gid_t));
00795392
MD
155 if (!grp_list) {
156 ret = -1;
157 goto end;
158 }
947308c4
DG
159 grp_id = getgroups(grp_list_size, grp_list);
160 if (grp_id < -1) {
161 perror("getgroups");
162 goto free_list;
163 }
164
165 for (i = 0; i < grp_list_size; i++) {
166 if (grp_list[i] == grp_tracing->gr_gid) {
2269e89e 167 ret = 1;
947308c4
DG
168 break;
169 }
170 }
171
172free_list:
173 free(grp_list);
174
175end:
176 return ret;
177}
178
179/*
2269e89e
DG
180 * Try connect to session daemon with sock_path.
181 *
182 * Return 0 on success, else -1
183 */
184static int try_connect_sessiond(const char *sock_path)
185{
186 int ret;
187
188 /* If socket exist, we check if the daemon listens for connect. */
189 ret = access(sock_path, F_OK);
190 if (ret < 0) {
191 /* Not alive */
192 return -1;
193 }
194
195 ret = lttcomm_connect_unix_sock(sock_path);
196 if (ret < 0) {
197 /* Not alive */
198 return -1;
199 }
200
201 ret = lttcomm_close_unix_sock(ret);
202 if (ret < 0) {
203 perror("lttcomm_close_unix_sock");
204 }
205
206 return 0;
207}
208
209/*
210 * Set sessiond socket path by putting it in the global sessiond_sock_path
211 * variable.
947308c4
DG
212 */
213static int set_session_daemon_path(void)
214{
215 int ret;
2269e89e
DG
216 int in_tgroup = 0; /* In tracing group */
217 uid_t uid;
218
219 uid = getuid();
947308c4 220
2269e89e
DG
221 if (uid != 0) {
222 /* Are we in the tracing group ? */
223 in_tgroup = check_tracing_group(tracing_group);
224 }
225
226 if (uid == 0) {
227 /* Root */
228 copy_string(sessiond_sock_path,
229 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK,
230 sizeof(sessiond_sock_path));
231 } else if (in_tgroup) {
232 /* Tracing group */
233 copy_string(sessiond_sock_path,
234 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK,
235 sizeof(sessiond_sock_path));
236
237 ret = try_connect_sessiond(sessiond_sock_path);
238 if (ret < 0) {
239 /* Global session daemon not available */
240 if (snprintf(sessiond_sock_path, sizeof(sessiond_sock_path),
241 DEFAULT_HOME_CLIENT_UNIX_SOCK,
242 getenv("HOME")) < 0) {
243 return -ENOMEM;
244 }
245 }
246 } else {
247 /* Not in tracing group and not root, default */
99497cd0 248 if (snprintf(sessiond_sock_path, PATH_MAX,
cd80958d
DG
249 DEFAULT_HOME_CLIENT_UNIX_SOCK,
250 getenv("HOME")) < 0) {
947308c4
DG
251 return -ENOMEM;
252 }
947308c4
DG
253 }
254
255 return 0;
256}
257
65beb5ff
DG
258/*
259 * Connect to the LTTng session daemon.
260 *
261 * On success, return 0. On error, return -1.
262 */
263static int connect_sessiond(void)
264{
265 int ret;
266
267 ret = set_session_daemon_path();
268 if (ret < 0) {
269 return ret;
270 }
271
272 /* Connect to the sesssion daemon */
273 ret = lttcomm_connect_unix_sock(sessiond_sock_path);
274 if (ret < 0) {
275 return ret;
276 }
277
278 sessiond_socket = ret;
279 connected = 1;
280
281 return 0;
282}
283
284/*
285 * Clean disconnect the session daemon.
286 */
287static int disconnect_sessiond(void)
288{
289 int ret = 0;
290
291 if (connected) {
292 ret = lttcomm_close_unix_sock(sessiond_socket);
293 sessiond_socket = 0;
294 connected = 0;
295 }
296
297 return ret;
298}
299
35a6fdb7 300/*
cd80958d 301 * Ask the session daemon a specific command and put the data into buf.
65beb5ff 302 *
cd80958d 303 * Return size of data (only payload, not header).
65beb5ff 304 */
cd80958d 305static int ask_sessiond(struct lttcomm_session_msg *lsm, void **buf)
65beb5ff
DG
306{
307 int ret;
308 size_t size;
309 void *data = NULL;
cd80958d 310 struct lttcomm_lttng_msg llm;
65beb5ff
DG
311
312 ret = connect_sessiond();
313 if (ret < 0) {
314 goto end;
315 }
316
65beb5ff 317 /* Send command to session daemon */
cd80958d 318 ret = send_session_msg(lsm);
65beb5ff
DG
319 if (ret < 0) {
320 goto end;
321 }
322
323 /* Get header from data transmission */
324 ret = recv_data_sessiond(&llm, sizeof(llm));
325 if (ret < 0) {
326 goto end;
327 }
328
329 /* Check error code if OK */
330 if (llm.ret_code != LTTCOMM_OK) {
331 ret = -llm.ret_code;
332 goto end;
333 }
334
335 size = llm.data_size;
336 if (size == 0) {
874d3f84 337 /* If client free with size 0 */
a45d5536
DG
338 if (buf != NULL) {
339 *buf = NULL;
340 }
7d29a247 341 ret = 0;
65beb5ff
DG
342 goto end;
343 }
344
345 data = (void*) malloc(size);
346
347 /* Get payload data */
348 ret = recv_data_sessiond(data, size);
349 if (ret < 0) {
350 free(data);
351 goto end;
352 }
353
83009e5e
DG
354 /*
355 * Extra protection not to dereference a NULL pointer. If buf is NULL at
356 * this point, an error is returned and data is freed.
357 */
358 if (buf == NULL) {
359 ret = -1;
360 free(data);
361 goto end;
362 }
363
65beb5ff
DG
364 *buf = data;
365 ret = size;
366
367end:
368 disconnect_sessiond();
369 return ret;
370}
371
9f19cc17 372/*
cd80958d 373 * Create lttng handle and return pointer.
9f19cc17 374 */
cd80958d
DG
375struct lttng_handle *lttng_create_handle(const char *session_name,
376 struct lttng_domain *domain)
9f19cc17 377{
cd80958d
DG
378 struct lttng_handle *handle;
379
380 handle = malloc(sizeof(struct lttng_handle));
381 if (handle == NULL) {
382 perror("malloc handle");
383 goto end;
384 }
385
386 /* Copy session name */
387 copy_string(handle->session_name, session_name,
388 sizeof(handle->session_name));
389
390 /* Copy lttng domain */
391 copy_lttng_domain(&handle->domain, domain);
392
393end:
394 return handle;
395}
396
397/*
398 * Destroy handle by free(3) the pointer.
399 */
400void lttng_destroy_handle(struct lttng_handle *handle)
401{
402 if (handle) {
403 free(handle);
eb354453
DG
404 }
405}
406
d9800920
DG
407/*
408 * Register an outside consumer.
409 */
410int lttng_register_consumer(struct lttng_handle *handle,
411 const char *socket_path)
412{
413 struct lttcomm_session_msg lsm;
414
415 lsm.cmd_type = LTTNG_REGISTER_CONSUMER;
416 copy_string(lsm.session.name, handle->session_name,
417 sizeof(lsm.session.name));
418 copy_lttng_domain(&lsm.domain, &handle->domain);
419
420 copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path));
421
422 return ask_sessiond(&lsm, NULL);
423}
424
1df4dedd 425/*
f3ed775e 426 * Start tracing for all trace of the session.
1df4dedd 427 */
6a4f824d 428int lttng_start_tracing(const char *session_name)
f3ed775e 429{
cd80958d
DG
430 struct lttcomm_session_msg lsm;
431
6a4f824d 432 if (session_name == NULL) {
cd80958d
DG
433 return -1;
434 }
435
436 lsm.cmd_type = LTTNG_START_TRACE;
6a4f824d
DG
437
438 copy_string(lsm.session.name, session_name, sizeof(lsm.session.name));
cd80958d
DG
439
440 return ask_sessiond(&lsm, NULL);
f3ed775e 441}
1df4dedd
DG
442
443/*
f3ed775e
DG
444 * Stop tracing for all trace of the session.
445 */
6a4f824d 446int lttng_stop_tracing(const char *session_name)
f3ed775e 447{
cd80958d
DG
448 struct lttcomm_session_msg lsm;
449
6a4f824d
DG
450 if (session_name == NULL) {
451 return -1;
452 }
453
cd80958d 454 lsm.cmd_type = LTTNG_STOP_TRACE;
6a4f824d
DG
455
456 copy_string(lsm.session.name, session_name, sizeof(lsm.session.name));
cd80958d
DG
457
458 return ask_sessiond(&lsm, NULL);
f3ed775e
DG
459}
460
461/*
cd80958d 462 * Add context to event or/and channel.
1df4dedd 463 */
cd80958d 464int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
465 struct lttng_event_context *ctx, const char *event_name,
466 const char *channel_name)
d65106b1 467{
cd80958d
DG
468 struct lttcomm_session_msg lsm;
469
9d697d3d
DG
470 /* Safety check. Both are mandatory */
471 if (handle == NULL || ctx == NULL) {
cd80958d
DG
472 return -1;
473 }
474
475 lsm.cmd_type = LTTNG_ADD_CONTEXT;
476
477 /* Copy channel name */
478 copy_string(lsm.u.context.channel_name, channel_name,
479 sizeof(lsm.u.context.channel_name));
480 /* Copy event name */
481 copy_string(lsm.u.context.event_name, event_name,
482 sizeof(lsm.u.context.event_name));
483
484 copy_lttng_domain(&lsm.domain, &handle->domain);
d65106b1 485
9d697d3d 486 memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context));
d65106b1 487
cd80958d
DG
488 copy_string(lsm.session.name, handle->session_name,
489 sizeof(lsm.session.name));
490
491 return ask_sessiond(&lsm, NULL);
d65106b1
DG
492}
493
f3ed775e 494/*
cd80958d 495 * Enable event
f3ed775e 496 */
cd80958d 497int lttng_enable_event(struct lttng_handle *handle,
38057ed1 498 struct lttng_event *ev, const char *channel_name)
1df4dedd 499{
cd80958d
DG
500 struct lttcomm_session_msg lsm;
501
5117eeec 502 if (handle == NULL || ev == NULL) {
cd80958d
DG
503 return -1;
504 }
33a2b854 505
5117eeec 506 /* If no channel name, we put the default name */
94cf3c47 507 if (channel_name == NULL) {
cd80958d
DG
508 copy_string(lsm.u.enable.channel_name, DEFAULT_CHANNEL_NAME,
509 sizeof(lsm.u.enable.channel_name));
33a2b854 510 } else {
cd80958d
DG
511 copy_string(lsm.u.enable.channel_name, channel_name,
512 sizeof(lsm.u.enable.channel_name));
eb354453
DG
513 }
514
cd80958d 515 copy_lttng_domain(&lsm.domain, &handle->domain);
0d0c377a 516
8c9ae521 517 if (ev->name[0] != '\0') {
cd80958d 518 lsm.cmd_type = LTTNG_ENABLE_EVENT;
0d0c377a 519 } else {
cd80958d 520 lsm.cmd_type = LTTNG_ENABLE_ALL_EVENT;
f3ed775e 521 }
8c9ae521 522 memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
f3ed775e 523
cd80958d
DG
524 copy_string(lsm.session.name, handle->session_name,
525 sizeof(lsm.session.name));
526
527 return ask_sessiond(&lsm, NULL);
1df4dedd
DG
528}
529
530/*
f5177a38 531 * Disable event of a channel and domain.
1df4dedd 532 */
cd80958d 533int lttng_disable_event(struct lttng_handle *handle, const char *name,
38057ed1 534 const char *channel_name)
1df4dedd 535{
cd80958d 536 struct lttcomm_session_msg lsm;
1df4dedd 537
9d697d3d 538 if (handle == NULL) {
cd80958d
DG
539 return -1;
540 }
541
542 if (channel_name) {
543 copy_string(lsm.u.disable.channel_name, channel_name,
544 sizeof(lsm.u.disable.channel_name));
f3ed775e 545 } else {
cd80958d
DG
546 copy_string(lsm.u.disable.channel_name, DEFAULT_CHANNEL_NAME,
547 sizeof(lsm.u.disable.channel_name));
eb354453
DG
548 }
549
cd80958d 550 copy_lttng_domain(&lsm.domain, &handle->domain);
f5177a38 551
f84efadf 552 if (name != NULL) {
cd80958d
DG
553 copy_string(lsm.u.disable.name, name, sizeof(lsm.u.disable.name));
554 lsm.cmd_type = LTTNG_DISABLE_EVENT;
f5177a38 555 } else {
cd80958d 556 lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT;
f3ed775e
DG
557 }
558
cd80958d
DG
559 copy_string(lsm.session.name, handle->session_name,
560 sizeof(lsm.session.name));
561
562 return ask_sessiond(&lsm, NULL);
1df4dedd
DG
563}
564
565/*
0d0c377a 566 * Enable channel per domain
a5c5a2bd 567 */
cd80958d 568int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 569 struct lttng_channel *chan)
a5c5a2bd 570{
cd80958d
DG
571 struct lttcomm_session_msg lsm;
572
5117eeec
DG
573 /*
574 * NULL arguments are forbidden. No default values.
575 */
576 if (handle == NULL || chan == NULL) {
cd80958d
DG
577 return -1;
578 }
579
5117eeec 580 memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan));
7d29a247 581
cd80958d
DG
582 lsm.cmd_type = LTTNG_ENABLE_CHANNEL;
583
584 copy_lttng_domain(&lsm.domain, &handle->domain);
7d29a247 585
cd80958d
DG
586 copy_string(lsm.session.name, handle->session_name,
587 sizeof(lsm.session.name));
588
589 return ask_sessiond(&lsm, NULL);
8c0faa1d 590}
1df4dedd 591
2ef84c95 592/*
0b97ec54 593 * All tracing will be stopped for registered events of the channel.
2ef84c95 594 */
cd80958d 595int lttng_disable_channel(struct lttng_handle *handle, const char *name)
2ef84c95 596{
cd80958d
DG
597 struct lttcomm_session_msg lsm;
598
9d697d3d
DG
599 /* Safety check. Both are mandatory */
600 if (handle == NULL || name == NULL) {
cd80958d
DG
601 return -1;
602 }
603
cd80958d 604 lsm.cmd_type = LTTNG_DISABLE_CHANNEL;
1df4dedd 605
9d697d3d
DG
606 copy_string(lsm.u.disable.channel_name, name,
607 sizeof(lsm.u.disable.channel_name));
608
cd80958d
DG
609 copy_lttng_domain(&lsm.domain, &handle->domain);
610
611 copy_string(lsm.session.name, handle->session_name,
612 sizeof(lsm.session.name));
613
614 return ask_sessiond(&lsm, NULL);
ca95a216
DG
615}
616
fac6795d 617/*
2a71efd5 618 * List all available tracepoints of domain.
fac6795d 619 *
2a71efd5 620 * Return the size (bytes) of the list and set the events array.
7d29a247 621 * On error, return negative value.
fac6795d 622 */
cd80958d 623int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 624 struct lttng_event **events)
fac6795d 625{
052da939 626 int ret;
cd80958d
DG
627 struct lttcomm_session_msg lsm;
628
9d697d3d 629 if (handle == NULL) {
cd80958d
DG
630 return -1;
631 }
fac6795d 632
cd80958d
DG
633 lsm.cmd_type = LTTNG_LIST_TRACEPOINTS;
634 copy_lttng_domain(&lsm.domain, &handle->domain);
2a71efd5 635
cd80958d 636 ret = ask_sessiond(&lsm, (void **) events);
052da939
DG
637 if (ret < 0) {
638 return ret;
eb354453 639 }
fac6795d 640
9f19cc17 641 return ret / sizeof(struct lttng_event);
fac6795d
DG
642}
643
1657e9bb 644/*
7d29a247 645 * Return a human readable string of code
1657e9bb 646 */
9a745bc7 647const char *lttng_strerror(int code)
1657e9bb 648{
7d29a247
DG
649 if (code > -LTTCOMM_OK) {
650 return "Ended with errors";
1657e9bb
DG
651 }
652
7d29a247 653 return lttcomm_get_readable_code(code);
1657e9bb
DG
654}
655
aaf97519 656/*
894be886 657 * Create a brand new session using name.
aaf97519 658 */
38057ed1 659int lttng_create_session(const char *name, const char *path)
aaf97519 660{
cd80958d
DG
661 struct lttcomm_session_msg lsm;
662
663 lsm.cmd_type = LTTNG_CREATE_SESSION;
664 copy_string(lsm.session.name, name, sizeof(lsm.session.name));
665 copy_string(lsm.session.path, path, sizeof(lsm.session.path));
666
667 return ask_sessiond(&lsm, NULL);
8028d920
DG
668}
669
670/*
8028d920
DG
671 * Destroy session using name.
672 */
843f5df9 673int lttng_destroy_session(const char *session_name)
8028d920 674{
cd80958d
DG
675 struct lttcomm_session_msg lsm;
676
843f5df9 677 if (session_name == NULL) {
cd80958d
DG
678 return -1;
679 }
680
681 lsm.cmd_type = LTTNG_DESTROY_SESSION;
843f5df9
DG
682
683 copy_string(lsm.session.name, session_name, sizeof(lsm.session.name));
cd80958d
DG
684
685 return ask_sessiond(&lsm, NULL);
aaf97519
DG
686}
687
57167058 688/*
57167058
DG
689 * Ask the session daemon for all available sessions.
690 *
ca95a216
DG
691 * Return number of session.
692 * On error, return negative value.
57167058 693 */
ca95a216 694int lttng_list_sessions(struct lttng_session **sessions)
57167058 695{
ca95a216 696 int ret;
cd80958d 697 struct lttcomm_session_msg lsm;
57167058 698
cd80958d
DG
699 lsm.cmd_type = LTTNG_LIST_SESSIONS;
700 ret = ask_sessiond(&lsm, (void**) sessions);
57167058 701 if (ret < 0) {
ca95a216 702 return ret;
57167058
DG
703 }
704
ca95a216 705 return ret / sizeof(struct lttng_session);
57167058
DG
706}
707
9f19cc17
DG
708/*
709 * List domain of a session.
710 */
330be774 711int lttng_list_domains(const char *session_name,
cd80958d 712 struct lttng_domain **domains)
9f19cc17
DG
713{
714 int ret;
cd80958d
DG
715 struct lttcomm_session_msg lsm;
716
330be774 717 if (session_name == NULL) {
cd80958d
DG
718 return -1;
719 }
9f19cc17 720
cd80958d
DG
721 lsm.cmd_type = LTTNG_LIST_DOMAINS;
722
330be774 723 copy_string(lsm.session.name, session_name, sizeof(lsm.session.name));
cd80958d
DG
724
725 ret = ask_sessiond(&lsm, (void**) domains);
9f19cc17
DG
726 if (ret < 0) {
727 return ret;
728 }
729
730 return ret / sizeof(struct lttng_domain);
731}
732
733/*
734 * List channels of a session
735 */
cd80958d
DG
736int lttng_list_channels(struct lttng_handle *handle,
737 struct lttng_channel **channels)
9f19cc17
DG
738{
739 int ret;
cd80958d
DG
740 struct lttcomm_session_msg lsm;
741
9d697d3d 742 if (handle == NULL) {
cd80958d
DG
743 return -1;
744 }
745
746 lsm.cmd_type = LTTNG_LIST_CHANNELS;
747 copy_string(lsm.session.name, handle->session_name,
748 sizeof(lsm.session.name));
9f19cc17 749
cd80958d 750 copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 751
cd80958d 752 ret = ask_sessiond(&lsm, (void**) channels);
9f19cc17
DG
753 if (ret < 0) {
754 return ret;
755 }
756
757 return ret / sizeof(struct lttng_channel);
758}
759
760/*
761 * List events of a session channel.
762 */
cd80958d
DG
763int lttng_list_events(struct lttng_handle *handle,
764 const char *channel_name, struct lttng_event **events)
9f19cc17
DG
765{
766 int ret;
cd80958d 767 struct lttcomm_session_msg lsm;
9f19cc17 768
9d697d3d
DG
769 /* Safety check. An handle and channel name are mandatory */
770 if (handle == NULL || channel_name == NULL) {
cd80958d
DG
771 return -1;
772 }
773
774 lsm.cmd_type = LTTNG_LIST_EVENTS;
775 copy_string(lsm.session.name, handle->session_name,
776 sizeof(lsm.session.name));
777 copy_string(lsm.u.list.channel_name, channel_name,
778 sizeof(lsm.u.list.channel_name));
779
780 copy_lttng_domain(&lsm.domain, &handle->domain);
9f19cc17 781
cd80958d 782 ret = ask_sessiond(&lsm, (void**) events);
9f19cc17
DG
783 if (ret < 0) {
784 return ret;
785 }
786
787 return ret / sizeof(struct lttng_event);
788}
789
fac6795d 790/*
5edd7e09
DG
791 * Set tracing group variable with name. This function allocate memory pointed
792 * by tracing_group.
fac6795d
DG
793 */
794int lttng_set_tracing_group(const char *name)
795{
9d697d3d
DG
796 if (name == NULL) {
797 return -1;
798 }
799
fac6795d
DG
800 if (asprintf(&tracing_group, "%s", name) < 0) {
801 return -ENOMEM;
802 }
803
804 return 0;
805}
806
d0254c7c
MD
807/*
808 * lttng_calibrate
809 */
cd80958d 810int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
811 struct lttng_calibrate *calibrate)
812{
cd80958d 813 struct lttcomm_session_msg lsm;
d0254c7c 814
9d697d3d
DG
815 /* Safety check. NULL pointer are forbidden */
816 if (handle == NULL || calibrate == NULL) {
cd80958d
DG
817 return -1;
818 }
d0254c7c 819
cd80958d
DG
820 lsm.cmd_type = LTTNG_CALIBRATE;
821 copy_lttng_domain(&lsm.domain, &handle->domain);
d0254c7c 822
cd80958d
DG
823 memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate));
824
825 return ask_sessiond(&lsm, NULL);
d0254c7c
MD
826}
827
5edd7e09
DG
828/*
829 * Set default channel attributes.
830 */
831void lttng_channel_set_default_attr(struct lttng_domain *domain,
832 struct lttng_channel_attr *attr)
833{
834 /* Safety check */
835 if (attr == NULL || domain == NULL) {
836 return;
837 }
838
839 switch (domain->type) {
840 case LTTNG_DOMAIN_KERNEL:
841 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
842 attr->switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
843 attr->read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
844
845 attr->subbuf_size = DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE;
846 attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM;
847 attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
848 break;
849 case LTTNG_DOMAIN_UST:
850 case LTTNG_DOMAIN_UST_EXEC_NAME:
851 case LTTNG_DOMAIN_UST_PID:
852 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
853 attr->overwrite = DEFAULT_CHANNEL_OVERWRITE;
854 attr->switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
855 attr->read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
856
857 attr->subbuf_size = DEFAULT_UST_CHANNEL_SUBBUF_SIZE;
858 attr->num_subbuf = DEFAULT_UST_CHANNEL_SUBBUF_NUM;
859 attr->output = DEFAULT_UST_CHANNEL_OUTPUT;
860 break;
861 default:
862 /* Default behavior */
863 memset(attr, 0, sizeof(struct lttng_channel_attr));
864 break;
865 }
866}
867
fac6795d 868/*
2269e89e 869 * Check if session daemon is alive.
fac6795d 870 *
2269e89e
DG
871 * Return 1 if alive or 0 if not.
872 * On error return -1
fac6795d 873 */
947308c4 874int lttng_session_daemon_alive(void)
fac6795d
DG
875{
876 int ret;
877
878 ret = set_session_daemon_path();
879 if (ret < 0) {
947308c4 880 /* Error */
fac6795d
DG
881 return ret;
882 }
883
2269e89e
DG
884 if (strlen(sessiond_sock_path) == 0) {
885 /* No socket path set. Weird error */
886 return -1;
fac6795d
DG
887 }
888
2269e89e 889 ret = try_connect_sessiond(sessiond_sock_path);
7d8234d9
MD
890 if (ret < 0) {
891 /* Not alive */
892 return 0;
893 }
7d8234d9 894
947308c4
DG
895 /* Is alive */
896 return 1;
fac6795d
DG
897}
898
899/*
900 * lib constructor
901 */
902static void __attribute__((constructor)) init()
903{
904 /* Set default session group */
64a23ac4 905 lttng_set_tracing_group(LTTNG_DEFAULT_TRACING_GROUP);
fac6795d 906}
This page took 0.068485 seconds and 4 git commands to generate.