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>
30 #include <common/defaults.h>
31 #include <common/error.h>
32 #include <common/macros.h>
33 #include <common/utils.h>
34 #include <lttng/lttng-error.h>
35 #include <libxml/parser.h>
36 #include <libxml/valid.h>
37 #include <libxml/xmlschemas.h>
38 #include <libxml/tree.h>
39 #include <lttng/lttng.h>
40 #include <lttng/snapshot.h>
43 #include "config-internal.h"
45 struct handler_filter_args
{
47 config_entry_handler_cb handler
;
51 struct session_config_validation_ctx
{
52 xmlSchemaParserCtxtPtr parser_ctx
;
54 xmlSchemaValidCtxtPtr schema_validation_ctx
;
57 const char * const config_str_yes
= "yes";
58 const char * const config_str_true
= "true";
59 const char * const config_str_on
= "on";
60 const char * const config_str_no
= "no";
61 const char * const config_str_false
= "false";
62 const char * const config_str_off
= "off";
63 const char * const config_xml_encoding
= "UTF-8";
64 const size_t config_xml_encoding_bytes_per_char
= 2; /* Size of the encoding's largest character */
65 const char * const config_xml_indent_string
= "\t";
66 const char * const config_xml_true
= "true";
67 const char * const config_xml_false
= "false";
69 const char * const config_element_channel
= "channel";
70 const char * const config_element_channels
= "channels";
71 const char * const config_element_domain
= "domain";
72 const char * const config_element_domains
= "domains";
73 const char * const config_element_event
= "event";
74 const char * const config_element_events
= "events";
75 const char * const config_element_context
= "context";
76 const char * const config_element_contexts
= "contexts";
77 const char * const config_element_attributes
= "attributes";
78 const char * const config_element_exclusion
= "exclusion";
79 const char * const config_element_exclusions
= "exclusions";
80 const char * const config_element_function_attributes
= "function_attributes";
81 const char * const config_element_probe_attributes
= "probe_attributes";
82 const char * const config_element_symbol_name
= "symbol_name";
83 const char * const config_element_address
= "address";
84 const char * const config_element_offset
= "offset";
85 const char * const config_element_name
= "name";
86 const char * const config_element_enabled
= "enabled";
87 const char * const config_element_overwrite_mode
= "overwrite_mode";
88 const char * const config_element_subbuf_size
= "subbuffer_size";
89 const char * const config_element_num_subbuf
= "subbuffer_count";
90 const char * const config_element_switch_timer_interval
= "switch_timer_interval";
91 const char * const config_element_read_timer_interval
= "read_timer_interval";
92 const char * const config_element_output
= "output";
93 const char * const config_element_output_type
= "output_type";
94 const char * const config_element_tracefile_size
= "tracefile_size";
95 const char * const config_element_tracefile_count
= "tracefile_count";
96 const char * const config_element_live_timer_interval
= "live_timer_interval";
97 const char * const config_element_type
= "type";
98 const char * const config_element_buffer_type
= "buffer_type";
99 const char * const config_element_session
= "session";
100 const char * const config_element_sessions
= "sessions";
101 const char * const config_element_perf
= "perf";
102 const char * const config_element_config
= "config";
103 const char * const config_element_started
= "started";
104 const char * const config_element_snapshot_mode
= "snapshot_mode";
105 const char * const config_element_loglevel
= "loglevel";
106 const char * const config_element_loglevel_type
= "loglevel_type";
107 const char * const config_element_filter
= "filter";
108 const char * const config_element_snapshot_outputs
= "snapshot_outputs";
109 const char * const config_element_consumer_output
= "consumer_output";
110 const char * const config_element_destination
= "destination";
111 const char * const config_element_path
= "path";
112 const char * const config_element_net_output
= "net_output";
113 const char * const config_element_control_uri
= "control_uri";
114 const char * const config_element_data_uri
= "data_uri";
115 const char * const config_element_max_size
= "max_size";
117 const char * const config_domain_type_kernel
= "KERNEL";
118 const char * const config_domain_type_ust
= "UST";
119 const char * const config_domain_type_jul
= "JUL";
121 const char * const config_buffer_type_per_pid
= "PER_PID";
122 const char * const config_buffer_type_per_uid
= "PER_UID";
123 const char * const config_buffer_type_global
= "GLOBAL";
125 const char * const config_overwrite_mode_discard
= "DISCARD";
126 const char * const config_overwrite_mode_overwrite
= "OVERWRITE";
128 const char * const config_output_type_splice
= "SPLICE";
129 const char * const config_output_type_mmap
= "MMAP";
131 const char * const config_loglevel_type_all
= "ALL";
132 const char * const config_loglevel_type_range
= "RANGE";
133 const char * const config_loglevel_type_single
= "SINGLE";
135 const char * const config_event_type_all
= "ALL";
136 const char * const config_event_type_tracepoint
= "TRACEPOINT";
137 const char * const config_event_type_probe
= "PROBE";
138 const char * const config_event_type_function
= "FUNCTION";
139 const char * const config_event_type_function_entry
= "FUNCTION_ENTRY";
140 const char * const config_event_type_noop
= "NOOP";
141 const char * const config_event_type_syscall
= "SYSCALL";
142 const char * const config_event_type_kprobe
= "KPROBE";
143 const char * const config_event_type_kretprobe
= "KRETPROBE";
145 const char * const config_event_context_pid
= "PID";
146 const char * const config_event_context_procname
= "PROCNAME";
147 const char * const config_event_context_prio
= "PRIO";
148 const char * const config_event_context_nice
= "NICE";
149 const char * const config_event_context_vpid
= "VPID";
150 const char * const config_event_context_tid
= "TID";
151 const char * const config_event_context_vtid
= "VTID";
152 const char * const config_event_context_ppid
= "PPID";
153 const char * const config_event_context_vppid
= "VPPID";
154 const char * const config_event_context_pthread_id
= "PTHREAD_ID";
155 const char * const config_event_context_hostname
= "HOSTNAME";
156 const char * const config_event_context_ip
= "IP";
158 struct consumer_output
{
165 static int config_entry_handler_filter(struct handler_filter_args
*args
,
166 const char *section
, const char *name
, const char *value
)
169 struct config_entry entry
= { section
, name
, value
};
173 if (!section
|| !name
|| !value
) {
179 if (strcmp(args
->section
, section
)) {
184 ret
= args
->handler(&entry
, args
->user_data
);
190 int config_get_section_entries(const char *override_path
, const char *section
,
191 config_entry_handler_cb handler
, void *user_data
)
194 FILE *config_file
= NULL
;
195 struct handler_filter_args filter
= { section
, handler
, user_data
};
198 config_file
= fopen(override_path
, "r");
200 DBG("Loaded daemon configuration file at %s",
203 ERR("Failed to open daemon configuration file at %s",
209 char *path
= utils_get_home_dir();
211 /* Try to open the user's daemon configuration file */
213 ret
= asprintf(&path
, DEFAULT_DAEMON_HOME_CONFIGPATH
, path
);
219 config_file
= fopen(path
, "r");
221 DBG("Loaded daemon configuration file at %s", path
);
227 /* Try to open the system daemon configuration file */
229 config_file
= fopen(DEFAULT_DAEMON_HOME_CONFIGPATH
, "r");
234 DBG("No daemon configuration file found.");
238 ret
= ini_parse_file(config_file
,
239 (ini_entry_handler
) config_entry_handler_filter
, (void *) &filter
);
246 int config_parse_value(const char *value
)
249 char *endptr
, *lower_str
;
259 v
= strtoul(value
, &endptr
, 10);
260 if (endptr
!= value
) {
265 lower_str
= zmalloc(len
+ 1);
272 for (i
= 0; i
< len
; i
++) {
273 lower_str
[i
] = tolower(value
[i
]);
276 if (!strcmp(lower_str
, config_str_yes
) ||
277 !strcmp(lower_str
, config_str_true
) ||
278 !strcmp(lower_str
, config_str_on
)) {
280 } else if (!strcmp(lower_str
, config_str_no
) ||
281 !strcmp(lower_str
, config_str_false
) ||
282 !strcmp(lower_str
, config_str_off
)) {
294 * Returns a xmlChar string which must be released using xmlFree().
296 static xmlChar
*encode_string(const char *in_str
)
298 xmlChar
*out_str
= NULL
;
299 xmlCharEncodingHandlerPtr handler
;
300 int out_len
, ret
, in_len
;
304 handler
= xmlFindCharEncodingHandler(config_xml_encoding
);
306 ERR("xmlFindCharEncodingHandler return NULL!. Configure issue!");
310 in_len
= strlen(in_str
);
312 * Add 1 byte for the NULL terminted character. The factor 2 here is
313 * because UTF-8 can be on two bytes so this fits the worst case for each
316 out_len
= (in_len
* 2) + 1;
317 out_str
= xmlMalloc(out_len
);
322 ret
= handler
->input(out_str
, &out_len
, (const xmlChar
*) in_str
, &in_len
);
329 /* out_len is now the size of out_str */
330 out_str
[out_len
] = '\0';
336 struct config_writer
*config_writer_create(int fd_output
)
339 struct config_writer
*writer
;
340 xmlOutputBufferPtr buffer
;
342 writer
= zmalloc(sizeof(struct config_writer
));
344 PERROR("zmalloc config_writer_create");
348 buffer
= xmlOutputBufferCreateFd(fd_output
, NULL
);
353 writer
->writer
= xmlNewTextWriter(buffer
);
354 ret
= xmlTextWriterStartDocument(writer
->writer
, NULL
,
355 config_xml_encoding
, NULL
);
360 ret
= xmlTextWriterSetIndentString(writer
->writer
,
361 BAD_CAST config_xml_indent_string
);
366 ret
= xmlTextWriterSetIndent(writer
->writer
, 1);
374 config_writer_destroy(writer
);
379 int config_writer_destroy(struct config_writer
*writer
)
388 if (xmlTextWriterEndDocument(writer
->writer
) < 0) {
389 WARN("Could not close XML document");
393 if (writer
->writer
) {
394 xmlFreeTextWriter(writer
->writer
);
403 int config_writer_open_element(struct config_writer
*writer
,
404 const char *element_name
)
407 xmlChar
*encoded_element_name
;
409 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0]) {
414 encoded_element_name
= encode_string(element_name
);
415 if (!encoded_element_name
) {
420 ret
= xmlTextWriterStartElement(writer
->writer
, encoded_element_name
);
421 xmlFree(encoded_element_name
);
423 return ret
> 0 ? 0 : ret
;
427 int config_writer_close_element(struct config_writer
*writer
)
431 if (!writer
|| !writer
->writer
) {
436 ret
= xmlTextWriterEndElement(writer
->writer
);
438 return ret
> 0 ? 0 : ret
;
442 int config_writer_write_element_unsigned_int(struct config_writer
*writer
,
443 const char *element_name
, uint64_t value
)
446 xmlChar
*encoded_element_name
;
448 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0]) {
453 encoded_element_name
= encode_string(element_name
);
454 if (!encoded_element_name
) {
459 ret
= xmlTextWriterWriteFormatElement(writer
->writer
,
460 encoded_element_name
, "%" PRIu64
, value
);
461 xmlFree(encoded_element_name
);
463 return ret
> 0 ? 0 : ret
;
467 int config_writer_write_element_signed_int(struct config_writer
*writer
,
468 const char *element_name
, int64_t value
)
471 xmlChar
*encoded_element_name
;
473 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0]) {
478 encoded_element_name
= encode_string(element_name
);
479 if (!encoded_element_name
) {
484 ret
= xmlTextWriterWriteFormatElement(writer
->writer
,
485 encoded_element_name
, "%" PRIi64
, value
);
486 xmlFree(encoded_element_name
);
488 return ret
> 0 ? 0 : ret
;
492 int config_writer_write_element_bool(struct config_writer
*writer
,
493 const char *element_name
, int value
)
495 return config_writer_write_element_string(writer
, element_name
,
496 value
? config_xml_true
: config_xml_false
);
500 int config_writer_write_element_string(struct config_writer
*writer
,
501 const char *element_name
, const char *value
)
504 xmlChar
*encoded_element_name
= NULL
;
505 xmlChar
*encoded_value
= NULL
;
507 if (!writer
|| !writer
->writer
|| !element_name
|| !element_name
[0] ||
513 encoded_element_name
= encode_string(element_name
);
514 if (!encoded_element_name
) {
519 encoded_value
= encode_string(value
);
520 if (!encoded_value
) {
525 ret
= xmlTextWriterWriteElement(writer
->writer
, encoded_element_name
,
528 xmlFree(encoded_element_name
);
529 xmlFree(encoded_value
);
530 return ret
> 0 ? 0 : ret
;
534 void xml_error_handler(void *ctx
, const char *format
, ...)
540 va_start(args
, format
);
541 ret
= vasprintf(&errMsg
, format
, args
);
544 ERR("String allocation failed in xml error handler");
548 fprintf(stderr
, "XML Error: %s", errMsg
);
553 void fini_session_config_validation_ctx(
554 struct session_config_validation_ctx
*ctx
)
556 if (ctx
->parser_ctx
) {
557 xmlSchemaFreeParserCtxt(ctx
->parser_ctx
);
561 xmlSchemaFree(ctx
->schema
);
564 if (ctx
->schema_validation_ctx
) {
565 xmlSchemaFreeValidCtxt(ctx
->schema_validation_ctx
);
568 memset(ctx
, 0, sizeof(struct session_config_validation_ctx
));
572 int init_session_config_validation_ctx(
573 struct session_config_validation_ctx
*ctx
)
577 ctx
->parser_ctx
= xmlSchemaNewParserCtxt(DEFAULT_SESSION_CONFIG_XSD_PATH
);
578 if (!ctx
->parser_ctx
) {
579 ERR("XSD parser context creation failed");
580 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
583 xmlSchemaSetParserErrors(ctx
->parser_ctx
, xml_error_handler
,
584 xml_error_handler
, NULL
);
586 ctx
->schema
= xmlSchemaParse(ctx
->parser_ctx
);
588 ERR("XSD parsing failed");
589 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
593 ctx
->schema_validation_ctx
= xmlSchemaNewValidCtxt(ctx
->schema
);
594 if (!ctx
->schema_validation_ctx
) {
595 ERR("XSD validation context creation failed");
596 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
600 xmlSchemaSetValidErrors(ctx
->schema_validation_ctx
, xml_error_handler
,
601 xml_error_handler
, NULL
);
606 fini_session_config_validation_ctx(ctx
);
613 int parse_uint(xmlChar
*str
, uint64_t *val
)
623 *val
= strtoull((const char *) str
, &endptr
, 10);
624 if (!endptr
|| *endptr
) {
635 int parse_int(xmlChar
*str
, int64_t *val
)
645 *val
= strtoll((const char *) str
, &endptr
, 10);
646 if (!endptr
|| *endptr
) {
657 int parse_bool(xmlChar
*str
, int *val
)
666 if (!strcmp((const char *) str
, config_xml_true
)) {
668 } else if (!strcmp((const char *) str
, config_xml_false
)) {
671 WARN("Invalid boolean value encoutered (%s).",
680 int get_domain_type(xmlChar
*domain
)
688 if (!strcmp((char *) domain
, config_domain_type_kernel
)) {
689 ret
= LTTNG_DOMAIN_KERNEL
;
690 } else if (!strcmp((char *) domain
, config_domain_type_ust
)) {
691 ret
= LTTNG_DOMAIN_UST
;
692 } else if (!strcmp((char *) domain
, config_domain_type_jul
)) {
693 ret
= LTTNG_DOMAIN_JUL
;
704 int get_buffer_type(xmlChar
*buffer_type
)
712 if (!strcmp((char *) buffer_type
, config_buffer_type_global
)) {
713 ret
= LTTNG_BUFFER_GLOBAL
;
714 } else if (!strcmp((char *) buffer_type
, config_buffer_type_per_uid
)) {
715 ret
= LTTNG_BUFFER_PER_UID
;
716 } else if (!strcmp((char *) buffer_type
, config_buffer_type_per_pid
)) {
717 ret
= LTTNG_BUFFER_PER_PID
;
728 int get_overwrite_mode(xmlChar
*overwrite_mode
)
732 if (!overwrite_mode
) {
736 if (!strcmp((char *) overwrite_mode
, config_overwrite_mode_overwrite
)) {
738 } else if (!strcmp((char *) overwrite_mode
,
739 config_overwrite_mode_discard
)) {
751 int get_output_type(xmlChar
*output_type
)
759 if (!strcmp((char *) output_type
, config_output_type_mmap
)) {
760 ret
= LTTNG_EVENT_MMAP
;
761 } else if (!strcmp((char *) output_type
, config_output_type_splice
)) {
762 ret
= LTTNG_EVENT_SPLICE
;
773 int get_event_type(xmlChar
*event_type
)
781 if (!strcmp((char *) event_type
, config_event_type_all
)) {
782 ret
= LTTNG_EVENT_ALL
;
783 } else if (!strcmp((char *) event_type
, config_event_type_tracepoint
)) {
784 ret
= LTTNG_EVENT_TRACEPOINT
;
785 } else if (!strcmp((char *) event_type
, config_event_type_probe
)) {
786 ret
= LTTNG_EVENT_PROBE
;
787 } else if (!strcmp((char *) event_type
, config_event_type_function
)) {
788 ret
= LTTNG_EVENT_FUNCTION
;
789 } else if (!strcmp((char *) event_type
,
790 config_event_type_function_entry
)) {
791 ret
= LTTNG_EVENT_FUNCTION_ENTRY
;
792 } else if (!strcmp((char *) event_type
, config_event_type_noop
)) {
793 ret
= LTTNG_EVENT_NOOP
;
794 } else if (!strcmp((char *) event_type
, config_event_type_syscall
)) {
795 ret
= LTTNG_EVENT_SYSCALL
;
806 int get_loglevel_type(xmlChar
*loglevel_type
)
810 if (!loglevel_type
) {
814 if (!strcmp((char *) loglevel_type
, config_loglevel_type_all
)) {
815 ret
= LTTNG_EVENT_LOGLEVEL_ALL
;
816 } else if (!strcmp((char *) loglevel_type
,
817 config_loglevel_type_range
)) {
818 ret
= LTTNG_EVENT_LOGLEVEL_RANGE
;
819 } else if (!strcmp((char *) loglevel_type
,
820 config_loglevel_type_single
)) {
821 ret
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
832 * Return the context type or -1 on error.
835 int get_context_type(xmlChar
*context_type
)
843 if (!strcmp((char *) context_type
, config_event_context_pid
)) {
844 ret
= LTTNG_EVENT_CONTEXT_PID
;
845 } else if (!strcmp((char *) context_type
,
846 config_event_context_procname
)) {
847 ret
= LTTNG_EVENT_CONTEXT_PROCNAME
;
848 } else if (!strcmp((char *) context_type
,
849 config_event_context_prio
)) {
850 ret
= LTTNG_EVENT_CONTEXT_PRIO
;
851 } else if (!strcmp((char *) context_type
,
852 config_event_context_nice
)) {
853 ret
= LTTNG_EVENT_CONTEXT_NICE
;
854 } else if (!strcmp((char *) context_type
,
855 config_event_context_vpid
)) {
856 ret
= LTTNG_EVENT_CONTEXT_VPID
;
857 } else if (!strcmp((char *) context_type
,
858 config_event_context_tid
)) {
859 ret
= LTTNG_EVENT_CONTEXT_TID
;
860 } else if (!strcmp((char *) context_type
,
861 config_event_context_vtid
)) {
862 ret
= LTTNG_EVENT_CONTEXT_VTID
;
863 } else if (!strcmp((char *) context_type
,
864 config_event_context_ppid
)) {
865 ret
= LTTNG_EVENT_CONTEXT_PPID
;
866 } else if (!strcmp((char *) context_type
,
867 config_event_context_vppid
)) {
868 ret
= LTTNG_EVENT_CONTEXT_VPPID
;
869 } else if (!strcmp((char *) context_type
,
870 config_event_context_pthread_id
)) {
871 ret
= LTTNG_EVENT_CONTEXT_PTHREAD_ID
;
872 } else if (!strcmp((char *) context_type
,
873 config_event_context_hostname
)) {
874 ret
= LTTNG_EVENT_CONTEXT_HOSTNAME
;
875 } else if (!strcmp((char *) context_type
,
876 config_event_context_ip
)) {
877 ret
= LTTNG_EVENT_CONTEXT_IP
;
888 int init_domain(xmlNodePtr domain_node
, struct lttng_domain
*domain
)
893 for (node
= xmlFirstElementChild(domain_node
); node
;
894 node
= xmlNextElementSibling(node
)) {
895 if (!strcmp((const char *) node
->name
, config_element_type
)) {
897 xmlChar
*node_content
= xmlNodeGetContent(node
);
899 ret
= -LTTNG_ERR_NOMEM
;
903 ret
= get_domain_type(node_content
);
906 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
911 } else if (!strcmp((const char *) node
->name
,
912 config_element_buffer_type
)) {
914 xmlChar
*node_content
= xmlNodeGetContent(node
);
916 ret
= -LTTNG_ERR_NOMEM
;
920 ret
= get_buffer_type(node_content
);
923 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
927 domain
->buf_type
= ret
;
936 int get_net_output_uris(xmlNodePtr net_output_node
, char **control_uri
,
941 for (node
= xmlFirstElementChild(net_output_node
); node
;
942 node
= xmlNextElementSibling(node
)) {
943 if (!strcmp((const char *) node
->name
, config_element_control_uri
)) {
945 *control_uri
= (char *) xmlNodeGetContent(node
);
951 *data_uri
= (char *) xmlNodeGetContent(node
);
958 return *control_uri
|| *data_uri
? 0 : -LTTNG_ERR_LOAD_INVALID_CONFIG
;
962 int process_consumer_output(xmlNodePtr consumer_output_node
,
963 struct consumer_output
*output
)
970 for (node
= xmlFirstElementChild(consumer_output_node
); node
;
971 node
= xmlNextElementSibling(node
)) {
972 if (!strcmp((const char *) node
->name
, config_element_enabled
)) {
973 xmlChar
*enabled_str
= xmlNodeGetContent(node
);
977 ret
= -LTTNG_ERR_NOMEM
;
981 ret
= parse_bool(enabled_str
, &output
->enabled
);
987 xmlNodePtr output_type_node
;
990 output_type_node
= xmlFirstElementChild(node
);
991 if (!output_type_node
) {
992 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
996 if (!strcmp((const char *) output_type_node
->name
,
997 config_element_path
)) {
999 output
->path
= (char *) xmlNodeGetContent(output_type_node
);
1000 if (!output
->path
) {
1001 ret
= -LTTNG_ERR_NOMEM
;
1006 ret
= get_net_output_uris(output_type_node
,
1007 &output
->control_uri
, &output
->data_uri
);
1019 free(output
->control_uri
);
1020 free(output
->data_uri
);
1021 memset(output
, 0, sizeof(struct consumer_output
));
1027 int create_session_net_output(const char *name
, struct lttng_domain
*domain
,
1028 const char *control_uri
, const char *data_uri
)
1031 struct lttng_handle
*handle
;
1032 const char *uri
= NULL
;
1037 handle
= lttng_create_handle(name
, domain
);
1039 ret
= -LTTNG_ERR_NOMEM
;
1043 if (!control_uri
|| !data_uri
) {
1044 uri
= control_uri
? control_uri
: data_uri
;
1049 ret
= lttng_set_consumer_url(handle
, control_uri
, data_uri
);
1050 lttng_destroy_handle(handle
);
1056 int create_snapshot_session(const char *session_name
, xmlNodePtr output_node
)
1059 xmlNodePtr node
= NULL
;
1060 xmlNodePtr snapshot_output_list_node
;
1061 xmlNodePtr snapshot_output_node
;
1063 assert(session_name
);
1065 ret
= lttng_create_session_snapshot(session_name
, NULL
);
1074 snapshot_output_list_node
= xmlFirstElementChild(output_node
);
1076 /* Parse and create snapshot outputs */
1078 for (snapshot_output_node
=
1079 xmlFirstElementChild(snapshot_output_list_node
);
1080 snapshot_output_node
; snapshot_output_node
=
1081 xmlNextElementSibling(snapshot_output_node
)) {
1083 uint64_t max_size
= UINT64_MAX
;
1084 struct consumer_output output
= { 0 };
1085 struct lttng_snapshot_output
*snapshot_output
= NULL
;
1087 for (node
= xmlFirstElementChild(snapshot_output_node
); node
;
1088 node
= xmlNextElementSibling(node
)) {
1089 if (!strcmp((const char *) node
->name
,
1090 config_element_name
)) {
1092 name
= (char *) xmlNodeGetContent(node
);
1094 ret
= -LTTNG_ERR_NOMEM
;
1095 goto error_snapshot_output
;
1097 } else if (!strcmp((const char *) node
->name
,
1098 config_element_max_size
)) {
1099 xmlChar
*content
= xmlNodeGetContent(node
);
1103 ret
= -LTTNG_ERR_NOMEM
;
1104 goto error_snapshot_output
;
1106 ret
= parse_uint(content
, &max_size
);
1109 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1110 goto error_snapshot_output
;
1113 /* consumer_output */
1114 ret
= process_consumer_output(node
, &output
);
1116 goto error_snapshot_output
;
1121 snapshot_output
= lttng_snapshot_output_create();
1122 if (!snapshot_output
) {
1123 ret
= -LTTNG_ERR_NOMEM
;
1124 goto error_snapshot_output
;
1127 ret
= lttng_snapshot_output_set_name(name
, snapshot_output
);
1129 goto error_snapshot_output
;
1132 ret
= lttng_snapshot_output_set_size(max_size
, snapshot_output
);
1134 goto error_snapshot_output
;
1138 ret
= lttng_snapshot_output_set_ctrl_url(output
.path
,
1141 goto error_snapshot_output
;
1144 if (output
.control_uri
) {
1145 ret
= lttng_snapshot_output_set_ctrl_url(output
.control_uri
,
1148 goto error_snapshot_output
;
1152 if (output
.data_uri
) {
1153 ret
= lttng_snapshot_output_set_data_url(output
.data_uri
,
1156 goto error_snapshot_output
;
1161 ret
= lttng_snapshot_add_output(session_name
, snapshot_output
);
1162 error_snapshot_output
:
1165 free(output
.control_uri
);
1166 free(output
.data_uri
);
1167 lttng_snapshot_output_destroy(snapshot_output
);
1177 int create_session(const char *name
,
1178 struct lttng_domain
*kernel_domain
,
1179 struct lttng_domain
*ust_domain
,
1180 struct lttng_domain
*jul_domain
,
1181 xmlNodePtr output_node
,
1182 uint64_t live_timer_interval
)
1185 struct consumer_output output
= { 0 };
1186 xmlNodePtr consumer_output_node
;
1191 consumer_output_node
= xmlFirstElementChild(output_node
);
1192 if (!consumer_output_node
) {
1193 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1197 if (strcmp((const char *) consumer_output_node
->name
,
1198 config_element_consumer_output
)) {
1199 WARN("Invalid output type, expected %s node",
1200 config_element_consumer_output
);
1201 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1205 ret
= process_consumer_output(consumer_output_node
, &output
);
1211 if (live_timer_interval
!= UINT64_MAX
&&
1212 !output
.control_uri
&& !output
.data_uri
) {
1213 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1217 if (output
.control_uri
|| output
.data_uri
) {
1219 struct lttng_domain
*domain
;
1220 struct lttng_domain
*domains
[] =
1221 { kernel_domain
, ust_domain
, jul_domain
};
1223 /* network destination */
1224 if (live_timer_interval
&& live_timer_interval
!= UINT64_MAX
) {
1226 * URLs are provided for sure since the test above make sure that
1227 * with a live timer the data and control URIs are provided. So,
1228 * NULL is passed here and will be set right after.
1230 ret
= lttng_create_session_live(name
, NULL
, live_timer_interval
);
1232 ret
= lttng_create_session(name
, NULL
);
1238 for (i
= 0; i
< (sizeof(domains
) / sizeof(domains
[0])); i
++) {
1239 domain
= domains
[i
];
1244 ret
= create_session_net_output(name
, domain
, output
.control_uri
,
1251 /* either local output or no output */
1252 ret
= lttng_create_session(name
, output
.path
);
1259 free(output
.control_uri
);
1260 free(output
.data_uri
);
1264 int process_probe_attribute_node(xmlNodePtr probe_attribute_node
,
1265 struct lttng_event_probe_attr
*attr
)
1269 assert(probe_attribute_node
);
1272 if (!strcmp((const char *) probe_attribute_node
->name
,
1273 config_element_address
)) {
1278 content
= xmlNodeGetContent(probe_attribute_node
);
1280 ret
= -LTTNG_ERR_NOMEM
;
1284 ret
= parse_uint(content
, &addr
);
1287 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1292 } else if (!strcmp((const char *) probe_attribute_node
->name
,
1293 config_element_offset
)) {
1295 uint64_t offset
= 0;
1298 content
= xmlNodeGetContent(probe_attribute_node
);
1300 ret
= -LTTNG_ERR_NOMEM
;
1304 ret
= parse_uint(content
, &offset
);
1307 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1311 attr
->offset
= offset
;
1312 } else if (!strcmp((const char *) probe_attribute_node
->name
,
1313 config_element_symbol_name
)) {
1318 content
= xmlNodeGetContent(probe_attribute_node
);
1320 ret
= -LTTNG_ERR_NOMEM
;
1324 name_len
= strlen((char *) content
);
1325 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1326 WARN("symbol_name too long.");
1327 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1332 strncpy(attr
->symbol_name
, (const char *) content
, name_len
);
1341 int process_event_node(xmlNodePtr event_node
, struct lttng_handle
*handle
,
1342 const char *channel_name
)
1346 struct lttng_event event
;
1347 char **exclusions
= NULL
;
1348 unsigned long exclusion_count
= 0;
1349 char *filter_expression
= NULL
;
1353 assert(channel_name
);
1355 memset(&event
, 0, sizeof(event
));
1357 for (node
= xmlFirstElementChild(event_node
); node
;
1358 node
= xmlNextElementSibling(node
)) {
1359 if (!strcmp((const char *) node
->name
, config_element_name
)) {
1364 content
= xmlNodeGetContent(node
);
1366 ret
= -LTTNG_ERR_NOMEM
;
1370 name_len
= strlen((char *) content
);
1371 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1372 WARN("Channel name too long.");
1373 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1378 strncpy(event
.name
, (const char *) content
, name_len
);
1380 } else if (!strcmp((const char *) node
->name
,
1381 config_element_enabled
)) {
1382 xmlChar
*content
= xmlNodeGetContent(node
);
1386 ret
= -LTTNG_ERR_NOMEM
;
1390 ret
= parse_bool(content
, &event
.enabled
);
1393 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1396 } else if (!strcmp((const char *) node
->name
,
1397 config_element_type
)) {
1398 xmlChar
*content
= xmlNodeGetContent(node
);
1402 ret
= -LTTNG_ERR_NOMEM
;
1406 ret
= get_event_type(content
);
1409 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1414 } else if (!strcmp((const char *) node
->name
,
1415 config_element_loglevel_type
)) {
1416 xmlChar
*content
= xmlNodeGetContent(node
);
1420 ret
= -LTTNG_ERR_NOMEM
;
1424 ret
= get_loglevel_type(content
);
1427 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1431 event
.loglevel_type
= ret
;
1432 } else if (!strcmp((const char *) node
->name
,
1433 config_element_loglevel
)) {
1435 int64_t loglevel
= 0;
1438 content
= xmlNodeGetContent(node
);
1440 ret
= -LTTNG_ERR_NOMEM
;
1444 ret
= parse_int(content
, &loglevel
);
1447 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1451 if (loglevel
> INT_MAX
|| loglevel
< INT_MIN
) {
1452 WARN("loglevel out of range.");
1453 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1457 event
.loglevel
= loglevel
;
1458 } else if (!strcmp((const char *) node
->name
,
1459 config_element_filter
)) {
1461 xmlNodeGetContent(node
);
1465 ret
= -LTTNG_ERR_NOMEM
;
1469 filter_expression
= strdup((char *) content
);
1471 if (!filter_expression
) {
1472 ret
= -LTTNG_ERR_NOMEM
;
1475 } else if (!strcmp((const char *) node
->name
,
1476 config_element_exclusions
)) {
1477 xmlNodePtr exclusion_node
;
1478 int exclusion_index
= 0;
1483 * Exclusions has already been initialized,
1486 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1490 exclusion_count
= xmlChildElementCount(node
);
1491 if (!exclusion_count
) {
1495 exclusions
= zmalloc(exclusion_count
* sizeof(char *));
1497 exclusion_count
= 0;
1498 ret
= -LTTNG_ERR_NOMEM
;
1502 for (exclusion_node
= xmlFirstElementChild(node
); exclusion_node
;
1503 exclusion_node
= xmlNextElementSibling(exclusion_node
)) {
1505 xmlNodeGetContent(exclusion_node
);
1508 ret
= -LTTNG_ERR_NOMEM
;
1512 exclusions
[exclusion_index
] = strdup((const char *) content
);
1514 if (!exclusions
[exclusion_index
]) {
1515 ret
= -LTTNG_ERR_NOMEM
;
1521 event
.exclusion
= 1;
1522 } else if (!strcmp((const char *) node
->name
,
1523 config_element_attributes
)) {
1524 xmlNodePtr attribute_node
= xmlFirstElementChild(node
);
1527 if (!attribute_node
) {
1528 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1532 if (!strcmp((const char *) node
->name
,
1533 config_element_probe_attributes
)) {
1534 xmlNodePtr probe_attribute_node
;
1536 /* probe_attributes */
1537 for (probe_attribute_node
=
1538 xmlFirstElementChild(attribute_node
); probe_attribute_node
;
1539 probe_attribute_node
= xmlNextElementSibling(
1540 probe_attribute_node
)) {
1542 ret
= process_probe_attribute_node(probe_attribute_node
,
1551 xmlNodePtr symbol_node
= xmlFirstElementChild(attribute_node
);
1553 /* function_attributes */
1554 content
= xmlNodeGetContent(symbol_node
);
1556 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1560 sym_len
= strlen((char *) content
);
1561 if (sym_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1562 WARN("Function name too long.");
1563 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1568 strncpy(event
.attr
.ftrace
.symbol_name
, (char *) content
,
1575 ret
= lttng_enable_event_with_exclusions(handle
, &event
, channel_name
,
1576 filter_expression
, exclusion_count
, exclusions
);
1578 for (i
= 0; i
< exclusion_count
; i
++) {
1579 free(exclusions
[i
]);
1583 free(filter_expression
);
1588 int process_events_node(xmlNodePtr events_node
, struct lttng_handle
*handle
,
1589 const char *channel_name
)
1594 assert(events_node
);
1596 assert(channel_name
);
1598 for (node
= xmlFirstElementChild(events_node
); node
;
1599 node
= xmlNextElementSibling(node
)) {
1600 ret
= process_event_node(node
, handle
, channel_name
);
1610 int process_channel_attr_node(xmlNodePtr attr_node
,
1611 struct lttng_channel
*channel
, xmlNodePtr
*contexts_node
,
1612 xmlNodePtr
*events_node
)
1618 assert(contexts_node
);
1619 assert(events_node
);
1621 if (!strcmp((const char *) attr_node
->name
, config_element_name
)) {
1626 content
= xmlNodeGetContent(attr_node
);
1628 ret
= -LTTNG_ERR_NOMEM
;
1632 name_len
= strlen((char *) content
);
1633 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1634 WARN("Channel name too long.");
1635 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1640 strncpy(channel
->name
, (const char *) content
, name_len
);
1642 } else if (!strcmp((const char *) attr_node
->name
,
1643 config_element_enabled
)) {
1648 content
= xmlNodeGetContent(attr_node
);
1650 ret
= -LTTNG_ERR_NOMEM
;
1654 ret
= parse_bool(content
, &enabled
);
1657 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1661 channel
->enabled
= enabled
;
1662 } else if (!strcmp((const char *) attr_node
->name
,
1663 config_element_overwrite_mode
)) {
1666 /* overwrite_mode */
1667 content
= xmlNodeGetContent(attr_node
);
1669 ret
= -LTTNG_ERR_NOMEM
;
1673 ret
= get_overwrite_mode(content
);
1676 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1680 channel
->attr
.overwrite
= ret
;
1681 } else if (!strcmp((const char *) attr_node
->name
,
1682 config_element_subbuf_size
)) {
1685 /* subbuffer_size */
1686 content
= xmlNodeGetContent(attr_node
);
1688 ret
= -LTTNG_ERR_NOMEM
;
1692 ret
= parse_uint(content
, &channel
->attr
.subbuf_size
);
1695 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1698 } else if (!strcmp((const char *) attr_node
->name
,
1699 config_element_num_subbuf
)) {
1702 /* subbuffer_count */
1703 content
= xmlNodeGetContent(attr_node
);
1705 ret
= -LTTNG_ERR_NOMEM
;
1709 ret
= parse_uint(content
, &channel
->attr
.num_subbuf
);
1712 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1715 } else if (!strcmp((const char *) attr_node
->name
,
1716 config_element_switch_timer_interval
)) {
1718 uint64_t switch_timer_interval
= 0;
1720 /* switch_timer_interval */
1721 content
= xmlNodeGetContent(attr_node
);
1723 ret
= -LTTNG_ERR_NOMEM
;
1727 ret
= parse_uint(content
, &switch_timer_interval
);
1730 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1734 if (switch_timer_interval
> UINT_MAX
) {
1735 WARN("switch_timer_interval out of range.");
1736 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1740 channel
->attr
.switch_timer_interval
=
1741 switch_timer_interval
;
1742 } else if (!strcmp((const char *) attr_node
->name
,
1743 config_element_read_timer_interval
)) {
1745 uint64_t read_timer_interval
= 0;
1747 /* read_timer_interval */
1748 content
= xmlNodeGetContent(attr_node
);
1750 ret
= -LTTNG_ERR_NOMEM
;
1754 ret
= parse_uint(content
, &read_timer_interval
);
1757 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1761 if (read_timer_interval
> UINT_MAX
) {
1762 WARN("read_timer_interval out of range.");
1763 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1767 channel
->attr
.read_timer_interval
=
1768 read_timer_interval
;
1769 } else if (!strcmp((const char *) attr_node
->name
,
1770 config_element_output_type
)) {
1774 content
= xmlNodeGetContent(attr_node
);
1776 ret
= -LTTNG_ERR_NOMEM
;
1780 ret
= get_output_type(content
);
1783 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1787 channel
->attr
.output
= ret
;
1788 } else if (!strcmp((const char *) attr_node
->name
,
1789 config_element_tracefile_size
)) {
1792 /* tracefile_size */
1793 content
= xmlNodeGetContent(attr_node
);
1795 ret
= -LTTNG_ERR_NOMEM
;
1799 ret
= parse_uint(content
, &channel
->attr
.tracefile_size
);
1802 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1805 } else if (!strcmp((const char *) attr_node
->name
,
1806 config_element_tracefile_count
)) {
1809 /* tracefile_count */
1810 content
= xmlNodeGetContent(attr_node
);
1812 ret
= -LTTNG_ERR_NOMEM
;
1816 ret
= parse_uint(content
, &channel
->attr
.tracefile_count
);
1819 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1822 } else if (!strcmp((const char *) attr_node
->name
,
1823 config_element_live_timer_interval
)) {
1825 uint64_t live_timer_interval
= 0;
1827 /* live_timer_interval */
1828 content
= xmlNodeGetContent(attr_node
);
1830 ret
= -LTTNG_ERR_NOMEM
;
1834 ret
= parse_uint(content
, &live_timer_interval
);
1837 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1841 if (live_timer_interval
> UINT_MAX
) {
1842 WARN("live_timer_interval out of range.");
1843 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1847 channel
->attr
.live_timer_interval
=
1848 live_timer_interval
;
1849 } else if (!strcmp((const char *) attr_node
->name
,
1850 config_element_events
)) {
1852 *events_node
= attr_node
;
1855 *contexts_node
= attr_node
;
1863 int process_context_node(xmlNodePtr context_node
,
1864 struct lttng_handle
*handle
, const char *channel_name
)
1867 struct lttng_event_context context
;
1868 xmlNodePtr context_child_node
= xmlFirstElementChild(context_node
);
1871 assert(channel_name
);
1873 if (!context_child_node
) {
1874 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1878 memset(&context
, 0, sizeof(context
));
1880 if (!strcmp((const char *) context_child_node
->name
,
1881 config_element_type
)) {
1883 xmlChar
*content
= xmlNodeGetContent(context_child_node
);
1885 ret
= -LTTNG_ERR_NOMEM
;
1889 ret
= get_context_type(content
);
1892 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1898 xmlNodePtr perf_attr_node
;
1901 context
.ctx
= LTTNG_EVENT_CONTEXT_PERF_COUNTER
;
1902 for (perf_attr_node
= xmlFirstElementChild(context_child_node
);
1903 perf_attr_node
; perf_attr_node
=
1904 xmlNextElementSibling(perf_attr_node
)) {
1905 if (!strcmp((const char *) perf_attr_node
->name
,
1906 config_element_type
)) {
1911 content
= xmlNodeGetContent(perf_attr_node
);
1913 ret
= -LTTNG_ERR_NOMEM
;
1917 ret
= parse_uint(content
, &type
);
1920 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1924 if (type
> UINT32_MAX
) {
1925 WARN("perf context type out of range.");
1926 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1930 context
.u
.perf_counter
.type
= type
;
1931 } else if (!strcmp((const char *) perf_attr_node
->name
,
1932 config_element_config
)) {
1934 uint64_t config
= 0;
1937 content
= xmlNodeGetContent(perf_attr_node
);
1939 ret
= -LTTNG_ERR_NOMEM
;
1943 ret
= parse_uint(content
, &config
);
1946 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1950 context
.u
.perf_counter
.config
= config
;
1951 } else if (!strcmp((const char *) perf_attr_node
->name
,
1952 config_element_name
)) {
1957 content
= xmlNodeGetContent(perf_attr_node
);
1959 ret
= -LTTNG_ERR_NOMEM
;
1963 name_len
= strlen((char *) content
);
1964 if (name_len
>= LTTNG_SYMBOL_NAME_LEN
) {
1965 WARN("perf context name too long.");
1966 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
1971 strncpy(context
.u
.perf_counter
.name
, (const char *) content
,
1978 ret
= lttng_add_context(handle
, &context
, NULL
, channel_name
);
1984 int process_contexts_node(xmlNodePtr contexts_node
,
1985 struct lttng_handle
*handle
, const char *channel_name
)
1988 xmlNodePtr context_node
;
1990 for (context_node
= xmlFirstElementChild(contexts_node
); context_node
;
1991 context_node
= xmlNextElementSibling(context_node
)) {
1992 ret
= process_context_node(context_node
, handle
, channel_name
);
2002 int process_domain_node(xmlNodePtr domain_node
, const char *session_name
)
2005 struct lttng_domain domain
= { 0 };
2006 struct lttng_handle
*handle
= NULL
;
2007 xmlNodePtr channels_node
= NULL
;
2010 assert(session_name
);
2012 ret
= init_domain(domain_node
, &domain
);
2017 handle
= lttng_create_handle(session_name
, &domain
);
2019 ret
= -LTTNG_ERR_NOMEM
;
2023 /* get the channels node */
2024 for (node
= xmlFirstElementChild(domain_node
); node
;
2025 node
= xmlNextElementSibling(node
)) {
2026 if (!strcmp((const char *) node
->name
,
2027 config_element_channels
)) {
2028 channels_node
= node
;
2033 if (!channels_node
) {
2037 /* create all channels */
2038 for (node
= xmlFirstElementChild(channels_node
); node
;
2039 node
= xmlNextElementSibling(node
)) {
2040 struct lttng_channel channel
;
2041 xmlNodePtr contexts_node
= NULL
;
2042 xmlNodePtr events_node
= NULL
;
2043 xmlNodePtr channel_attr_node
;
2045 memset(&channel
, 0, sizeof(channel
));
2046 lttng_channel_set_default_attr(&domain
, &channel
.attr
);
2048 for (channel_attr_node
= xmlFirstElementChild(node
);
2049 channel_attr_node
; channel_attr_node
=
2050 xmlNextElementSibling(channel_attr_node
)) {
2051 ret
= process_channel_attr_node(channel_attr_node
,
2052 &channel
, &contexts_node
, &events_node
);
2058 ret
= lttng_enable_channel(handle
, &channel
);
2063 ret
= process_events_node(events_node
, handle
, channel
.name
);
2068 ret
= process_contexts_node(contexts_node
, handle
,
2075 lttng_destroy_handle(handle
);
2080 int process_session_node(xmlNodePtr session_node
, const char *session_name
,
2083 int ret
, started
= -1, snapshot_mode
= -1;
2084 uint64_t live_timer_interval
= UINT64_MAX
;
2086 xmlNodePtr domains_node
= NULL
;
2087 xmlNodePtr output_node
= NULL
;
2089 struct lttng_domain
*kernel_domain
= NULL
;
2090 struct lttng_domain
*ust_domain
= NULL
;
2091 struct lttng_domain
*jul_domain
= NULL
;
2093 for (node
= xmlFirstElementChild(session_node
); node
;
2094 node
= xmlNextElementSibling(node
)) {
2095 if (!name
&& !strcmp((const char *) node
->name
,
2096 config_element_name
)) {
2098 xmlChar
*node_content
= xmlNodeGetContent(node
);
2099 if (!node_content
) {
2100 ret
= -LTTNG_ERR_NOMEM
;
2104 name
= (char *) node_content
;
2105 } else if (!domains_node
&& !strcmp((const char *) node
->name
,
2106 config_element_domains
)) {
2108 domains_node
= node
;
2109 } else if (started
== -1 && !strcmp((const char *) node
->name
,
2110 config_element_started
)) {
2112 xmlChar
*node_content
= xmlNodeGetContent(node
);
2113 if (!node_content
) {
2114 ret
= -LTTNG_ERR_NOMEM
;
2118 ret
= parse_bool(node_content
, &started
);
2121 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2124 } else if (!output_node
&& !strcmp((const char *) node
->name
,
2125 config_element_output
)) {
2129 /* attributes, snapshot_mode or live_timer_interval */
2130 xmlNodePtr attributes_child
=
2131 xmlFirstElementChild(node
);
2133 if (!strcmp((const char *) attributes_child
->name
,
2134 config_element_snapshot_mode
)) {
2136 xmlChar
*snapshot_mode_content
=
2137 xmlNodeGetContent(attributes_child
);
2138 if (!snapshot_mode_content
) {
2139 ret
= -LTTNG_ERR_NOMEM
;
2143 ret
= parse_bool(snapshot_mode_content
, &snapshot_mode
);
2144 free(snapshot_mode_content
);
2146 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2150 /* live_timer_interval */
2151 xmlChar
*timer_interval_content
=
2152 xmlNodeGetContent(attributes_child
);
2153 if (!timer_interval_content
) {
2154 ret
= -LTTNG_ERR_NOMEM
;
2158 ret
= parse_uint(timer_interval_content
, &live_timer_interval
);
2159 free(timer_interval_content
);
2161 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2169 /* Mandatory attribute, as defined in the session XSD */
2170 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2174 if (session_name
&& strcmp(name
, session_name
)) {
2175 /* This is not the session we are looking for */
2176 ret
= -LTTNG_ERR_LOAD_SESSION_NOENT
;
2180 /* Init domains to create the session handles */
2181 for (node
= xmlFirstElementChild(domains_node
); node
;
2182 node
= xmlNextElementSibling(node
)) {
2183 struct lttng_domain
*domain
;
2185 domain
= zmalloc(sizeof(*domain
));
2187 ret
= -LTTNG_ERR_NOMEM
;
2191 ret
= init_domain(node
, domain
);
2193 goto domain_init_error
;
2196 switch (domain
->type
) {
2197 case LTTNG_DOMAIN_KERNEL
:
2198 if (kernel_domain
) {
2199 /* Same domain seen twice, invalid! */
2200 goto domain_init_error
;
2202 kernel_domain
= domain
;
2204 case LTTNG_DOMAIN_UST
:
2206 /* Same domain seen twice, invalid! */
2207 goto domain_init_error
;
2209 ust_domain
= domain
;
2211 case LTTNG_DOMAIN_JUL
:
2213 /* Same domain seen twice, invalid! */
2214 goto domain_init_error
;
2216 jul_domain
= domain
;
2219 WARN("Invalid domain type");
2220 goto domain_init_error
;
2225 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2230 /* Destroy session if it exists */
2231 ret
= lttng_destroy_session(name
);
2232 if (ret
&& ret
!= -LTTNG_ERR_SESS_NOT_FOUND
) {
2233 ERR("Failed to destroy existing session.");
2238 /* Create session type depending on output type */
2239 if (snapshot_mode
&& snapshot_mode
!= -1) {
2240 ret
= create_snapshot_session(name
, output_node
);
2241 } else if (live_timer_interval
&&
2242 live_timer_interval
!= UINT64_MAX
) {
2243 ret
= create_session(name
, kernel_domain
, ust_domain
, jul_domain
,
2244 output_node
, live_timer_interval
);
2246 /* regular session */
2247 ret
= create_session(name
, kernel_domain
, ust_domain
, jul_domain
,
2248 output_node
, UINT64_MAX
);
2255 for (node
= xmlFirstElementChild(domains_node
); node
;
2256 node
= xmlNextElementSibling(node
)) {
2257 ret
= process_domain_node(node
, name
);
2264 ret
= lttng_start_tracing(name
);
2270 free(kernel_domain
);
2278 int load_session_from_file(const char *path
, const char *session_name
,
2279 struct session_config_validation_ctx
*validation_ctx
, int override
)
2281 int ret
, session_found
= !session_name
;
2282 xmlDocPtr doc
= NULL
;
2283 xmlNodePtr sessions_node
;
2284 xmlNodePtr session_node
;
2288 assert(validation_ctx
);
2290 ret
= stat(path
, &sb
);
2292 ret
= -LTTNG_ERR_LOAD_SESSION_NOENT
;
2296 doc
= xmlParseFile(path
);
2298 ret
= -LTTNG_ERR_LOAD_IO_FAIL
;
2302 ret
= xmlSchemaValidateDoc(validation_ctx
->schema_validation_ctx
, doc
);
2304 ERR("Session configuration file validation failed");
2305 ret
= -LTTNG_ERR_LOAD_INVALID_CONFIG
;
2309 sessions_node
= xmlDocGetRootElement(doc
);
2310 if (!sessions_node
) {
2314 for (session_node
= xmlFirstElementChild(sessions_node
);
2315 session_node
; session_node
=
2316 xmlNextElementSibling(session_node
)) {
2317 ret
= process_session_node(session_node
,
2318 session_name
, override
);
2319 if (session_name
&& ret
== 0) {
2320 /* Target session found and loaded */
2328 ret
= session_found
? 0 : -LTTNG_ERR_LOAD_SESSION_NOENT
;
2334 int load_session_from_path(const char *path
, const char *session_name
,
2335 struct session_config_validation_ctx
*validation_ctx
, int override
)
2337 int ret
, session_found
= !session_name
;
2338 DIR *directory
= NULL
;
2341 assert(validation_ctx
);
2343 directory
= opendir(path
);
2347 /* Try the file loading. */
2350 ret
= -LTTNG_ERR_LOAD_SESSION_NOENT
;
2353 ret
= -LTTNG_ERR_LOAD_IO_FAIL
;
2358 struct dirent
*entry
;
2359 struct dirent
*result
;
2360 char *file_path
= NULL
;
2361 size_t path_len
= strlen(path
);
2363 if (path_len
>= PATH_MAX
) {
2364 ret
= -LTTNG_ERR_INVALID
;
2368 entry
= zmalloc(sizeof(*entry
));
2370 ret
= -LTTNG_ERR_NOMEM
;
2374 file_path
= zmalloc(PATH_MAX
);
2376 ret
= -LTTNG_ERR_NOMEM
;
2381 strncpy(file_path
, path
, path_len
);
2382 if (file_path
[path_len
- 1] != '/') {
2383 file_path
[path_len
++] = '/';
2387 /* Search for *.lttng files */
2388 while (!readdir_r(directory
, entry
, &result
) && result
) {
2389 size_t file_name_len
= strlen(result
->d_name
);
2391 if (file_name_len
<=
2392 sizeof(DEFAULT_SESSION_CONFIG_FILE_EXTENSION
)) {
2396 if (path_len
+ file_name_len
> PATH_MAX
) {
2400 if (strcmp(DEFAULT_SESSION_CONFIG_FILE_EXTENSION
,
2401 result
->d_name
+ file_name_len
- sizeof(
2402 DEFAULT_SESSION_CONFIG_FILE_EXTENSION
) + 1)) {
2406 strncpy(file_path
+ path_len
, result
->d_name
, file_name_len
);
2407 file_path
[path_len
+ file_name_len
] = '\0';
2409 ret
= load_session_from_file(file_path
, session_name
,
2410 validation_ctx
, override
);
2411 if (session_name
&& !ret
) {
2420 ret
= load_session_from_file(path
, session_name
,
2421 validation_ctx
, override
);
2431 if (closedir(directory
)) {
2436 if (!session_found
) {
2437 ret
= -LTTNG_ERR_LOAD_SESSION_NOENT
;
2444 int config_load_session(const char *path
, const char *session_name
,
2448 struct session_config_validation_ctx validation_ctx
= { 0 };
2450 ret
= init_session_config_validation_ctx(&validation_ctx
);
2457 char *home_path
= utils_get_home_dir();
2461 ret
= asprintf(&path
, DEFAULT_SESSION_HOME_CONFIGPATH
,
2467 ret
= load_session_from_path(path
, session_name
,
2468 &validation_ctx
, 0);
2469 if (!ret
|| (ret
&& ret
!= -LTTNG_ERR_LOAD_SESSION_NOENT
)) {
2470 /* Session found or an error occured */
2478 /* Try system session configuration path */
2479 ret
= load_session_from_path(DEFAULT_SESSION_SYSTEM_CONFIGPATH
,
2480 session_name
, &validation_ctx
, 0);
2481 if (!ret
|| (ret
&& ret
!= -LTTNG_ERR_LOAD_SESSION_NOENT
)) {
2482 /* Session found or an error occured */
2486 ret
= access(path
, F_OK
);
2491 ret
= -LTTNG_ERR_INVALID
;
2492 WARN("Session configuration path does not exist.");
2495 ret
= -LTTNG_ERR_EPERM
;
2498 ret
= -LTTNG_ERR_UNK
;
2504 ret
= load_session_from_path(path
, session_name
,
2505 &validation_ctx
, override
);
2508 fini_session_config_validation_ctx(&validation_ctx
);