4 * Linux Trace Toolkit Control Library
6 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
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.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
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
31 #include <common/common.h>
32 #include <common/defaults.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
34 #include <common/uri.h>
35 #include <common/utils.h>
36 #include <lttng/lttng.h>
37 #include <lttng/health-internal.h>
39 #include "filter/filter-ast.h"
40 #include "filter/filter-parser.h"
41 #include "filter/filter-bytecode.h"
42 #include "filter/memstream.h"
43 #include "lttng-ctl-helper.h"
46 static const int print_xml
= 1;
47 #define dbg_printf(fmt, args...) \
48 printf("[debug liblttng-ctl] " fmt, ## args)
50 static const int print_xml
= 0;
51 #define dbg_printf(fmt, args...) \
53 /* do nothing but check printf format */ \
55 printf("[debug liblttnctl] " fmt, ## args); \
60 /* Socket to session daemon for communication */
61 static int sessiond_socket
;
62 static char sessiond_sock_path
[PATH_MAX
];
65 static char *tracing_group
;
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.
76 int lttng_opt_verbose
;
80 * Copy string from src to dst and enforce null terminated byte.
83 void lttng_ctl_copy_string(char *dst
, const char *src
, size_t len
)
86 strncpy(dst
, src
, len
);
87 /* Enforce the NULL terminated byte */
95 * Copy domain to lttcomm_session_msg domain.
97 * If domain is unknown, default domain will be the kernel.
100 void lttng_ctl_copy_lttng_domain(struct lttng_domain
*dst
,
101 struct lttng_domain
*src
)
105 case LTTNG_DOMAIN_KERNEL
:
106 case LTTNG_DOMAIN_UST
:
107 case LTTNG_DOMAIN_JUL
:
108 case LTTNG_DOMAIN_LOG4J
:
109 case LTTNG_DOMAIN_PYTHON
:
110 memcpy(dst
, src
, sizeof(struct lttng_domain
));
113 memset(dst
, 0, sizeof(struct lttng_domain
));
120 * Send lttcomm_session_msg to the session daemon.
122 * On success, returns the number of bytes sent (>=0)
123 * On error, returns -1
125 static int send_session_msg(struct lttcomm_session_msg
*lsm
)
130 ret
= -LTTNG_ERR_NO_SESSIOND
;
134 DBG("LSM cmd type : %d", lsm
->cmd_type
);
136 ret
= lttcomm_send_creds_unix_sock(sessiond_socket
, lsm
,
137 sizeof(struct lttcomm_session_msg
));
139 ret
= -LTTNG_ERR_FATAL
;
147 * Send var len data to the session daemon.
149 * On success, returns the number of bytes sent (>=0)
150 * On error, returns -1
152 static int send_session_varlen(void *data
, size_t len
)
157 ret
= -LTTNG_ERR_NO_SESSIOND
;
166 ret
= lttcomm_send_unix_sock(sessiond_socket
, data
, len
);
168 ret
= -LTTNG_ERR_FATAL
;
176 * Receive data from the sessiond socket.
178 * On success, returns the number of bytes received (>=0)
179 * On error, returns -1 (recvmsg() error) or -ENOTCONN
181 static int recv_data_sessiond(void *buf
, size_t len
)
186 ret
= -LTTNG_ERR_NO_SESSIOND
;
190 ret
= lttcomm_recv_unix_sock(sessiond_socket
, buf
, len
);
192 ret
= -LTTNG_ERR_FATAL
;
200 * Check if we are in the specified group.
202 * If yes return 1, else return -1.
205 int lttng_check_tracing_group(void)
207 struct group
*grp_tracing
; /* no free(). See getgrnam(3) */
209 int grp_list_size
, grp_id
, i
;
211 const char *grp_name
= tracing_group
;
213 /* Get GID of group 'tracing' */
214 grp_tracing
= getgrnam(grp_name
);
216 /* If grp_tracing is NULL, the group does not exist. */
220 /* Get number of supplementary group IDs */
221 grp_list_size
= getgroups(0, NULL
);
222 if (grp_list_size
< 0) {
227 /* Alloc group list of the right size */
228 grp_list
= zmalloc(grp_list_size
* sizeof(gid_t
));
233 grp_id
= getgroups(grp_list_size
, grp_list
);
239 for (i
= 0; i
< grp_list_size
; i
++) {
240 if (grp_list
[i
] == grp_tracing
->gr_gid
) {
254 * Try connect to session daemon with sock_path.
256 * Return 0 on success, else -1
258 static int try_connect_sessiond(const char *sock_path
)
262 /* If socket exist, we check if the daemon listens for connect. */
263 ret
= access(sock_path
, F_OK
);
269 ret
= lttcomm_connect_unix_sock(sock_path
);
275 ret
= lttcomm_close_unix_sock(ret
);
277 PERROR("lttcomm_close_unix_sock");
287 * Set sessiond socket path by putting it in the global sessiond_sock_path
290 * Returns 0 on success, negative value on failure (the sessiond socket path
291 * is somehow too long or ENOMEM).
293 static int set_session_daemon_path(void)
295 int in_tgroup
= 0; /* In tracing group */
301 /* Are we in the tracing group ? */
302 in_tgroup
= lttng_check_tracing_group();
305 if ((uid
== 0) || in_tgroup
) {
306 lttng_ctl_copy_string(sessiond_sock_path
,
307 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
, sizeof(sessiond_sock_path
));
315 ret
= try_connect_sessiond(sessiond_sock_path
);
319 /* Global session daemon not available... */
321 /* ...or not in tracing group (and not root), default */
324 * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small;
325 * With GNU C >= 2.1, snprintf returns the required size (excluding closing null)
327 ret
= snprintf(sessiond_sock_path
, sizeof(sessiond_sock_path
),
328 DEFAULT_HOME_CLIENT_UNIX_SOCK
, utils_get_home_dir());
329 if ((ret
< 0) || (ret
>= sizeof(sessiond_sock_path
))) {
341 * Connect to the LTTng session daemon.
343 * On success, return 0. On error, return -1.
345 static int connect_sessiond(void)
349 /* Don't try to connect if already connected. */
354 ret
= set_session_daemon_path();
359 /* Connect to the sesssion daemon */
360 ret
= lttcomm_connect_unix_sock(sessiond_sock_path
);
365 sessiond_socket
= ret
;
375 * Clean disconnect from the session daemon.
376 * On success, return 0. On error, return -1.
378 static int disconnect_sessiond(void)
383 ret
= lttcomm_close_unix_sock(sessiond_socket
);
392 * Ask the session daemon a specific command and put the data into buf.
393 * Takes extra var. len. data as input to send to the session daemon.
395 * Return size of data (only payload, not header) or a negative error code.
398 int lttng_ctl_ask_sessiond_varlen(struct lttcomm_session_msg
*lsm
,
399 void *vardata
, size_t varlen
, void **buf
)
404 struct lttcomm_lttng_msg llm
;
406 ret
= connect_sessiond();
408 ret
= -LTTNG_ERR_NO_SESSIOND
;
412 /* Send command to session daemon */
413 ret
= send_session_msg(lsm
);
415 /* Ret value is a valid lttng error code. */
418 /* Send var len data */
419 ret
= send_session_varlen(vardata
, varlen
);
421 /* Ret value is a valid lttng error code. */
425 /* Get header from data transmission */
426 ret
= recv_data_sessiond(&llm
, sizeof(llm
));
428 /* Ret value is a valid lttng error code. */
432 /* Check error code if OK */
433 if (llm
.ret_code
!= LTTNG_OK
) {
438 size
= llm
.data_size
;
440 /* If client free with size 0 */
448 data
= zmalloc(size
);
454 /* Get payload data */
455 ret
= recv_data_sessiond(data
, size
);
462 * Extra protection not to dereference a NULL pointer. If buf is NULL at
463 * this point, an error is returned and data is freed.
466 ret
= -LTTNG_ERR_INVALID
;
475 disconnect_sessiond();
480 * Create lttng handle and return pointer.
481 * The returned pointer will be NULL in case of malloc() error.
483 struct lttng_handle
*lttng_create_handle(const char *session_name
,
484 struct lttng_domain
*domain
)
486 struct lttng_handle
*handle
= NULL
;
488 if (domain
== NULL
) {
492 handle
= zmalloc(sizeof(struct lttng_handle
));
493 if (handle
== NULL
) {
494 PERROR("malloc handle");
498 /* Copy session name */
499 lttng_ctl_copy_string(handle
->session_name
, session_name
,
500 sizeof(handle
->session_name
));
502 /* Copy lttng domain */
503 lttng_ctl_copy_lttng_domain(&handle
->domain
, domain
);
510 * Destroy handle by free(3) the pointer.
512 void lttng_destroy_handle(struct lttng_handle
*handle
)
518 * Register an outside consumer.
519 * Returns size of returned session payload data or a negative error code.
521 int lttng_register_consumer(struct lttng_handle
*handle
,
522 const char *socket_path
)
524 struct lttcomm_session_msg lsm
;
526 if (handle
== NULL
|| socket_path
== NULL
) {
527 return -LTTNG_ERR_INVALID
;
530 memset(&lsm
, 0, sizeof(lsm
));
531 lsm
.cmd_type
= LTTNG_REGISTER_CONSUMER
;
532 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
533 sizeof(lsm
.session
.name
));
534 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
536 lttng_ctl_copy_string(lsm
.u
.reg
.path
, socket_path
, sizeof(lsm
.u
.reg
.path
));
538 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
542 * Start tracing for all traces of the session.
543 * Returns size of returned session payload data or a negative error code.
545 int lttng_start_tracing(const char *session_name
)
547 struct lttcomm_session_msg lsm
;
549 if (session_name
== NULL
) {
550 return -LTTNG_ERR_INVALID
;
553 memset(&lsm
, 0, sizeof(lsm
));
554 lsm
.cmd_type
= LTTNG_START_TRACE
;
556 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
557 sizeof(lsm
.session
.name
));
559 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
563 * Stop tracing for all traces of the session.
565 static int _lttng_stop_tracing(const char *session_name
, int wait
)
568 struct lttcomm_session_msg lsm
;
570 if (session_name
== NULL
) {
571 return -LTTNG_ERR_INVALID
;
574 memset(&lsm
, 0, sizeof(lsm
));
575 lsm
.cmd_type
= LTTNG_STOP_TRACE
;
577 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
578 sizeof(lsm
.session
.name
));
580 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
581 if (ret
< 0 && ret
!= -LTTNG_ERR_TRACE_ALREADY_STOPPED
) {
589 /* Check for data availability */
591 data_ret
= lttng_data_pending(session_name
);
593 /* Return the data available call error. */
599 * Data sleep time before retrying (in usec). Don't sleep if the call
600 * returned value indicates availability.
603 usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME
);
605 } while (data_ret
!= 0);
613 * Stop tracing and wait for data availability.
615 int lttng_stop_tracing(const char *session_name
)
617 return _lttng_stop_tracing(session_name
, 1);
621 * Stop tracing but _don't_ wait for data availability.
623 int lttng_stop_tracing_no_wait(const char *session_name
)
625 return _lttng_stop_tracing(session_name
, 0);
629 * Add context to a channel.
631 * If the given channel is NULL, add the contexts to all channels.
632 * The event_name param is ignored.
634 * Returns the size of the returned payload data or a negative error code.
636 int lttng_add_context(struct lttng_handle
*handle
,
637 struct lttng_event_context
*ctx
, const char *event_name
,
638 const char *channel_name
)
640 struct lttcomm_session_msg lsm
;
642 /* Safety check. Both are mandatory */
643 if (handle
== NULL
|| ctx
== NULL
) {
644 return -LTTNG_ERR_INVALID
;
647 memset(&lsm
, 0, sizeof(lsm
));
649 lsm
.cmd_type
= LTTNG_ADD_CONTEXT
;
651 /* If no channel name, send empty string. */
652 if (channel_name
== NULL
) {
653 lttng_ctl_copy_string(lsm
.u
.context
.channel_name
, "",
654 sizeof(lsm
.u
.context
.channel_name
));
656 lttng_ctl_copy_string(lsm
.u
.context
.channel_name
, channel_name
,
657 sizeof(lsm
.u
.context
.channel_name
));
660 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
662 memcpy(&lsm
.u
.context
.ctx
, ctx
, sizeof(struct lttng_event_context
));
664 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
665 sizeof(lsm
.session
.name
));
667 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
671 * Enable event(s) for a channel.
672 * If no event name is specified, all events are enabled.
673 * If no channel name is specified, the default 'channel0' is used.
674 * Returns size of returned session payload data or a negative error code.
676 int lttng_enable_event(struct lttng_handle
*handle
,
677 struct lttng_event
*ev
, const char *channel_name
)
679 return lttng_enable_event_with_exclusions(handle
, ev
, channel_name
,
684 * Create or enable an event with a filter expression.
686 * Return negative error value on error.
687 * Return size of returned session payload data if OK.
689 int lttng_enable_event_with_filter(struct lttng_handle
*handle
,
690 struct lttng_event
*event
, const char *channel_name
,
691 const char *filter_expression
)
693 return lttng_enable_event_with_exclusions(handle
, event
, channel_name
,
694 filter_expression
, 0, NULL
);
698 * Depending on the event, return a newly allocated agent filter expression or
699 * NULL if not applicable.
701 * An event with NO loglevel and the name is * will return NULL.
703 static char *set_agent_filter(const char *filter
, struct lttng_event
*ev
)
706 char *agent_filter
= NULL
;
710 /* Don't add filter for the '*' event. */
711 if (ev
->name
[0] != '*') {
713 err
= asprintf(&agent_filter
, "(%s) && (logger_name == \"%s\")", filter
,
716 err
= asprintf(&agent_filter
, "logger_name == \"%s\"", ev
->name
);
724 /* Add loglevel filtering if any for the JUL domain. */
725 if (ev
->loglevel_type
!= LTTNG_EVENT_LOGLEVEL_ALL
) {
728 if (ev
->loglevel_type
== LTTNG_EVENT_LOGLEVEL_RANGE
) {
734 if (filter
|| agent_filter
) {
737 err
= asprintf(&new_filter
, "(%s) && (int_loglevel %s %d)",
738 agent_filter
? agent_filter
: filter
, op
,
743 agent_filter
= new_filter
;
745 err
= asprintf(&agent_filter
, "int_loglevel %s %d", op
,
761 * Generate the filter bytecode from a given filter expression string. Put the
762 * newly allocated parser context in ctxp and populate the lsm object with the
765 * Return 0 on success else a LTTNG_ERR_* code and ctxp is untouched.
767 static int generate_filter(char *filter_expression
,
768 struct lttcomm_session_msg
*lsm
, struct filter_parser_ctx
**ctxp
)
771 struct filter_parser_ctx
*ctx
= NULL
;
774 assert(filter_expression
);
779 * Casting const to non-const, as the underlying function will use it in
782 fmem
= lttng_fmemopen((void *) filter_expression
,
783 strlen(filter_expression
), "r");
785 fprintf(stderr
, "Error opening memory as stream\n");
786 ret
= -LTTNG_ERR_FILTER_NOMEM
;
789 ctx
= filter_parser_ctx_alloc(fmem
);
791 fprintf(stderr
, "Error allocating parser\n");
792 ret
= -LTTNG_ERR_FILTER_NOMEM
;
793 goto filter_alloc_error
;
795 ret
= filter_parser_ctx_append_ast(ctx
);
797 fprintf(stderr
, "Parse error\n");
798 ret
= -LTTNG_ERR_FILTER_INVAL
;
801 ret
= filter_visitor_set_parent(ctx
);
803 fprintf(stderr
, "Set parent error\n");
804 ret
= -LTTNG_ERR_FILTER_INVAL
;
808 ret
= filter_visitor_print_xml(ctx
, stdout
, 0);
811 fprintf(stderr
, "XML print error\n");
812 ret
= -LTTNG_ERR_FILTER_INVAL
;
817 dbg_printf("Generating IR... ");
819 ret
= filter_visitor_ir_generate(ctx
);
821 fprintf(stderr
, "Generate IR error\n");
822 ret
= -LTTNG_ERR_FILTER_INVAL
;
825 dbg_printf("done\n");
827 dbg_printf("Validating IR... ");
829 ret
= filter_visitor_ir_check_binary_op_nesting(ctx
);
831 ret
= -LTTNG_ERR_FILTER_INVAL
;
834 /* Validate strings used as literals in the expression */
835 ret
= filter_visitor_ir_validate_string(ctx
);
837 ret
= -LTTNG_ERR_FILTER_INVAL
;
840 dbg_printf("done\n");
842 dbg_printf("Generating bytecode... ");
844 ret
= filter_visitor_bytecode_generate(ctx
);
846 fprintf(stderr
, "Generate bytecode error\n");
847 ret
= -LTTNG_ERR_FILTER_INVAL
;
850 dbg_printf("done\n");
851 dbg_printf("Size of bytecode generated: %u bytes.\n",
852 bytecode_get_len(&ctx
->bytecode
->b
));
854 lsm
->u
.enable
.bytecode_len
= sizeof(ctx
->bytecode
->b
)
855 + bytecode_get_len(&ctx
->bytecode
->b
);
856 lsm
->u
.enable
.expression_len
= strlen(filter_expression
) + 1;
858 /* No need to keep the memory stream. */
859 if (fclose(fmem
) != 0) {
868 filter_parser_ctx_free(ctx
);
870 if (fclose(fmem
) != 0) {
878 * Enable event(s) for a channel, possibly with exclusions and a filter.
879 * If no event name is specified, all events are enabled.
880 * If no channel name is specified, the default name is used.
881 * If filter expression is not NULL, the filter is set for the event.
882 * If exclusion count is not zero, the exclusions are set for the event.
883 * Returns size of returned session payload data or a negative error code.
885 int lttng_enable_event_with_exclusions(struct lttng_handle
*handle
,
886 struct lttng_event
*ev
, const char *channel_name
,
887 const char *original_filter_expression
,
888 int exclusion_count
, char **exclusion_list
)
890 struct lttcomm_session_msg lsm
;
893 unsigned int free_filter_expression
= 0;
894 struct filter_parser_ctx
*ctx
= NULL
;
896 * Cast as non-const since we may replace the filter expression
897 * by a dynamically allocated string. Otherwise, the original
898 * string is not modified.
900 char *filter_expression
= (char *) original_filter_expression
;
902 if (handle
== NULL
|| ev
== NULL
) {
903 ret
= -LTTNG_ERR_INVALID
;
907 /* Empty filter string will always be rejected by the parser
908 * anyway, so treat this corner-case early to eliminate
909 * lttng_fmemopen error for 0-byte allocation.
911 if (filter_expression
&& filter_expression
[0] == '\0') {
912 ret
= -LTTNG_ERR_INVALID
;
916 memset(&lsm
, 0, sizeof(lsm
));
918 /* If no channel name, send empty string. */
919 if (channel_name
== NULL
) {
920 lttng_ctl_copy_string(lsm
.u
.enable
.channel_name
, "",
921 sizeof(lsm
.u
.enable
.channel_name
));
923 lttng_ctl_copy_string(lsm
.u
.enable
.channel_name
, channel_name
,
924 sizeof(lsm
.u
.enable
.channel_name
));
927 lsm
.cmd_type
= LTTNG_ENABLE_EVENT
;
928 if (ev
->name
[0] == '\0') {
929 /* Enable all events */
930 lttng_ctl_copy_string(ev
->name
, "*", sizeof(ev
->name
));
933 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
934 /* FIXME: copying non-packed struct to packed struct. */
935 memcpy(&lsm
.u
.enable
.event
, ev
, sizeof(lsm
.u
.enable
.event
));
937 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
938 sizeof(lsm
.session
.name
));
939 lsm
.u
.enable
.exclusion_count
= exclusion_count
;
940 lsm
.u
.enable
.bytecode_len
= 0;
943 * For the JUL domain, a filter is enforced except for the enable all
944 * event. This is done to avoid having the event in all sessions thus
945 * filtering by logger name.
947 if (exclusion_count
== 0 && filter_expression
== NULL
&&
948 (handle
->domain
.type
!= LTTNG_DOMAIN_JUL
&&
949 handle
->domain
.type
!= LTTNG_DOMAIN_LOG4J
&&
950 handle
->domain
.type
!= LTTNG_DOMAIN_PYTHON
)) {
955 * We have either a filter or some exclusions, so we need to set up
956 * a variable-length memory block from where to send the data
959 /* Parse filter expression */
960 if (filter_expression
!= NULL
|| handle
->domain
.type
== LTTNG_DOMAIN_JUL
961 || handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
962 || handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
963 if (handle
->domain
.type
== LTTNG_DOMAIN_JUL
||
964 handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
||
965 handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
968 /* Setup JUL filter if needed. */
969 agent_filter
= set_agent_filter(filter_expression
, ev
);
971 if (!filter_expression
) {
972 /* No JUL and no filter, just skip everything below. */
977 * With an agent filter, the original filter has been added to
978 * it thus replace the filter expression.
980 filter_expression
= agent_filter
;
981 free_filter_expression
= 1;
985 ret
= generate_filter(filter_expression
, &lsm
, &ctx
);
991 varlen_data
= zmalloc(lsm
.u
.enable
.bytecode_len
992 + lsm
.u
.enable
.expression_len
993 + LTTNG_SYMBOL_NAME_LEN
* exclusion_count
);
995 ret
= -LTTNG_ERR_EXCLUSION_NOMEM
;
999 /* Put exclusion names first in the data */
1000 while (exclusion_count
--) {
1001 strncpy(varlen_data
+ LTTNG_SYMBOL_NAME_LEN
* exclusion_count
,
1002 *(exclusion_list
+ exclusion_count
), LTTNG_SYMBOL_NAME_LEN
);
1004 /* Add filter expression next */
1005 if (lsm
.u
.enable
.expression_len
!= 0) {
1007 + LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
,
1009 lsm
.u
.enable
.expression_len
);
1011 /* Add filter bytecode next */
1012 if (ctx
&& lsm
.u
.enable
.bytecode_len
!= 0) {
1014 + LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
1015 + lsm
.u
.enable
.expression_len
,
1017 lsm
.u
.enable
.bytecode_len
);
1020 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, varlen_data
,
1021 (LTTNG_SYMBOL_NAME_LEN
* lsm
.u
.enable
.exclusion_count
) +
1022 lsm
.u
.enable
.bytecode_len
+ lsm
.u
.enable
.expression_len
, NULL
);
1026 if (filter_expression
&& ctx
) {
1027 filter_bytecode_free(ctx
);
1028 filter_ir_free(ctx
);
1029 filter_parser_ctx_free(ctx
);
1032 if (free_filter_expression
) {
1034 * The filter expression has been replaced and must be freed as it is
1035 * not the original filter expression received as a parameter.
1037 free(filter_expression
);
1041 * Return directly to the caller and don't ask the sessiond since something
1042 * went wrong in the parsing of data above.
1047 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
1051 int lttng_disable_event_ext(struct lttng_handle
*handle
,
1052 struct lttng_event
*ev
, const char *channel_name
,
1053 const char *original_filter_expression
)
1055 struct lttcomm_session_msg lsm
;
1058 unsigned int free_filter_expression
= 0;
1059 struct filter_parser_ctx
*ctx
= NULL
;
1061 * Cast as non-const since we may replace the filter expression
1062 * by a dynamically allocated string. Otherwise, the original
1063 * string is not modified.
1065 char *filter_expression
= (char *) original_filter_expression
;
1067 if (handle
== NULL
|| ev
== NULL
) {
1068 ret
= -LTTNG_ERR_INVALID
;
1072 /* Empty filter string will always be rejected by the parser
1073 * anyway, so treat this corner-case early to eliminate
1074 * lttng_fmemopen error for 0-byte allocation.
1076 if (filter_expression
&& filter_expression
[0] == '\0') {
1077 ret
= -LTTNG_ERR_INVALID
;
1081 memset(&lsm
, 0, sizeof(lsm
));
1083 /* If no channel name, send empty string. */
1084 if (channel_name
== NULL
) {
1085 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, "",
1086 sizeof(lsm
.u
.disable
.channel_name
));
1088 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, channel_name
,
1089 sizeof(lsm
.u
.disable
.channel_name
));
1092 lsm
.cmd_type
= LTTNG_DISABLE_EVENT
;
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
));
1098 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1099 sizeof(lsm
.session
.name
));
1100 lsm
.u
.disable
.bytecode_len
= 0;
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.
1107 if (filter_expression
== NULL
&&
1108 (handle
->domain
.type
!= LTTNG_DOMAIN_JUL
&&
1109 handle
->domain
.type
!= LTTNG_DOMAIN_LOG4J
&&
1110 handle
->domain
.type
!= LTTNG_DOMAIN_PYTHON
)) {
1115 * We have a filter, so we need to set up a variable-length
1116 * memory block from where to send the data.
1119 /* Parse filter expression */
1120 if (filter_expression
!= NULL
|| handle
->domain
.type
== LTTNG_DOMAIN_JUL
1121 || handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
1122 || handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
1123 if (handle
->domain
.type
== LTTNG_DOMAIN_JUL
||
1124 handle
->domain
.type
== LTTNG_DOMAIN_LOG4J
||
1125 handle
->domain
.type
== LTTNG_DOMAIN_PYTHON
) {
1128 /* Setup JUL filter if needed. */
1129 agent_filter
= set_agent_filter(filter_expression
, ev
);
1130 if (!agent_filter
) {
1131 if (!filter_expression
) {
1132 /* No JUL and no filter, just skip everything below. */
1137 * With a JUL filter, the original filter has been added to it
1138 * thus replace the filter expression.
1140 filter_expression
= agent_filter
;
1141 free_filter_expression
= 1;
1145 ret
= generate_filter(filter_expression
, &lsm
, &ctx
);
1151 varlen_data
= zmalloc(lsm
.u
.disable
.bytecode_len
1152 + lsm
.u
.disable
.expression_len
);
1154 ret
= -LTTNG_ERR_EXCLUSION_NOMEM
;
1158 /* Add filter expression */
1159 if (lsm
.u
.disable
.expression_len
!= 0) {
1162 lsm
.u
.disable
.expression_len
);
1164 /* Add filter bytecode next */
1165 if (ctx
&& lsm
.u
.disable
.bytecode_len
!= 0) {
1167 + lsm
.u
.disable
.expression_len
,
1169 lsm
.u
.disable
.bytecode_len
);
1172 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, varlen_data
,
1173 lsm
.u
.disable
.bytecode_len
+ lsm
.u
.disable
.expression_len
, NULL
);
1177 if (filter_expression
&& ctx
) {
1178 filter_bytecode_free(ctx
);
1179 filter_ir_free(ctx
);
1180 filter_parser_ctx_free(ctx
);
1183 if (free_filter_expression
) {
1185 * The filter expression has been replaced and must be freed as it is
1186 * not the original filter expression received as a parameter.
1188 free(filter_expression
);
1192 * Return directly to the caller and don't ask the sessiond since something
1193 * went wrong in the parsing of data above.
1198 ret
= lttng_ctl_ask_sessiond(&lsm
, NULL
);
1203 * Disable event(s) of a channel and domain.
1204 * If no event name is specified, all events are disabled.
1205 * If no channel name is specified, the default 'channel0' is used.
1206 * Returns size of returned session payload data or a negative error code.
1208 int lttng_disable_event(struct lttng_handle
*handle
, const char *name
,
1209 const char *channel_name
)
1211 struct lttng_event ev
;
1213 memset(&ev
, 0, sizeof(ev
));
1215 ev
.type
= LTTNG_EVENT_ALL
;
1216 lttng_ctl_copy_string(ev
.name
, name
, sizeof(ev
.name
));
1217 return lttng_disable_event_ext(handle
, &ev
, channel_name
, NULL
);
1221 * Enable channel per domain
1222 * Returns size of returned session payload data or a negative error code.
1224 int lttng_enable_channel(struct lttng_handle
*handle
,
1225 struct lttng_channel
*chan
)
1227 struct lttcomm_session_msg lsm
;
1230 * NULL arguments are forbidden. No default values.
1232 if (handle
== NULL
|| chan
== NULL
) {
1233 return -LTTNG_ERR_INVALID
;
1236 memset(&lsm
, 0, sizeof(lsm
));
1238 memcpy(&lsm
.u
.channel
.chan
, chan
, sizeof(lsm
.u
.channel
.chan
));
1240 lsm
.cmd_type
= LTTNG_ENABLE_CHANNEL
;
1242 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1244 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1245 sizeof(lsm
.session
.name
));
1247 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1251 * All tracing will be stopped for registered events of the channel.
1252 * Returns size of returned session payload data or a negative error code.
1254 int lttng_disable_channel(struct lttng_handle
*handle
, const char *name
)
1256 struct lttcomm_session_msg lsm
;
1258 /* Safety check. Both are mandatory */
1259 if (handle
== NULL
|| name
== NULL
) {
1260 return -LTTNG_ERR_INVALID
;
1263 memset(&lsm
, 0, sizeof(lsm
));
1265 lsm
.cmd_type
= LTTNG_DISABLE_CHANNEL
;
1267 lttng_ctl_copy_string(lsm
.u
.disable
.channel_name
, name
,
1268 sizeof(lsm
.u
.disable
.channel_name
));
1270 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1272 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1273 sizeof(lsm
.session
.name
));
1275 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1279 * Add PID to session tracker.
1280 * Return 0 on success else a negative LTTng error code.
1282 int lttng_track_pid(struct lttng_handle
*handle
, int pid
)
1284 struct lttcomm_session_msg lsm
;
1287 * NULL arguments are forbidden. No default values.
1289 if (handle
== NULL
) {
1290 return -LTTNG_ERR_INVALID
;
1293 memset(&lsm
, 0, sizeof(lsm
));
1295 lsm
.cmd_type
= LTTNG_TRACK_PID
;
1296 lsm
.u
.pid_tracker
.pid
= pid
;
1298 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1300 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1301 sizeof(lsm
.session
.name
));
1303 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1307 * Remove PID from session tracker.
1308 * Return 0 on success else a negative LTTng error code.
1310 int lttng_untrack_pid(struct lttng_handle
*handle
, int pid
)
1312 struct lttcomm_session_msg lsm
;
1315 * NULL arguments are forbidden. No default values.
1317 if (handle
== NULL
) {
1318 return -LTTNG_ERR_INVALID
;
1321 memset(&lsm
, 0, sizeof(lsm
));
1323 lsm
.cmd_type
= LTTNG_UNTRACK_PID
;
1324 lsm
.u
.pid_tracker
.pid
= pid
;
1326 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1328 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1329 sizeof(lsm
.session
.name
));
1331 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1335 * Lists all available tracepoints of domain.
1336 * Sets the contents of the events array.
1337 * Returns the number of lttng_event entries in events;
1338 * on error, returns a negative value.
1340 int lttng_list_tracepoints(struct lttng_handle
*handle
,
1341 struct lttng_event
**events
)
1344 struct lttcomm_session_msg lsm
;
1346 if (handle
== NULL
) {
1347 return -LTTNG_ERR_INVALID
;
1350 memset(&lsm
, 0, sizeof(lsm
));
1351 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINTS
;
1352 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1354 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) events
);
1359 return ret
/ sizeof(struct lttng_event
);
1363 * Lists all available tracepoint fields of domain.
1364 * Sets the contents of the event field array.
1365 * Returns the number of lttng_event_field entries in events;
1366 * on error, returns a negative value.
1368 int lttng_list_tracepoint_fields(struct lttng_handle
*handle
,
1369 struct lttng_event_field
**fields
)
1372 struct lttcomm_session_msg lsm
;
1374 if (handle
== NULL
) {
1375 return -LTTNG_ERR_INVALID
;
1378 memset(&lsm
, 0, sizeof(lsm
));
1379 lsm
.cmd_type
= LTTNG_LIST_TRACEPOINT_FIELDS
;
1380 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1382 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) fields
);
1387 return ret
/ sizeof(struct lttng_event_field
);
1391 * Lists all available kernel system calls. Allocates and sets the contents of
1394 * Returns the number of lttng_event entries in events; on error, returns a
1397 int lttng_list_syscalls(struct lttng_event
**events
)
1400 struct lttcomm_session_msg lsm
;
1403 return -LTTNG_ERR_INVALID
;
1406 memset(&lsm
, 0, sizeof(lsm
));
1407 lsm
.cmd_type
= LTTNG_LIST_SYSCALLS
;
1408 /* Force kernel domain for system calls. */
1409 lsm
.domain
.type
= LTTNG_DOMAIN_KERNEL
;
1411 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) events
);
1416 return ret
/ sizeof(struct lttng_event
);
1420 * Returns a human readable string describing
1421 * the error code (a negative value).
1423 const char *lttng_strerror(int code
)
1425 return error_get_str(code
);
1429 * Create a brand new session using name and url for destination.
1431 * Returns LTTNG_OK on success or a negative error code.
1433 int lttng_create_session(const char *name
, const char *url
)
1437 struct lttcomm_session_msg lsm
;
1438 struct lttng_uri
*uris
= NULL
;
1441 return -LTTNG_ERR_INVALID
;
1444 memset(&lsm
, 0, sizeof(lsm
));
1446 lsm
.cmd_type
= LTTNG_CREATE_SESSION
;
1447 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1449 /* There should never be a data URL */
1450 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1452 return -LTTNG_ERR_INVALID
;
1455 lsm
.u
.uri
.size
= size
;
1457 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1458 sizeof(struct lttng_uri
) * size
, NULL
);
1465 * Destroy session using name.
1466 * Returns size of returned session payload data or a negative error code.
1468 int lttng_destroy_session(const char *session_name
)
1470 struct lttcomm_session_msg lsm
;
1472 if (session_name
== NULL
) {
1473 return -LTTNG_ERR_INVALID
;
1476 memset(&lsm
, 0, sizeof(lsm
));
1477 lsm
.cmd_type
= LTTNG_DESTROY_SESSION
;
1479 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1480 sizeof(lsm
.session
.name
));
1482 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1486 * Ask the session daemon for all available sessions.
1487 * Sets the contents of the sessions array.
1488 * Returns the number of lttng_session entries in sessions;
1489 * on error, returns a negative value.
1491 int lttng_list_sessions(struct lttng_session
**sessions
)
1494 struct lttcomm_session_msg lsm
;
1496 memset(&lsm
, 0, sizeof(lsm
));
1497 lsm
.cmd_type
= LTTNG_LIST_SESSIONS
;
1498 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) sessions
);
1503 return ret
/ sizeof(struct lttng_session
);
1506 int lttng_set_session_shm_path(const char *session_name
,
1507 const char *shm_path
)
1509 struct lttcomm_session_msg lsm
;
1511 if (session_name
== NULL
) {
1512 return -LTTNG_ERR_INVALID
;
1515 memset(&lsm
, 0, sizeof(lsm
));
1516 lsm
.cmd_type
= LTTNG_SET_SESSION_SHM_PATH
;
1518 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1519 sizeof(lsm
.session
.name
));
1520 lttng_ctl_copy_string(lsm
.u
.set_shm_path
.shm_path
, shm_path
,
1521 sizeof(lsm
.u
.set_shm_path
.shm_path
));
1523 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1527 * Ask the session daemon for all available domains of a session.
1528 * Sets the contents of the domains array.
1529 * Returns the number of lttng_domain entries in domains;
1530 * on error, returns a negative value.
1532 int lttng_list_domains(const char *session_name
,
1533 struct lttng_domain
**domains
)
1536 struct lttcomm_session_msg lsm
;
1538 if (session_name
== NULL
) {
1539 return -LTTNG_ERR_INVALID
;
1542 memset(&lsm
, 0, sizeof(lsm
));
1543 lsm
.cmd_type
= LTTNG_LIST_DOMAINS
;
1545 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1546 sizeof(lsm
.session
.name
));
1548 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) domains
);
1553 return ret
/ sizeof(struct lttng_domain
);
1557 * Ask the session daemon for all available channels of a session.
1558 * Sets the contents of the channels array.
1559 * Returns the number of lttng_channel entries in channels;
1560 * on error, returns a negative value.
1562 int lttng_list_channels(struct lttng_handle
*handle
,
1563 struct lttng_channel
**channels
)
1566 struct lttcomm_session_msg lsm
;
1568 if (handle
== NULL
) {
1569 return -LTTNG_ERR_INVALID
;
1572 memset(&lsm
, 0, sizeof(lsm
));
1573 lsm
.cmd_type
= LTTNG_LIST_CHANNELS
;
1574 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1575 sizeof(lsm
.session
.name
));
1577 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1579 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) channels
);
1584 return ret
/ sizeof(struct lttng_channel
);
1588 * Ask the session daemon for all available events of a session channel.
1589 * Sets the contents of the events array.
1590 * Returns the number of lttng_event entries in events;
1591 * on error, returns a negative value.
1593 int lttng_list_events(struct lttng_handle
*handle
,
1594 const char *channel_name
, struct lttng_event
**events
)
1597 struct lttcomm_session_msg lsm
;
1599 /* Safety check. An handle and channel name are mandatory */
1600 if (handle
== NULL
|| channel_name
== NULL
) {
1601 return -LTTNG_ERR_INVALID
;
1604 memset(&lsm
, 0, sizeof(lsm
));
1605 lsm
.cmd_type
= LTTNG_LIST_EVENTS
;
1606 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1607 sizeof(lsm
.session
.name
));
1608 lttng_ctl_copy_string(lsm
.u
.list
.channel_name
, channel_name
,
1609 sizeof(lsm
.u
.list
.channel_name
));
1611 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1613 ret
= lttng_ctl_ask_sessiond(&lsm
, (void**) events
);
1618 return ret
/ sizeof(struct lttng_event
);
1622 * Sets the tracing_group variable with name.
1623 * This function allocates memory pointed to by tracing_group.
1624 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
1626 int lttng_set_tracing_group(const char *name
)
1629 return -LTTNG_ERR_INVALID
;
1632 if (asprintf(&tracing_group
, "%s", name
) < 0) {
1633 return -LTTNG_ERR_FATAL
;
1640 * Returns size of returned session payload data or a negative error code.
1642 int lttng_calibrate(struct lttng_handle
*handle
,
1643 struct lttng_calibrate
*calibrate
)
1645 struct lttcomm_session_msg lsm
;
1647 /* Safety check. NULL pointer are forbidden */
1648 if (handle
== NULL
|| calibrate
== NULL
) {
1649 return -LTTNG_ERR_INVALID
;
1652 memset(&lsm
, 0, sizeof(lsm
));
1653 lsm
.cmd_type
= LTTNG_CALIBRATE
;
1654 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1656 memcpy(&lsm
.u
.calibrate
, calibrate
, sizeof(lsm
.u
.calibrate
));
1658 return lttng_ctl_ask_sessiond(&lsm
, NULL
);
1662 * Set default channel attributes.
1663 * If either or both of the arguments are null, attr content is zeroe'd.
1665 void lttng_channel_set_default_attr(struct lttng_domain
*domain
,
1666 struct lttng_channel_attr
*attr
)
1669 if (attr
== NULL
|| domain
== NULL
) {
1673 memset(attr
, 0, sizeof(struct lttng_channel_attr
));
1675 /* Same for all domains. */
1676 attr
->overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
1677 attr
->tracefile_size
= DEFAULT_CHANNEL_TRACEFILE_SIZE
;
1678 attr
->tracefile_count
= DEFAULT_CHANNEL_TRACEFILE_COUNT
;
1680 switch (domain
->type
) {
1681 case LTTNG_DOMAIN_KERNEL
:
1682 attr
->switch_timer_interval
= DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER
;
1683 attr
->read_timer_interval
= DEFAULT_KERNEL_CHANNEL_READ_TIMER
;
1684 attr
->subbuf_size
= default_get_kernel_channel_subbuf_size();
1685 attr
->num_subbuf
= DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM
;
1686 attr
->output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
1688 case LTTNG_DOMAIN_UST
:
1689 switch (domain
->buf_type
) {
1690 case LTTNG_BUFFER_PER_UID
:
1691 attr
->subbuf_size
= default_get_ust_uid_channel_subbuf_size();
1692 attr
->num_subbuf
= DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM
;
1693 attr
->output
= DEFAULT_UST_UID_CHANNEL_OUTPUT
;
1694 attr
->switch_timer_interval
= DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER
;
1695 attr
->read_timer_interval
= DEFAULT_UST_UID_CHANNEL_READ_TIMER
;
1697 case LTTNG_BUFFER_PER_PID
:
1699 attr
->subbuf_size
= default_get_ust_pid_channel_subbuf_size();
1700 attr
->num_subbuf
= DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM
;
1701 attr
->output
= DEFAULT_UST_PID_CHANNEL_OUTPUT
;
1702 attr
->switch_timer_interval
= DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER
;
1703 attr
->read_timer_interval
= DEFAULT_UST_PID_CHANNEL_READ_TIMER
;
1707 /* Default behavior: leave set to 0. */
1713 * Check if session daemon is alive.
1715 * Return 1 if alive or 0 if not.
1716 * On error returns a negative value.
1718 int lttng_session_daemon_alive(void)
1722 ret
= set_session_daemon_path();
1728 if (*sessiond_sock_path
== '\0') {
1730 * No socket path set. Weird error which means the constructor was not
1736 ret
= try_connect_sessiond(sessiond_sock_path
);
1747 * Set URL for a consumer for a session and domain.
1749 * Return 0 on success, else a negative value.
1751 int lttng_set_consumer_url(struct lttng_handle
*handle
,
1752 const char *control_url
, const char *data_url
)
1756 struct lttcomm_session_msg lsm
;
1757 struct lttng_uri
*uris
= NULL
;
1759 if (handle
== NULL
|| (control_url
== NULL
&& data_url
== NULL
)) {
1760 return -LTTNG_ERR_INVALID
;
1763 memset(&lsm
, 0, sizeof(lsm
));
1765 lsm
.cmd_type
= LTTNG_SET_CONSUMER_URI
;
1767 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
1768 sizeof(lsm
.session
.name
));
1769 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
1771 size
= uri_parse_str_urls(control_url
, data_url
, &uris
);
1773 return -LTTNG_ERR_INVALID
;
1776 lsm
.u
.uri
.size
= size
;
1778 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1779 sizeof(struct lttng_uri
) * size
, NULL
);
1788 int lttng_enable_consumer(struct lttng_handle
*handle
)
1796 int lttng_disable_consumer(struct lttng_handle
*handle
)
1802 * This is an extension of create session that is ONLY and SHOULD only be used
1803 * by the lttng command line program. It exists to avoid using URI parsing in
1806 * We need the date and time for the trace path subdirectory for the case where
1807 * the user does NOT define one using either -o or -U. Using the normal
1808 * lttng_create_session API call, we have no clue on the session daemon side if
1809 * the URL was generated automatically by the client or define by the user.
1811 * So this function "wrapper" is hidden from the public API, takes the datetime
1812 * string and appends it if necessary to the URI subdirectory before sending it
1813 * to the session daemon.
1815 * With this extra function, the lttng_create_session call behavior is not
1816 * changed and the timestamp is appended to the URI on the session daemon side
1819 int _lttng_create_session_ext(const char *name
, const char *url
,
1820 const char *datetime
)
1824 struct lttcomm_session_msg lsm
;
1825 struct lttng_uri
*uris
= NULL
;
1827 if (name
== NULL
|| datetime
== NULL
) {
1828 return -LTTNG_ERR_INVALID
;
1831 memset(&lsm
, 0, sizeof(lsm
));
1833 lsm
.cmd_type
= LTTNG_CREATE_SESSION
;
1834 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1836 /* There should never be a data URL */
1837 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1839 ret
= -LTTNG_ERR_INVALID
;
1843 lsm
.u
.uri
.size
= size
;
1845 if (size
> 0 && uris
[0].dtype
!= LTTNG_DST_PATH
&& strlen(uris
[0].subdir
) == 0) {
1846 /* Don't append datetime if the name was automatically created. */
1847 if (strncmp(name
, DEFAULT_SESSION_NAME
"-",
1848 strlen(DEFAULT_SESSION_NAME
) + 1)) {
1849 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s-%s",
1852 ret
= snprintf(uris
[0].subdir
, sizeof(uris
[0].subdir
), "%s", name
);
1855 PERROR("snprintf uri subdir");
1856 ret
= -LTTNG_ERR_FATAL
;
1861 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1862 sizeof(struct lttng_uri
) * size
, NULL
);
1870 * For a given session name, this call checks if the data is ready to be read
1871 * or is still being extracted by the consumer(s) hence not ready to be used by
1874 int lttng_data_pending(const char *session_name
)
1877 struct lttcomm_session_msg lsm
;
1878 uint8_t *pending
= NULL
;
1880 if (session_name
== NULL
) {
1881 return -LTTNG_ERR_INVALID
;
1884 memset(&lsm
, 0, sizeof(lsm
));
1885 lsm
.cmd_type
= LTTNG_DATA_PENDING
;
1887 lttng_ctl_copy_string(lsm
.session
.name
, session_name
,
1888 sizeof(lsm
.session
.name
));
1890 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) &pending
);
1893 } else if (ret
!= 1) {
1894 /* Unexpected payload size */
1895 ret
= -LTTNG_ERR_INVALID
;
1899 ret
= (int) *pending
;
1906 * Create a session exclusively used for snapshot.
1908 * Returns LTTNG_OK on success or a negative error code.
1910 int lttng_create_session_snapshot(const char *name
, const char *snapshot_url
)
1914 struct lttcomm_session_msg lsm
;
1915 struct lttng_uri
*uris
= NULL
;
1918 return -LTTNG_ERR_INVALID
;
1921 memset(&lsm
, 0, sizeof(lsm
));
1923 lsm
.cmd_type
= LTTNG_CREATE_SESSION_SNAPSHOT
;
1924 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1926 size
= uri_parse_str_urls(snapshot_url
, NULL
, &uris
);
1928 return -LTTNG_ERR_INVALID
;
1931 lsm
.u
.uri
.size
= size
;
1933 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1934 sizeof(struct lttng_uri
) * size
, NULL
);
1941 * Create a session exclusively used for live.
1943 * Returns LTTNG_OK on success or a negative error code.
1945 int lttng_create_session_live(const char *name
, const char *url
,
1946 unsigned int timer_interval
)
1950 struct lttcomm_session_msg lsm
;
1951 struct lttng_uri
*uris
= NULL
;
1953 if (name
== NULL
|| timer_interval
== 0) {
1954 return -LTTNG_ERR_INVALID
;
1957 memset(&lsm
, 0, sizeof(lsm
));
1959 lsm
.cmd_type
= LTTNG_CREATE_SESSION_LIVE
;
1960 lttng_ctl_copy_string(lsm
.session
.name
, name
, sizeof(lsm
.session
.name
));
1963 size
= uri_parse_str_urls(url
, NULL
, &uris
);
1965 ret
= -LTTNG_ERR_INVALID
;
1969 /* file:// is not accepted for live session. */
1970 if (uris
[0].dtype
== LTTNG_DST_PATH
) {
1971 ret
= -LTTNG_ERR_INVALID
;
1978 lsm
.u
.session_live
.nb_uri
= size
;
1979 lsm
.u
.session_live
.timer_interval
= timer_interval
;
1981 ret
= lttng_ctl_ask_sessiond_varlen(&lsm
, uris
,
1982 sizeof(struct lttng_uri
) * size
, NULL
);
1990 * List PIDs in the tracker.
1992 * enabled is set to whether the PID tracker is enabled.
1993 * pids is set to an allocated array of PIDs currently tracked. On
1994 * success, pids must be freed by the caller.
1995 * nr_pids is set to the number of entries contained by the pids array.
1997 * Returns 0 on success, else a negative LTTng error code.
1999 int lttng_list_tracker_pids(struct lttng_handle
*handle
,
2000 int *_enabled
, int32_t **_pids
, size_t *_nr_pids
)
2004 struct lttcomm_session_msg lsm
;
2008 if (handle
== NULL
) {
2009 return -LTTNG_ERR_INVALID
;
2012 memset(&lsm
, 0, sizeof(lsm
));
2013 lsm
.cmd_type
= LTTNG_LIST_TRACKER_PIDS
;
2014 lttng_ctl_copy_string(lsm
.session
.name
, handle
->session_name
,
2015 sizeof(lsm
.session
.name
));
2016 lttng_ctl_copy_lttng_domain(&lsm
.domain
, &handle
->domain
);
2018 ret
= lttng_ctl_ask_sessiond(&lsm
, (void **) &pids
);
2022 nr_pids
= ret
/ sizeof(int32_t);
2023 if (nr_pids
== 1 && pids
[0] == -1) {
2029 *_enabled
= enabled
;
2031 *_nr_pids
= nr_pids
;
2038 static void __attribute__((constructor
)) init()
2040 /* Set default session group */
2041 lttng_set_tracing_group(DEFAULT_TRACING_GROUP
);
2047 static void __attribute__((destructor
)) lttng_ctl_exit()
2049 free(tracing_group
);