2 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <sys/types.h>
31 #include <common/defaults.h>
32 #include <common/error.h>
33 #include <common/macros.h>
34 #include <common/utils.h>
35 #include <common/compat/getenv.h>
36 #include <lttng/lttng-error.h>
37 #include <libxml/parser.h>
38 #include <libxml/valid.h>
39 #include <libxml/xmlschemas.h>
40 #include <libxml/tree.h>
41 #include <lttng/lttng.h>
42 #include <lttng/snapshot.h>
44 #include "session-config.h"
45 #include "config-internal.h"
47 struct handler_filter_args
{
49 config_entry_handler_cb handler
;
53 struct session_config_validation_ctx
{
54 xmlSchemaParserCtxtPtr parser_ctx
;
56 xmlSchemaValidCtxtPtr schema_validation_ctx
;
59 const char * const config_str_yes
= "yes";
60 const char * const config_str_true
= "true";
61 const char * const config_str_on
= "on";
62 const char * const config_str_no
= "no";
63 const char * const config_str_false
= "false";
64 const char * const config_str_off
= "off";
65 const char * const config_xml_encoding
= "UTF-8";
66 const size_t config_xml_encoding_bytes_per_char
= 2; /* Size of the encoding's largest character */
67 const char * const config_xml_indent_string
= "\t";
68 const char * const config_xml_true
= "true";
69 const char * const config_xml_false
= "false";
71 const char * const config_element_channel
= "channel";
72 const char * const config_element_channels
= "channels";
73 const char * const config_element_domain
= "domain";
74 const char * const config_element_domains
= "domains";
75 const char * const config_element_event
= "event";
76 const char * const config_element_events
= "events";
77 const char * const config_element_context
= "context";
78 const char * const config_element_contexts
= "contexts";
79 const char * const config_element_attributes
= "attributes";
80 const char * const config_element_exclusion
= "exclusion";
81 const char * const config_element_exclusions
= "exclusions";
82 const char * const config_element_function_attributes
= "function_attributes";
83 const char * const config_element_probe_attributes
= "probe_attributes";
84 const char * const config_element_symbol_name
= "symbol_name";
85 const char * const config_element_address
= "address";
86 const char * const config_element_offset
= "offset";
87 const char * const config_element_name
= "name";
88 const char * const config_element_enabled
= "enabled";
89 const char * const config_element_overwrite_mode
= "overwrite_mode";
90 const char * const config_element_subbuf_size
= "subbuffer_size";
91 const char * const config_element_num_subbuf
= "subbuffer_count";
92 const char * const config_element_switch_timer_interval
= "switch_timer_interval";
93 const char * const config_element_read_timer_interval
= "read_timer_interval";
94 const char * const config_element_output
= "output";
95 const char * const config_element_output_type
= "output_type";
96 const char * const config_element_tracefile_size
= "tracefile_size";
97 const char * const config_element_tracefile_count
= "tracefile_count";
98 const char * const config_element_live_timer_interval
= "live_timer_interval";
99 LTTNG_HIDDEN
const char * const config_element_discarded_events
= "discarded_events";
100 LTTNG_HIDDEN
const char * const config_element_lost_packets
= "lost_packets";
101 const char * const config_element_type
= "type";
102 const char * const config_element_buffer_type
= "buffer_type";
103 const char * const config_element_session
= "session";
104 const char * const config_element_sessions
= "sessions";
105 LTTNG_HIDDEN
const char * const config_element_context_perf
= "perf";
106 LTTNG_HIDDEN
const char * const config_element_context_app
= "app";
107 LTTNG_HIDDEN
const char * const config_element_context_app_provider_name
= "provider_name";
108 LTTNG_HIDDEN
const char * const config_element_context_app_ctx_name
= "ctx_name";
109 const char * const config_element_config
= "config";
110 const char * const config_element_started
= "started";
111 const char * const config_element_snapshot_mode
= "snapshot_mode";
112 const char * const config_element_loglevel
= "loglevel";
113 const char * const config_element_loglevel_type
= "loglevel_type";
114 const char * const config_element_filter
= "filter";
115 LTTNG_HIDDEN
const char * const config_element_filter_expression
= "filter_expression";
116 const char * const config_element_snapshot_outputs
= "snapshot_outputs";
117 const char * const config_element_consumer_output
= "consumer_output";
118 const char * const config_element_destination
= "destination";
119 const char * const config_element_path
= "path";
120 const char * const config_element_net_output
= "net_output";
121 const char * const config_element_control_uri
= "control_uri";
122 const char * const config_element_data_uri
= "data_uri";
123 const char * const config_element_max_size
= "max_size";
124 const char * const config_element_pid
= "pid";
125 const char * const config_element_pids
= "pids";
126 const char * const config_element_shared_memory_path
= "shared_memory_path";
127 const char * const config_element_pid_tracker
= "pid_tracker";
128 const char * const config_element_trackers
= "trackers";
129 const char * const config_element_targets
= "targets";
130 const char * const config_element_target_pid
= "pid_target";
132 const char * const config_domain_type_kernel
= "KERNEL";
133 const char * const config_domain_type_ust
= "UST";
134 const char * const config_domain_type_jul
= "JUL";
135 const char * const config_domain_type_log4j
= "LOG4J";
136 const char * const config_domain_type_python
= "PYTHON";
138 const char * const config_buffer_type_per_pid
= "PER_PID";
139 const char * const config_buffer_type_per_uid
= "PER_UID";
140 const char * const config_buffer_type_global
= "GLOBAL";
142 const char * const config_overwrite_mode_discard
= "DISCARD";
143 const char * const config_overwrite_mode_overwrite
= "OVERWRITE";
145 const char * const config_output_type_splice
= "SPLICE";
146 const char * const config_output_type_mmap
= "MMAP";
148 const char * const config_loglevel_type_all
= "ALL";
149 const char * const config_loglevel_type_range
= "RANGE";
150 const char * const config_loglevel_type_single
= "SINGLE";
152 const char * const config_event_type_all
= "ALL";
153 const char * const config_event_type_tracepoint
= "TRACEPOINT";
154 const char * const config_event_type_probe
= "PROBE";
155 const char * const config_event_type_function
= "FUNCTION";
156 const char * const config_event_type_function_entry
= "FUNCTION_ENTRY";
157 const char * const config_event_type_noop
= "NOOP";
158 const char * const config_event_type_syscall
= "SYSCALL";
159 const char * const config_event_type_kprobe
= "KPROBE";
160 const char * const config_event_type_kretprobe
= "KRETPROBE";
162 const char * const config_event_context_pid
= "PID";
163 const char * const config_event_context_procname
= "PROCNAME";
164 const char * const config_event_context_prio
= "PRIO";
165 const char * const config_event_context_nice
= "NICE";
166 const char * const config_event_context_vpid
= "VPID";
167 const char * const config_event_context_tid
= "TID";
168 const char * const config_event_context_vtid
= "VTID";
169 const char * const config_event_context_ppid
= "PPID";
170 const char * const config_event_context_vppid
= "VPPID";
171 const char * const config_event_context_pthread_id
= "PTHREAD_ID";
172 const char * const config_event_context_hostname
= "HOSTNAME";
173 const char * const config_event_context_ip
= "IP";
174 const char * const config_event_context_perf_thread_counter
= "PERF_THREAD_COUNTER";
175 LTTNG_HIDDEN
const char * const config_event_context_app
= "APP";
176 LTTNG_HIDDEN
const char * const config_event_context_interruptible
= "INTERRUPTIBLE";
177 LTTNG_HIDDEN
const char * const config_event_context_preemptible
= "PREEMPTIBLE";
178 LTTNG_HIDDEN
const char * const config_event_context_need_reschedule
= "NEED_RESCHEDULE";
179 LTTNG_HIDDEN
const char * const config_event_context_migratable
= "MIGRATABLE";
181 /* Deprecated symbols */
182 const char * const config_element_perf
;
184 enum process_event_node_phase
{
189 struct consumer_output
{
196 static int config_entry_handler_filter(struct handler_filter_args
*args
,
197 const char *section
, const char *name
, const char *value
)
200 struct config_entry entry
= { section
, name
, value
};
204 if (!section
|| !name
|| !value
) {
210 if (strcmp(args
->section
, section
)) {
215 ret
= args
->handler(&entry
, args
->user_data
);
221 int config_get_section_entries(const char *override_path
, const char *section
,
222 config_entry_handler_cb handler
, void *user_data
)
226 FILE *config_file
= NULL
;
227 struct handler_filter_args filter
= { section
, handler
, user_data
};
229 /* First, try system-wide conf. file. */
230 path
= DEFAULT_DAEMON_SYSTEM_CONFIGPATH
;
232 config_file
= fopen(path
, "r");
234 DBG("Loading daemon conf file at %s", path
);
236 * Return value is not very important here since error or not, we
237 * continue and try the next possible conf. file.
239 (void) ini_parse_file(config_file
,
240 (ini_entry_handler
) config_entry_handler_filter
,
245 /* Second is the user local configuration. */
246 path
= utils_get_home_dir();
248 char fullpath
[PATH_MAX
];
250 ret
= snprintf(fullpath
, sizeof(fullpath
),
251 DEFAULT_DAEMON_HOME_CONFIGPATH
, path
);
253 PERROR("snprintf user conf. path");
257 config_file
= fopen(fullpath
, "r");
259 DBG("Loading daemon user conf file at %s", path
);
261 * Return value is not very important here since error or not, we
262 * continue and try the next possible conf. file.
264 (void) ini_parse_file(config_file
,
265 (ini_entry_handler
) config_entry_handler_filter
,
271 /* Final path is the one that the user might have provided. */
273 config_file
= fopen(override_path
, "r");
275 DBG("Loading daemon command line conf file at %s", override_path
);
276 (void) ini_parse_file(config_file
,
277 (ini_entry_handler
) config_entry_handler_filter
,
281 ERR("Failed to open daemon configuration file at %s",
288 /* Everything went well. */
296 int config_parse_value(const char *value
)
299 char *endptr
, *lower_str
;
309 v
= strtoul(value
, &endptr
, 10);
310 if (endptr
!= value
) {
315 lower_str
= zmalloc(len
+ 1);
322 for (i
= 0; i
< len
; i
++) {
323 lower_str
[i
] = tolower(value
[i
]);
326 if (!strcmp(lower_str
, config_str_yes
) ||
327 !strcmp(lower_str
, config_str_true
) ||
328 !strcmp(lower_str
, config_str_on
)) {
330 } else if (!strcmp(lower_str
, config_str_no
) ||
331 !strcmp(lower_str
, config_str_false
) ||
332 !strcmp(lower_str
, config_str_off
)) {
344 * Returns a xmlChar string which must be released using xmlFree().
346 static xmlChar
*encode_string(const char *in_str
)
348 xmlChar
*out_str
= NULL
;
349 xmlCharEncodingHandlerPtr handler
;
350 int out_len
, ret
, in_len
;
354 handler
= xmlFindCharEncodingHandler(config_xml_encoding
);
356 ERR("xmlFindCharEncodingHandler return NULL!. Configure issue!");
360 in_len
= strlen(in_str
);
362 * Add 1 byte for the NULL terminted character. The factor 4 here is
363 * used because UTF-8 characters can take up to 4 bytes.
365 out_len
= (in_len
* 4) + 1;
366 out_str
= xmlMalloc(out_len
);
371 ret
= handler
->input(out_str
, &out_len
, (const xmlChar
*) in_str
, &in_len
);
378 /* out_len is now the size of out_str */
379 out_str
[out_len
] = '\0';
385 struct config_writer
*config_writer_create(int fd_output
, int indent
)
388 struct config_writer
*writer
;
389 xmlOutputBufferPtr buffer
;
391 writer
= zmalloc(sizeof(struct config_writer
));
393 PERROR("zmalloc config_writer_create");
397 buffer
= xmlOutputBufferCreateFd(fd_output
, NULL
);
402 writer
->writer
= xmlNewTextWriter(buffer
);
403 ret
= xmlTextWriterStartDocument(writer
->writer
, NULL
,
404 config_xml_encoding
, NULL
);
409 ret
= xmlTextWriterSetIndentString(writer
->writer
,
410 BAD_CAST config_xml_indent_string
);
415 ret
= xmlTextWriterSetIndent(writer
->writer
, indent
);
423 config_writer_destroy(writer
);
428 int config_writer_destroy(struct config_writer
*writer
)
437 if (xmlTextWriterEndDocument(writer
->writer
) < 0) {
438 WARN("Could not close XML document");
442 if (writer
->writer
) {
443 xmlFreeTextWriter(writer
->writer
);
452 int config_writer_open_element(struct config_writer
*writer
,
453 const char *element_name
)
456 xmlChar
*encoded_element_name
;
458 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0]) {
463 encoded_element_name
= encode_string(element_name
);
464 if (!encoded_element_name
) {
469 ret
= xmlTextWriterStartElement(writer
->writer
, encoded_element_name
);
470 xmlFree(encoded_element_name
);
472 return ret
>= 0 ? 0 : ret
;
476 int config_writer_write_attribute(struct config_writer
*writer
,
477 const char *name
, const char *value
)
480 xmlChar
*encoded_name
= NULL
;
481 xmlChar
*encoded_value
= NULL
;
483 if (!writer
|| !writer
->writer
|| !name
|| !name
[0]) {
488 encoded_name
= encode_string(name
);
494 encoded_value
= encode_string(value
);
495 if (!encoded_value
) {
500 ret
= xmlTextWriterWriteAttribute(writer
->writer
, encoded_name
,
503 xmlFree(encoded_name
);
504 xmlFree(encoded_value
);
505 return ret
>= 0 ? 0 : ret
;
509 int config_writer_close_element(struct config_writer
*writer
)
513 if (!writer
|| !writer
->writer
) {
518 ret
= xmlTextWriterEndElement(writer
->writer
);
520 return ret
>= 0 ? 0 : ret
;
524 int config_writer_write_element_unsigned_int(struct config_writer
*writer
,
525 const char *element_name
, uint64_t value
)
528 xmlChar
*encoded_element_name
;
530 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0]) {
535 encoded_element_name
= encode_string(element_name
);
536 if (!encoded_element_name
) {
541 ret
= xmlTextWriterWriteFormatElement(writer
->writer
,
542 encoded_element_name
, "%" PRIu64
, value
);
543 xmlFree(encoded_element_name
);
545 return ret
>= 0 ? 0 : ret
;
549 int config_writer_write_element_signed_int(struct config_writer
*writer
,
550 const char *element_name
, int64_t value
)
553 xmlChar
*encoded_element_name
;
555 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0]) {
560 encoded_element_name
= encode_string(element_name
);
561 if (!encoded_element_name
) {
566 ret
= xmlTextWriterWriteFormatElement(writer
->writer
,
567 encoded_element_name
, "%" PRIi64
, value
);
568 xmlFree(encoded_element_name
);
570 return ret
>= 0 ? 0 : ret
;
574 int config_writer_write_element_bool(struct config_writer
*writer
,
575 const char *element_name
, int value
)
577 return config_writer_write_element_string(writer
, element_name
,
578 value
? config_xml_true
: config_xml_false
);
582 int config_writer_write_element_string(struct config_writer
*writer
,
583 const char *element_name
, const char *value
)
586 xmlChar
*encoded_element_name
= NULL
;
587 xmlChar
*encoded_value
= NULL
;
589 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0] ||
595 encoded_element_name
= encode_string(element_name
);
596 if (!encoded_element_name
) {
601 encoded_value
= encode_string(value
);
602 if (!encoded_value
) {
607 ret
= xmlTextWriterWriteElement(writer
->writer
, encoded_element_name
,
610 xmlFree(encoded_element_name
);
611 xmlFree(encoded_value
);
612 return ret
>= 0 ? 0 : ret
;
616 void xml_error_handler(void *ctx
, const char *format
, ...)
622 va_start(args
, format
);
623 ret
= vasprintf(&errMsg
, format
, args
);
626 ERR("String allocation failed in xml error handler");
630 fprintf(stderr
, "XML Error: %s", errMsg
);
635 void fini_session_config_validation_ctx(
636 struct session_config_validation_ctx
*ctx
)
638 if (ctx
->parser_ctx
) {
639 xmlSchemaFreeParserCtxt(ctx
->parser_ctx
);
643 xmlSchemaFree(ctx
->schema
);
646 if (ctx
->schema_validation_ctx
) {
647 xmlSchemaFreeValidCtxt(ctx
->schema_validation_ctx
);
650 memset(ctx
, 0, sizeof(struct session_config_validation_ctx
));
654 char *get_session_config_xsd_path()
657 const char *base_path
= lttng_secure_getenv(DEFAULT_SESSION_CONFIG_XSD_PATH_ENV
);
658 size_t base_path_len
;
662 base_path
= DEFAULT_SESSION_CONFIG_XSD_PATH
;
665 base_path_len
= strlen(base_path
);
666 max_path_len
= base_path_len
+
667 sizeof(DEFAULT_SESSION_CONFIG_XSD_FILENAME
) + 1;
668 xsd_path
= zmalloc(max_path_len
);
673 strncpy(xsd_path
, base_path
, max_path_len
);
674 if (xsd_path
[base_path_len
- 1] != '/') {
675 xsd_path
[base_path_len
++] = '/';
678 strncpy(xsd_path
+ base_path_len
, DEFAULT_SESSION_CONFIG_XSD_FILENAME
,
679 max_path_len
- base_path_len
);
685 int init_session_config_validation_ctx(
686 struct session_config_validation_ctx
*ctx
)
689 char *xsd_path
= get_session_config_xsd_path();
692 ret
= -LTTNG_ERR_NOMEM
;
696 ctx
->parser_ctx
= xmlSchemaNewParserCtxt(xsd_path
);
697 if (!ctx
->parser_ctx
) {
698 ERR("XSD parser context creation failed");
699 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
702 xmlSchemaSetParserErrors(ctx
->parser_ctx
, xml_error_handler
,
703 xml_error_handler
, NULL
);
705 ctx
->schema
= xmlSchemaParse(ctx
->parser_ctx
);
707 ERR("XSD parsing failed");
708 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
712 ctx
->schema_validation_ctx
= xmlSchemaNewValidCtxt(ctx
->schema
);
713 if (!ctx
->schema_validation_ctx
) {
714 ERR("XSD validation context creation failed");
715 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
719 xmlSchemaSetValidErrors(ctx
->schema_validation_ctx
, xml_error_handler
,
720 xml_error_handler
, NULL
);
725 fini_session_config_validation_ctx(ctx
);
733 int parse_uint(xmlChar
*str
, uint64_t *val
)
743 *val
= strtoull((const char *) str
, &endptr
, 10);
744 if (!endptr
|| *endptr
) {
755 int parse_int(xmlChar
*str
, int64_t *val
)
765 *val
= strtoll((const char *) str
, &endptr
, 10);
766 if (!endptr
|| *endptr
) {
777 int parse_bool(xmlChar
*str
, int *val
)
786 if (!strcmp((const char *) str
, config_xml_true
)) {
788 } else if (!strcmp((const char *) str
, config_xml_false
)) {
791 WARN("Invalid boolean value encoutered (%s).",
800 int get_domain_type(xmlChar
*domain
)
808 if (!strcmp((char *) domain
, config_domain_type_kernel
)) {
809 ret
= LTTNG_DOMAIN_KERNEL
;
810 } else if (!strcmp((char *) domain
, config_domain_type_ust
)) {
811 ret
= LTTNG_DOMAIN_UST
;
812 } else if (!strcmp((char *) domain
, config_domain_type_jul
)) {
813 ret
= LTTNG_DOMAIN_JUL
;
814 } else if (!strcmp((char *) domain
, config_domain_type_log4j
)) {
815 ret
= LTTNG_DOMAIN_LOG4J
;
816 } else if (!strcmp((char *) domain
, config_domain_type_python
)) {
817 ret
= LTTNG_DOMAIN_PYTHON
;
828 int get_buffer_type(xmlChar
*buffer_type
)
836 if (!strcmp((char *) buffer_type
, config_buffer_type_global
)) {
837 ret
= LTTNG_BUFFER_GLOBAL
;
838 } else if (!strcmp((char *) buffer_type
, config_buffer_type_per_uid
)) {
839 ret
= LTTNG_BUFFER_PER_UID
;
840 } else if (!strcmp((char *) buffer_type
, config_buffer_type_per_pid
)) {
841 ret
= LTTNG_BUFFER_PER_PID
;
852 int get_overwrite_mode(xmlChar
*overwrite_mode
)
856 if (!overwrite_mode
) {
860 if (!strcmp((char *) overwrite_mode
, config_overwrite_mode_overwrite
)) {
862 } else if (!strcmp((char *) overwrite_mode
,
863 config_overwrite_mode_discard
)) {
875 int get_output_type(xmlChar
*output_type
)
883 if (!strcmp((char *) output_type
, config_output_type_mmap
)) {
884 ret
= LTTNG_EVENT_MMAP
;
885 } else if (!strcmp((char *) output_type
, config_output_type_splice
)) {
886 ret
= LTTNG_EVENT_SPLICE
;
897 int get_event_type(xmlChar
*event_type
)
905 if (!strcmp((char *) event_type
, config_event_type_all
)) {
906 ret
= LTTNG_EVENT_ALL
;
907 } else if (!strcmp((char *) event_type
, config_event_type_tracepoint
)) {
908 ret
= LTTNG_EVENT_TRACEPOINT
;
909 } else if (!strcmp((char *) event_type
, config_event_type_probe
)) {
910 ret
= LTTNG_EVENT_PROBE
;
911 } else if (!strcmp((char *) event_type
, config_event_type_function
)) {
912 ret
= LTTNG_EVENT_FUNCTION
;
913 } else if (!strcmp((char *) event_type
,
914 config_event_type_function_entry
)) {
915 ret
= LTTNG_EVENT_FUNCTION_ENTRY
;
916 } else if (!strcmp((char *) event_type
, config_event_type_noop
)) {
917 ret
= LTTNG_EVENT_NOOP
;
918 } else if (!strcmp((char *) event_type
, config_event_type_syscall
)) {
919 ret
= LTTNG_EVENT_SYSCALL
;
930 int get_loglevel_type(xmlChar
*loglevel_type
)
934 if (!loglevel_type
) {
938 if (!strcmp((char *) loglevel_type
, config_loglevel_type_all
)) {
939 ret
= LTTNG_EVENT_LOGLEVEL_ALL
;
940 } else if (!strcmp((char *) loglevel_type
,
941 config_loglevel_type_range
)) {
942 ret
= LTTNG_EVENT_LOGLEVEL_RANGE
;
943 } else if (!strcmp((char *) loglevel_type
,
944 config_loglevel_type_single
)) {
945 ret
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
956 * Return the context type or -1 on error.
959 int get_context_type(xmlChar
*context_type
)
967 if (!strcmp((char *) context_type
, config_event_context_pid
)) {
968 ret
= LTTNG_EVENT_CONTEXT_PID
;
969 } else if (!strcmp((char *) context_type
,
970 config_event_context_procname
)) {
971 ret
= LTTNG_EVENT_CONTEXT_PROCNAME
;
972 } else if (!strcmp((char *) context_type
,
973 config_event_context_prio
)) {
974 ret
= LTTNG_EVENT_CONTEXT_PRIO
;
975 } else if (!strcmp((char *) context_type
,
976 config_event_context_nice
)) {
977 ret
= LTTNG_EVENT_CONTEXT_NICE
;
978 } else if (!strcmp((char *) context_type
,
979 config_event_context_vpid
)) {
980 ret
= LTTNG_EVENT_CONTEXT_VPID
;
981 } else if (!strcmp((char *) context_type
,
982 config_event_context_tid
)) {
983 ret
= LTTNG_EVENT_CONTEXT_TID
;
984 } else if (!strcmp((char *) context_type
,
985 config_event_context_vtid
)) {
986 ret
= LTTNG_EVENT_CONTEXT_VTID
;
987 } else if (!strcmp((char *) context_type
,
988 config_event_context_ppid
)) {
989 ret
= LTTNG_EVENT_CONTEXT_PPID
;
990 } else if (!strcmp((char *) context_type
,
991 config_event_context_vppid
)) {
992 ret
= LTTNG_EVENT_CONTEXT_VPPID
;
993 } else if (!strcmp((char *) context_type
,
994 config_event_context_pthread_id
)) {
995 ret
= LTTNG_EVENT_CONTEXT_PTHREAD_ID
;
996 } else if (!strcmp((char *) context_type
,
997 config_event_context_hostname
)) {
998 ret
= LTTNG_EVENT_CONTEXT_HOSTNAME
;
999 } else if (!strcmp((char *) context_type
,
1000 config_event_context_ip
)) {
1001 ret
= LTTNG_EVENT_CONTEXT_IP
;
1002 } else if (!strcmp((char *) context_type
,
1003 config_event_context_interruptible
)) {
1004 ret
= LTTNG_EVENT_CONTEXT_INTERRUPTIBLE
;
1005 } else if (!strcmp((char *) context_type
,
1006 config_event_context_preemptible
)) {
1007 ret
= LTTNG_EVENT_CONTEXT_PREEMPTIBLE
;
1008 } else if (!strcmp((char *) context_type
,
1009 config_event_context_need_reschedule
)) {
1010 ret
= LTTNG_EVENT_CONTEXT_NEED_RESCHEDULE
;
1011 } else if (!strcmp((char *) context_type
,
1012 config_event_context_migratable
)) {
1013 ret
= LTTNG_EVENT_CONTEXT_MIGRATABLE
;
1024 int init_domain(xmlNodePtr domain_node
, struct lttng_domain
*domain
)
1029 for (node
= xmlFirstElementChild(domain_node
); node
;
1030 node
= xmlNextElementSibling(node
)) {
1031 if (!strcmp((const char *) node
->name
, config_element_type
)) {
1033 xmlChar
*node_content
= xmlNodeGetContent(node
);
1034 if (!node_content
) {
1035 ret
= -LTTNG_ERR_NOMEM
;
1039 ret
= get_domain_type(node_content
);
1042 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1047 } else if (!strcmp((const char *) node
->name
,
1048 config_element_buffer_type
)) {
1050 xmlChar
*node_content
= xmlNodeGetContent(node
);
1051 if (!node_content
) {
1052 ret
= -LTTNG_ERR_NOMEM
;
1056 ret
= get_buffer_type(node_content
);
1059 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1063 domain
->buf_type
= ret
;
1072 int get_net_output_uris(xmlNodePtr net_output_node
, char **control_uri
,
1077 for (node
= xmlFirstElementChild(net_output_node
); node
;
1078 node
= xmlNextElementSibling(node
)) {
1079 if (!strcmp((const char *) node
->name
, config_element_control_uri
)) {
1081 *control_uri
= (char *) xmlNodeGetContent(node
);
1082 if (!*control_uri
) {
1087 *data_uri
= (char *) xmlNodeGetContent(node
);
1094 return *control_uri
|| *data_uri
? 0 : -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1098 int process_consumer_output(xmlNodePtr consumer_output_node
,
1099 struct consumer_output
*output
)
1106 for (node
= xmlFirstElementChild(consumer_output_node
); node
;
1107 node
= xmlNextElementSibling(node
)) {
1108 if (!strcmp((const char *) node
->name
, config_element_enabled
)) {
1109 xmlChar
*enabled_str
= xmlNodeGetContent(node
);
1113 ret
= -LTTNG_ERR_NOMEM
;
1117 ret
= parse_bool(enabled_str
, &output
->enabled
);
1123 xmlNodePtr output_type_node
;
1126 output_type_node
= xmlFirstElementChild(node
);
1127 if (!output_type_node
) {
1128 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1132 if (!strcmp((const char *) output_type_node
->name
,
1133 config_element_path
)) {
1135 output
->path
= (char *) xmlNodeGetContent(output_type_node
);
1136 if (!output
->path
) {
1137 ret
= -LTTNG_ERR_NOMEM
;
1142 ret
= get_net_output_uris(output_type_node
,
1143 &output
->control_uri
, &output
->data_uri
);
1155 free(output
->control_uri
);
1156 free(output
->data_uri
);
1157 memset(output
, 0, sizeof(struct consumer_output
));
1163 int create_session_net_output(const char *name
, const char *control_uri
,
1164 const char *data_uri
)
1167 struct lttng_handle
*handle
;
1168 const char *uri
= NULL
;
1172 handle
= lttng_create_handle(name
, NULL
);
1174 ret
= -LTTNG_ERR_NOMEM
;
1178 if (!control_uri
|| !data_uri
) {
1179 uri
= control_uri
? control_uri
: data_uri
;
1184 ret
= lttng_set_consumer_url(handle
, control_uri
, data_uri
);
1185 lttng_destroy_handle(handle
);
1191 int create_snapshot_session(const char *session_name
, xmlNodePtr output_node
)
1194 xmlNodePtr node
= NULL
;
1195 xmlNodePtr snapshot_output_list_node
;
1196 xmlNodePtr snapshot_output_node
;
1198 assert(session_name
);
1200 ret
= lttng_create_session_snapshot(session_name
, NULL
);
1209 snapshot_output_list_node
= xmlFirstElementChild(output_node
);
1211 /* Parse and create snapshot outputs */
1213 for (snapshot_output_node
=
1214 xmlFirstElementChild(snapshot_output_list_node
);
1215 snapshot_output_node
; snapshot_output_node
=
1216 xmlNextElementSibling(snapshot_output_node
)) {
1218 uint64_t max_size
= UINT64_MAX
;
1219 struct consumer_output output
= { 0 };
1220 struct lttng_snapshot_output
*snapshot_output
= NULL
;
1222 for (node
= xmlFirstElementChild(snapshot_output_node
); node
;
1223 node
= xmlNextElementSibling(node
)) {
1224 if (!strcmp((const char *) node
->name
,
1225 config_element_name
)) {
1227 name
= (char *) xmlNodeGetContent(node
);
1229 ret
= -LTTNG_ERR_NOMEM
;
1230 goto error_snapshot_output
;
1232 } else if (!strcmp((const char *) node
->name
,
1233 config_element_max_size
)) {
1234 xmlChar
*content
= xmlNodeGetContent(node
);
1238 ret
= -LTTNG_ERR_NOMEM
;
1239 goto error_snapshot_output
;
1241 ret
= parse_uint(content
, &max_size
);
1244 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1245 goto error_snapshot_output
;
1248 /* consumer_output */
1249 ret
= process_consumer_output(node
, &output
);
1251 goto error_snapshot_output
;
1256 snapshot_output
= lttng_snapshot_output_create();
1257 if (!snapshot_output
) {
1258 ret
= -LTTNG_ERR_NOMEM
;
1259 goto error_snapshot_output
;
1262 ret
= lttng_snapshot_output_set_name(name
, snapshot_output
);
1264 goto error_snapshot_output
;
1267 ret
= lttng_snapshot_output_set_size(max_size
, snapshot_output
);
1269 goto error_snapshot_output
;
1273 ret
= lttng_snapshot_output_set_ctrl_url(output
.path
,
1276 goto error_snapshot_output
;
1279 if (output
.control_uri
) {
1280 ret
= lttng_snapshot_output_set_ctrl_url(output
.control_uri
,
1283 goto error_snapshot_output
;
1287 if (output
.data_uri
) {
1288 ret
= lttng_snapshot_output_set_data_url(output
.data_uri
,
1291 goto error_snapshot_output
;
1296 ret
= lttng_snapshot_add_output(session_name
, snapshot_output
);
1297 error_snapshot_output
:
1300 free(output
.control_uri
);
1301 free(output
.data_uri
);
1302 lttng_snapshot_output_destroy(snapshot_output
);
1312 int create_session(const char *name
,
1313 struct lttng_domain
*kernel_domain
,
1314 struct lttng_domain
*ust_domain
,
1315 struct lttng_domain
*jul_domain
,
1316 struct lttng_domain
*log4j_domain
,
1317 xmlNodePtr output_node
,
1318 uint64_t live_timer_interval
)
1321 struct consumer_output output
= { 0 };
1322 xmlNodePtr consumer_output_node
;
1327 consumer_output_node
= xmlFirstElementChild(output_node
);
1328 if (!consumer_output_node
) {
1329 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1333 if (strcmp((const char *) consumer_output_node
->name
,
1334 config_element_consumer_output
)) {
1335 WARN("Invalid output type, expected %s node",
1336 config_element_consumer_output
);
1337 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1341 ret
= process_consumer_output(consumer_output_node
, &output
);
1347 if (live_timer_interval
!= UINT64_MAX
&&
1348 !output
.control_uri
&& !output
.data_uri
) {
1349 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1353 if (output
.control_uri
|| output
.data_uri
) {
1354 /* network destination */
1355 if (live_timer_interval
&& live_timer_interval
!= UINT64_MAX
) {
1357 * URLs are provided for sure since the test above make sure that
1358 * with a live timer the data and control URIs are provided. So,
1359 * NULL is passed here and will be set right after.
1361 ret
= lttng_create_session_live(name
, NULL
, live_timer_interval
);
1363 ret
= lttng_create_session(name
, NULL
);
1369 ret
= create_session_net_output(name
, output
.control_uri
,
1376 /* either local output or no output */
1377 ret
= lttng_create_session(name
, output
.path
);
1384 free(output
.control_uri
);
1385 free(output
.data_uri
);
1389 int process_probe_attribute_node(xmlNodePtr probe_attribute_node
,
1390 struct lttng_event_probe_attr
*attr
)
1394 assert(probe_attribute_node
);
1397 if (!strcmp((const char *) probe_attribute_node
->name
,
1398 config_element_address
)) {
1403 content
= xmlNodeGetContent(probe_attribute_node
);
1405 ret
= -LTTNG_ERR_NOMEM
;
1409 ret
= parse_uint(content
, &addr
);
1412 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1417 } else if (!strcmp((const char *) probe_attribute_node
->name
,
1418 config_element_offset
)) {
1420 uint64_t offset
= 0;
1423 content
= xmlNodeGetContent(probe_attribute_node
);
1425 ret
= -LTTNG_ERR_NOMEM
;
1429 ret
= parse_uint(content
, &offset
);
1432 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1436 attr
->offset
= offset
;
1437 } else if (!strcmp((const char *) probe_attribute_node
->name
,
1438 config_element_symbol_name
)) {
1443 content
= xmlNodeGetContent(probe_attribute_node
);
1445 ret
= -LTTNG_ERR_NOMEM
;
1449 name_len
= strlen((char *) content
);
1450 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1451 WARN("symbol_name too long.");
1452 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1457 strncpy(attr
->symbol_name
, (const char *) content
, name_len
);
1466 int process_event_node(xmlNodePtr event_node
, struct lttng_handle
*handle
,
1467 const char *channel_name
, const enum process_event_node_phase phase
)
1471 struct lttng_event event
;
1472 char **exclusions
= NULL
;
1473 unsigned long exclusion_count
= 0;
1474 char *filter_expression
= NULL
;
1478 assert(channel_name
);
1480 memset(&event
, 0, sizeof(event
));
1482 /* Initialize default log level which varies by domain */
1483 switch (handle
->domain
.type
)
1485 case LTTNG_DOMAIN_JUL
:
1486 event
.loglevel
= LTTNG_LOGLEVEL_JUL_ALL
;
1488 case LTTNG_DOMAIN_LOG4J
:
1489 event
.loglevel
= LTTNG_LOGLEVEL_LOG4J_ALL
;
1491 case LTTNG_DOMAIN_PYTHON
:
1492 event
.loglevel
= LTTNG_LOGLEVEL_PYTHON_DEBUG
;
1494 case LTTNG_DOMAIN_UST
:
1495 case LTTNG_DOMAIN_KERNEL
:
1496 event
.loglevel
= LTTNG_LOGLEVEL_DEBUG
;
1502 for (node
= xmlFirstElementChild(event_node
); node
;
1503 node
= xmlNextElementSibling(node
)) {
1504 if (!strcmp((const char *) node
->name
, config_element_name
)) {
1509 content
= xmlNodeGetContent(node
);
1511 ret
= -LTTNG_ERR_NOMEM
;
1515 name_len
= strlen((char *) content
);
1516 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1517 WARN("Channel name too long.");
1518 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1523 strncpy(event
.name
, (const char *) content
, name_len
);
1525 } else if (!strcmp((const char *) node
->name
,
1526 config_element_enabled
)) {
1527 xmlChar
*content
= xmlNodeGetContent(node
);
1531 ret
= -LTTNG_ERR_NOMEM
;
1535 ret
= parse_bool(content
, &event
.enabled
);
1538 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1541 } else if (!strcmp((const char *) node
->name
,
1542 config_element_type
)) {
1543 xmlChar
*content
= xmlNodeGetContent(node
);
1547 ret
= -LTTNG_ERR_NOMEM
;
1551 ret
= get_event_type(content
);
1554 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1559 } else if (!strcmp((const char *) node
->name
,
1560 config_element_loglevel_type
)) {
1561 xmlChar
*content
= xmlNodeGetContent(node
);
1565 ret
= -LTTNG_ERR_NOMEM
;
1569 ret
= get_loglevel_type(content
);
1572 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1576 event
.loglevel_type
= ret
;
1577 } else if (!strcmp((const char *) node
->name
,
1578 config_element_loglevel
)) {
1580 int64_t loglevel
= 0;
1583 content
= xmlNodeGetContent(node
);
1585 ret
= -LTTNG_ERR_NOMEM
;
1589 ret
= parse_int(content
, &loglevel
);
1592 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1596 if (loglevel
> INT_MAX
|| loglevel
< INT_MIN
) {
1597 WARN("loglevel out of range.");
1598 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1602 event
.loglevel
= loglevel
;
1603 } else if (!strcmp((const char *) node
->name
,
1604 config_element_filter
)) {
1606 xmlNodeGetContent(node
);
1610 ret
= -LTTNG_ERR_NOMEM
;
1614 free(filter_expression
);
1615 filter_expression
= strdup((char *) content
);
1617 if (!filter_expression
) {
1618 ret
= -LTTNG_ERR_NOMEM
;
1621 } else if (!strcmp((const char *) node
->name
,
1622 config_element_exclusions
)) {
1623 xmlNodePtr exclusion_node
;
1624 int exclusion_index
= 0;
1629 * Exclusions has already been initialized,
1632 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1636 exclusion_count
= xmlChildElementCount(node
);
1637 if (!exclusion_count
) {
1641 exclusions
= zmalloc(exclusion_count
* sizeof(char *));
1643 exclusion_count
= 0;
1644 ret
= -LTTNG_ERR_NOMEM
;
1648 for (exclusion_node
= xmlFirstElementChild(node
); exclusion_node
;
1649 exclusion_node
= xmlNextElementSibling(exclusion_node
)) {
1651 xmlNodeGetContent(exclusion_node
);
1654 ret
= -LTTNG_ERR_NOMEM
;
1658 exclusions
[exclusion_index
] = strdup((const char *) content
);
1660 if (!exclusions
[exclusion_index
]) {
1661 ret
= -LTTNG_ERR_NOMEM
;
1667 event
.exclusion
= 1;
1668 } else if (!strcmp((const char *) node
->name
,
1669 config_element_attributes
)) {
1670 xmlNodePtr attribute_node
= xmlFirstElementChild(node
);
1673 if (!attribute_node
) {
1674 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1678 if (!strcmp((const char *) node
->name
,
1679 config_element_probe_attributes
)) {
1680 xmlNodePtr probe_attribute_node
;
1682 /* probe_attributes */
1683 for (probe_attribute_node
=
1684 xmlFirstElementChild(attribute_node
); probe_attribute_node
;
1685 probe_attribute_node
= xmlNextElementSibling(
1686 probe_attribute_node
)) {
1688 ret
= process_probe_attribute_node(probe_attribute_node
,
1697 xmlNodePtr symbol_node
= xmlFirstElementChild(attribute_node
);
1699 /* function_attributes */
1700 content
= xmlNodeGetContent(symbol_node
);
1702 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1706 sym_len
= strlen((char *) content
);
1707 if (sym_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1708 WARN("Function name too long.");
1709 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1714 strncpy(event
.attr
.ftrace
.symbol_name
, (char *) content
,
1721 if ((event
.enabled
&& phase
== ENABLE
) || phase
== CREATION
) {
1722 ret
= lttng_enable_event_with_exclusions(handle
, &event
, channel_name
,
1723 filter_expression
, exclusion_count
, exclusions
);
1725 WARN("Enabling event (name:%s) on load failed.", event
.name
);
1726 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1731 for (i
= 0; i
< exclusion_count
; i
++) {
1732 free(exclusions
[i
]);
1736 free(filter_expression
);
1741 int process_events_node(xmlNodePtr events_node
, struct lttng_handle
*handle
,
1742 const char *channel_name
)
1745 struct lttng_event event
;
1748 assert(events_node
);
1750 assert(channel_name
);
1752 for (node
= xmlFirstElementChild(events_node
); node
;
1753 node
= xmlNextElementSibling(node
)) {
1754 ret
= process_event_node(node
, handle
, channel_name
, CREATION
);
1761 * Disable all events to enable only the necessary events.
1762 * Limitations regarding lttng_disable_events and tuple descriptor
1763 * force this approach.
1765 memset(&event
, 0, sizeof(event
));
1766 event
.loglevel
= -1;
1767 event
.type
= LTTNG_EVENT_ALL
;
1768 ret
= lttng_disable_event_ext(handle
, &event
, channel_name
, NULL
);
1773 for (node
= xmlFirstElementChild(events_node
); node
;
1774 node
= xmlNextElementSibling(node
)) {
1775 ret
= process_event_node(node
, handle
, channel_name
, ENABLE
);
1786 int process_channel_attr_node(xmlNodePtr attr_node
,
1787 struct lttng_channel
*channel
, xmlNodePtr
*contexts_node
,
1788 xmlNodePtr
*events_node
)
1794 assert(contexts_node
);
1795 assert(events_node
);
1797 if (!strcmp((const char *) attr_node
->name
, config_element_name
)) {
1802 content
= xmlNodeGetContent(attr_node
);
1804 ret
= -LTTNG_ERR_NOMEM
;
1808 name_len
= strlen((char *) content
);
1809 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1810 WARN("Channel name too long.");
1811 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1816 strncpy(channel
->name
, (const char *) content
, name_len
);
1818 } else if (!strcmp((const char *) attr_node
->name
,
1819 config_element_enabled
)) {
1824 content
= xmlNodeGetContent(attr_node
);
1826 ret
= -LTTNG_ERR_NOMEM
;
1830 ret
= parse_bool(content
, &enabled
);
1833 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1837 channel
->enabled
= enabled
;
1838 } else if (!strcmp((const char *) attr_node
->name
,
1839 config_element_overwrite_mode
)) {
1842 /* overwrite_mode */
1843 content
= xmlNodeGetContent(attr_node
);
1845 ret
= -LTTNG_ERR_NOMEM
;
1849 ret
= get_overwrite_mode(content
);
1852 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1856 channel
->attr
.overwrite
= ret
;
1857 } else if (!strcmp((const char *) attr_node
->name
,
1858 config_element_subbuf_size
)) {
1861 /* subbuffer_size */
1862 content
= xmlNodeGetContent(attr_node
);
1864 ret
= -LTTNG_ERR_NOMEM
;
1868 ret
= parse_uint(content
, &channel
->attr
.subbuf_size
);
1871 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1874 } else if (!strcmp((const char *) attr_node
->name
,
1875 config_element_num_subbuf
)) {
1878 /* subbuffer_count */
1879 content
= xmlNodeGetContent(attr_node
);
1881 ret
= -LTTNG_ERR_NOMEM
;
1885 ret
= parse_uint(content
, &channel
->attr
.num_subbuf
);
1888 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1891 } else if (!strcmp((const char *) attr_node
->name
,
1892 config_element_switch_timer_interval
)) {
1894 uint64_t switch_timer_interval
= 0;
1896 /* switch_timer_interval */
1897 content
= xmlNodeGetContent(attr_node
);
1899 ret
= -LTTNG_ERR_NOMEM
;
1903 ret
= parse_uint(content
, &switch_timer_interval
);
1906 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1910 if (switch_timer_interval
> UINT_MAX
) {
1911 WARN("switch_timer_interval out of range.");
1912 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1916 channel
->attr
.switch_timer_interval
=
1917 switch_timer_interval
;
1918 } else if (!strcmp((const char *) attr_node
->name
,
1919 config_element_read_timer_interval
)) {
1921 uint64_t read_timer_interval
= 0;
1923 /* read_timer_interval */
1924 content
= xmlNodeGetContent(attr_node
);
1926 ret
= -LTTNG_ERR_NOMEM
;
1930 ret
= parse_uint(content
, &read_timer_interval
);
1933 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1937 if (read_timer_interval
> UINT_MAX
) {
1938 WARN("read_timer_interval out of range.");
1939 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1943 channel
->attr
.read_timer_interval
=
1944 read_timer_interval
;
1945 } else if (!strcmp((const char *) attr_node
->name
,
1946 config_element_output_type
)) {
1950 content
= xmlNodeGetContent(attr_node
);
1952 ret
= -LTTNG_ERR_NOMEM
;
1956 ret
= get_output_type(content
);
1959 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1963 channel
->attr
.output
= ret
;
1964 } else if (!strcmp((const char *) attr_node
->name
,
1965 config_element_tracefile_size
)) {
1968 /* tracefile_size */
1969 content
= xmlNodeGetContent(attr_node
);
1971 ret
= -LTTNG_ERR_NOMEM
;
1975 ret
= parse_uint(content
, &channel
->attr
.tracefile_size
);
1978 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1981 } else if (!strcmp((const char *) attr_node
->name
,
1982 config_element_tracefile_count
)) {
1985 /* tracefile_count */
1986 content
= xmlNodeGetContent(attr_node
);
1988 ret
= -LTTNG_ERR_NOMEM
;
1992 ret
= parse_uint(content
, &channel
->attr
.tracefile_count
);
1995 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1998 } else if (!strcmp((const char *) attr_node
->name
,
1999 config_element_live_timer_interval
)) {
2001 uint64_t live_timer_interval
= 0;
2003 /* live_timer_interval */
2004 content
= xmlNodeGetContent(attr_node
);
2006 ret
= -LTTNG_ERR_NOMEM
;
2010 ret
= parse_uint(content
, &live_timer_interval
);
2013 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2017 if (live_timer_interval
> UINT_MAX
) {
2018 WARN("live_timer_interval out of range.");
2019 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2023 channel
->attr
.live_timer_interval
=
2024 live_timer_interval
;
2025 } else if (!strcmp((const char *) attr_node
->name
,
2026 config_element_events
)) {
2028 *events_node
= attr_node
;
2031 *contexts_node
= attr_node
;
2039 int process_context_node(xmlNodePtr context_node
,
2040 struct lttng_handle
*handle
, const char *channel_name
)
2043 struct lttng_event_context context
;
2044 xmlNodePtr context_child_node
= xmlFirstElementChild(context_node
);
2047 assert(channel_name
);
2049 if (!context_child_node
) {
2050 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2054 memset(&context
, 0, sizeof(context
));
2056 if (!strcmp((const char *) context_child_node
->name
,
2057 config_element_type
)) {
2059 xmlChar
*content
= xmlNodeGetContent(context_child_node
);
2062 ret
= -LTTNG_ERR_NOMEM
;
2066 ret
= get_context_type(content
);
2069 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2074 } else if (!strcmp((const char *) context_child_node
->name
,
2075 config_element_context_perf
)) {
2077 xmlNodePtr perf_attr_node
;
2079 context
.ctx
= handle
->domain
.type
== LTTNG_DOMAIN_KERNEL
?
2080 LTTNG_EVENT_CONTEXT_PERF_CPU_COUNTER
:
2081 LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER
;
2082 for (perf_attr_node
= xmlFirstElementChild(context_child_node
);
2083 perf_attr_node
; perf_attr_node
=
2084 xmlNextElementSibling(perf_attr_node
)) {
2085 if (!strcmp((const char *) perf_attr_node
->name
,
2086 config_element_type
)) {
2091 content
= xmlNodeGetContent(perf_attr_node
);
2093 ret
= -LTTNG_ERR_NOMEM
;
2097 ret
= parse_uint(content
, &type
);
2100 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2104 if (type
> UINT32_MAX
) {
2105 WARN("perf context type out of range.");
2106 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2110 context
.u
.perf_counter
.type
= type
;
2111 } else if (!strcmp((const char *) perf_attr_node
->name
,
2112 config_element_config
)) {
2114 uint64_t config
= 0;
2117 content
= xmlNodeGetContent(perf_attr_node
);
2119 ret
= -LTTNG_ERR_NOMEM
;
2123 ret
= parse_uint(content
, &config
);
2126 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2130 context
.u
.perf_counter
.config
= config
;
2131 } else if (!strcmp((const char *) perf_attr_node
->name
,
2132 config_element_name
)) {
2137 content
= xmlNodeGetContent(perf_attr_node
);
2139 ret
= -LTTNG_ERR_NOMEM
;
2143 name_len
= strlen((char *) content
);
2144 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
2145 WARN("perf context name too long.");
2146 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2151 strncpy(context
.u
.perf_counter
.name
, (const char *) content
,
2156 } else if (!strcmp((const char *) context_child_node
->name
,
2157 config_element_context_app
)) {
2158 /* application context */
2159 xmlNodePtr app_ctx_node
;
2161 context
.ctx
= LTTNG_EVENT_CONTEXT_APP_CONTEXT
;
2162 for (app_ctx_node
= xmlFirstElementChild(context_child_node
);
2163 app_ctx_node
; app_ctx_node
=
2164 xmlNextElementSibling(app_ctx_node
)) {
2166 char **target
= strcmp(
2167 (const char *) app_ctx_node
->name
,
2168 config_element_context_app_provider_name
) == 0 ?
2169 &context
.u
.app_ctx
.provider_name
:
2170 &context
.u
.app_ctx
.ctx_name
;
2172 content
= xmlNodeGetContent(app_ctx_node
);
2174 ret
= -LTTNG_ERR_NOMEM
;
2178 *target
= (char *) content
;
2181 /* Unrecognized context type */
2182 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2186 ret
= lttng_add_context(handle
, &context
, NULL
, channel_name
);
2187 if (context
.ctx
== LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
2188 free(context
.u
.app_ctx
.provider_name
);
2189 free(context
.u
.app_ctx
.ctx_name
);
2196 int process_contexts_node(xmlNodePtr contexts_node
,
2197 struct lttng_handle
*handle
, const char *channel_name
)
2200 xmlNodePtr context_node
;
2202 for (context_node
= xmlFirstElementChild(contexts_node
); context_node
;
2203 context_node
= xmlNextElementSibling(context_node
)) {
2204 ret
= process_context_node(context_node
, handle
, channel_name
);
2214 int process_pid_tracker_node(xmlNodePtr pid_tracker_node
,
2215 struct lttng_handle
*handle
)
2218 xmlNodePtr targets_node
= NULL
;
2222 assert(pid_tracker_node
);
2223 /* get the targets node */
2224 for (node
= xmlFirstElementChild(pid_tracker_node
); node
;
2225 node
= xmlNextElementSibling(node
)) {
2226 if (!strcmp((const char *) node
->name
,
2227 config_element_targets
)) {
2228 targets_node
= node
;
2233 if (!targets_node
) {
2234 ret
= LTTNG_ERR_INVALID
;
2238 /* Go through all pid_target node */
2239 child
= xmlChildElementCount(targets_node
);
2241 /* The session is explicitly set to target nothing. */
2242 ret
= lttng_untrack_pid(handle
, -1);
2247 for (node
= xmlFirstElementChild(targets_node
); node
;
2248 node
= xmlNextElementSibling(node
)) {
2249 xmlNodePtr pid_target_node
= node
;
2251 /* get pid node and track it */
2252 for (node
= xmlFirstElementChild(pid_target_node
); node
;
2253 node
= xmlNextElementSibling(node
)) {
2254 if (!strcmp((const char *) node
->name
,
2255 config_element_pid
)) {
2257 xmlChar
*content
= NULL
;
2259 content
= xmlNodeGetContent(node
);
2261 ret
= LTTNG_ERR_LOAD_INVALID_CONFIG
;
2265 ret
= parse_int(content
, &pid
);
2268 ret
= LTTNG_ERR_LOAD_INVALID_CONFIG
;
2272 ret
= lttng_track_pid(handle
, (int) pid
);
2278 node
= pid_target_node
;
2287 int process_domain_node(xmlNodePtr domain_node
, const char *session_name
)
2290 struct lttng_domain domain
= { 0 };
2291 struct lttng_handle
*handle
= NULL
;
2292 xmlNodePtr channels_node
= NULL
;
2293 xmlNodePtr trackers_node
= NULL
;
2294 xmlNodePtr pid_tracker_node
= NULL
;
2297 assert(session_name
);
2299 ret
= init_domain(domain_node
, &domain
);
2304 handle
= lttng_create_handle(session_name
, &domain
);
2306 ret
= -LTTNG_ERR_NOMEM
;
2310 /* get the channels node */
2311 for (node
= xmlFirstElementChild(domain_node
); node
;
2312 node
= xmlNextElementSibling(node
)) {
2313 if (!strcmp((const char *) node
->name
,
2314 config_element_channels
)) {
2315 channels_node
= node
;
2320 if (!channels_node
) {
2324 /* create all channels */
2325 for (node
= xmlFirstElementChild(channels_node
); node
;
2326 node
= xmlNextElementSibling(node
)) {
2327 struct lttng_channel channel
;
2328 xmlNodePtr contexts_node
= NULL
;
2329 xmlNodePtr events_node
= NULL
;
2330 xmlNodePtr channel_attr_node
;
2332 memset(&channel
, 0, sizeof(channel
));
2333 lttng_channel_set_default_attr(&domain
, &channel
.attr
);
2335 for (channel_attr_node
= xmlFirstElementChild(node
);
2336 channel_attr_node
; channel_attr_node
=
2337 xmlNextElementSibling(channel_attr_node
)) {
2338 ret
= process_channel_attr_node(channel_attr_node
,
2339 &channel
, &contexts_node
, &events_node
);
2345 ret
= lttng_enable_channel(handle
, &channel
);
2350 ret
= process_events_node(events_node
, handle
, channel
.name
);
2355 ret
= process_contexts_node(contexts_node
, handle
,
2362 /* get the trackers node */
2363 for (node
= xmlFirstElementChild(domain_node
); node
;
2364 node
= xmlNextElementSibling(node
)) {
2365 if (!strcmp((const char *) node
->name
,
2366 config_element_trackers
)) {
2367 trackers_node
= node
;
2372 if (!trackers_node
) {
2376 for (node
= xmlFirstElementChild(trackers_node
); node
;
2377 node
= xmlNextElementSibling(node
)) {
2378 if (!strcmp((const char *)node
->name
,config_element_pid_tracker
)) {
2379 pid_tracker_node
= node
;
2380 ret
= process_pid_tracker_node(pid_tracker_node
, handle
);
2387 if (!pid_tracker_node
) {
2388 lttng_track_pid(handle
, -1);
2392 lttng_destroy_handle(handle
);
2397 int process_session_node(xmlNodePtr session_node
, const char *session_name
,
2400 int ret
, started
= -1, snapshot_mode
= -1;
2401 uint64_t live_timer_interval
= UINT64_MAX
;
2402 xmlChar
*name
= NULL
;
2403 xmlChar
*shm_path
= NULL
;
2404 xmlNodePtr domains_node
= NULL
;
2405 xmlNodePtr output_node
= NULL
;
2407 struct lttng_domain
*kernel_domain
= NULL
;
2408 struct lttng_domain
*ust_domain
= NULL
;
2409 struct lttng_domain
*jul_domain
= NULL
;
2410 struct lttng_domain
*log4j_domain
= NULL
;
2411 struct lttng_domain
*python_domain
= NULL
;
2413 for (node
= xmlFirstElementChild(session_node
); node
;
2414 node
= xmlNextElementSibling(node
)) {
2415 if (!name
&& !strcmp((const char *) node
->name
,
2416 config_element_name
)) {
2418 xmlChar
*node_content
= xmlNodeGetContent(node
);
2419 if (!node_content
) {
2420 ret
= -LTTNG_ERR_NOMEM
;
2424 name
= node_content
;
2425 } else if (!domains_node
&& !strcmp((const char *) node
->name
,
2426 config_element_domains
)) {
2428 domains_node
= node
;
2429 } else if (started
== -1 && !strcmp((const char *) node
->name
,
2430 config_element_started
)) {
2432 xmlChar
*node_content
= xmlNodeGetContent(node
);
2433 if (!node_content
) {
2434 ret
= -LTTNG_ERR_NOMEM
;
2438 ret
= parse_bool(node_content
, &started
);
2441 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2444 } else if (!output_node
&& !strcmp((const char *) node
->name
,
2445 config_element_output
)) {
2448 } else if (!shm_path
&& !strcmp((const char *) node
->name
,
2449 config_element_shared_memory_path
)) {
2450 /* shared memory path */
2451 xmlChar
*node_content
= xmlNodeGetContent(node
);
2452 if (!node_content
) {
2453 ret
= -LTTNG_ERR_NOMEM
;
2457 shm_path
= node_content
;
2459 /* attributes, snapshot_mode or live_timer_interval */
2460 xmlNodePtr attributes_child
=
2461 xmlFirstElementChild(node
);
2463 if (!strcmp((const char *) attributes_child
->name
,
2464 config_element_snapshot_mode
)) {
2466 xmlChar
*snapshot_mode_content
=
2467 xmlNodeGetContent(attributes_child
);
2468 if (!snapshot_mode_content
) {
2469 ret
= -LTTNG_ERR_NOMEM
;
2473 ret
= parse_bool(snapshot_mode_content
, &snapshot_mode
);
2474 free(snapshot_mode_content
);
2476 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2480 /* live_timer_interval */
2481 xmlChar
*timer_interval_content
=
2482 xmlNodeGetContent(attributes_child
);
2483 if (!timer_interval_content
) {
2484 ret
= -LTTNG_ERR_NOMEM
;
2488 ret
= parse_uint(timer_interval_content
, &live_timer_interval
);
2489 free(timer_interval_content
);
2491 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2499 /* Mandatory attribute, as defined in the session XSD */
2500 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2504 if (session_name
&& strcmp((char *) name
, session_name
)) {
2505 /* This is not the session we are looking for */
2506 ret
= -LTTNG_ERR_NO_SESSION
;
2510 /* Init domains to create the session handles */
2511 for (node
= xmlFirstElementChild(domains_node
); node
;
2512 node
= xmlNextElementSibling(node
)) {
2513 struct lttng_domain
*domain
;
2515 domain
= zmalloc(sizeof(*domain
));
2517 ret
= -LTTNG_ERR_NOMEM
;
2521 ret
= init_domain(node
, domain
);
2523 goto domain_init_error
;
2526 switch (domain
->type
) {
2527 case LTTNG_DOMAIN_KERNEL
:
2528 if (kernel_domain
) {
2529 /* Same domain seen twice, invalid! */
2530 goto domain_init_error
;
2532 kernel_domain
= domain
;
2534 case LTTNG_DOMAIN_UST
:
2536 /* Same domain seen twice, invalid! */
2537 goto domain_init_error
;
2539 ust_domain
= domain
;
2541 case LTTNG_DOMAIN_JUL
:
2543 /* Same domain seen twice, invalid! */
2544 goto domain_init_error
;
2546 jul_domain
= domain
;
2548 case LTTNG_DOMAIN_LOG4J
:
2550 /* Same domain seen twice, invalid! */
2551 goto domain_init_error
;
2553 log4j_domain
= domain
;
2555 case LTTNG_DOMAIN_PYTHON
:
2556 if (python_domain
) {
2557 /* Same domain seen twice, invalid! */
2558 goto domain_init_error
;
2560 python_domain
= domain
;
2563 WARN("Invalid domain type");
2564 goto domain_init_error
;
2569 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2574 /* Destroy session if it exists */
2575 ret
= lttng_destroy_session((const char *) name
);
2576 if (ret
&& ret
!= -LTTNG_ERR_SESS_NOT_FOUND
) {
2577 ERR("Failed to destroy existing session.");
2582 /* Create session type depending on output type */
2583 if (snapshot_mode
&& snapshot_mode
!= -1) {
2584 ret
= create_snapshot_session((const char *) name
, output_node
);
2585 } else if (live_timer_interval
&&
2586 live_timer_interval
!= UINT64_MAX
) {
2587 ret
= create_session((const char *) name
, kernel_domain
,
2588 ust_domain
, jul_domain
, log4j_domain
,
2589 output_node
, live_timer_interval
);
2591 /* regular session */
2592 ret
= create_session((const char *) name
, kernel_domain
,
2593 ust_domain
, jul_domain
, log4j_domain
,
2594 output_node
, UINT64_MAX
);
2601 ret
= lttng_set_session_shm_path((const char *) name
,
2602 (const char *) shm_path
);
2608 for (node
= xmlFirstElementChild(domains_node
); node
;
2609 node
= xmlNextElementSibling(node
)) {
2610 ret
= process_domain_node(node
, (const char *) name
);
2617 ret
= lttng_start_tracing((const char *) name
);
2625 ERR("Failed to load session %s: %s", (const char *) name
,
2626 lttng_strerror(ret
));
2627 lttng_destroy_session((const char *) name
);
2631 free(kernel_domain
);
2635 free(python_domain
);
2642 * Return 1 if the given path is readable by the current UID or 0 if not.
2643 * Return -1 if the path is EPERM.
2645 static int validate_file_read_creds(const char *path
)
2651 /* Can we read the file. */
2652 ret
= access(path
, R_OK
);
2656 if (errno
== EACCES
) {
2667 int load_session_from_file(const char *path
, const char *session_name
,
2668 struct session_config_validation_ctx
*validation_ctx
, int override
)
2670 int ret
, session_found
= !session_name
;
2671 xmlDocPtr doc
= NULL
;
2672 xmlNodePtr sessions_node
;
2673 xmlNodePtr session_node
;
2676 assert(validation_ctx
);
2678 ret
= validate_file_read_creds(path
);
2681 ret
= -LTTNG_ERR_EPERM
;
2683 ret
= -LTTNG_ERR_LOAD_SESSION_NOENT
;
2688 doc
= xmlParseFile(path
);
2690 ret
= -LTTNG_ERR_LOAD_IO_FAIL
;
2694 ret
= xmlSchemaValidateDoc(validation_ctx
->schema_validation_ctx
, doc
);
2696 ERR("Session configuration file validation failed");
2697 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2701 sessions_node
= xmlDocGetRootElement(doc
);
2702 if (!sessions_node
) {
2706 for (session_node
= xmlFirstElementChild(sessions_node
);
2707 session_node
; session_node
=
2708 xmlNextElementSibling(session_node
)) {
2709 ret
= process_session_node(session_node
,
2710 session_name
, override
);
2711 if (session_name
&& ret
== 0) {
2712 /* Target session found and loaded */
2720 ret
= session_found
? 0 : -LTTNG_ERR_LOAD_SESSION_NOENT
;
2725 /* Allocate dirent as recommended by READDIR(3), NOTES on readdir_r */
2727 struct dirent
*alloc_dirent(const char *path
)
2731 struct dirent
*entry
;
2733 name_max
= pathconf(path
, _PC_NAME_MAX
);
2734 if (name_max
== -1) {
2735 name_max
= PATH_MAX
;
2737 len
= offsetof(struct dirent
, d_name
) + name_max
+ 1;
2738 entry
= zmalloc(len
);
2743 int load_session_from_path(const char *path
, const char *session_name
,
2744 struct session_config_validation_ctx
*validation_ctx
, int override
)
2746 int ret
, session_found
= !session_name
;
2747 DIR *directory
= NULL
;
2750 assert(validation_ctx
);
2752 directory
= opendir(path
);
2756 /* Try the file loading. */
2759 ret
= -LTTNG_ERR_LOAD_SESSION_NOENT
;
2762 ret
= -LTTNG_ERR_LOAD_IO_FAIL
;
2767 struct dirent
*entry
;
2768 struct dirent
*result
;
2769 char *file_path
= NULL
;
2770 size_t path_len
= strlen(path
);
2772 if (path_len
>= PATH_MAX
) {
2773 ret
= -LTTNG_ERR_INVALID
;
2777 entry
= alloc_dirent(path
);
2779 ret
= -LTTNG_ERR_NOMEM
;
2783 file_path
= zmalloc(PATH_MAX
);
2785 ret
= -LTTNG_ERR_NOMEM
;
2790 strncpy(file_path
, path
, path_len
);
2791 if (file_path
[path_len
- 1] != '/') {
2792 file_path
[path_len
++] = '/';
2796 /* Search for *.lttng files */
2797 while (!readdir_r(directory
, entry
, &result
) && result
) {
2798 size_t file_name_len
= strlen(result
->d_name
);
2800 if (file_name_len
<=
2801 sizeof(DEFAULT_SESSION_CONFIG_FILE_EXTENSION
)) {
2805 if (path_len
+ file_name_len
>= PATH_MAX
) {
2809 if (strcmp(DEFAULT_SESSION_CONFIG_FILE_EXTENSION
,
2810 result
->d_name
+ file_name_len
- sizeof(
2811 DEFAULT_SESSION_CONFIG_FILE_EXTENSION
) + 1)) {
2815 strncpy(file_path
+ path_len
, result
->d_name
, file_name_len
);
2816 file_path
[path_len
+ file_name_len
] = '\0';
2818 ret
= load_session_from_file(file_path
, session_name
,
2819 validation_ctx
, override
);
2820 if (session_name
&& !ret
) {
2829 ret
= load_session_from_file(path
, session_name
,
2830 validation_ctx
, override
);
2840 if (closedir(directory
)) {
2845 if (session_found
) {
2853 * Validate that the given path's credentials and the current process have the
2854 * same UID. If so, return 1 else return 0 if it does NOT match.
2856 static int validate_path_creds(const char *path
)
2858 int ret
, uid
= getuid();
2867 ret
= stat(path
, &buf
);
2869 if (errno
!= ENOENT
) {
2872 ret
= -LTTNG_ERR_INVALID
;
2876 if (buf
.st_uid
!= uid
) {
2887 int config_load_session(const char *path
, const char *session_name
,
2888 int override
, unsigned int autoload
)
2891 bool session_loaded
= false;
2892 const char *path_ptr
= NULL
;
2893 struct session_config_validation_ctx validation_ctx
= { 0 };
2895 ret
= init_session_config_validation_ctx(&validation_ctx
);
2902 const char *sys_path
;
2905 home_path
= utils_get_home_dir();
2907 char path
[PATH_MAX
];
2910 * Try user session configuration path. Ignore error here so we can
2911 * continue loading the system wide sessions.
2914 ret
= snprintf(path
, sizeof(path
),
2915 DEFAULT_SESSION_HOME_CONFIGPATH
"/"
2916 DEFAULT_SESSION_CONFIG_AUTOLOAD
, home_path
);
2918 PERROR("snprintf session autoload home config path");
2923 * Credentials are only validated for the autoload in order to
2924 * avoid any user session daemon to try to load kernel sessions
2925 * automatically and failing all the times.
2927 ret
= validate_path_creds(path
);
2932 ret
= snprintf(path
, sizeof(path
),
2933 DEFAULT_SESSION_HOME_CONFIGPATH
, home_path
);
2935 PERROR("snprintf session home config path");
2941 ret
= load_session_from_path(path_ptr
, session_name
,
2942 &validation_ctx
, override
);
2943 if (ret
&& ret
!= -LTTNG_ERR_LOAD_SESSION_NOENT
) {
2947 * Continue even if the session was found since we have to try
2948 * the system wide sessions.
2950 session_loaded
= true;
2954 /* Reset path pointer for the system wide dir. */
2957 /* Try system wide configuration directory. */
2959 sys_path
= DEFAULT_SESSION_SYSTEM_CONFIGPATH
"/"
2960 DEFAULT_SESSION_CONFIG_AUTOLOAD
;
2961 ret
= validate_path_creds(sys_path
);
2963 path_ptr
= sys_path
;
2966 sys_path
= DEFAULT_SESSION_SYSTEM_CONFIGPATH
;
2967 path_ptr
= sys_path
;
2971 ret
= load_session_from_path(path_ptr
, session_name
,
2972 &validation_ctx
, override
);
2974 session_loaded
= true;
2978 ret
= access(path
, F_OK
);
2983 ret
= -LTTNG_ERR_INVALID
;
2984 WARN("Session configuration path does not exist.");
2987 ret
= -LTTNG_ERR_EPERM
;
2990 ret
= -LTTNG_ERR_UNK
;
2996 ret
= load_session_from_path(path
, session_name
,
2997 &validation_ctx
, override
);
3000 fini_session_config_validation_ctx(&validation_ctx
);
3001 if (ret
== -LTTNG_ERR_LOAD_SESSION_NOENT
&& !session_name
&& !path
) {
3003 * Don't report an error if no sessions are found when called
3004 * without a session_name or a search path.
3009 if (session_loaded
&& ret
== -LTTNG_ERR_LOAD_SESSION_NOENT
) {
3010 /* A matching session was found in one of the search paths. */
3017 void __attribute__((destructor
)) session_config_exit(void)