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