Make channel output type optional in session.xsd
[deliverable/lttng-tools.git] / src / common / config / session-config.c
1 /*
2 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
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.
7 *
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
11 * more details.
12 *
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.
16 */
17
18 #define _LGPL_SOURCE
19 #include <assert.h>
20 #include <ctype.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <inttypes.h>
25 #include <dirent.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <stdbool.h>
30
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 <libxml/xpath.h>
42 #include <lttng/lttng.h>
43 #include <lttng/snapshot.h>
44
45 #include "session-config.h"
46 #include "config-internal.h"
47
48 struct handler_filter_args {
49 const char* section;
50 config_entry_handler_cb handler;
51 void *user_data;
52 };
53
54 struct session_config_validation_ctx {
55 xmlSchemaParserCtxtPtr parser_ctx;
56 xmlSchemaPtr schema;
57 xmlSchemaValidCtxtPtr schema_validation_ctx;
58 };
59
60 const char * const config_str_yes = "yes";
61 const char * const config_str_true = "true";
62 const char * const config_str_on = "on";
63 const char * const config_str_no = "no";
64 const char * const config_str_false = "false";
65 const char * const config_str_off = "off";
66 const char * const config_xml_encoding = "UTF-8";
67 const size_t config_xml_encoding_bytes_per_char = 2; /* Size of the encoding's largest character */
68 const char * const config_xml_indent_string = "\t";
69 const char * const config_xml_true = "true";
70 const char * const config_xml_false = "false";
71
72 const char * const config_element_channel = "channel";
73 const char * const config_element_channels = "channels";
74 const char * const config_element_domain = "domain";
75 const char * const config_element_domains = "domains";
76 const char * const config_element_event = "event";
77 const char * const config_element_events = "events";
78 const char * const config_element_context = "context";
79 const char * const config_element_contexts = "contexts";
80 const char * const config_element_attributes = "attributes";
81 const char * const config_element_exclusion = "exclusion";
82 const char * const config_element_exclusions = "exclusions";
83 const char * const config_element_function_attributes = "function_attributes";
84 const char * const config_element_probe_attributes = "probe_attributes";
85 const char * const config_element_symbol_name = "symbol_name";
86 const char * const config_element_address = "address";
87 const char * const config_element_offset = "offset";
88 const char * const config_element_name = "name";
89 const char * const config_element_enabled = "enabled";
90 const char * const config_element_overwrite_mode = "overwrite_mode";
91 const char * const config_element_subbuf_size = "subbuffer_size";
92 const char * const config_element_num_subbuf = "subbuffer_count";
93 const char * const config_element_switch_timer_interval = "switch_timer_interval";
94 const char * const config_element_read_timer_interval = "read_timer_interval";
95 const char * const config_element_output = "output";
96 const char * const config_element_output_type = "output_type";
97 const char * const config_element_tracefile_size = "tracefile_size";
98 const char * const config_element_tracefile_count = "tracefile_count";
99 const char * const config_element_live_timer_interval = "live_timer_interval";
100 LTTNG_HIDDEN const char * const config_element_discarded_events = "discarded_events";
101 LTTNG_HIDDEN const char * const config_element_lost_packets = "lost_packets";
102 const char * const config_element_type = "type";
103 const char * const config_element_buffer_type = "buffer_type";
104 const char * const config_element_session = "session";
105 const char * const config_element_sessions = "sessions";
106 LTTNG_HIDDEN const char * const config_element_context_perf = "perf";
107 LTTNG_HIDDEN const char * const config_element_context_app = "app";
108 LTTNG_HIDDEN const char * const config_element_context_app_provider_name = "provider_name";
109 LTTNG_HIDDEN const char * const config_element_context_app_ctx_name = "ctx_name";
110 const char * const config_element_config = "config";
111 const char * const config_element_started = "started";
112 const char * const config_element_snapshot_mode = "snapshot_mode";
113 const char * const config_element_loglevel = "loglevel";
114 const char * const config_element_loglevel_type = "loglevel_type";
115 const char * const config_element_filter = "filter";
116 LTTNG_HIDDEN const char * const config_element_filter_expression = "filter_expression";
117 const char * const config_element_snapshot_outputs = "snapshot_outputs";
118 const char * const config_element_consumer_output = "consumer_output";
119 const char * const config_element_destination = "destination";
120 const char * const config_element_path = "path";
121 const char * const config_element_net_output = "net_output";
122 const char * const config_element_control_uri = "control_uri";
123 const char * const config_element_data_uri = "data_uri";
124 const char * const config_element_max_size = "max_size";
125 const char * const config_element_pid = "pid";
126 const char * const config_element_pids = "pids";
127 const char * const config_element_shared_memory_path = "shared_memory_path";
128 const char * const config_element_pid_tracker = "pid_tracker";
129 const char * const config_element_trackers = "trackers";
130 const char * const config_element_targets = "targets";
131 const char * const config_element_target_pid = "pid_target";
132 const char * const config_element_omit_name = "omit_name";
133 const char * const config_element_omit_output = "omit_output";
134
135 const char * const config_domain_type_kernel = "KERNEL";
136 const char * const config_domain_type_ust = "UST";
137 const char * const config_domain_type_jul = "JUL";
138 const char * const config_domain_type_log4j = "LOG4J";
139 const char * const config_domain_type_python = "PYTHON";
140
141 const char * const config_buffer_type_per_pid = "PER_PID";
142 const char * const config_buffer_type_per_uid = "PER_UID";
143 const char * const config_buffer_type_global = "GLOBAL";
144
145 const char * const config_overwrite_mode_discard = "DISCARD";
146 const char * const config_overwrite_mode_overwrite = "OVERWRITE";
147
148 const char * const config_output_type_splice = "SPLICE";
149 const char * const config_output_type_mmap = "MMAP";
150
151 const char * const config_loglevel_type_all = "ALL";
152 const char * const config_loglevel_type_range = "RANGE";
153 const char * const config_loglevel_type_single = "SINGLE";
154
155 const char * const config_event_type_all = "ALL";
156 const char * const config_event_type_tracepoint = "TRACEPOINT";
157 const char * const config_event_type_probe = "PROBE";
158 const char * const config_event_type_function = "FUNCTION";
159 const char * const config_event_type_function_entry = "FUNCTION_ENTRY";
160 const char * const config_event_type_noop = "NOOP";
161 const char * const config_event_type_syscall = "SYSCALL";
162 const char * const config_event_type_kprobe = "KPROBE";
163 const char * const config_event_type_kretprobe = "KRETPROBE";
164
165 const char * const config_event_context_pid = "PID";
166 const char * const config_event_context_procname = "PROCNAME";
167 const char * const config_event_context_prio = "PRIO";
168 const char * const config_event_context_nice = "NICE";
169 const char * const config_event_context_vpid = "VPID";
170 const char * const config_event_context_tid = "TID";
171 const char * const config_event_context_vtid = "VTID";
172 const char * const config_event_context_ppid = "PPID";
173 const char * const config_event_context_vppid = "VPPID";
174 const char * const config_event_context_pthread_id = "PTHREAD_ID";
175 const char * const config_event_context_hostname = "HOSTNAME";
176 const char * const config_event_context_ip = "IP";
177 const char * const config_event_context_perf_thread_counter = "PERF_THREAD_COUNTER";
178 LTTNG_HIDDEN const char * const config_event_context_app = "APP";
179 LTTNG_HIDDEN const char * const config_event_context_interruptible = "INTERRUPTIBLE";
180 LTTNG_HIDDEN const char * const config_event_context_preemptible = "PREEMPTIBLE";
181 LTTNG_HIDDEN const char * const config_event_context_need_reschedule = "NEED_RESCHEDULE";
182 LTTNG_HIDDEN const char * const config_event_context_migratable = "MIGRATABLE";
183
184 /* Deprecated symbols */
185 const char * const config_element_perf;
186
187 enum process_event_node_phase {
188 CREATION = 0,
189 ENABLE = 1,
190 };
191
192 struct consumer_output {
193 int enabled;
194 char *path;
195 char *control_uri;
196 char *data_uri;
197 };
198
199 static int config_entry_handler_filter(struct handler_filter_args *args,
200 const char *section, const char *name, const char *value)
201 {
202 int ret = 0;
203 struct config_entry entry = { section, name, value };
204
205 assert(args);
206
207 if (!section || !name || !value) {
208 ret = -EIO;
209 goto end;
210 }
211
212 if (args->section) {
213 if (strcmp(args->section, section)) {
214 goto end;
215 }
216 }
217
218 ret = args->handler(&entry, args->user_data);
219 end:
220 return ret;
221 }
222
223 LTTNG_HIDDEN
224 int config_get_section_entries(const char *override_path, const char *section,
225 config_entry_handler_cb handler, void *user_data)
226 {
227 int ret = 0;
228 char *path;
229 FILE *config_file = NULL;
230 struct handler_filter_args filter = { section, handler, user_data };
231
232 /* First, try system-wide conf. file. */
233 path = DEFAULT_DAEMON_SYSTEM_CONFIGPATH;
234
235 config_file = fopen(path, "r");
236 if (config_file) {
237 DBG("Loading daemon conf file at %s", path);
238 /*
239 * Return value is not very important here since error or not, we
240 * continue and try the next possible conf. file.
241 */
242 (void) ini_parse_file(config_file,
243 (ini_entry_handler) config_entry_handler_filter,
244 (void *) &filter);
245 fclose(config_file);
246 }
247
248 /* Second is the user local configuration. */
249 path = utils_get_home_dir();
250 if (path) {
251 char fullpath[PATH_MAX];
252
253 ret = snprintf(fullpath, sizeof(fullpath),
254 DEFAULT_DAEMON_HOME_CONFIGPATH, path);
255 if (ret < 0) {
256 PERROR("snprintf user conf. path");
257 goto error;
258 }
259
260 config_file = fopen(fullpath, "r");
261 if (config_file) {
262 DBG("Loading daemon user conf file at %s", path);
263 /*
264 * Return value is not very important here since error or not, we
265 * continue and try the next possible conf. file.
266 */
267 (void) ini_parse_file(config_file,
268 (ini_entry_handler) config_entry_handler_filter,
269 (void *) &filter);
270 fclose(config_file);
271 }
272 }
273
274 /* Final path is the one that the user might have provided. */
275 if (override_path) {
276 config_file = fopen(override_path, "r");
277 if (config_file) {
278 DBG("Loading daemon command line conf file at %s", override_path);
279 (void) ini_parse_file(config_file,
280 (ini_entry_handler) config_entry_handler_filter,
281 (void *) &filter);
282 fclose(config_file);
283 } else {
284 ERR("Failed to open daemon configuration file at %s",
285 override_path);
286 ret = -ENOENT;
287 goto error;
288 }
289 }
290
291 /* Everything went well. */
292 ret = 0;
293
294 error:
295 return ret;
296 }
297
298 LTTNG_HIDDEN
299 int config_parse_value(const char *value)
300 {
301 int i, ret = 0;
302 char *endptr, *lower_str;
303 size_t len;
304 unsigned long v;
305
306 len = strlen(value);
307 if (!len) {
308 ret = -1;
309 goto end;
310 }
311
312 v = strtoul(value, &endptr, 10);
313 if (endptr != value) {
314 ret = v;
315 goto end;
316 }
317
318 lower_str = zmalloc(len + 1);
319 if (!lower_str) {
320 PERROR("zmalloc");
321 ret = -errno;
322 goto end;
323 }
324
325 for (i = 0; i < len; i++) {
326 lower_str[i] = tolower(value[i]);
327 }
328
329 if (!strcmp(lower_str, config_str_yes) ||
330 !strcmp(lower_str, config_str_true) ||
331 !strcmp(lower_str, config_str_on)) {
332 ret = 1;
333 } else if (!strcmp(lower_str, config_str_no) ||
334 !strcmp(lower_str, config_str_false) ||
335 !strcmp(lower_str, config_str_off)) {
336 ret = 0;
337 } else {
338 ret = -1;
339 }
340
341 free(lower_str);
342 end:
343 return ret;
344 }
345
346 /*
347 * Returns a xmlChar string which must be released using xmlFree().
348 */
349 static xmlChar *encode_string(const char *in_str)
350 {
351 xmlChar *out_str = NULL;
352 xmlCharEncodingHandlerPtr handler;
353 int out_len, ret, in_len;
354
355 assert(in_str);
356
357 handler = xmlFindCharEncodingHandler(config_xml_encoding);
358 if (!handler) {
359 ERR("xmlFindCharEncodingHandler return NULL!. Configure issue!");
360 goto end;
361 }
362
363 in_len = strlen(in_str);
364 /*
365 * Add 1 byte for the NULL terminted character. The factor 4 here is
366 * used because UTF-8 characters can take up to 4 bytes.
367 */
368 out_len = (in_len * 4) + 1;
369 out_str = xmlMalloc(out_len);
370 if (!out_str) {
371 goto end;
372 }
373
374 ret = handler->input(out_str, &out_len, (const xmlChar *) in_str, &in_len);
375 if (ret < 0) {
376 xmlFree(out_str);
377 out_str = NULL;
378 goto end;
379 }
380
381 /* out_len is now the size of out_str */
382 out_str[out_len] = '\0';
383 end:
384 return out_str;
385 }
386
387 LTTNG_HIDDEN
388 struct config_writer *config_writer_create(int fd_output, int indent)
389 {
390 int ret;
391 struct config_writer *writer;
392 xmlOutputBufferPtr buffer;
393
394 writer = zmalloc(sizeof(struct config_writer));
395 if (!writer) {
396 PERROR("zmalloc config_writer_create");
397 goto end;
398 }
399
400 buffer = xmlOutputBufferCreateFd(fd_output, NULL);
401 if (!buffer) {
402 goto error_destroy;
403 }
404
405 writer->writer = xmlNewTextWriter(buffer);
406 ret = xmlTextWriterStartDocument(writer->writer, NULL,
407 config_xml_encoding, NULL);
408 if (ret < 0) {
409 goto error_destroy;
410 }
411
412 ret = xmlTextWriterSetIndentString(writer->writer,
413 BAD_CAST config_xml_indent_string);
414 if (ret) {
415 goto error_destroy;
416 }
417
418 ret = xmlTextWriterSetIndent(writer->writer, indent);
419 if (ret) {
420 goto error_destroy;
421 }
422
423 end:
424 return writer;
425 error_destroy:
426 config_writer_destroy(writer);
427 return NULL;
428 }
429
430 LTTNG_HIDDEN
431 int config_writer_destroy(struct config_writer *writer)
432 {
433 int ret = 0;
434
435 if (!writer) {
436 ret = -EINVAL;
437 goto end;
438 }
439
440 if (xmlTextWriterEndDocument(writer->writer) < 0) {
441 WARN("Could not close XML document");
442 ret = -EIO;
443 }
444
445 if (writer->writer) {
446 xmlFreeTextWriter(writer->writer);
447 }
448
449 free(writer);
450 end:
451 return ret;
452 }
453
454 LTTNG_HIDDEN
455 int config_writer_open_element(struct config_writer *writer,
456 const char *element_name)
457 {
458 int ret;
459 xmlChar *encoded_element_name;
460
461 if (!writer || !writer->writer || !element_name || !element_name[0]) {
462 ret = -1;
463 goto end;
464 }
465
466 encoded_element_name = encode_string(element_name);
467 if (!encoded_element_name) {
468 ret = -1;
469 goto end;
470 }
471
472 ret = xmlTextWriterStartElement(writer->writer, encoded_element_name);
473 xmlFree(encoded_element_name);
474 end:
475 return ret >= 0 ? 0 : ret;
476 }
477
478 LTTNG_HIDDEN
479 int config_writer_write_attribute(struct config_writer *writer,
480 const char *name, const char *value)
481 {
482 int ret;
483 xmlChar *encoded_name = NULL;
484 xmlChar *encoded_value = NULL;
485
486 if (!writer || !writer->writer || !name || !name[0]) {
487 ret = -1;
488 goto end;
489 }
490
491 encoded_name = encode_string(name);
492 if (!encoded_name) {
493 ret = -1;
494 goto end;
495 }
496
497 encoded_value = encode_string(value);
498 if (!encoded_value) {
499 ret = -1;
500 goto end;
501 }
502
503 ret = xmlTextWriterWriteAttribute(writer->writer, encoded_name,
504 encoded_value);
505 end:
506 xmlFree(encoded_name);
507 xmlFree(encoded_value);
508 return ret >= 0 ? 0 : ret;
509 }
510
511 LTTNG_HIDDEN
512 int config_writer_close_element(struct config_writer *writer)
513 {
514 int ret;
515
516 if (!writer || !writer->writer) {
517 ret = -1;
518 goto end;
519 }
520
521 ret = xmlTextWriterEndElement(writer->writer);
522 end:
523 return ret >= 0 ? 0 : ret;
524 }
525
526 LTTNG_HIDDEN
527 int config_writer_write_element_unsigned_int(struct config_writer *writer,
528 const char *element_name, uint64_t value)
529 {
530 int ret;
531 xmlChar *encoded_element_name;
532
533 if (!writer || !writer->writer || !element_name || !element_name[0]) {
534 ret = -1;
535 goto end;
536 }
537
538 encoded_element_name = encode_string(element_name);
539 if (!encoded_element_name) {
540 ret = -1;
541 goto end;
542 }
543
544 ret = xmlTextWriterWriteFormatElement(writer->writer,
545 encoded_element_name, "%" PRIu64, value);
546 xmlFree(encoded_element_name);
547 end:
548 return ret >= 0 ? 0 : ret;
549 }
550
551 LTTNG_HIDDEN
552 int config_writer_write_element_signed_int(struct config_writer *writer,
553 const char *element_name, int64_t value)
554 {
555 int ret;
556 xmlChar *encoded_element_name;
557
558 if (!writer || !writer->writer || !element_name || !element_name[0]) {
559 ret = -1;
560 goto end;
561 }
562
563 encoded_element_name = encode_string(element_name);
564 if (!encoded_element_name) {
565 ret = -1;
566 goto end;
567 }
568
569 ret = xmlTextWriterWriteFormatElement(writer->writer,
570 encoded_element_name, "%" PRIi64, value);
571 xmlFree(encoded_element_name);
572 end:
573 return ret >= 0 ? 0 : ret;
574 }
575
576 LTTNG_HIDDEN
577 int config_writer_write_element_bool(struct config_writer *writer,
578 const char *element_name, int value)
579 {
580 return config_writer_write_element_string(writer, element_name,
581 value ? config_xml_true : config_xml_false);
582 }
583
584 LTTNG_HIDDEN
585 int config_writer_write_element_string(struct config_writer *writer,
586 const char *element_name, const char *value)
587 {
588 int ret;
589 xmlChar *encoded_element_name = NULL;
590 xmlChar *encoded_value = NULL;
591
592 if (!writer || !writer->writer || !element_name || !element_name[0] ||
593 !value) {
594 ret = -1;
595 goto end;
596 }
597
598 encoded_element_name = encode_string(element_name);
599 if (!encoded_element_name) {
600 ret = -1;
601 goto end;
602 }
603
604 encoded_value = encode_string(value);
605 if (!encoded_value) {
606 ret = -1;
607 goto end;
608 }
609
610 ret = xmlTextWriterWriteElement(writer->writer, encoded_element_name,
611 encoded_value);
612 end:
613 xmlFree(encoded_element_name);
614 xmlFree(encoded_value);
615 return ret >= 0 ? 0 : ret;
616 }
617
618 static
619 void xml_error_handler(void *ctx, const char *format, ...)
620 {
621 char *errMsg;
622 va_list args;
623 int ret;
624
625 va_start(args, format);
626 ret = vasprintf(&errMsg, format, args);
627 va_end(args);
628 if (ret == -1) {
629 ERR("String allocation failed in xml error handler");
630 return;
631 }
632
633 fprintf(stderr, "XML Error: %s", errMsg);
634 free(errMsg);
635 }
636
637 static
638 void fini_session_config_validation_ctx(
639 struct session_config_validation_ctx *ctx)
640 {
641 if (ctx->parser_ctx) {
642 xmlSchemaFreeParserCtxt(ctx->parser_ctx);
643 }
644
645 if (ctx->schema) {
646 xmlSchemaFree(ctx->schema);
647 }
648
649 if (ctx->schema_validation_ctx) {
650 xmlSchemaFreeValidCtxt(ctx->schema_validation_ctx);
651 }
652
653 memset(ctx, 0, sizeof(struct session_config_validation_ctx));
654 }
655
656 static
657 char *get_session_config_xsd_path()
658 {
659 char *xsd_path;
660 const char *base_path = lttng_secure_getenv(DEFAULT_SESSION_CONFIG_XSD_PATH_ENV);
661 size_t base_path_len;
662 size_t max_path_len;
663
664 if (!base_path) {
665 base_path = DEFAULT_SESSION_CONFIG_XSD_PATH;
666 }
667
668 base_path_len = strlen(base_path);
669 max_path_len = base_path_len +
670 sizeof(DEFAULT_SESSION_CONFIG_XSD_FILENAME) + 1;
671 xsd_path = zmalloc(max_path_len);
672 if (!xsd_path) {
673 goto end;
674 }
675
676 strncpy(xsd_path, base_path, max_path_len);
677 if (xsd_path[base_path_len - 1] != '/') {
678 xsd_path[base_path_len++] = '/';
679 }
680
681 strncpy(xsd_path + base_path_len, DEFAULT_SESSION_CONFIG_XSD_FILENAME,
682 max_path_len - base_path_len);
683 end:
684 return xsd_path;
685 }
686
687 static
688 int init_session_config_validation_ctx(
689 struct session_config_validation_ctx *ctx)
690 {
691 int ret;
692 char *xsd_path = get_session_config_xsd_path();
693
694 if (!xsd_path) {
695 ret = -LTTNG_ERR_NOMEM;
696 goto end;
697 }
698
699 ctx->parser_ctx = xmlSchemaNewParserCtxt(xsd_path);
700 if (!ctx->parser_ctx) {
701 ERR("XSD parser context creation failed");
702 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
703 goto end;
704 }
705 xmlSchemaSetParserErrors(ctx->parser_ctx, xml_error_handler,
706 xml_error_handler, NULL);
707
708 ctx->schema = xmlSchemaParse(ctx->parser_ctx);
709 if (!ctx->schema) {
710 ERR("XSD parsing failed");
711 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
712 goto end;
713 }
714
715 ctx->schema_validation_ctx = xmlSchemaNewValidCtxt(ctx->schema);
716 if (!ctx->schema_validation_ctx) {
717 ERR("XSD validation context creation failed");
718 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
719 goto end;
720 }
721
722 xmlSchemaSetValidErrors(ctx->schema_validation_ctx, xml_error_handler,
723 xml_error_handler, NULL);
724 ret = 0;
725
726 end:
727 if (ret) {
728 fini_session_config_validation_ctx(ctx);
729 }
730
731 free(xsd_path);
732 return ret;
733 }
734
735 static
736 int parse_uint(xmlChar *str, uint64_t *val)
737 {
738 int ret;
739 char *endptr;
740
741 if (!str || !val) {
742 ret = -1;
743 goto end;
744 }
745
746 *val = strtoull((const char *) str, &endptr, 10);
747 if (!endptr || *endptr) {
748 ret = -1;
749 } else {
750 ret = 0;
751 }
752
753 end:
754 return ret;
755 }
756
757 static
758 int parse_int(xmlChar *str, int64_t *val)
759 {
760 int ret;
761 char *endptr;
762
763 if (!str || !val) {
764 ret = -1;
765 goto end;
766 }
767
768 *val = strtoll((const char *) str, &endptr, 10);
769 if (!endptr || *endptr) {
770 ret = -1;
771 } else {
772 ret = 0;
773 }
774
775 end:
776 return ret;
777 }
778
779 static
780 int parse_bool(xmlChar *str, int *val)
781 {
782 int ret = 0;
783
784 if (!str || !val) {
785 ret = -1;
786 goto end;
787 }
788
789 if (!strcmp((const char *) str, config_xml_true)) {
790 *val = 1;
791 } else if (!strcmp((const char *) str, config_xml_false)) {
792 *val = 0;
793 } else {
794 WARN("Invalid boolean value encoutered (%s).",
795 (const char *) str);
796 ret = -1;
797 }
798 end:
799 return ret;
800 }
801
802 static
803 int get_domain_type(xmlChar *domain)
804 {
805 int ret;
806
807 if (!domain) {
808 goto error;
809 }
810
811 if (!strcmp((char *) domain, config_domain_type_kernel)) {
812 ret = LTTNG_DOMAIN_KERNEL;
813 } else if (!strcmp((char *) domain, config_domain_type_ust)) {
814 ret = LTTNG_DOMAIN_UST;
815 } else if (!strcmp((char *) domain, config_domain_type_jul)) {
816 ret = LTTNG_DOMAIN_JUL;
817 } else if (!strcmp((char *) domain, config_domain_type_log4j)) {
818 ret = LTTNG_DOMAIN_LOG4J;
819 } else if (!strcmp((char *) domain, config_domain_type_python)) {
820 ret = LTTNG_DOMAIN_PYTHON;
821 } else {
822 goto error;
823 }
824
825 return ret;
826 error:
827 return -1;
828 }
829
830 static
831 int get_buffer_type(xmlChar *buffer_type)
832 {
833 int ret;
834
835 if (!buffer_type) {
836 goto error;
837 }
838
839 if (!strcmp((char *) buffer_type, config_buffer_type_global)) {
840 ret = LTTNG_BUFFER_GLOBAL;
841 } else if (!strcmp((char *) buffer_type, config_buffer_type_per_uid)) {
842 ret = LTTNG_BUFFER_PER_UID;
843 } else if (!strcmp((char *) buffer_type, config_buffer_type_per_pid)) {
844 ret = LTTNG_BUFFER_PER_PID;
845 } else {
846 goto error;
847 }
848
849 return ret;
850 error:
851 return -1;
852 }
853
854 static
855 int get_overwrite_mode(xmlChar *overwrite_mode)
856 {
857 int ret;
858
859 if (!overwrite_mode) {
860 goto error;
861 }
862
863 if (!strcmp((char *) overwrite_mode, config_overwrite_mode_overwrite)) {
864 ret = 1;
865 } else if (!strcmp((char *) overwrite_mode,
866 config_overwrite_mode_discard)) {
867 ret = 0;
868 } else {
869 goto error;
870 }
871
872 return ret;
873 error:
874 return -1;
875 }
876
877 static
878 int get_output_type(xmlChar *output_type)
879 {
880 int ret;
881
882 if (!output_type) {
883 goto error;
884 }
885
886 if (!strcmp((char *) output_type, config_output_type_mmap)) {
887 ret = LTTNG_EVENT_MMAP;
888 } else if (!strcmp((char *) output_type, config_output_type_splice)) {
889 ret = LTTNG_EVENT_SPLICE;
890 } else {
891 goto error;
892 }
893
894 return ret;
895 error:
896 return -1;
897 }
898
899 static
900 int get_event_type(xmlChar *event_type)
901 {
902 int ret;
903
904 if (!event_type) {
905 goto error;
906 }
907
908 if (!strcmp((char *) event_type, config_event_type_all)) {
909 ret = LTTNG_EVENT_ALL;
910 } else if (!strcmp((char *) event_type, config_event_type_tracepoint)) {
911 ret = LTTNG_EVENT_TRACEPOINT;
912 } else if (!strcmp((char *) event_type, config_event_type_probe)) {
913 ret = LTTNG_EVENT_PROBE;
914 } else if (!strcmp((char *) event_type, config_event_type_function)) {
915 ret = LTTNG_EVENT_FUNCTION;
916 } else if (!strcmp((char *) event_type,
917 config_event_type_function_entry)) {
918 ret = LTTNG_EVENT_FUNCTION_ENTRY;
919 } else if (!strcmp((char *) event_type, config_event_type_noop)) {
920 ret = LTTNG_EVENT_NOOP;
921 } else if (!strcmp((char *) event_type, config_event_type_syscall)) {
922 ret = LTTNG_EVENT_SYSCALL;
923 } else {
924 goto error;
925 }
926
927 return ret;
928 error:
929 return -1;
930 }
931
932 static
933 int get_loglevel_type(xmlChar *loglevel_type)
934 {
935 int ret;
936
937 if (!loglevel_type) {
938 goto error;
939 }
940
941 if (!strcmp((char *) loglevel_type, config_loglevel_type_all)) {
942 ret = LTTNG_EVENT_LOGLEVEL_ALL;
943 } else if (!strcmp((char *) loglevel_type,
944 config_loglevel_type_range)) {
945 ret = LTTNG_EVENT_LOGLEVEL_RANGE;
946 } else if (!strcmp((char *) loglevel_type,
947 config_loglevel_type_single)) {
948 ret = LTTNG_EVENT_LOGLEVEL_SINGLE;
949 } else {
950 goto error;
951 }
952
953 return ret;
954 error:
955 return -1;
956 }
957
958 /*
959 * Return the context type or -1 on error.
960 */
961 static
962 int get_context_type(xmlChar *context_type)
963 {
964 int ret;
965
966 if (!context_type) {
967 goto error;
968 }
969
970 if (!strcmp((char *) context_type, config_event_context_pid)) {
971 ret = LTTNG_EVENT_CONTEXT_PID;
972 } else if (!strcmp((char *) context_type,
973 config_event_context_procname)) {
974 ret = LTTNG_EVENT_CONTEXT_PROCNAME;
975 } else if (!strcmp((char *) context_type,
976 config_event_context_prio)) {
977 ret = LTTNG_EVENT_CONTEXT_PRIO;
978 } else if (!strcmp((char *) context_type,
979 config_event_context_nice)) {
980 ret = LTTNG_EVENT_CONTEXT_NICE;
981 } else if (!strcmp((char *) context_type,
982 config_event_context_vpid)) {
983 ret = LTTNG_EVENT_CONTEXT_VPID;
984 } else if (!strcmp((char *) context_type,
985 config_event_context_tid)) {
986 ret = LTTNG_EVENT_CONTEXT_TID;
987 } else if (!strcmp((char *) context_type,
988 config_event_context_vtid)) {
989 ret = LTTNG_EVENT_CONTEXT_VTID;
990 } else if (!strcmp((char *) context_type,
991 config_event_context_ppid)) {
992 ret = LTTNG_EVENT_CONTEXT_PPID;
993 } else if (!strcmp((char *) context_type,
994 config_event_context_vppid)) {
995 ret = LTTNG_EVENT_CONTEXT_VPPID;
996 } else if (!strcmp((char *) context_type,
997 config_event_context_pthread_id)) {
998 ret = LTTNG_EVENT_CONTEXT_PTHREAD_ID;
999 } else if (!strcmp((char *) context_type,
1000 config_event_context_hostname)) {
1001 ret = LTTNG_EVENT_CONTEXT_HOSTNAME;
1002 } else if (!strcmp((char *) context_type,
1003 config_event_context_ip)) {
1004 ret = LTTNG_EVENT_CONTEXT_IP;
1005 } else if (!strcmp((char *) context_type,
1006 config_event_context_interruptible)) {
1007 ret = LTTNG_EVENT_CONTEXT_INTERRUPTIBLE;
1008 } else if (!strcmp((char *) context_type,
1009 config_event_context_preemptible)) {
1010 ret = LTTNG_EVENT_CONTEXT_PREEMPTIBLE;
1011 } else if (!strcmp((char *) context_type,
1012 config_event_context_need_reschedule)) {
1013 ret = LTTNG_EVENT_CONTEXT_NEED_RESCHEDULE;
1014 } else if (!strcmp((char *) context_type,
1015 config_event_context_migratable)) {
1016 ret = LTTNG_EVENT_CONTEXT_MIGRATABLE;
1017 } else {
1018 goto error;
1019 }
1020
1021 return ret;
1022 error:
1023 return -1;
1024 }
1025
1026 static
1027 int init_domain(xmlNodePtr domain_node, struct lttng_domain *domain)
1028 {
1029 int ret;
1030 xmlNodePtr node;
1031
1032 for (node = xmlFirstElementChild(domain_node); node;
1033 node = xmlNextElementSibling(node)) {
1034 if (!strcmp((const char *) node->name, config_element_type)) {
1035 /* domain type */
1036 xmlChar *node_content = xmlNodeGetContent(node);
1037 if (!node_content) {
1038 ret = -LTTNG_ERR_NOMEM;
1039 goto end;
1040 }
1041
1042 ret = get_domain_type(node_content);
1043 free(node_content);
1044 if (ret < 0) {
1045 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1046 goto end;
1047 }
1048
1049 domain->type = ret;
1050 } else if (!strcmp((const char *) node->name,
1051 config_element_buffer_type)) {
1052 /* buffer type */
1053 xmlChar *node_content = xmlNodeGetContent(node);
1054 if (!node_content) {
1055 ret = -LTTNG_ERR_NOMEM;
1056 goto end;
1057 }
1058
1059 ret = get_buffer_type(node_content);
1060 free(node_content);
1061 if (ret < 0) {
1062 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1063 goto end;
1064 }
1065
1066 domain->buf_type = ret;
1067 }
1068 }
1069 ret = 0;
1070 end:
1071 return ret;
1072 }
1073
1074 static
1075 int get_net_output_uris(xmlNodePtr net_output_node, char **control_uri,
1076 char **data_uri)
1077 {
1078 xmlNodePtr node;
1079
1080 for (node = xmlFirstElementChild(net_output_node); node;
1081 node = xmlNextElementSibling(node)) {
1082 if (!strcmp((const char *) node->name, config_element_control_uri)) {
1083 /* control_uri */
1084 *control_uri = (char *) xmlNodeGetContent(node);
1085 if (!*control_uri) {
1086 break;
1087 }
1088 } else {
1089 /* data_uri */
1090 *data_uri = (char *) xmlNodeGetContent(node);
1091 if (!*data_uri) {
1092 break;
1093 }
1094 }
1095 }
1096
1097 return *control_uri || *data_uri ? 0 : -LTTNG_ERR_LOAD_INVALID_CONFIG;
1098 }
1099
1100 static
1101 int process_consumer_output(xmlNodePtr consumer_output_node,
1102 struct consumer_output *output)
1103 {
1104 int ret;
1105 xmlNodePtr node;
1106
1107 assert(output);
1108
1109 for (node = xmlFirstElementChild(consumer_output_node); node;
1110 node = xmlNextElementSibling(node)) {
1111 if (!strcmp((const char *) node->name, config_element_enabled)) {
1112 xmlChar *enabled_str = xmlNodeGetContent(node);
1113
1114 /* enabled */
1115 if (!enabled_str) {
1116 ret = -LTTNG_ERR_NOMEM;
1117 goto end;
1118 }
1119
1120 ret = parse_bool(enabled_str, &output->enabled);
1121 free(enabled_str);
1122 if (ret) {
1123 goto end;
1124 }
1125 } else {
1126 xmlNodePtr output_type_node;
1127
1128 /* destination */
1129 output_type_node = xmlFirstElementChild(node);
1130 if (!output_type_node) {
1131 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1132 goto end;
1133 }
1134
1135 if (!strcmp((const char *) output_type_node->name,
1136 config_element_path)) {
1137 /* path */
1138 output->path = (char *) xmlNodeGetContent(output_type_node);
1139 if (!output->path) {
1140 ret = -LTTNG_ERR_NOMEM;
1141 goto end;
1142 }
1143 } else {
1144 /* net_output */
1145 ret = get_net_output_uris(output_type_node,
1146 &output->control_uri, &output->data_uri);
1147 if (ret) {
1148 goto end;
1149 }
1150 }
1151 }
1152 }
1153 ret = 0;
1154
1155 end:
1156 if (ret) {
1157 free(output->path);
1158 free(output->control_uri);
1159 free(output->data_uri);
1160 memset(output, 0, sizeof(struct consumer_output));
1161 }
1162 return ret;
1163 }
1164
1165 static
1166 int create_session_net_output(const char *name, const char *control_uri,
1167 const char *data_uri)
1168 {
1169 int ret;
1170 struct lttng_handle *handle;
1171 const char *uri = NULL;
1172
1173 assert(name);
1174
1175 handle = lttng_create_handle(name, NULL);
1176 if (!handle) {
1177 ret = -LTTNG_ERR_NOMEM;
1178 goto end;
1179 }
1180
1181 if (!control_uri || !data_uri) {
1182 uri = control_uri ? control_uri : data_uri;
1183 control_uri = uri;
1184 data_uri = uri;
1185 }
1186
1187 ret = lttng_set_consumer_url(handle, control_uri, data_uri);
1188 lttng_destroy_handle(handle);
1189 end:
1190 return ret;
1191 }
1192
1193 static
1194 int create_snapshot_session(const char *session_name, xmlNodePtr output_node)
1195 {
1196 int ret;
1197 xmlNodePtr node = NULL;
1198 xmlNodePtr snapshot_output_list_node;
1199 xmlNodePtr snapshot_output_node;
1200
1201 assert(session_name);
1202
1203 ret = lttng_create_session_snapshot(session_name, NULL);
1204 if (ret) {
1205 goto end;
1206 }
1207
1208 if (!output_node) {
1209 goto end;
1210 }
1211
1212 snapshot_output_list_node = xmlFirstElementChild(output_node);
1213
1214 /* Parse and create snapshot outputs */
1215
1216 for (snapshot_output_node =
1217 xmlFirstElementChild(snapshot_output_list_node);
1218 snapshot_output_node; snapshot_output_node =
1219 xmlNextElementSibling(snapshot_output_node)) {
1220 char *name = NULL;
1221 uint64_t max_size = DEFAULT_SNAPSHOT_MAX_SIZE;
1222 struct consumer_output output = { 0 };
1223 struct lttng_snapshot_output *snapshot_output = NULL;
1224
1225 for (node = xmlFirstElementChild(snapshot_output_node); node;
1226 node = xmlNextElementSibling(node)) {
1227 if (!strcmp((const char *) node->name,
1228 config_element_name)) {
1229 /* name */
1230 name = (char *) xmlNodeGetContent(node);
1231 if (!name) {
1232 ret = -LTTNG_ERR_NOMEM;
1233 goto error_snapshot_output;
1234 }
1235 } else if (!strcmp((const char *) node->name,
1236 config_element_max_size)) {
1237 xmlChar *content = xmlNodeGetContent(node);
1238
1239 /* max_size */
1240 if (!content) {
1241 ret = -LTTNG_ERR_NOMEM;
1242 goto error_snapshot_output;
1243 }
1244 ret = parse_uint(content, &max_size);
1245 free(content);
1246 if (ret) {
1247 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1248 goto error_snapshot_output;
1249 }
1250 } else {
1251 /* consumer_output */
1252 ret = process_consumer_output(node, &output);
1253 if (ret) {
1254 goto error_snapshot_output;
1255 }
1256 }
1257 }
1258
1259 snapshot_output = lttng_snapshot_output_create();
1260 if (!snapshot_output) {
1261 ret = -LTTNG_ERR_NOMEM;
1262 goto error_snapshot_output;
1263 }
1264
1265 if (!name) {
1266 /* Generate a default name */
1267 int pret;
1268 pret = asprintf(&name, DEFAULT_SNAPSHOT_NAME "-%" PRIu32,
1269 lttng_snapshot_output_get_id(snapshot_output));
1270 if (pret < 0) {
1271 name = NULL;
1272 PERROR("snprintf output name");
1273 goto error_snapshot_output;
1274 }
1275 }
1276
1277 ret = lttng_snapshot_output_set_name(name, snapshot_output);
1278 if (ret) {
1279 goto error_snapshot_output;
1280 }
1281
1282 ret = lttng_snapshot_output_set_size(max_size, snapshot_output);
1283 if (ret) {
1284 goto error_snapshot_output;
1285 }
1286
1287 if (output.path) {
1288 ret = lttng_snapshot_output_set_ctrl_url(output.path,
1289 snapshot_output);
1290 if (ret) {
1291 goto error_snapshot_output;
1292 }
1293 } else {
1294 if (output.control_uri) {
1295 ret = lttng_snapshot_output_set_ctrl_url(output.control_uri,
1296 snapshot_output);
1297 if (ret) {
1298 goto error_snapshot_output;
1299 }
1300 }
1301
1302 if (output.data_uri) {
1303 ret = lttng_snapshot_output_set_data_url(output.data_uri,
1304 snapshot_output);
1305 if (ret) {
1306 goto error_snapshot_output;
1307 }
1308 }
1309 }
1310
1311 ret = lttng_snapshot_add_output(session_name, snapshot_output);
1312 error_snapshot_output:
1313 free(name);
1314 free(output.path);
1315 free(output.control_uri);
1316 free(output.data_uri);
1317 lttng_snapshot_output_destroy(snapshot_output);
1318 if (ret) {
1319 goto end;
1320 }
1321 }
1322 end:
1323 return ret;
1324 }
1325
1326 static
1327 int create_session(const char *name,
1328 struct lttng_domain *kernel_domain,
1329 struct lttng_domain *ust_domain,
1330 struct lttng_domain *jul_domain,
1331 struct lttng_domain *log4j_domain,
1332 xmlNodePtr output_node,
1333 uint64_t live_timer_interval)
1334 {
1335 int ret;
1336 struct consumer_output output = { 0 };
1337 xmlNodePtr consumer_output_node;
1338
1339 assert(name);
1340
1341 if (output_node) {
1342 consumer_output_node = xmlFirstElementChild(output_node);
1343 if (!consumer_output_node) {
1344 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1345 goto end;
1346 }
1347
1348 if (strcmp((const char *) consumer_output_node->name,
1349 config_element_consumer_output)) {
1350 WARN("Invalid output type, expected %s node",
1351 config_element_consumer_output);
1352 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1353 goto end;
1354 }
1355
1356 ret = process_consumer_output(consumer_output_node, &output);
1357 if (ret) {
1358 goto end;
1359 }
1360 }
1361
1362 if (live_timer_interval != UINT64_MAX &&
1363 !output.control_uri && !output.data_uri) {
1364 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1365 goto end;
1366 }
1367
1368 if (output.control_uri || output.data_uri) {
1369 /* network destination */
1370 if (live_timer_interval && live_timer_interval != UINT64_MAX) {
1371 /*
1372 * URLs are provided for sure since the test above make sure that
1373 * with a live timer the data and control URIs are provided. So,
1374 * NULL is passed here and will be set right after.
1375 */
1376 ret = lttng_create_session_live(name, NULL, live_timer_interval);
1377 } else {
1378 ret = lttng_create_session(name, NULL);
1379 }
1380 if (ret) {
1381 goto end;
1382 }
1383
1384 ret = create_session_net_output(name, output.control_uri,
1385 output.data_uri);
1386 if (ret) {
1387 goto end;
1388 }
1389
1390 } else {
1391 /* either local output or no output */
1392 ret = lttng_create_session(name, output.path);
1393 if (ret) {
1394 goto end;
1395 }
1396 }
1397 end:
1398 free(output.path);
1399 free(output.control_uri);
1400 free(output.data_uri);
1401 return ret;
1402 }
1403 static
1404 int process_probe_attribute_node(xmlNodePtr probe_attribute_node,
1405 struct lttng_event_probe_attr *attr)
1406 {
1407 int ret;
1408
1409 assert(probe_attribute_node);
1410 assert(attr);
1411
1412 if (!strcmp((const char *) probe_attribute_node->name,
1413 config_element_address)) {
1414 xmlChar *content;
1415 uint64_t addr = 0;
1416
1417 /* addr */
1418 content = xmlNodeGetContent(probe_attribute_node);
1419 if (!content) {
1420 ret = -LTTNG_ERR_NOMEM;
1421 goto end;
1422 }
1423
1424 ret = parse_uint(content, &addr);
1425 free(content);
1426 if (ret) {
1427 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1428 goto end;
1429 }
1430
1431 attr->addr = addr;
1432 } else if (!strcmp((const char *) probe_attribute_node->name,
1433 config_element_offset)) {
1434 xmlChar *content;
1435 uint64_t offset = 0;
1436
1437 /* offset */
1438 content = xmlNodeGetContent(probe_attribute_node);
1439 if (!content) {
1440 ret = -LTTNG_ERR_NOMEM;
1441 goto end;
1442 }
1443
1444 ret = parse_uint(content, &offset);
1445 free(content);
1446 if (ret) {
1447 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1448 goto end;
1449 }
1450
1451 attr->offset = offset;
1452 } else if (!strcmp((const char *) probe_attribute_node->name,
1453 config_element_symbol_name)) {
1454 xmlChar *content;
1455 size_t name_len;
1456
1457 /* symbol_name */
1458 content = xmlNodeGetContent(probe_attribute_node);
1459 if (!content) {
1460 ret = -LTTNG_ERR_NOMEM;
1461 goto end;
1462 }
1463
1464 name_len = strlen((char *) content);
1465 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
1466 WARN("symbol_name too long.");
1467 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1468 free(content);
1469 goto end;
1470 }
1471
1472 strncpy(attr->symbol_name, (const char *) content, name_len);
1473 free(content);
1474 }
1475 ret = 0;
1476 end:
1477 return ret;
1478 }
1479
1480 static
1481 int process_event_node(xmlNodePtr event_node, struct lttng_handle *handle,
1482 const char *channel_name, const enum process_event_node_phase phase)
1483 {
1484 int ret = 0, i;
1485 xmlNodePtr node;
1486 struct lttng_event event;
1487 char **exclusions = NULL;
1488 unsigned long exclusion_count = 0;
1489 char *filter_expression = NULL;
1490
1491 assert(event_node);
1492 assert(handle);
1493 assert(channel_name);
1494
1495 memset(&event, 0, sizeof(event));
1496
1497 /* Initialize default log level which varies by domain */
1498 switch (handle->domain.type)
1499 {
1500 case LTTNG_DOMAIN_JUL:
1501 event.loglevel = LTTNG_LOGLEVEL_JUL_ALL;
1502 break;
1503 case LTTNG_DOMAIN_LOG4J:
1504 event.loglevel = LTTNG_LOGLEVEL_LOG4J_ALL;
1505 break;
1506 case LTTNG_DOMAIN_PYTHON:
1507 event.loglevel = LTTNG_LOGLEVEL_PYTHON_DEBUG;
1508 break;
1509 case LTTNG_DOMAIN_UST:
1510 case LTTNG_DOMAIN_KERNEL:
1511 event.loglevel = LTTNG_LOGLEVEL_DEBUG;
1512 break;
1513 default:
1514 assert(0);
1515 }
1516
1517 for (node = xmlFirstElementChild(event_node); node;
1518 node = xmlNextElementSibling(node)) {
1519 if (!strcmp((const char *) node->name, config_element_name)) {
1520 xmlChar *content;
1521 size_t name_len;
1522
1523 /* name */
1524 content = xmlNodeGetContent(node);
1525 if (!content) {
1526 ret = -LTTNG_ERR_NOMEM;
1527 goto end;
1528 }
1529
1530 name_len = strlen((char *) content);
1531 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
1532 WARN("Channel name too long.");
1533 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1534 free(content);
1535 goto end;
1536 }
1537
1538 strncpy(event.name, (const char *) content, name_len);
1539 free(content);
1540 } else if (!strcmp((const char *) node->name,
1541 config_element_enabled)) {
1542 xmlChar *content = xmlNodeGetContent(node);
1543
1544 /* enabled */
1545 if (!content) {
1546 ret = -LTTNG_ERR_NOMEM;
1547 goto end;
1548 }
1549
1550 ret = parse_bool(content, &event.enabled);
1551 free(content);
1552 if (ret) {
1553 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1554 goto end;
1555 }
1556 } else if (!strcmp((const char *) node->name,
1557 config_element_type)) {
1558 xmlChar *content = xmlNodeGetContent(node);
1559
1560 /* type */
1561 if (!content) {
1562 ret = -LTTNG_ERR_NOMEM;
1563 goto end;
1564 }
1565
1566 ret = get_event_type(content);
1567 free(content);
1568 if (ret < 0) {
1569 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1570 goto end;
1571 }
1572
1573 event.type = ret;
1574 } else if (!strcmp((const char *) node->name,
1575 config_element_loglevel_type)) {
1576 xmlChar *content = xmlNodeGetContent(node);
1577
1578 /* loglevel_type */
1579 if (!content) {
1580 ret = -LTTNG_ERR_NOMEM;
1581 goto end;
1582 }
1583
1584 ret = get_loglevel_type(content);
1585 free(content);
1586 if (ret < 0) {
1587 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1588 goto end;
1589 }
1590
1591 event.loglevel_type = ret;
1592 } else if (!strcmp((const char *) node->name,
1593 config_element_loglevel)) {
1594 xmlChar *content;
1595 int64_t loglevel = 0;
1596
1597 /* loglevel */
1598 content = xmlNodeGetContent(node);
1599 if (!content) {
1600 ret = -LTTNG_ERR_NOMEM;
1601 goto end;
1602 }
1603
1604 ret = parse_int(content, &loglevel);
1605 free(content);
1606 if (ret) {
1607 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1608 goto end;
1609 }
1610
1611 if (loglevel > INT_MAX || loglevel < INT_MIN) {
1612 WARN("loglevel out of range.");
1613 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1614 goto end;
1615 }
1616
1617 event.loglevel = loglevel;
1618 } else if (!strcmp((const char *) node->name,
1619 config_element_filter)) {
1620 xmlChar *content =
1621 xmlNodeGetContent(node);
1622
1623 /* filter */
1624 if (!content) {
1625 ret = -LTTNG_ERR_NOMEM;
1626 goto end;
1627 }
1628
1629 free(filter_expression);
1630 filter_expression = strdup((char *) content);
1631 free(content);
1632 if (!filter_expression) {
1633 ret = -LTTNG_ERR_NOMEM;
1634 goto end;
1635 }
1636 } else if (!strcmp((const char *) node->name,
1637 config_element_exclusions)) {
1638 xmlNodePtr exclusion_node;
1639 int exclusion_index = 0;
1640
1641 /* exclusions */
1642 if (exclusions) {
1643 /*
1644 * Exclusions has already been initialized,
1645 * invalid file.
1646 */
1647 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1648 goto end;
1649 }
1650
1651 exclusion_count = xmlChildElementCount(node);
1652 if (!exclusion_count) {
1653 continue;
1654 }
1655
1656 exclusions = zmalloc(exclusion_count * sizeof(char *));
1657 if (!exclusions) {
1658 exclusion_count = 0;
1659 ret = -LTTNG_ERR_NOMEM;
1660 goto end;
1661 }
1662
1663 for (exclusion_node = xmlFirstElementChild(node); exclusion_node;
1664 exclusion_node = xmlNextElementSibling(exclusion_node)) {
1665 xmlChar *content =
1666 xmlNodeGetContent(exclusion_node);
1667
1668 if (!content) {
1669 ret = -LTTNG_ERR_NOMEM;
1670 goto end;
1671 }
1672
1673 exclusions[exclusion_index] = strdup((const char *) content);
1674 free(content);
1675 if (!exclusions[exclusion_index]) {
1676 ret = -LTTNG_ERR_NOMEM;
1677 goto end;
1678 }
1679 exclusion_index++;
1680 }
1681
1682 event.exclusion = 1;
1683 } else if (!strcmp((const char *) node->name,
1684 config_element_attributes)) {
1685 xmlNodePtr attribute_node = xmlFirstElementChild(node);
1686
1687 /* attributes */
1688 if (!attribute_node) {
1689 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1690 goto end;
1691 }
1692
1693 if (!strcmp((const char *) node->name,
1694 config_element_probe_attributes)) {
1695 xmlNodePtr probe_attribute_node;
1696
1697 /* probe_attributes */
1698 for (probe_attribute_node =
1699 xmlFirstElementChild(attribute_node); probe_attribute_node;
1700 probe_attribute_node = xmlNextElementSibling(
1701 probe_attribute_node)) {
1702
1703 ret = process_probe_attribute_node(probe_attribute_node,
1704 &event.attr.probe);
1705 if (ret) {
1706 goto end;
1707 }
1708 }
1709 } else {
1710 size_t sym_len;
1711 xmlChar *content;
1712 xmlNodePtr symbol_node = xmlFirstElementChild(attribute_node);
1713
1714 /* function_attributes */
1715 content = xmlNodeGetContent(symbol_node);
1716 if (!content) {
1717 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1718 goto end;
1719 }
1720
1721 sym_len = strlen((char *) content);
1722 if (sym_len >= LTTNG_SYMBOL_NAME_LEN) {
1723 WARN("Function name too long.");
1724 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1725 free(content);
1726 goto end;
1727 }
1728
1729 strncpy(event.attr.ftrace.symbol_name, (char *) content,
1730 sym_len);
1731 free(content);
1732 }
1733 }
1734 }
1735
1736 if ((event.enabled && phase == ENABLE) || phase == CREATION) {
1737 ret = lttng_enable_event_with_exclusions(handle, &event, channel_name,
1738 filter_expression, exclusion_count, exclusions);
1739 if (ret < 0) {
1740 WARN("Enabling event (name:%s) on load failed.", event.name);
1741 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1742 goto end;
1743 }
1744 }
1745 end:
1746 for (i = 0; i < exclusion_count; i++) {
1747 free(exclusions[i]);
1748 }
1749
1750 free(exclusions);
1751 free(filter_expression);
1752 return ret;
1753 }
1754
1755 static
1756 int process_events_node(xmlNodePtr events_node, struct lttng_handle *handle,
1757 const char *channel_name)
1758 {
1759 int ret = 0;
1760 struct lttng_event event;
1761 xmlNodePtr node;
1762
1763 assert(events_node);
1764 assert(handle);
1765 assert(channel_name);
1766
1767 for (node = xmlFirstElementChild(events_node); node;
1768 node = xmlNextElementSibling(node)) {
1769 ret = process_event_node(node, handle, channel_name, CREATION);
1770 if (ret) {
1771 goto end;
1772 }
1773 }
1774
1775 /*
1776 * Disable all events to enable only the necessary events.
1777 * Limitations regarding lttng_disable_events and tuple descriptor
1778 * force this approach.
1779 */
1780 memset(&event, 0, sizeof(event));
1781 event.loglevel = -1;
1782 event.type = LTTNG_EVENT_ALL;
1783 ret = lttng_disable_event_ext(handle, &event, channel_name, NULL);
1784 if (ret) {
1785 goto end;
1786 }
1787
1788 for (node = xmlFirstElementChild(events_node); node;
1789 node = xmlNextElementSibling(node)) {
1790 ret = process_event_node(node, handle, channel_name, ENABLE);
1791 if (ret) {
1792 goto end;
1793 }
1794 }
1795
1796 end:
1797 return ret;
1798 }
1799
1800 static
1801 int process_channel_attr_node(xmlNodePtr attr_node, bool snapshot_mode,
1802 enum lttng_domain_type domain, struct lttng_channel *channel,
1803 xmlNodePtr *contexts_node, xmlNodePtr *events_node)
1804 {
1805 int ret;
1806 bool name_set = false;
1807 bool output_type_set = false;
1808
1809 assert(attr_node);
1810 assert(channel);
1811 assert(contexts_node);
1812 assert(events_node);
1813
1814 if (!strcmp((const char *) attr_node->name, config_element_name)) {
1815 xmlChar *content;
1816 size_t name_len;
1817
1818 /* name */
1819 content = xmlNodeGetContent(attr_node);
1820 if (!content) {
1821 ret = -LTTNG_ERR_NOMEM;
1822 goto end;
1823 }
1824
1825 name_len = strlen((char *) content);
1826 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
1827 WARN("Channel name too long.");
1828 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1829 free(content);
1830 goto end;
1831 }
1832
1833 strncpy(channel->name, (const char *) content, name_len);
1834 free(content);
1835 name_set = true;
1836 } else if (!strcmp((const char *) attr_node->name,
1837 config_element_enabled)) {
1838 xmlChar *content;
1839 int enabled;
1840
1841 /* enabled */
1842 content = xmlNodeGetContent(attr_node);
1843 if (!content) {
1844 ret = -LTTNG_ERR_NOMEM;
1845 goto end;
1846 }
1847
1848 ret = parse_bool(content, &enabled);
1849 free(content);
1850 if (ret) {
1851 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1852 goto end;
1853 }
1854
1855 channel->enabled = enabled;
1856 } else if (!strcmp((const char *) attr_node->name,
1857 config_element_overwrite_mode)) {
1858 xmlChar *content;
1859
1860 /* overwrite_mode */
1861 content = xmlNodeGetContent(attr_node);
1862 if (!content) {
1863 ret = -LTTNG_ERR_NOMEM;
1864 goto end;
1865 }
1866
1867 ret = get_overwrite_mode(content);
1868 free(content);
1869 if (ret < 0) {
1870 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1871 goto end;
1872 }
1873
1874 channel->attr.overwrite = ret;
1875 } else if (!strcmp((const char *) attr_node->name,
1876 config_element_subbuf_size)) {
1877 xmlChar *content;
1878
1879 /* subbuffer_size */
1880 content = xmlNodeGetContent(attr_node);
1881 if (!content) {
1882 ret = -LTTNG_ERR_NOMEM;
1883 goto end;
1884 }
1885
1886 ret = parse_uint(content, &channel->attr.subbuf_size);
1887 free(content);
1888 if (ret) {
1889 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1890 goto end;
1891 }
1892 } else if (!strcmp((const char *) attr_node->name,
1893 config_element_num_subbuf)) {
1894 xmlChar *content;
1895
1896 /* subbuffer_count */
1897 content = xmlNodeGetContent(attr_node);
1898 if (!content) {
1899 ret = -LTTNG_ERR_NOMEM;
1900 goto end;
1901 }
1902
1903 ret = parse_uint(content, &channel->attr.num_subbuf);
1904 free(content);
1905 if (ret) {
1906 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1907 goto end;
1908 }
1909 } else if (!strcmp((const char *) attr_node->name,
1910 config_element_switch_timer_interval)) {
1911 xmlChar *content;
1912 uint64_t switch_timer_interval = 0;
1913
1914 /* switch_timer_interval */
1915 content = xmlNodeGetContent(attr_node);
1916 if (!content) {
1917 ret = -LTTNG_ERR_NOMEM;
1918 goto end;
1919 }
1920
1921 ret = parse_uint(content, &switch_timer_interval);
1922 free(content);
1923 if (ret) {
1924 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1925 goto end;
1926 }
1927
1928 if (switch_timer_interval > UINT_MAX) {
1929 WARN("switch_timer_interval out of range.");
1930 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1931 goto end;
1932 }
1933
1934 channel->attr.switch_timer_interval =
1935 switch_timer_interval;
1936 } else if (!strcmp((const char *) attr_node->name,
1937 config_element_read_timer_interval)) {
1938 xmlChar *content;
1939 uint64_t read_timer_interval = 0;
1940
1941 /* read_timer_interval */
1942 content = xmlNodeGetContent(attr_node);
1943 if (!content) {
1944 ret = -LTTNG_ERR_NOMEM;
1945 goto end;
1946 }
1947
1948 ret = parse_uint(content, &read_timer_interval);
1949 free(content);
1950 if (ret) {
1951 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1952 goto end;
1953 }
1954
1955 if (read_timer_interval > UINT_MAX) {
1956 WARN("read_timer_interval out of range.");
1957 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1958 goto end;
1959 }
1960
1961 channel->attr.read_timer_interval =
1962 read_timer_interval;
1963 } else if (!strcmp((const char *) attr_node->name,
1964 config_element_output_type)) {
1965 xmlChar *content;
1966
1967 /* output_type */
1968 content = xmlNodeGetContent(attr_node);
1969 if (!content) {
1970 ret = -LTTNG_ERR_NOMEM;
1971 goto end;
1972 }
1973
1974 ret = get_output_type(content);
1975 free(content);
1976 if (ret < 0) {
1977 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1978 goto end;
1979 }
1980
1981 channel->attr.output = ret;
1982 output_type_set = true;
1983 } else if (!strcmp((const char *) attr_node->name,
1984 config_element_tracefile_size)) {
1985 xmlChar *content;
1986
1987 /* tracefile_size */
1988 content = xmlNodeGetContent(attr_node);
1989 if (!content) {
1990 ret = -LTTNG_ERR_NOMEM;
1991 goto end;
1992 }
1993
1994 ret = parse_uint(content, &channel->attr.tracefile_size);
1995 free(content);
1996 if (ret) {
1997 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1998 goto end;
1999 }
2000 } else if (!strcmp((const char *) attr_node->name,
2001 config_element_tracefile_count)) {
2002 xmlChar *content;
2003
2004 /* tracefile_count */
2005 content = xmlNodeGetContent(attr_node);
2006 if (!content) {
2007 ret = -LTTNG_ERR_NOMEM;
2008 goto end;
2009 }
2010
2011 ret = parse_uint(content, &channel->attr.tracefile_count);
2012 free(content);
2013 if (ret) {
2014 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2015 goto end;
2016 }
2017 } else if (!strcmp((const char *) attr_node->name,
2018 config_element_live_timer_interval)) {
2019 xmlChar *content;
2020 uint64_t live_timer_interval = 0;
2021
2022 /* live_timer_interval */
2023 content = xmlNodeGetContent(attr_node);
2024 if (!content) {
2025 ret = -LTTNG_ERR_NOMEM;
2026 goto end;
2027 }
2028
2029 ret = parse_uint(content, &live_timer_interval);
2030 free(content);
2031 if (ret) {
2032 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2033 goto end;
2034 }
2035
2036 if (live_timer_interval > UINT_MAX) {
2037 WARN("live_timer_interval out of range.");
2038 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2039 goto end;
2040 }
2041
2042 channel->attr.live_timer_interval =
2043 live_timer_interval;
2044 } else if (!strcmp((const char *) attr_node->name,
2045 config_element_events)) {
2046 /* events */
2047 *events_node = attr_node;
2048 } else {
2049 /* contexts */
2050 *contexts_node = attr_node;
2051 }
2052
2053 if (!name_set) {
2054 ERR("Encountered a channel with no name attribute.");
2055 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2056 goto end;
2057 }
2058
2059 if (!output_type_set) {
2060 /* Set default output type associated with the domain. */
2061 channel->attr.output =
2062 (domain == LTTNG_DOMAIN_KERNEL && !snapshot_mode) ?
2063 LTTNG_EVENT_SPLICE : LTTNG_EVENT_MMAP;
2064 }
2065 ret = 0;
2066 end:
2067 return ret;
2068 }
2069
2070 static
2071 int process_context_node(xmlNodePtr context_node,
2072 struct lttng_handle *handle, const char *channel_name)
2073 {
2074 int ret;
2075 struct lttng_event_context context;
2076 xmlNodePtr context_child_node = xmlFirstElementChild(context_node);
2077
2078 assert(handle);
2079 assert(channel_name);
2080
2081 if (!context_child_node) {
2082 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2083 goto end;
2084 }
2085
2086 memset(&context, 0, sizeof(context));
2087
2088 if (!strcmp((const char *) context_child_node->name,
2089 config_element_type)) {
2090 /* type */
2091 xmlChar *content = xmlNodeGetContent(context_child_node);
2092
2093 if (!content) {
2094 ret = -LTTNG_ERR_NOMEM;
2095 goto end;
2096 }
2097
2098 ret = get_context_type(content);
2099 free(content);
2100 if (ret < 0) {
2101 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2102 goto end;
2103 }
2104
2105 context.ctx = ret;
2106 } else if (!strcmp((const char *) context_child_node->name,
2107 config_element_context_perf)) {
2108 /* perf */
2109 xmlNodePtr perf_attr_node;
2110
2111 context.ctx = handle->domain.type == LTTNG_DOMAIN_KERNEL ?
2112 LTTNG_EVENT_CONTEXT_PERF_CPU_COUNTER :
2113 LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER;
2114 for (perf_attr_node = xmlFirstElementChild(context_child_node);
2115 perf_attr_node; perf_attr_node =
2116 xmlNextElementSibling(perf_attr_node)) {
2117 if (!strcmp((const char *) perf_attr_node->name,
2118 config_element_type)) {
2119 xmlChar *content;
2120 uint64_t type = 0;
2121
2122 /* type */
2123 content = xmlNodeGetContent(perf_attr_node);
2124 if (!content) {
2125 ret = -LTTNG_ERR_NOMEM;
2126 goto end;
2127 }
2128
2129 ret = parse_uint(content, &type);
2130 free(content);
2131 if (ret) {
2132 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2133 goto end;
2134 }
2135
2136 if (type > UINT32_MAX) {
2137 WARN("perf context type out of range.");
2138 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2139 goto end;
2140 }
2141
2142 context.u.perf_counter.type = type;
2143 } else if (!strcmp((const char *) perf_attr_node->name,
2144 config_element_config)) {
2145 xmlChar *content;
2146 uint64_t config = 0;
2147
2148 /* config */
2149 content = xmlNodeGetContent(perf_attr_node);
2150 if (!content) {
2151 ret = -LTTNG_ERR_NOMEM;
2152 goto end;
2153 }
2154
2155 ret = parse_uint(content, &config);
2156 free(content);
2157 if (ret) {
2158 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2159 goto end;
2160 }
2161
2162 context.u.perf_counter.config = config;
2163 } else if (!strcmp((const char *) perf_attr_node->name,
2164 config_element_name)) {
2165 xmlChar *content;
2166 size_t name_len;
2167
2168 /* name */
2169 content = xmlNodeGetContent(perf_attr_node);
2170 if (!content) {
2171 ret = -LTTNG_ERR_NOMEM;
2172 goto end;
2173 }
2174
2175 name_len = strlen((char *) content);
2176 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
2177 WARN("perf context name too long.");
2178 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2179 free(content);
2180 goto end;
2181 }
2182
2183 strncpy(context.u.perf_counter.name, (const char *) content,
2184 name_len);
2185 free(content);
2186 }
2187 }
2188 } else if (!strcmp((const char *) context_child_node->name,
2189 config_element_context_app)) {
2190 /* application context */
2191 xmlNodePtr app_ctx_node;
2192
2193 context.ctx = LTTNG_EVENT_CONTEXT_APP_CONTEXT;
2194 for (app_ctx_node = xmlFirstElementChild(context_child_node);
2195 app_ctx_node; app_ctx_node =
2196 xmlNextElementSibling(app_ctx_node)) {
2197 xmlChar *content;
2198 char **target = strcmp(
2199 (const char *) app_ctx_node->name,
2200 config_element_context_app_provider_name) == 0 ?
2201 &context.u.app_ctx.provider_name :
2202 &context.u.app_ctx.ctx_name;
2203
2204 content = xmlNodeGetContent(app_ctx_node);
2205 if (!content) {
2206 ret = -LTTNG_ERR_NOMEM;
2207 goto end;
2208 }
2209
2210 *target = (char *) content;
2211 }
2212 } else {
2213 /* Unrecognized context type */
2214 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2215 goto end;
2216 }
2217
2218 ret = lttng_add_context(handle, &context, NULL, channel_name);
2219 if (context.ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
2220 free(context.u.app_ctx.provider_name);
2221 free(context.u.app_ctx.ctx_name);
2222 }
2223 end:
2224 return ret;
2225 }
2226
2227 static
2228 int process_contexts_node(xmlNodePtr contexts_node,
2229 struct lttng_handle *handle, const char *channel_name)
2230 {
2231 int ret = 0;
2232 xmlNodePtr context_node;
2233
2234 for (context_node = xmlFirstElementChild(contexts_node); context_node;
2235 context_node = xmlNextElementSibling(context_node)) {
2236 ret = process_context_node(context_node, handle, channel_name);
2237 if (ret) {
2238 goto end;
2239 }
2240 }
2241 end:
2242 return ret;
2243 }
2244
2245 static
2246 int process_pid_tracker_node(xmlNodePtr pid_tracker_node,
2247 struct lttng_handle *handle)
2248 {
2249 int ret = 0, child;
2250 xmlNodePtr targets_node = NULL;
2251 xmlNodePtr node;
2252
2253 assert(handle);
2254 assert(pid_tracker_node);
2255 /* get the targets node */
2256 for (node = xmlFirstElementChild(pid_tracker_node); node;
2257 node = xmlNextElementSibling(node)) {
2258 if (!strcmp((const char *) node->name,
2259 config_element_targets)) {
2260 targets_node = node;
2261 break;
2262 }
2263 }
2264
2265 if (!targets_node) {
2266 ret = LTTNG_ERR_INVALID;
2267 goto end;
2268 }
2269
2270 /* Go through all pid_target node */
2271 child = xmlChildElementCount(targets_node);
2272 if (child == 0) {
2273 /* The session is explicitly set to target nothing. */
2274 ret = lttng_untrack_pid(handle, -1);
2275 if (ret) {
2276 goto end;
2277 }
2278 }
2279 for (node = xmlFirstElementChild(targets_node); node;
2280 node = xmlNextElementSibling(node)) {
2281 xmlNodePtr pid_target_node = node;
2282
2283 /* get pid node and track it */
2284 for (node = xmlFirstElementChild(pid_target_node); node;
2285 node = xmlNextElementSibling(node)) {
2286 if (!strcmp((const char *) node->name,
2287 config_element_pid)) {
2288 int64_t pid;
2289 xmlChar *content = NULL;
2290
2291 content = xmlNodeGetContent(node);
2292 if (!content) {
2293 ret = LTTNG_ERR_LOAD_INVALID_CONFIG;
2294 goto end;
2295 }
2296
2297 ret = parse_int(content, &pid);
2298 free(content);
2299 if (ret) {
2300 ret = LTTNG_ERR_LOAD_INVALID_CONFIG;
2301 goto end;
2302 }
2303
2304 ret = lttng_track_pid(handle, (int) pid);
2305 if (ret) {
2306 goto end;
2307 }
2308 }
2309 }
2310 node = pid_target_node;
2311 }
2312
2313 end:
2314 return ret;
2315 }
2316
2317
2318 static
2319 int process_domain_node(xmlNodePtr domain_node, const char *session_name,
2320 bool snapshot_mode)
2321 {
2322 int ret;
2323 struct lttng_domain domain = { 0 };
2324 struct lttng_handle *handle = NULL;
2325 xmlNodePtr channels_node = NULL;
2326 xmlNodePtr trackers_node = NULL;
2327 xmlNodePtr pid_tracker_node = NULL;
2328 xmlNodePtr node;
2329
2330 assert(session_name);
2331
2332 ret = init_domain(domain_node, &domain);
2333 if (ret) {
2334 goto end;
2335 }
2336
2337 handle = lttng_create_handle(session_name, &domain);
2338 if (!handle) {
2339 ret = -LTTNG_ERR_NOMEM;
2340 goto end;
2341 }
2342
2343 /* get the channels node */
2344 for (node = xmlFirstElementChild(domain_node); node;
2345 node = xmlNextElementSibling(node)) {
2346 if (!strcmp((const char *) node->name,
2347 config_element_channels)) {
2348 channels_node = node;
2349 break;
2350 }
2351 }
2352
2353 if (!channels_node) {
2354 goto end;
2355 }
2356
2357 /* create all channels */
2358 for (node = xmlFirstElementChild(channels_node); node;
2359 node = xmlNextElementSibling(node)) {
2360 struct lttng_channel channel;
2361 xmlNodePtr contexts_node = NULL;
2362 xmlNodePtr events_node = NULL;
2363 xmlNodePtr channel_attr_node;
2364
2365 memset(&channel, 0, sizeof(channel));
2366 lttng_channel_set_default_attr(&domain, &channel.attr);
2367
2368 for (channel_attr_node = xmlFirstElementChild(node);
2369 channel_attr_node; channel_attr_node =
2370 xmlNextElementSibling(channel_attr_node)) {
2371 ret = process_channel_attr_node(channel_attr_node,
2372 snapshot_mode, domain.type, &channel,
2373 &contexts_node, &events_node);
2374 if (ret) {
2375 goto end;
2376 }
2377 }
2378
2379 ret = lttng_enable_channel(handle, &channel);
2380 if (ret < 0) {
2381 goto end;
2382 }
2383
2384 ret = process_events_node(events_node, handle, channel.name);
2385 if (ret) {
2386 goto end;
2387 }
2388
2389 ret = process_contexts_node(contexts_node, handle,
2390 channel.name);
2391 if (ret) {
2392 goto end;
2393 }
2394 }
2395
2396 /* get the trackers node */
2397 for (node = xmlFirstElementChild(domain_node); node;
2398 node = xmlNextElementSibling(node)) {
2399 if (!strcmp((const char *) node->name,
2400 config_element_trackers)) {
2401 trackers_node = node;
2402 break;
2403 }
2404 }
2405
2406 if (!trackers_node) {
2407 goto end;
2408 }
2409
2410 for (node = xmlFirstElementChild(trackers_node); node;
2411 node = xmlNextElementSibling(node)) {
2412 if (!strcmp((const char *)node->name,config_element_pid_tracker)) {
2413 pid_tracker_node = node;
2414 ret = process_pid_tracker_node(pid_tracker_node, handle);
2415 if (ret) {
2416 goto end;
2417 }
2418 }
2419 }
2420
2421 if (!pid_tracker_node) {
2422 lttng_track_pid(handle, -1);
2423 }
2424
2425 end:
2426 lttng_destroy_handle(handle);
2427 return ret;
2428 }
2429
2430 static
2431 int process_session_node(xmlNodePtr session_node, const char *session_name,
2432 int override)
2433 {
2434 int ret, started = -1, snapshot_mode = -1;
2435 uint64_t live_timer_interval = UINT64_MAX;
2436 xmlChar *name = NULL;
2437 xmlChar *shm_path = NULL;
2438 xmlNodePtr domains_node = NULL;
2439 xmlNodePtr output_node = NULL;
2440 xmlNodePtr node;
2441 struct lttng_domain *kernel_domain = NULL;
2442 struct lttng_domain *ust_domain = NULL;
2443 struct lttng_domain *jul_domain = NULL;
2444 struct lttng_domain *log4j_domain = NULL;
2445 struct lttng_domain *python_domain = NULL;
2446
2447 for (node = xmlFirstElementChild(session_node); node;
2448 node = xmlNextElementSibling(node)) {
2449 if (!name && !strcmp((const char *) node->name,
2450 config_element_name)) {
2451 /* name */
2452 xmlChar *node_content = xmlNodeGetContent(node);
2453 if (!node_content) {
2454 ret = -LTTNG_ERR_NOMEM;
2455 goto error;
2456 }
2457
2458 name = node_content;
2459 } else if (!domains_node && !strcmp((const char *) node->name,
2460 config_element_domains)) {
2461 /* domains */
2462 domains_node = node;
2463 } else if (started == -1 && !strcmp((const char *) node->name,
2464 config_element_started)) {
2465 /* started */
2466 xmlChar *node_content = xmlNodeGetContent(node);
2467 if (!node_content) {
2468 ret = -LTTNG_ERR_NOMEM;
2469 goto error;
2470 }
2471
2472 ret = parse_bool(node_content, &started);
2473 free(node_content);
2474 if (ret) {
2475 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2476 goto error;
2477 }
2478 } else if (!output_node && !strcmp((const char *) node->name,
2479 config_element_output)) {
2480 /* output */
2481 output_node = node;
2482 } else if (!shm_path && !strcmp((const char *) node->name,
2483 config_element_shared_memory_path)) {
2484 /* shared memory path */
2485 xmlChar *node_content = xmlNodeGetContent(node);
2486 if (!node_content) {
2487 ret = -LTTNG_ERR_NOMEM;
2488 goto error;
2489 }
2490
2491 shm_path = node_content;
2492 } else {
2493 /* attributes, snapshot_mode or live_timer_interval */
2494 xmlNodePtr attributes_child =
2495 xmlFirstElementChild(node);
2496
2497 if (!strcmp((const char *) attributes_child->name,
2498 config_element_snapshot_mode)) {
2499 /* snapshot_mode */
2500 xmlChar *snapshot_mode_content =
2501 xmlNodeGetContent(attributes_child);
2502 if (!snapshot_mode_content) {
2503 ret = -LTTNG_ERR_NOMEM;
2504 goto error;
2505 }
2506
2507 ret = parse_bool(snapshot_mode_content, &snapshot_mode);
2508 free(snapshot_mode_content);
2509 if (ret) {
2510 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2511 goto error;
2512 }
2513 } else {
2514 /* live_timer_interval */
2515 xmlChar *timer_interval_content =
2516 xmlNodeGetContent(attributes_child);
2517 if (!timer_interval_content) {
2518 ret = -LTTNG_ERR_NOMEM;
2519 goto error;
2520 }
2521
2522 ret = parse_uint(timer_interval_content, &live_timer_interval);
2523 free(timer_interval_content);
2524 if (ret) {
2525 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2526 goto error;
2527 }
2528 }
2529 }
2530 }
2531
2532 if (!name) {
2533 /* Mandatory attribute, as defined in the session XSD */
2534 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2535 goto error;
2536 }
2537
2538 if (session_name && strcmp((char *) name, session_name)) {
2539 /* This is not the session we are looking for */
2540 ret = -LTTNG_ERR_NO_SESSION;
2541 goto error;
2542 }
2543
2544 /* Init domains to create the session handles */
2545 for (node = xmlFirstElementChild(domains_node); node;
2546 node = xmlNextElementSibling(node)) {
2547 struct lttng_domain *domain;
2548
2549 domain = zmalloc(sizeof(*domain));
2550 if (!domain) {
2551 ret = -LTTNG_ERR_NOMEM;
2552 goto error;
2553 }
2554
2555 ret = init_domain(node, domain);
2556 if (ret) {
2557 goto domain_init_error;
2558 }
2559
2560 switch (domain->type) {
2561 case LTTNG_DOMAIN_KERNEL:
2562 if (kernel_domain) {
2563 /* Same domain seen twice, invalid! */
2564 goto domain_init_error;
2565 }
2566 kernel_domain = domain;
2567 break;
2568 case LTTNG_DOMAIN_UST:
2569 if (ust_domain) {
2570 /* Same domain seen twice, invalid! */
2571 goto domain_init_error;
2572 }
2573 ust_domain = domain;
2574 break;
2575 case LTTNG_DOMAIN_JUL:
2576 if (jul_domain) {
2577 /* Same domain seen twice, invalid! */
2578 goto domain_init_error;
2579 }
2580 jul_domain = domain;
2581 break;
2582 case LTTNG_DOMAIN_LOG4J:
2583 if (log4j_domain) {
2584 /* Same domain seen twice, invalid! */
2585 goto domain_init_error;
2586 }
2587 log4j_domain = domain;
2588 break;
2589 case LTTNG_DOMAIN_PYTHON:
2590 if (python_domain) {
2591 /* Same domain seen twice, invalid! */
2592 goto domain_init_error;
2593 }
2594 python_domain = domain;
2595 break;
2596 default:
2597 WARN("Invalid domain type");
2598 goto domain_init_error;
2599 }
2600 continue;
2601 domain_init_error:
2602 free(domain);
2603 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2604 goto error;
2605 }
2606
2607 if (override) {
2608 /* Destroy session if it exists */
2609 ret = lttng_destroy_session((const char *) name);
2610 if (ret && ret != -LTTNG_ERR_SESS_NOT_FOUND) {
2611 ERR("Failed to destroy existing session.");
2612 goto error;
2613 }
2614 }
2615
2616 /* Create session type depending on output type */
2617 if (snapshot_mode && snapshot_mode != -1) {
2618 ret = create_snapshot_session((const char *) name, output_node);
2619 } else if (live_timer_interval &&
2620 live_timer_interval != UINT64_MAX) {
2621 ret = create_session((const char *) name, kernel_domain,
2622 ust_domain, jul_domain, log4j_domain,
2623 output_node, live_timer_interval);
2624 } else {
2625 /* regular session */
2626 ret = create_session((const char *) name, kernel_domain,
2627 ust_domain, jul_domain, log4j_domain,
2628 output_node, UINT64_MAX);
2629 }
2630 if (ret) {
2631 goto error;
2632 }
2633
2634 if (shm_path) {
2635 ret = lttng_set_session_shm_path((const char *) name,
2636 (const char *) shm_path);
2637 if (ret) {
2638 goto error;
2639 }
2640 }
2641
2642 for (node = xmlFirstElementChild(domains_node); node;
2643 node = xmlNextElementSibling(node)) {
2644 ret = process_domain_node(node, (const char *) name,
2645 snapshot_mode == 1);
2646 if (ret) {
2647 goto end;
2648 }
2649 }
2650
2651 if (started) {
2652 ret = lttng_start_tracing((const char *) name);
2653 if (ret) {
2654 goto end;
2655 }
2656 }
2657
2658 end:
2659 if (ret < 0) {
2660 ERR("Failed to load session %s: %s", (const char *) name,
2661 lttng_strerror(ret));
2662 lttng_destroy_session((const char *) name);
2663 }
2664
2665 error:
2666 free(kernel_domain);
2667 free(ust_domain);
2668 free(jul_domain);
2669 free(log4j_domain);
2670 free(python_domain);
2671 xmlFree(name);
2672 xmlFree(shm_path);
2673 return ret;
2674 }
2675
2676 /*
2677 * Return 1 if the given path is readable by the current UID or 0 if not.
2678 * Return -1 if the path is EPERM.
2679 */
2680 static int validate_file_read_creds(const char *path)
2681 {
2682 int ret;
2683
2684 assert(path);
2685
2686 /* Can we read the file. */
2687 ret = access(path, R_OK);
2688 if (!ret) {
2689 goto valid;
2690 }
2691 if (errno == EACCES) {
2692 return -1;
2693 } else {
2694 /* Invalid. */
2695 return 0;
2696 }
2697 valid:
2698 return 1;
2699 }
2700
2701 static
2702 int load_session_from_file(const char *path, const char *session_name,
2703 struct session_config_validation_ctx *validation_ctx, int override)
2704 {
2705 int ret, session_found = !session_name;
2706 xmlDocPtr doc = NULL;
2707 xmlNodePtr sessions_node;
2708 xmlNodePtr session_node;
2709
2710 assert(path);
2711 assert(validation_ctx);
2712
2713 ret = validate_file_read_creds(path);
2714 if (ret != 1) {
2715 if (ret == -1) {
2716 ret = -LTTNG_ERR_EPERM;
2717 } else {
2718 ret = -LTTNG_ERR_LOAD_SESSION_NOENT;
2719 }
2720 goto end;
2721 }
2722
2723 doc = xmlParseFile(path);
2724 if (!doc) {
2725 ret = -LTTNG_ERR_LOAD_IO_FAIL;
2726 goto end;
2727 }
2728
2729 ret = xmlSchemaValidateDoc(validation_ctx->schema_validation_ctx, doc);
2730 if (ret) {
2731 ERR("Session configuration file validation failed");
2732 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2733 goto end;
2734 }
2735
2736 sessions_node = xmlDocGetRootElement(doc);
2737 if (!sessions_node) {
2738 goto end;
2739 }
2740
2741 for (session_node = xmlFirstElementChild(sessions_node);
2742 session_node; session_node =
2743 xmlNextElementSibling(session_node)) {
2744 ret = process_session_node(session_node,
2745 session_name, override);
2746 if (session_name && ret == 0) {
2747 /* Target session found and loaded */
2748 session_found = 1;
2749 break;
2750 }
2751 }
2752 end:
2753 xmlFreeDoc(doc);
2754 if (!ret) {
2755 ret = session_found ? 0 : -LTTNG_ERR_LOAD_SESSION_NOENT;
2756 }
2757 return ret;
2758 }
2759
2760 static
2761 int load_session_from_document(struct config_document *document, const char *session_name,
2762 struct session_config_validation_ctx *validation_ctx, int override)
2763 {
2764 int ret, session_found = !session_name;
2765 xmlNodePtr sessions_node;
2766 xmlNodePtr session_node;
2767
2768 assert(validation_ctx);
2769
2770 ret = xmlSchemaValidateDoc(validation_ctx->schema_validation_ctx, document->document);
2771 if (ret) {
2772 ERR("Session configuration file validation failed");
2773 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2774 goto end;
2775 }
2776
2777 sessions_node = xmlDocGetRootElement(document->document);
2778 if (!sessions_node) {
2779 goto end;
2780 }
2781
2782 for (session_node = xmlFirstElementChild(sessions_node);
2783 session_node; session_node =
2784 xmlNextElementSibling(session_node)) {
2785 ret = process_session_node(session_node,
2786 session_name, override);
2787 if (session_name && ret == 0) {
2788 /* Target session found and loaded */
2789 session_found = 1;
2790 break;
2791 }
2792 }
2793 end:
2794 if (!ret) {
2795 ret = session_found ? 0 : -LTTNG_ERR_LOAD_SESSION_NOENT;
2796 }
2797 return ret;
2798 }
2799
2800 /* Allocate dirent as recommended by READDIR(3), NOTES on readdir_r */
2801 static
2802 struct dirent *alloc_dirent(const char *path)
2803 {
2804 size_t len;
2805 long name_max;
2806 struct dirent *entry;
2807
2808 name_max = pathconf(path, _PC_NAME_MAX);
2809 if (name_max == -1) {
2810 name_max = PATH_MAX;
2811 }
2812 len = offsetof(struct dirent, d_name) + name_max + 1;
2813 entry = zmalloc(len);
2814 return entry;
2815 }
2816
2817 static
2818 int load_session_from_path(const char *path, const char *session_name,
2819 struct session_config_validation_ctx *validation_ctx, int override)
2820 {
2821 int ret, session_found = !session_name;
2822 DIR *directory = NULL;
2823
2824 assert(path);
2825 assert(validation_ctx);
2826
2827 directory = opendir(path);
2828 if (!directory) {
2829 switch (errno) {
2830 case ENOTDIR:
2831 /* Try the file loading. */
2832 break;
2833 case ENOENT:
2834 ret = -LTTNG_ERR_LOAD_SESSION_NOENT;
2835 goto end;
2836 default:
2837 ret = -LTTNG_ERR_LOAD_IO_FAIL;
2838 goto end;
2839 }
2840 }
2841 if (directory) {
2842 struct dirent *entry;
2843 struct dirent *result;
2844 char *file_path = NULL;
2845 size_t path_len = strlen(path);
2846
2847 if (path_len >= PATH_MAX) {
2848 ret = -LTTNG_ERR_INVALID;
2849 goto end;
2850 }
2851
2852 entry = alloc_dirent(path);
2853 if (!entry) {
2854 ret = -LTTNG_ERR_NOMEM;
2855 goto end;
2856 }
2857
2858 file_path = zmalloc(PATH_MAX);
2859 if (!file_path) {
2860 ret = -LTTNG_ERR_NOMEM;
2861 free(entry);
2862 goto end;
2863 }
2864
2865 strncpy(file_path, path, path_len);
2866 if (file_path[path_len - 1] != '/') {
2867 file_path[path_len++] = '/';
2868 }
2869
2870 ret = 0;
2871 /* Search for *.lttng files */
2872 while (!readdir_r(directory, entry, &result) && result) {
2873 size_t file_name_len = strlen(result->d_name);
2874
2875 if (file_name_len <=
2876 sizeof(DEFAULT_SESSION_CONFIG_FILE_EXTENSION)) {
2877 continue;
2878 }
2879
2880 if (path_len + file_name_len >= PATH_MAX) {
2881 continue;
2882 }
2883
2884 if (strcmp(DEFAULT_SESSION_CONFIG_FILE_EXTENSION,
2885 result->d_name + file_name_len - sizeof(
2886 DEFAULT_SESSION_CONFIG_FILE_EXTENSION) + 1)) {
2887 continue;
2888 }
2889
2890 strncpy(file_path + path_len, result->d_name, file_name_len);
2891 file_path[path_len + file_name_len] = '\0';
2892
2893 ret = load_session_from_file(file_path, session_name,
2894 validation_ctx, override);
2895 if (session_name && !ret) {
2896 session_found = 1;
2897 break;
2898 }
2899 }
2900
2901 free(entry);
2902 free(file_path);
2903 } else {
2904 ret = load_session_from_file(path, session_name,
2905 validation_ctx, override);
2906 if (ret) {
2907 goto end;
2908 } else {
2909 session_found = 1;
2910 }
2911 }
2912
2913 end:
2914 if (directory) {
2915 if (closedir(directory)) {
2916 PERROR("closedir");
2917 }
2918 }
2919
2920 if (session_found) {
2921 ret = 0;
2922 }
2923
2924 return ret;
2925 }
2926
2927 /*
2928 * Validate that the given path's credentials and the current process have the
2929 * same UID. If so, return 1 else return 0 if it does NOT match.
2930 */
2931 static int validate_path_creds(const char *path)
2932 {
2933 int ret, uid = getuid();
2934 struct stat buf;
2935
2936 assert(path);
2937
2938 if (uid == 0) {
2939 goto valid;
2940 }
2941
2942 ret = stat(path, &buf);
2943 if (ret < 0) {
2944 if (errno != ENOENT) {
2945 PERROR("stat");
2946 }
2947 ret = -LTTNG_ERR_INVALID;
2948 goto valid;
2949 }
2950
2951 if (buf.st_uid != uid) {
2952 goto invalid;
2953 }
2954
2955 valid:
2956 return 1;
2957 invalid:
2958 return 0;
2959 }
2960
2961 LTTNG_HIDDEN
2962 int config_load_session(const char *path, const char *session_name,
2963 int override, unsigned int autoload)
2964 {
2965 int ret;
2966 bool session_loaded = false;
2967 const char *path_ptr = NULL;
2968 struct session_config_validation_ctx validation_ctx = { 0 };
2969
2970 ret = init_session_config_validation_ctx(&validation_ctx);
2971 if (ret) {
2972 goto end;
2973 }
2974
2975 if (!path) {
2976 char *home_path;
2977 const char *sys_path;
2978
2979 /* Try home path */
2980 home_path = utils_get_home_dir();
2981 if (home_path) {
2982 char path[PATH_MAX];
2983
2984 /*
2985 * Try user session configuration path. Ignore error here so we can
2986 * continue loading the system wide sessions.
2987 */
2988 if (autoload) {
2989 ret = snprintf(path, sizeof(path),
2990 DEFAULT_SESSION_HOME_CONFIGPATH "/"
2991 DEFAULT_SESSION_CONFIG_AUTOLOAD, home_path);
2992 if (ret < 0) {
2993 PERROR("snprintf session autoload home config path");
2994 goto end;
2995 }
2996
2997 /*
2998 * Credentials are only validated for the autoload in order to
2999 * avoid any user session daemon to try to load kernel sessions
3000 * automatically and failing all the times.
3001 */
3002 ret = validate_path_creds(path);
3003 if (ret) {
3004 path_ptr = path;
3005 }
3006 } else {
3007 ret = snprintf(path, sizeof(path),
3008 DEFAULT_SESSION_HOME_CONFIGPATH, home_path);
3009 if (ret < 0) {
3010 PERROR("snprintf session home config path");
3011 goto end;
3012 }
3013 path_ptr = path;
3014 }
3015 if (path_ptr) {
3016 ret = load_session_from_path(path_ptr, session_name,
3017 &validation_ctx, override);
3018 if (ret && ret != -LTTNG_ERR_LOAD_SESSION_NOENT) {
3019 goto end;
3020 }
3021 /*
3022 * Continue even if the session was found since we have to try
3023 * the system wide sessions.
3024 */
3025 session_loaded = true;
3026 }
3027 }
3028
3029 /* Reset path pointer for the system wide dir. */
3030 path_ptr = NULL;
3031
3032 /* Try system wide configuration directory. */
3033 if (autoload) {
3034 sys_path = DEFAULT_SESSION_SYSTEM_CONFIGPATH "/"
3035 DEFAULT_SESSION_CONFIG_AUTOLOAD;
3036 ret = validate_path_creds(sys_path);
3037 if (ret) {
3038 path_ptr = sys_path;
3039 }
3040 } else {
3041 sys_path = DEFAULT_SESSION_SYSTEM_CONFIGPATH;
3042 path_ptr = sys_path;
3043 }
3044
3045 if (path_ptr) {
3046 ret = load_session_from_path(path_ptr, session_name,
3047 &validation_ctx, override);
3048 if (!ret) {
3049 session_loaded = true;
3050 }
3051 }
3052 } else {
3053 ret = access(path, F_OK);
3054 if (ret < 0) {
3055 PERROR("access");
3056 switch (errno) {
3057 case ENOENT:
3058 ret = -LTTNG_ERR_INVALID;
3059 WARN("Session configuration path does not exist.");
3060 break;
3061 case EACCES:
3062 ret = -LTTNG_ERR_EPERM;
3063 break;
3064 default:
3065 ret = -LTTNG_ERR_UNK;
3066 break;
3067 }
3068 goto end;
3069 }
3070
3071 ret = load_session_from_path(path, session_name,
3072 &validation_ctx, override);
3073 }
3074 end:
3075 fini_session_config_validation_ctx(&validation_ctx);
3076 if (ret == -LTTNG_ERR_LOAD_SESSION_NOENT && !session_name && !path) {
3077 /*
3078 * Don't report an error if no sessions are found when called
3079 * without a session_name or a search path.
3080 */
3081 ret = 0;
3082 }
3083
3084 if (session_loaded && ret == -LTTNG_ERR_LOAD_SESSION_NOENT) {
3085 /* A matching session was found in one of the search paths. */
3086 ret = 0;
3087 }
3088 return ret;
3089 }
3090
3091 static
3092 void __attribute__((destructor)) session_config_exit(void)
3093 {
3094 xmlCleanupParser();
3095 }
3096
3097 LTTNG_HIDDEN
3098 struct config_document *config_document_get(const char *path)
3099 {
3100 int ret;
3101 struct config_document *document = NULL;
3102 struct session_config_validation_ctx validation_ctx = { 0 };
3103
3104 assert(path);
3105
3106 ret = access(path, F_OK);
3107 if (ret < 0) {
3108 PERROR("access");
3109 switch (errno) {
3110 case ENOENT:
3111 ERR("Configuration document path does not exist.");
3112 break;
3113 case EACCES:
3114 ERR("Configuration document permission denied.");
3115 break;
3116 default:
3117 ERR("Configuration document unknown error.");
3118 break;
3119 }
3120 goto end;
3121 }
3122
3123 ret = init_session_config_validation_ctx(&validation_ctx);
3124 if (ret) {
3125 goto end;
3126 }
3127
3128 ret = validate_file_read_creds(path);
3129 if (ret != 1) {
3130 if (ret == -1) {
3131 ERR("Configuration document permission denied.");
3132 } else {
3133 ERR("Configuration document does not exist.");
3134 }
3135 goto end;
3136 }
3137
3138 document = zmalloc(sizeof(struct config_document));
3139 if (!document) {
3140 PERROR("zmalloc");
3141 goto end;
3142 }
3143
3144 document->document = xmlParseFile(path);
3145 if (!document->document) {
3146 ERR("Configuration document parsing failed.");
3147 goto error;
3148 }
3149
3150 ret = xmlSchemaValidateDoc(validation_ctx.schema_validation_ctx,
3151 document->document);
3152 if (ret) {
3153 ERR("Session configuration file validation failed");
3154 goto error;
3155 }
3156
3157 end:
3158 fini_session_config_validation_ctx(&validation_ctx);
3159 return document;
3160 error:
3161 xmlFreeDoc(document->document);
3162 free(document);
3163 return NULL;
3164 }
3165
3166 LTTNG_HIDDEN
3167 void config_document_free(struct config_document *document)
3168 {
3169 if (document) {
3170 xmlFreeDoc(document->document);
3171 document->document = NULL;
3172 }
3173
3174 free(document);
3175 }
3176
3177 LTTNG_HIDDEN
3178 int config_document_replace_element_value(struct config_document *document,
3179 const char *xpath, const char *value)
3180 {
3181 int ret = 0;
3182 int xpath_result_size;
3183
3184 xmlXPathContextPtr xpath_context = NULL;
3185 xmlXPathObjectPtr xpath_object = NULL;
3186 xmlNodeSetPtr xpath_result_set = NULL;
3187 xmlChar *internal_xpath = NULL;
3188 xmlChar *internal_value = NULL;
3189
3190 assert(document);
3191 assert(xpath);
3192 assert(value);
3193
3194 internal_xpath = encode_string(xpath);
3195 if (!internal_xpath) {
3196 ret = -LTTNG_ERR_NOMEM;
3197 ERR("Unable to encode xpath string");
3198 goto end;
3199 }
3200
3201 internal_value = encode_string(value);
3202 if (!internal_value) {
3203 ret = -LTTNG_ERR_NOMEM;
3204 ERR("Unable to encode xpath replace value string");
3205 goto end;
3206 }
3207
3208 /* Initialize xpath context */
3209 xpath_context = xmlXPathNewContext(document->document);
3210 if (!xpath_context) {
3211 ret = -LTTNG_ERR_NOMEM;
3212 ERR("Unable to create xpath context");
3213 goto end;
3214 }
3215
3216 /* Evaluate de xpath expression */
3217 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3218 if (!xpath_object) {
3219 ret = -LTTNG_ERR_CONFIG_INVALID_QUERY;
3220 goto end;
3221 }
3222
3223 /* TODO: from here could be extracted and previopus could be a step in
3224 * subsequent operation, modify/substitute/delete node.
3225 */
3226 xpath_result_set = xpath_object->nodesetval;
3227 if (!xpath_result_set) {
3228 ret = -LTTNG_ERR_CONFIG_EMPTY_SET;
3229 goto end;
3230 }
3231
3232 xpath_result_size = xpath_result_set->nodeNr;
3233
3234 /*
3235 * Reverse traversal since last element could be nested under parent
3236 * element present in the result set.
3237 */
3238 for (int i = xpath_result_size - 1; i >=0; i--) {
3239 assert(xpath_result_set->nodeTab[i]);
3240 xmlNodeSetContent(xpath_result_set->nodeTab[i], internal_value);
3241
3242 /*
3243 * Libxml2 quirk regarding the freing and namesplace node see
3244 * libxml2 example and documentation for more details.
3245 */
3246 if (xpath_result_set->nodeTab[i]->type != XML_NAMESPACE_DECL) {
3247 xpath_result_set->nodeTab[i] = NULL;
3248 }
3249 }
3250
3251 end:
3252 xmlXPathFreeContext(xpath_context);
3253 xmlXPathFreeObject(xpath_object);
3254 xmlFree(internal_xpath);
3255 xmlFree(internal_value);
3256 return ret;
3257 }
3258
3259 LTTNG_HIDDEN
3260 int config_load_configuration_sessions(struct config_document *document,
3261 const char *session_name, int override)
3262 {
3263 int ret;
3264 struct session_config_validation_ctx validation_ctx = { 0 };
3265
3266 ret = init_session_config_validation_ctx(&validation_ctx);
3267 if (ret) {
3268 goto end;
3269 }
3270 ret = load_session_from_document(document, session_name,
3271 &validation_ctx, override);
3272 end:
3273 fini_session_config_validation_ctx(&validation_ctx);
3274 return ret;
3275 }
3276
3277 LTTNG_HIDDEN
3278 int config_document_replace_element(struct config_document *document,
3279 const char *xpath, const struct config_element *element)
3280 {
3281 int ret = 0;
3282 int xpath_result_size;
3283
3284 xmlXPathContextPtr xpath_context = NULL;
3285 xmlXPathObjectPtr xpath_object = NULL;
3286 xmlNodeSetPtr xpath_result_set = NULL;
3287 xmlChar *internal_xpath = NULL;
3288 xmlNodePtr old_node = NULL;
3289 xmlNodePtr copy = NULL;
3290
3291 assert(document);
3292 assert(xpath);
3293 assert(element);
3294 assert(element->element);
3295
3296 internal_xpath = encode_string(xpath);
3297 if (!internal_xpath) {
3298 ret = -LTTNG_ERR_NOMEM;
3299 ERR("Unable to encode xpath string");
3300 goto end;
3301 }
3302
3303 /* Initialize xpath context */
3304 xpath_context = xmlXPathNewContext(document->document);
3305 if (!xpath_context) {
3306 ret = -LTTNG_ERR_NOMEM;
3307 ERR("Unable to create xpath context");
3308 goto end;
3309 }
3310
3311 /* Evaluate the xpath expression */
3312 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3313 if (!xpath_object) {
3314 ret = -LTTNG_ERR_CONFIG_INVALID_QUERY;
3315 goto end;
3316 }
3317
3318 xpath_result_set = xpath_object->nodesetval;
3319 if (!xpath_result_set) {
3320 ret = -LTTNG_ERR_CONFIG_EMPTY_SET;
3321 goto end;
3322 }
3323
3324 xpath_result_size = xpath_result_set->nodeNr;
3325
3326 if (xpath_result_size > 1) {
3327 ret = -LTTNG_ERR_CONFIG_INVALID_COUNT;
3328 goto end;
3329 }
3330
3331 if (xpath_result_size == 0) {
3332 ret = -LTTNG_ERR_CONFIG_REPLACEMENT;
3333 goto end;
3334 }
3335
3336 assert(xpath_result_set->nodeTab[0]);
3337
3338 /* Do a copy of the element to ease caller memory management */
3339 copy = xmlCopyNode(element->element, 1);
3340 if (!copy) {
3341 ret = -LTTNG_ERR_NOMEM;
3342 ERR("Copy failed for node replacement");
3343 goto end;
3344 }
3345
3346 old_node = xmlReplaceNode(xpath_result_set->nodeTab[0], copy);
3347 if (xpath_result_set->nodeTab[0]->type != XML_NAMESPACE_DECL)
3348 xpath_result_set->nodeTab[0] = NULL;
3349 if (!old_node) {
3350 ret = -LTTNG_ERR_CONFIG_REPLACEMENT;
3351 xmlFreeNode(copy);
3352 goto end;
3353 }
3354 xmlUnlinkNode(old_node);
3355 xmlFreeNode(old_node);
3356 end:
3357 xmlXPathFreeContext(xpath_context);
3358 xmlXPathFreeObject(xpath_object);
3359 xmlFree(internal_xpath);
3360 return ret;
3361 }
3362
3363 LTTNG_HIDDEN
3364 char *config_document_get_element_value(struct config_document *document,
3365 const char *xpath)
3366 {
3367 char *value = NULL;
3368 int xpath_result_size;
3369 int value_result_size;
3370
3371 xmlXPathContextPtr xpath_context = NULL;
3372 xmlXPathObjectPtr xpath_object = NULL;
3373 xmlNodeSetPtr xpath_result_set = NULL;
3374 xmlChar *internal_xpath = NULL;
3375 xmlChar *internal_value = NULL;
3376
3377 assert(document);
3378 assert(xpath);
3379
3380 internal_xpath = encode_string(xpath);
3381 if (!internal_xpath) {
3382 value = NULL;
3383 ERR("Unable to encode xpath string");
3384 goto end;
3385 }
3386
3387 /* Initialize xpath context */
3388 xpath_context = xmlXPathNewContext(document->document);
3389 if (!xpath_context) {
3390 value = NULL;
3391 ERR("Unable to create xpath context");
3392 goto end;
3393 }
3394
3395 /* Evaluate the xpath expression */
3396 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3397 if (!xpath_object) {
3398 value = NULL;
3399 ERR("Unable to evaluate xpath query (invalid query format)");
3400 goto end;
3401 }
3402
3403 xpath_result_set = xpath_object->nodesetval;
3404 if (!xpath_result_set) {
3405 value = NULL;
3406 goto end;
3407 }
3408
3409 xpath_result_size = xpath_result_set->nodeNr;
3410
3411 if (xpath_result_size > 1) {
3412 ERR("To many result while fetching config element value");
3413 value = NULL;
3414 goto end;
3415 }
3416
3417 if (xpath_result_size == 0) {
3418 value = NULL;
3419 goto end;
3420 }
3421
3422 /*
3423 * Reverse traversal since last element could be nested under parent
3424 * element present in the result set.
3425 */
3426 assert(xpath_result_set->nodeTab[0]);
3427 internal_value = xmlNodeGetContent(xpath_result_set->nodeTab[0]);
3428 if (!internal_value) {
3429 value = NULL;
3430 goto end;
3431 }
3432
3433 value_result_size = xmlStrlen(internal_value);
3434 value = calloc(value_result_size + 1, sizeof(char));
3435 strncpy(value, (char *) internal_value, value_result_size);
3436
3437 end:
3438 xmlXPathFreeContext(xpath_context);
3439 xmlXPathFreeObject(xpath_object);
3440 xmlFree(internal_xpath);
3441 xmlFree(internal_value);
3442 return value;
3443 }
3444
3445 LTTNG_HIDDEN
3446 int config_document_element_exist(struct config_document *document,
3447 const char *xpath)
3448 {
3449 int exist = 0;
3450 int xpath_result_size;
3451
3452 xmlXPathContextPtr xpath_context = NULL;
3453 xmlXPathObjectPtr xpath_object = NULL;
3454 xmlNodeSetPtr xpath_result_set = NULL;
3455 xmlChar *internal_xpath = NULL;
3456
3457 assert(document);
3458 assert(document->document);
3459 assert(xpath);
3460
3461 internal_xpath = encode_string(xpath);
3462 if (!internal_xpath) {
3463 ERR("Unable to encode xpath string");
3464 goto end;
3465 }
3466
3467 /* Initialize xpath context */
3468 xpath_context = xmlXPathNewContext(document->document);
3469 if (!xpath_context) {
3470 ERR("Unable to create xpath context");
3471 goto end;
3472 }
3473
3474 /* Evaluate the xpath expression */
3475 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3476 if (!xpath_object) {
3477 ERR("Unable to evaluate xpath query (invalid query format)");
3478 goto end;
3479 }
3480
3481 xpath_result_set = xpath_object->nodesetval;
3482 if (!xpath_result_set) {
3483 goto end;
3484 }
3485
3486 xpath_result_size = xpath_result_set->nodeNr;
3487
3488 if (xpath_result_size > 0) {
3489 exist = 1;
3490 }
3491 end:
3492 xmlXPathFreeContext(xpath_context);
3493 xmlXPathFreeObject(xpath_object);
3494 xmlFree(internal_xpath);
3495 return exist;
3496
3497 }
3498
3499 LTTNG_HIDDEN
3500 struct config_element *config_element_create(const char *name,
3501 const char* value)
3502 {
3503 struct config_element *element;
3504
3505 assert(name);
3506
3507 xmlChar *internal_name = NULL;
3508 xmlChar *internal_value = NULL;
3509
3510 internal_name = encode_string(name);
3511 if (!internal_name) {
3512 ERR("Unable to encode config element name string");
3513 element = NULL;
3514 goto end;
3515 }
3516
3517
3518 if (value) {
3519 internal_value = encode_string(value);
3520 if (!internal_value) {
3521 ERR("Unable to encode config_element value string");
3522 element = NULL;
3523 goto end;
3524 }
3525 }
3526
3527 element = zmalloc(sizeof(struct config_element));
3528 if (!element) {
3529 goto end;
3530 }
3531
3532 element->element = xmlNewNode(NULL, internal_name);
3533 if (!element->element) {
3534 free(element);
3535 element = NULL;
3536 goto end;
3537 }
3538
3539 if (internal_value) {
3540 xmlNodeAddContent(element->element, internal_value);
3541 }
3542 end:
3543 xmlFree(internal_name);
3544 xmlFree(internal_value);
3545 return element;
3546 }
3547
3548 LTTNG_HIDDEN
3549 int config_element_add_child(struct config_element *parent,
3550 const struct config_element *child)
3551 {
3552 assert(parent);
3553 assert(child);
3554 assert(parent->element);
3555 assert(child->element);
3556
3557 int ret = 0;
3558 xmlNodePtr node = NULL;
3559 xmlNodePtr copy = NULL;
3560
3561 /* Do a copy to ease the memory management for caller */
3562 copy = xmlCopyNode(child->element, 1);
3563 if (!copy) {
3564 ret = -LTTNG_ERR_NOMEM;
3565 goto error;
3566 }
3567 node = xmlAddChild(parent->element, copy);
3568 if (!node) {
3569 xmlFreeNode(copy);
3570 ret = -LTTNG_ERR_CONFIG_ADD_CHILD;
3571 goto error;
3572 }
3573 error:
3574 return ret;
3575 }
3576
3577
3578 LTTNG_HIDDEN
3579 int config_document_insert_element(struct config_document *document,
3580 const char *xpath, const struct config_element *element)
3581 {
3582 int ret = 0;
3583 int xpath_result_size;
3584
3585 xmlXPathContextPtr xpath_context = NULL;
3586 xmlXPathObjectPtr xpath_object = NULL;
3587 xmlNodeSetPtr xpath_result_set = NULL;
3588 xmlChar *internal_xpath = NULL;
3589 xmlNodePtr child_node = NULL;
3590 xmlNodePtr local_copy = NULL;
3591
3592 assert(document);
3593 assert(xpath);
3594 assert(element);
3595 assert(element->element);
3596
3597 internal_xpath = encode_string(xpath);
3598 if (!internal_xpath) {
3599 ret = -LTTNG_ERR_NOMEM;
3600 goto end;
3601 }
3602
3603 /* Initialize xpath context */
3604 xpath_context = xmlXPathNewContext(document->document);
3605 if (!xpath_context) {
3606 ret = -LTTNG_ERR_NOMEM;
3607 goto end;
3608 }
3609
3610 /* Evaluate the xpath expression */
3611 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3612 if (!xpath_object) {
3613 ret = -LTTNG_ERR_CONFIG_INVALID_QUERY;
3614 goto end;
3615 }
3616
3617 xpath_result_set = xpath_object->nodesetval;
3618 if (!xpath_result_set) {
3619 ret = -LTTNG_ERR_CONFIG_EMPTY_SET;
3620 goto end;
3621 }
3622
3623 xpath_result_size = xpath_result_set->nodeNr;
3624
3625 if (xpath_result_size > 1) {
3626 ret = -LTTNG_ERR_CONFIG_INVALID_COUNT;
3627 goto end;
3628 }
3629
3630 if (xpath_result_size == 0) {
3631 ret = -LTTNG_ERR_CONFIG_INVALID_COUNT;
3632 goto end;
3633 }
3634
3635 assert(xpath_result_set->nodeTab[0]);
3636 /* Do a copy to simply memory management */
3637 local_copy = xmlCopyNode(element->element, 1);
3638 if (!local_copy) {
3639 ret = -LTTNG_ERR_NOMEM;
3640 ERR("Duplication of node to be insert failed");
3641 goto end;
3642 }
3643
3644 child_node = xmlAddChild(xpath_result_set->nodeTab[0], local_copy);
3645 if (!child_node) {
3646 ret = -LTTNG_ERR_CONFIG_ADD_CHILD;
3647 xmlFreeNode(local_copy);
3648 goto end;
3649 }
3650 end:
3651 xmlXPathFreeContext(xpath_context);
3652 xmlXPathFreeObject(xpath_object);
3653 xmlFree(internal_xpath);
3654 return ret;
3655 }
3656
3657 LTTNG_HIDDEN
3658 void config_element_free(struct config_element *element) {
3659 if (element && element->element) {
3660 xmlFreeNode(element->element);
3661 }
3662
3663 free(element);
3664 }
This page took 0.156424 seconds and 5 git commands to generate.