Fix: missing goto error on null pointer
[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 = UINT64_MAX;
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 ret = lttng_snapshot_output_set_name(name, snapshot_output);
1266 if (ret) {
1267 goto error_snapshot_output;
1268 }
1269
1270 ret = lttng_snapshot_output_set_size(max_size, snapshot_output);
1271 if (ret) {
1272 goto error_snapshot_output;
1273 }
1274
1275 if (output.path) {
1276 ret = lttng_snapshot_output_set_ctrl_url(output.path,
1277 snapshot_output);
1278 if (ret) {
1279 goto error_snapshot_output;
1280 }
1281 } else {
1282 if (output.control_uri) {
1283 ret = lttng_snapshot_output_set_ctrl_url(output.control_uri,
1284 snapshot_output);
1285 if (ret) {
1286 goto error_snapshot_output;
1287 }
1288 }
1289
1290 if (output.data_uri) {
1291 ret = lttng_snapshot_output_set_data_url(output.data_uri,
1292 snapshot_output);
1293 if (ret) {
1294 goto error_snapshot_output;
1295 }
1296 }
1297 }
1298
1299 ret = lttng_snapshot_add_output(session_name, snapshot_output);
1300 error_snapshot_output:
1301 free(name);
1302 free(output.path);
1303 free(output.control_uri);
1304 free(output.data_uri);
1305 lttng_snapshot_output_destroy(snapshot_output);
1306 if (ret) {
1307 goto end;
1308 }
1309 }
1310 end:
1311 return ret;
1312 }
1313
1314 static
1315 int create_session(const char *name,
1316 struct lttng_domain *kernel_domain,
1317 struct lttng_domain *ust_domain,
1318 struct lttng_domain *jul_domain,
1319 struct lttng_domain *log4j_domain,
1320 xmlNodePtr output_node,
1321 uint64_t live_timer_interval)
1322 {
1323 int ret;
1324 struct consumer_output output = { 0 };
1325 xmlNodePtr consumer_output_node;
1326
1327 assert(name);
1328
1329 if (output_node) {
1330 consumer_output_node = xmlFirstElementChild(output_node);
1331 if (!consumer_output_node) {
1332 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1333 goto end;
1334 }
1335
1336 if (strcmp((const char *) consumer_output_node->name,
1337 config_element_consumer_output)) {
1338 WARN("Invalid output type, expected %s node",
1339 config_element_consumer_output);
1340 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1341 goto end;
1342 }
1343
1344 ret = process_consumer_output(consumer_output_node, &output);
1345 if (ret) {
1346 goto end;
1347 }
1348 }
1349
1350 if (live_timer_interval != UINT64_MAX &&
1351 !output.control_uri && !output.data_uri) {
1352 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1353 goto end;
1354 }
1355
1356 if (output.control_uri || output.data_uri) {
1357 /* network destination */
1358 if (live_timer_interval && live_timer_interval != UINT64_MAX) {
1359 /*
1360 * URLs are provided for sure since the test above make sure that
1361 * with a live timer the data and control URIs are provided. So,
1362 * NULL is passed here and will be set right after.
1363 */
1364 ret = lttng_create_session_live(name, NULL, live_timer_interval);
1365 } else {
1366 ret = lttng_create_session(name, NULL);
1367 }
1368 if (ret) {
1369 goto end;
1370 }
1371
1372 ret = create_session_net_output(name, output.control_uri,
1373 output.data_uri);
1374 if (ret) {
1375 goto end;
1376 }
1377
1378 } else {
1379 /* either local output or no output */
1380 ret = lttng_create_session(name, output.path);
1381 if (ret) {
1382 goto end;
1383 }
1384 }
1385 end:
1386 free(output.path);
1387 free(output.control_uri);
1388 free(output.data_uri);
1389 return ret;
1390 }
1391 static
1392 int process_probe_attribute_node(xmlNodePtr probe_attribute_node,
1393 struct lttng_event_probe_attr *attr)
1394 {
1395 int ret;
1396
1397 assert(probe_attribute_node);
1398 assert(attr);
1399
1400 if (!strcmp((const char *) probe_attribute_node->name,
1401 config_element_address)) {
1402 xmlChar *content;
1403 uint64_t addr = 0;
1404
1405 /* addr */
1406 content = xmlNodeGetContent(probe_attribute_node);
1407 if (!content) {
1408 ret = -LTTNG_ERR_NOMEM;
1409 goto end;
1410 }
1411
1412 ret = parse_uint(content, &addr);
1413 free(content);
1414 if (ret) {
1415 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1416 goto end;
1417 }
1418
1419 attr->addr = addr;
1420 } else if (!strcmp((const char *) probe_attribute_node->name,
1421 config_element_offset)) {
1422 xmlChar *content;
1423 uint64_t offset = 0;
1424
1425 /* offset */
1426 content = xmlNodeGetContent(probe_attribute_node);
1427 if (!content) {
1428 ret = -LTTNG_ERR_NOMEM;
1429 goto end;
1430 }
1431
1432 ret = parse_uint(content, &offset);
1433 free(content);
1434 if (ret) {
1435 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1436 goto end;
1437 }
1438
1439 attr->offset = offset;
1440 } else if (!strcmp((const char *) probe_attribute_node->name,
1441 config_element_symbol_name)) {
1442 xmlChar *content;
1443 size_t name_len;
1444
1445 /* symbol_name */
1446 content = xmlNodeGetContent(probe_attribute_node);
1447 if (!content) {
1448 ret = -LTTNG_ERR_NOMEM;
1449 goto end;
1450 }
1451
1452 name_len = strlen((char *) content);
1453 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
1454 WARN("symbol_name too long.");
1455 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1456 free(content);
1457 goto end;
1458 }
1459
1460 strncpy(attr->symbol_name, (const char *) content, name_len);
1461 free(content);
1462 }
1463 ret = 0;
1464 end:
1465 return ret;
1466 }
1467
1468 static
1469 int process_event_node(xmlNodePtr event_node, struct lttng_handle *handle,
1470 const char *channel_name, const enum process_event_node_phase phase)
1471 {
1472 int ret = 0, i;
1473 xmlNodePtr node;
1474 struct lttng_event event;
1475 char **exclusions = NULL;
1476 unsigned long exclusion_count = 0;
1477 char *filter_expression = NULL;
1478
1479 assert(event_node);
1480 assert(handle);
1481 assert(channel_name);
1482
1483 memset(&event, 0, sizeof(event));
1484
1485 /* Initialize default log level which varies by domain */
1486 switch (handle->domain.type)
1487 {
1488 case LTTNG_DOMAIN_JUL:
1489 event.loglevel = LTTNG_LOGLEVEL_JUL_ALL;
1490 break;
1491 case LTTNG_DOMAIN_LOG4J:
1492 event.loglevel = LTTNG_LOGLEVEL_LOG4J_ALL;
1493 break;
1494 case LTTNG_DOMAIN_PYTHON:
1495 event.loglevel = LTTNG_LOGLEVEL_PYTHON_DEBUG;
1496 break;
1497 case LTTNG_DOMAIN_UST:
1498 case LTTNG_DOMAIN_KERNEL:
1499 event.loglevel = LTTNG_LOGLEVEL_DEBUG;
1500 break;
1501 default:
1502 assert(0);
1503 }
1504
1505 for (node = xmlFirstElementChild(event_node); node;
1506 node = xmlNextElementSibling(node)) {
1507 if (!strcmp((const char *) node->name, config_element_name)) {
1508 xmlChar *content;
1509 size_t name_len;
1510
1511 /* name */
1512 content = xmlNodeGetContent(node);
1513 if (!content) {
1514 ret = -LTTNG_ERR_NOMEM;
1515 goto end;
1516 }
1517
1518 name_len = strlen((char *) content);
1519 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
1520 WARN("Channel name too long.");
1521 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1522 free(content);
1523 goto end;
1524 }
1525
1526 strncpy(event.name, (const char *) content, name_len);
1527 free(content);
1528 } else if (!strcmp((const char *) node->name,
1529 config_element_enabled)) {
1530 xmlChar *content = xmlNodeGetContent(node);
1531
1532 /* enabled */
1533 if (!content) {
1534 ret = -LTTNG_ERR_NOMEM;
1535 goto end;
1536 }
1537
1538 ret = parse_bool(content, &event.enabled);
1539 free(content);
1540 if (ret) {
1541 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1542 goto end;
1543 }
1544 } else if (!strcmp((const char *) node->name,
1545 config_element_type)) {
1546 xmlChar *content = xmlNodeGetContent(node);
1547
1548 /* type */
1549 if (!content) {
1550 ret = -LTTNG_ERR_NOMEM;
1551 goto end;
1552 }
1553
1554 ret = get_event_type(content);
1555 free(content);
1556 if (ret < 0) {
1557 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1558 goto end;
1559 }
1560
1561 event.type = ret;
1562 } else if (!strcmp((const char *) node->name,
1563 config_element_loglevel_type)) {
1564 xmlChar *content = xmlNodeGetContent(node);
1565
1566 /* loglevel_type */
1567 if (!content) {
1568 ret = -LTTNG_ERR_NOMEM;
1569 goto end;
1570 }
1571
1572 ret = get_loglevel_type(content);
1573 free(content);
1574 if (ret < 0) {
1575 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1576 goto end;
1577 }
1578
1579 event.loglevel_type = ret;
1580 } else if (!strcmp((const char *) node->name,
1581 config_element_loglevel)) {
1582 xmlChar *content;
1583 int64_t loglevel = 0;
1584
1585 /* loglevel */
1586 content = xmlNodeGetContent(node);
1587 if (!content) {
1588 ret = -LTTNG_ERR_NOMEM;
1589 goto end;
1590 }
1591
1592 ret = parse_int(content, &loglevel);
1593 free(content);
1594 if (ret) {
1595 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1596 goto end;
1597 }
1598
1599 if (loglevel > INT_MAX || loglevel < INT_MIN) {
1600 WARN("loglevel out of range.");
1601 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1602 goto end;
1603 }
1604
1605 event.loglevel = loglevel;
1606 } else if (!strcmp((const char *) node->name,
1607 config_element_filter)) {
1608 xmlChar *content =
1609 xmlNodeGetContent(node);
1610
1611 /* filter */
1612 if (!content) {
1613 ret = -LTTNG_ERR_NOMEM;
1614 goto end;
1615 }
1616
1617 free(filter_expression);
1618 filter_expression = strdup((char *) content);
1619 free(content);
1620 if (!filter_expression) {
1621 ret = -LTTNG_ERR_NOMEM;
1622 goto end;
1623 }
1624 } else if (!strcmp((const char *) node->name,
1625 config_element_exclusions)) {
1626 xmlNodePtr exclusion_node;
1627 int exclusion_index = 0;
1628
1629 /* exclusions */
1630 if (exclusions) {
1631 /*
1632 * Exclusions has already been initialized,
1633 * invalid file.
1634 */
1635 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1636 goto end;
1637 }
1638
1639 exclusion_count = xmlChildElementCount(node);
1640 if (!exclusion_count) {
1641 continue;
1642 }
1643
1644 exclusions = zmalloc(exclusion_count * sizeof(char *));
1645 if (!exclusions) {
1646 exclusion_count = 0;
1647 ret = -LTTNG_ERR_NOMEM;
1648 goto end;
1649 }
1650
1651 for (exclusion_node = xmlFirstElementChild(node); exclusion_node;
1652 exclusion_node = xmlNextElementSibling(exclusion_node)) {
1653 xmlChar *content =
1654 xmlNodeGetContent(exclusion_node);
1655
1656 if (!content) {
1657 ret = -LTTNG_ERR_NOMEM;
1658 goto end;
1659 }
1660
1661 exclusions[exclusion_index] = strdup((const char *) content);
1662 free(content);
1663 if (!exclusions[exclusion_index]) {
1664 ret = -LTTNG_ERR_NOMEM;
1665 goto end;
1666 }
1667 exclusion_index++;
1668 }
1669
1670 event.exclusion = 1;
1671 } else if (!strcmp((const char *) node->name,
1672 config_element_attributes)) {
1673 xmlNodePtr attribute_node = xmlFirstElementChild(node);
1674
1675 /* attributes */
1676 if (!attribute_node) {
1677 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1678 goto end;
1679 }
1680
1681 if (!strcmp((const char *) node->name,
1682 config_element_probe_attributes)) {
1683 xmlNodePtr probe_attribute_node;
1684
1685 /* probe_attributes */
1686 for (probe_attribute_node =
1687 xmlFirstElementChild(attribute_node); probe_attribute_node;
1688 probe_attribute_node = xmlNextElementSibling(
1689 probe_attribute_node)) {
1690
1691 ret = process_probe_attribute_node(probe_attribute_node,
1692 &event.attr.probe);
1693 if (ret) {
1694 goto end;
1695 }
1696 }
1697 } else {
1698 size_t sym_len;
1699 xmlChar *content;
1700 xmlNodePtr symbol_node = xmlFirstElementChild(attribute_node);
1701
1702 /* function_attributes */
1703 content = xmlNodeGetContent(symbol_node);
1704 if (!content) {
1705 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1706 goto end;
1707 }
1708
1709 sym_len = strlen((char *) content);
1710 if (sym_len >= LTTNG_SYMBOL_NAME_LEN) {
1711 WARN("Function name too long.");
1712 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1713 free(content);
1714 goto end;
1715 }
1716
1717 strncpy(event.attr.ftrace.symbol_name, (char *) content,
1718 sym_len);
1719 free(content);
1720 }
1721 }
1722 }
1723
1724 if ((event.enabled && phase == ENABLE) || phase == CREATION) {
1725 ret = lttng_enable_event_with_exclusions(handle, &event, channel_name,
1726 filter_expression, exclusion_count, exclusions);
1727 if (ret < 0) {
1728 WARN("Enabling event (name:%s) on load failed.", event.name);
1729 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1730 goto end;
1731 }
1732 }
1733 end:
1734 for (i = 0; i < exclusion_count; i++) {
1735 free(exclusions[i]);
1736 }
1737
1738 free(exclusions);
1739 free(filter_expression);
1740 return ret;
1741 }
1742
1743 static
1744 int process_events_node(xmlNodePtr events_node, struct lttng_handle *handle,
1745 const char *channel_name)
1746 {
1747 int ret = 0;
1748 struct lttng_event event;
1749 xmlNodePtr node;
1750
1751 assert(events_node);
1752 assert(handle);
1753 assert(channel_name);
1754
1755 for (node = xmlFirstElementChild(events_node); node;
1756 node = xmlNextElementSibling(node)) {
1757 ret = process_event_node(node, handle, channel_name, CREATION);
1758 if (ret) {
1759 goto end;
1760 }
1761 }
1762
1763 /*
1764 * Disable all events to enable only the necessary events.
1765 * Limitations regarding lttng_disable_events and tuple descriptor
1766 * force this approach.
1767 */
1768 memset(&event, 0, sizeof(event));
1769 event.loglevel = -1;
1770 event.type = LTTNG_EVENT_ALL;
1771 ret = lttng_disable_event_ext(handle, &event, channel_name, NULL);
1772 if (ret) {
1773 goto end;
1774 }
1775
1776 for (node = xmlFirstElementChild(events_node); node;
1777 node = xmlNextElementSibling(node)) {
1778 ret = process_event_node(node, handle, channel_name, ENABLE);
1779 if (ret) {
1780 goto end;
1781 }
1782 }
1783
1784 end:
1785 return ret;
1786 }
1787
1788 static
1789 int process_channel_attr_node(xmlNodePtr attr_node,
1790 struct lttng_channel *channel, xmlNodePtr *contexts_node,
1791 xmlNodePtr *events_node)
1792 {
1793 int ret;
1794
1795 assert(attr_node);
1796 assert(channel);
1797 assert(contexts_node);
1798 assert(events_node);
1799
1800 if (!strcmp((const char *) attr_node->name, config_element_name)) {
1801 xmlChar *content;
1802 size_t name_len;
1803
1804 /* name */
1805 content = xmlNodeGetContent(attr_node);
1806 if (!content) {
1807 ret = -LTTNG_ERR_NOMEM;
1808 goto end;
1809 }
1810
1811 name_len = strlen((char *) content);
1812 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
1813 WARN("Channel name too long.");
1814 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1815 free(content);
1816 goto end;
1817 }
1818
1819 strncpy(channel->name, (const char *) content, name_len);
1820 free(content);
1821 } else if (!strcmp((const char *) attr_node->name,
1822 config_element_enabled)) {
1823 xmlChar *content;
1824 int enabled;
1825
1826 /* enabled */
1827 content = xmlNodeGetContent(attr_node);
1828 if (!content) {
1829 ret = -LTTNG_ERR_NOMEM;
1830 goto end;
1831 }
1832
1833 ret = parse_bool(content, &enabled);
1834 free(content);
1835 if (ret) {
1836 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1837 goto end;
1838 }
1839
1840 channel->enabled = enabled;
1841 } else if (!strcmp((const char *) attr_node->name,
1842 config_element_overwrite_mode)) {
1843 xmlChar *content;
1844
1845 /* overwrite_mode */
1846 content = xmlNodeGetContent(attr_node);
1847 if (!content) {
1848 ret = -LTTNG_ERR_NOMEM;
1849 goto end;
1850 }
1851
1852 ret = get_overwrite_mode(content);
1853 free(content);
1854 if (ret < 0) {
1855 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1856 goto end;
1857 }
1858
1859 channel->attr.overwrite = ret;
1860 } else if (!strcmp((const char *) attr_node->name,
1861 config_element_subbuf_size)) {
1862 xmlChar *content;
1863
1864 /* subbuffer_size */
1865 content = xmlNodeGetContent(attr_node);
1866 if (!content) {
1867 ret = -LTTNG_ERR_NOMEM;
1868 goto end;
1869 }
1870
1871 ret = parse_uint(content, &channel->attr.subbuf_size);
1872 free(content);
1873 if (ret) {
1874 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1875 goto end;
1876 }
1877 } else if (!strcmp((const char *) attr_node->name,
1878 config_element_num_subbuf)) {
1879 xmlChar *content;
1880
1881 /* subbuffer_count */
1882 content = xmlNodeGetContent(attr_node);
1883 if (!content) {
1884 ret = -LTTNG_ERR_NOMEM;
1885 goto end;
1886 }
1887
1888 ret = parse_uint(content, &channel->attr.num_subbuf);
1889 free(content);
1890 if (ret) {
1891 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1892 goto end;
1893 }
1894 } else if (!strcmp((const char *) attr_node->name,
1895 config_element_switch_timer_interval)) {
1896 xmlChar *content;
1897 uint64_t switch_timer_interval = 0;
1898
1899 /* switch_timer_interval */
1900 content = xmlNodeGetContent(attr_node);
1901 if (!content) {
1902 ret = -LTTNG_ERR_NOMEM;
1903 goto end;
1904 }
1905
1906 ret = parse_uint(content, &switch_timer_interval);
1907 free(content);
1908 if (ret) {
1909 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1910 goto end;
1911 }
1912
1913 if (switch_timer_interval > UINT_MAX) {
1914 WARN("switch_timer_interval out of range.");
1915 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1916 goto end;
1917 }
1918
1919 channel->attr.switch_timer_interval =
1920 switch_timer_interval;
1921 } else if (!strcmp((const char *) attr_node->name,
1922 config_element_read_timer_interval)) {
1923 xmlChar *content;
1924 uint64_t read_timer_interval = 0;
1925
1926 /* read_timer_interval */
1927 content = xmlNodeGetContent(attr_node);
1928 if (!content) {
1929 ret = -LTTNG_ERR_NOMEM;
1930 goto end;
1931 }
1932
1933 ret = parse_uint(content, &read_timer_interval);
1934 free(content);
1935 if (ret) {
1936 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1937 goto end;
1938 }
1939
1940 if (read_timer_interval > UINT_MAX) {
1941 WARN("read_timer_interval out of range.");
1942 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1943 goto end;
1944 }
1945
1946 channel->attr.read_timer_interval =
1947 read_timer_interval;
1948 } else if (!strcmp((const char *) attr_node->name,
1949 config_element_output_type)) {
1950 xmlChar *content;
1951
1952 /* output_type */
1953 content = xmlNodeGetContent(attr_node);
1954 if (!content) {
1955 ret = -LTTNG_ERR_NOMEM;
1956 goto end;
1957 }
1958
1959 ret = get_output_type(content);
1960 free(content);
1961 if (ret < 0) {
1962 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1963 goto end;
1964 }
1965
1966 channel->attr.output = ret;
1967 } else if (!strcmp((const char *) attr_node->name,
1968 config_element_tracefile_size)) {
1969 xmlChar *content;
1970
1971 /* tracefile_size */
1972 content = xmlNodeGetContent(attr_node);
1973 if (!content) {
1974 ret = -LTTNG_ERR_NOMEM;
1975 goto end;
1976 }
1977
1978 ret = parse_uint(content, &channel->attr.tracefile_size);
1979 free(content);
1980 if (ret) {
1981 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1982 goto end;
1983 }
1984 } else if (!strcmp((const char *) attr_node->name,
1985 config_element_tracefile_count)) {
1986 xmlChar *content;
1987
1988 /* tracefile_count */
1989 content = xmlNodeGetContent(attr_node);
1990 if (!content) {
1991 ret = -LTTNG_ERR_NOMEM;
1992 goto end;
1993 }
1994
1995 ret = parse_uint(content, &channel->attr.tracefile_count);
1996 free(content);
1997 if (ret) {
1998 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
1999 goto end;
2000 }
2001 } else if (!strcmp((const char *) attr_node->name,
2002 config_element_live_timer_interval)) {
2003 xmlChar *content;
2004 uint64_t live_timer_interval = 0;
2005
2006 /* live_timer_interval */
2007 content = xmlNodeGetContent(attr_node);
2008 if (!content) {
2009 ret = -LTTNG_ERR_NOMEM;
2010 goto end;
2011 }
2012
2013 ret = parse_uint(content, &live_timer_interval);
2014 free(content);
2015 if (ret) {
2016 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2017 goto end;
2018 }
2019
2020 if (live_timer_interval > UINT_MAX) {
2021 WARN("live_timer_interval out of range.");
2022 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2023 goto end;
2024 }
2025
2026 channel->attr.live_timer_interval =
2027 live_timer_interval;
2028 } else if (!strcmp((const char *) attr_node->name,
2029 config_element_events)) {
2030 /* events */
2031 *events_node = attr_node;
2032 } else {
2033 /* contexts */
2034 *contexts_node = attr_node;
2035 }
2036 ret = 0;
2037 end:
2038 return ret;
2039 }
2040
2041 static
2042 int process_context_node(xmlNodePtr context_node,
2043 struct lttng_handle *handle, const char *channel_name)
2044 {
2045 int ret;
2046 struct lttng_event_context context;
2047 xmlNodePtr context_child_node = xmlFirstElementChild(context_node);
2048
2049 assert(handle);
2050 assert(channel_name);
2051
2052 if (!context_child_node) {
2053 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2054 goto end;
2055 }
2056
2057 memset(&context, 0, sizeof(context));
2058
2059 if (!strcmp((const char *) context_child_node->name,
2060 config_element_type)) {
2061 /* type */
2062 xmlChar *content = xmlNodeGetContent(context_child_node);
2063
2064 if (!content) {
2065 ret = -LTTNG_ERR_NOMEM;
2066 goto end;
2067 }
2068
2069 ret = get_context_type(content);
2070 free(content);
2071 if (ret < 0) {
2072 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2073 goto end;
2074 }
2075
2076 context.ctx = ret;
2077 } else if (!strcmp((const char *) context_child_node->name,
2078 config_element_context_perf)) {
2079 /* perf */
2080 xmlNodePtr perf_attr_node;
2081
2082 context.ctx = handle->domain.type == LTTNG_DOMAIN_KERNEL ?
2083 LTTNG_EVENT_CONTEXT_PERF_CPU_COUNTER :
2084 LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER;
2085 for (perf_attr_node = xmlFirstElementChild(context_child_node);
2086 perf_attr_node; perf_attr_node =
2087 xmlNextElementSibling(perf_attr_node)) {
2088 if (!strcmp((const char *) perf_attr_node->name,
2089 config_element_type)) {
2090 xmlChar *content;
2091 uint64_t type = 0;
2092
2093 /* type */
2094 content = xmlNodeGetContent(perf_attr_node);
2095 if (!content) {
2096 ret = -LTTNG_ERR_NOMEM;
2097 goto end;
2098 }
2099
2100 ret = parse_uint(content, &type);
2101 free(content);
2102 if (ret) {
2103 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2104 goto end;
2105 }
2106
2107 if (type > UINT32_MAX) {
2108 WARN("perf context type out of range.");
2109 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2110 goto end;
2111 }
2112
2113 context.u.perf_counter.type = type;
2114 } else if (!strcmp((const char *) perf_attr_node->name,
2115 config_element_config)) {
2116 xmlChar *content;
2117 uint64_t config = 0;
2118
2119 /* config */
2120 content = xmlNodeGetContent(perf_attr_node);
2121 if (!content) {
2122 ret = -LTTNG_ERR_NOMEM;
2123 goto end;
2124 }
2125
2126 ret = parse_uint(content, &config);
2127 free(content);
2128 if (ret) {
2129 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2130 goto end;
2131 }
2132
2133 context.u.perf_counter.config = config;
2134 } else if (!strcmp((const char *) perf_attr_node->name,
2135 config_element_name)) {
2136 xmlChar *content;
2137 size_t name_len;
2138
2139 /* name */
2140 content = xmlNodeGetContent(perf_attr_node);
2141 if (!content) {
2142 ret = -LTTNG_ERR_NOMEM;
2143 goto end;
2144 }
2145
2146 name_len = strlen((char *) content);
2147 if (name_len >= LTTNG_SYMBOL_NAME_LEN) {
2148 WARN("perf context name too long.");
2149 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2150 free(content);
2151 goto end;
2152 }
2153
2154 strncpy(context.u.perf_counter.name, (const char *) content,
2155 name_len);
2156 free(content);
2157 }
2158 }
2159 } else if (!strcmp((const char *) context_child_node->name,
2160 config_element_context_app)) {
2161 /* application context */
2162 xmlNodePtr app_ctx_node;
2163
2164 context.ctx = LTTNG_EVENT_CONTEXT_APP_CONTEXT;
2165 for (app_ctx_node = xmlFirstElementChild(context_child_node);
2166 app_ctx_node; app_ctx_node =
2167 xmlNextElementSibling(app_ctx_node)) {
2168 xmlChar *content;
2169 char **target = strcmp(
2170 (const char *) app_ctx_node->name,
2171 config_element_context_app_provider_name) == 0 ?
2172 &context.u.app_ctx.provider_name :
2173 &context.u.app_ctx.ctx_name;
2174
2175 content = xmlNodeGetContent(app_ctx_node);
2176 if (!content) {
2177 ret = -LTTNG_ERR_NOMEM;
2178 goto end;
2179 }
2180
2181 *target = (char *) content;
2182 }
2183 } else {
2184 /* Unrecognized context type */
2185 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2186 goto end;
2187 }
2188
2189 ret = lttng_add_context(handle, &context, NULL, channel_name);
2190 if (context.ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) {
2191 free(context.u.app_ctx.provider_name);
2192 free(context.u.app_ctx.ctx_name);
2193 }
2194 end:
2195 return ret;
2196 }
2197
2198 static
2199 int process_contexts_node(xmlNodePtr contexts_node,
2200 struct lttng_handle *handle, const char *channel_name)
2201 {
2202 int ret = 0;
2203 xmlNodePtr context_node;
2204
2205 for (context_node = xmlFirstElementChild(contexts_node); context_node;
2206 context_node = xmlNextElementSibling(context_node)) {
2207 ret = process_context_node(context_node, handle, channel_name);
2208 if (ret) {
2209 goto end;
2210 }
2211 }
2212 end:
2213 return ret;
2214 }
2215
2216 static
2217 int process_pid_tracker_node(xmlNodePtr pid_tracker_node,
2218 struct lttng_handle *handle)
2219 {
2220 int ret = 0, child;
2221 xmlNodePtr targets_node = NULL;
2222 xmlNodePtr node;
2223
2224 assert(handle);
2225 assert(pid_tracker_node);
2226 /* get the targets node */
2227 for (node = xmlFirstElementChild(pid_tracker_node); node;
2228 node = xmlNextElementSibling(node)) {
2229 if (!strcmp((const char *) node->name,
2230 config_element_targets)) {
2231 targets_node = node;
2232 break;
2233 }
2234 }
2235
2236 if (!targets_node) {
2237 ret = LTTNG_ERR_INVALID;
2238 goto end;
2239 }
2240
2241 /* Go through all pid_target node */
2242 child = xmlChildElementCount(targets_node);
2243 if (child == 0) {
2244 /* The session is explicitly set to target nothing. */
2245 ret = lttng_untrack_pid(handle, -1);
2246 if (ret) {
2247 goto end;
2248 }
2249 }
2250 for (node = xmlFirstElementChild(targets_node); node;
2251 node = xmlNextElementSibling(node)) {
2252 xmlNodePtr pid_target_node = node;
2253
2254 /* get pid node and track it */
2255 for (node = xmlFirstElementChild(pid_target_node); node;
2256 node = xmlNextElementSibling(node)) {
2257 if (!strcmp((const char *) node->name,
2258 config_element_pid)) {
2259 int64_t pid;
2260 xmlChar *content = NULL;
2261
2262 content = xmlNodeGetContent(node);
2263 if (!content) {
2264 ret = LTTNG_ERR_LOAD_INVALID_CONFIG;
2265 goto end;
2266 }
2267
2268 ret = parse_int(content, &pid);
2269 free(content);
2270 if (ret) {
2271 ret = LTTNG_ERR_LOAD_INVALID_CONFIG;
2272 goto end;
2273 }
2274
2275 ret = lttng_track_pid(handle, (int) pid);
2276 if (ret) {
2277 goto end;
2278 }
2279 }
2280 }
2281 node = pid_target_node;
2282 }
2283
2284 end:
2285 return ret;
2286 }
2287
2288
2289 static
2290 int process_domain_node(xmlNodePtr domain_node, const char *session_name)
2291 {
2292 int ret;
2293 struct lttng_domain domain = { 0 };
2294 struct lttng_handle *handle = NULL;
2295 xmlNodePtr channels_node = NULL;
2296 xmlNodePtr trackers_node = NULL;
2297 xmlNodePtr pid_tracker_node = NULL;
2298 xmlNodePtr node;
2299
2300 assert(session_name);
2301
2302 ret = init_domain(domain_node, &domain);
2303 if (ret) {
2304 goto end;
2305 }
2306
2307 handle = lttng_create_handle(session_name, &domain);
2308 if (!handle) {
2309 ret = -LTTNG_ERR_NOMEM;
2310 goto end;
2311 }
2312
2313 /* get the channels node */
2314 for (node = xmlFirstElementChild(domain_node); node;
2315 node = xmlNextElementSibling(node)) {
2316 if (!strcmp((const char *) node->name,
2317 config_element_channels)) {
2318 channels_node = node;
2319 break;
2320 }
2321 }
2322
2323 if (!channels_node) {
2324 goto end;
2325 }
2326
2327 /* create all channels */
2328 for (node = xmlFirstElementChild(channels_node); node;
2329 node = xmlNextElementSibling(node)) {
2330 struct lttng_channel channel;
2331 xmlNodePtr contexts_node = NULL;
2332 xmlNodePtr events_node = NULL;
2333 xmlNodePtr channel_attr_node;
2334
2335 memset(&channel, 0, sizeof(channel));
2336 lttng_channel_set_default_attr(&domain, &channel.attr);
2337
2338 for (channel_attr_node = xmlFirstElementChild(node);
2339 channel_attr_node; channel_attr_node =
2340 xmlNextElementSibling(channel_attr_node)) {
2341 ret = process_channel_attr_node(channel_attr_node,
2342 &channel, &contexts_node, &events_node);
2343 if (ret) {
2344 goto end;
2345 }
2346 }
2347
2348 ret = lttng_enable_channel(handle, &channel);
2349 if (ret < 0) {
2350 goto end;
2351 }
2352
2353 ret = process_events_node(events_node, handle, channel.name);
2354 if (ret) {
2355 goto end;
2356 }
2357
2358 ret = process_contexts_node(contexts_node, handle,
2359 channel.name);
2360 if (ret) {
2361 goto end;
2362 }
2363 }
2364
2365 /* get the trackers node */
2366 for (node = xmlFirstElementChild(domain_node); node;
2367 node = xmlNextElementSibling(node)) {
2368 if (!strcmp((const char *) node->name,
2369 config_element_trackers)) {
2370 trackers_node = node;
2371 break;
2372 }
2373 }
2374
2375 if (!trackers_node) {
2376 goto end;
2377 }
2378
2379 for (node = xmlFirstElementChild(trackers_node); node;
2380 node = xmlNextElementSibling(node)) {
2381 if (!strcmp((const char *)node->name,config_element_pid_tracker)) {
2382 pid_tracker_node = node;
2383 ret = process_pid_tracker_node(pid_tracker_node, handle);
2384 if (ret) {
2385 goto end;
2386 }
2387 }
2388 }
2389
2390 if (!pid_tracker_node) {
2391 lttng_track_pid(handle, -1);
2392 }
2393
2394 end:
2395 lttng_destroy_handle(handle);
2396 return ret;
2397 }
2398
2399 static
2400 int process_session_node(xmlNodePtr session_node, const char *session_name,
2401 int override)
2402 {
2403 int ret, started = -1, snapshot_mode = -1;
2404 uint64_t live_timer_interval = UINT64_MAX;
2405 xmlChar *name = NULL;
2406 xmlChar *shm_path = NULL;
2407 xmlNodePtr domains_node = NULL;
2408 xmlNodePtr output_node = NULL;
2409 xmlNodePtr node;
2410 struct lttng_domain *kernel_domain = NULL;
2411 struct lttng_domain *ust_domain = NULL;
2412 struct lttng_domain *jul_domain = NULL;
2413 struct lttng_domain *log4j_domain = NULL;
2414 struct lttng_domain *python_domain = NULL;
2415
2416 for (node = xmlFirstElementChild(session_node); node;
2417 node = xmlNextElementSibling(node)) {
2418 if (!name && !strcmp((const char *) node->name,
2419 config_element_name)) {
2420 /* name */
2421 xmlChar *node_content = xmlNodeGetContent(node);
2422 if (!node_content) {
2423 ret = -LTTNG_ERR_NOMEM;
2424 goto error;
2425 }
2426
2427 name = node_content;
2428 } else if (!domains_node && !strcmp((const char *) node->name,
2429 config_element_domains)) {
2430 /* domains */
2431 domains_node = node;
2432 } else if (started == -1 && !strcmp((const char *) node->name,
2433 config_element_started)) {
2434 /* started */
2435 xmlChar *node_content = xmlNodeGetContent(node);
2436 if (!node_content) {
2437 ret = -LTTNG_ERR_NOMEM;
2438 goto error;
2439 }
2440
2441 ret = parse_bool(node_content, &started);
2442 free(node_content);
2443 if (ret) {
2444 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2445 goto error;
2446 }
2447 } else if (!output_node && !strcmp((const char *) node->name,
2448 config_element_output)) {
2449 /* output */
2450 output_node = node;
2451 } else if (!shm_path && !strcmp((const char *) node->name,
2452 config_element_shared_memory_path)) {
2453 /* shared memory path */
2454 xmlChar *node_content = xmlNodeGetContent(node);
2455 if (!node_content) {
2456 ret = -LTTNG_ERR_NOMEM;
2457 goto error;
2458 }
2459
2460 shm_path = node_content;
2461 } else {
2462 /* attributes, snapshot_mode or live_timer_interval */
2463 xmlNodePtr attributes_child =
2464 xmlFirstElementChild(node);
2465
2466 if (!strcmp((const char *) attributes_child->name,
2467 config_element_snapshot_mode)) {
2468 /* snapshot_mode */
2469 xmlChar *snapshot_mode_content =
2470 xmlNodeGetContent(attributes_child);
2471 if (!snapshot_mode_content) {
2472 ret = -LTTNG_ERR_NOMEM;
2473 goto error;
2474 }
2475
2476 ret = parse_bool(snapshot_mode_content, &snapshot_mode);
2477 free(snapshot_mode_content);
2478 if (ret) {
2479 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2480 goto error;
2481 }
2482 } else {
2483 /* live_timer_interval */
2484 xmlChar *timer_interval_content =
2485 xmlNodeGetContent(attributes_child);
2486 if (!timer_interval_content) {
2487 ret = -LTTNG_ERR_NOMEM;
2488 goto error;
2489 }
2490
2491 ret = parse_uint(timer_interval_content, &live_timer_interval);
2492 free(timer_interval_content);
2493 if (ret) {
2494 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2495 goto error;
2496 }
2497 }
2498 }
2499 }
2500
2501 if (!name) {
2502 /* Mandatory attribute, as defined in the session XSD */
2503 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2504 goto error;
2505 }
2506
2507 if (session_name && strcmp((char *) name, session_name)) {
2508 /* This is not the session we are looking for */
2509 ret = -LTTNG_ERR_NO_SESSION;
2510 goto error;
2511 }
2512
2513 /* Init domains to create the session handles */
2514 for (node = xmlFirstElementChild(domains_node); node;
2515 node = xmlNextElementSibling(node)) {
2516 struct lttng_domain *domain;
2517
2518 domain = zmalloc(sizeof(*domain));
2519 if (!domain) {
2520 ret = -LTTNG_ERR_NOMEM;
2521 goto error;
2522 }
2523
2524 ret = init_domain(node, domain);
2525 if (ret) {
2526 goto domain_init_error;
2527 }
2528
2529 switch (domain->type) {
2530 case LTTNG_DOMAIN_KERNEL:
2531 if (kernel_domain) {
2532 /* Same domain seen twice, invalid! */
2533 goto domain_init_error;
2534 }
2535 kernel_domain = domain;
2536 break;
2537 case LTTNG_DOMAIN_UST:
2538 if (ust_domain) {
2539 /* Same domain seen twice, invalid! */
2540 goto domain_init_error;
2541 }
2542 ust_domain = domain;
2543 break;
2544 case LTTNG_DOMAIN_JUL:
2545 if (jul_domain) {
2546 /* Same domain seen twice, invalid! */
2547 goto domain_init_error;
2548 }
2549 jul_domain = domain;
2550 break;
2551 case LTTNG_DOMAIN_LOG4J:
2552 if (log4j_domain) {
2553 /* Same domain seen twice, invalid! */
2554 goto domain_init_error;
2555 }
2556 log4j_domain = domain;
2557 break;
2558 case LTTNG_DOMAIN_PYTHON:
2559 if (python_domain) {
2560 /* Same domain seen twice, invalid! */
2561 goto domain_init_error;
2562 }
2563 python_domain = domain;
2564 break;
2565 default:
2566 WARN("Invalid domain type");
2567 goto domain_init_error;
2568 }
2569 continue;
2570 domain_init_error:
2571 free(domain);
2572 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2573 goto error;
2574 }
2575
2576 if (override) {
2577 /* Destroy session if it exists */
2578 ret = lttng_destroy_session((const char *) name);
2579 if (ret && ret != -LTTNG_ERR_SESS_NOT_FOUND) {
2580 ERR("Failed to destroy existing session.");
2581 goto error;
2582 }
2583 }
2584
2585 /* Create session type depending on output type */
2586 if (snapshot_mode && snapshot_mode != -1) {
2587 ret = create_snapshot_session((const char *) name, output_node);
2588 } else if (live_timer_interval &&
2589 live_timer_interval != UINT64_MAX) {
2590 ret = create_session((const char *) name, kernel_domain,
2591 ust_domain, jul_domain, log4j_domain,
2592 output_node, live_timer_interval);
2593 } else {
2594 /* regular session */
2595 ret = create_session((const char *) name, kernel_domain,
2596 ust_domain, jul_domain, log4j_domain,
2597 output_node, UINT64_MAX);
2598 }
2599 if (ret) {
2600 goto error;
2601 }
2602
2603 if (shm_path) {
2604 ret = lttng_set_session_shm_path((const char *) name,
2605 (const char *) shm_path);
2606 if (ret) {
2607 goto error;
2608 }
2609 }
2610
2611 for (node = xmlFirstElementChild(domains_node); node;
2612 node = xmlNextElementSibling(node)) {
2613 ret = process_domain_node(node, (const char *) name);
2614 if (ret) {
2615 goto end;
2616 }
2617 }
2618
2619 if (started) {
2620 ret = lttng_start_tracing((const char *) name);
2621 if (ret) {
2622 goto end;
2623 }
2624 }
2625
2626 end:
2627 if (ret < 0) {
2628 ERR("Failed to load session %s: %s", (const char *) name,
2629 lttng_strerror(ret));
2630 lttng_destroy_session((const char *) name);
2631 }
2632
2633 error:
2634 free(kernel_domain);
2635 free(ust_domain);
2636 free(jul_domain);
2637 free(log4j_domain);
2638 free(python_domain);
2639 xmlFree(name);
2640 xmlFree(shm_path);
2641 return ret;
2642 }
2643
2644 /*
2645 * Return 1 if the given path is readable by the current UID or 0 if not.
2646 * Return -1 if the path is EPERM.
2647 */
2648 static int validate_file_read_creds(const char *path)
2649 {
2650 int ret;
2651
2652 assert(path);
2653
2654 /* Can we read the file. */
2655 ret = access(path, R_OK);
2656 if (!ret) {
2657 goto valid;
2658 }
2659 if (errno == EACCES) {
2660 return -1;
2661 } else {
2662 /* Invalid. */
2663 return 0;
2664 }
2665 valid:
2666 return 1;
2667 }
2668
2669 static
2670 int load_session_from_file(const char *path, const char *session_name,
2671 struct session_config_validation_ctx *validation_ctx, int override)
2672 {
2673 int ret, session_found = !session_name;
2674 xmlDocPtr doc = NULL;
2675 xmlNodePtr sessions_node;
2676 xmlNodePtr session_node;
2677
2678 assert(path);
2679 assert(validation_ctx);
2680
2681 ret = validate_file_read_creds(path);
2682 if (ret != 1) {
2683 if (ret == -1) {
2684 ret = -LTTNG_ERR_EPERM;
2685 } else {
2686 ret = -LTTNG_ERR_LOAD_SESSION_NOENT;
2687 }
2688 goto end;
2689 }
2690
2691 doc = xmlParseFile(path);
2692 if (!doc) {
2693 ret = -LTTNG_ERR_LOAD_IO_FAIL;
2694 goto end;
2695 }
2696
2697 ret = xmlSchemaValidateDoc(validation_ctx->schema_validation_ctx, doc);
2698 if (ret) {
2699 ERR("Session configuration file validation failed");
2700 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2701 goto end;
2702 }
2703
2704 sessions_node = xmlDocGetRootElement(doc);
2705 if (!sessions_node) {
2706 goto end;
2707 }
2708
2709 for (session_node = xmlFirstElementChild(sessions_node);
2710 session_node; session_node =
2711 xmlNextElementSibling(session_node)) {
2712 ret = process_session_node(session_node,
2713 session_name, override);
2714 if (session_name && ret == 0) {
2715 /* Target session found and loaded */
2716 session_found = 1;
2717 break;
2718 }
2719 }
2720 end:
2721 xmlFreeDoc(doc);
2722 if (!ret) {
2723 ret = session_found ? 0 : -LTTNG_ERR_LOAD_SESSION_NOENT;
2724 }
2725 return ret;
2726 }
2727
2728 static
2729 int load_session_from_document(struct config_document *document, const char *session_name,
2730 struct session_config_validation_ctx *validation_ctx, int override)
2731 {
2732 int ret, session_found = !session_name;
2733 xmlNodePtr sessions_node;
2734 xmlNodePtr session_node;
2735
2736 assert(validation_ctx);
2737
2738 ret = xmlSchemaValidateDoc(validation_ctx->schema_validation_ctx, document->document);
2739 if (ret) {
2740 ERR("Session configuration file validation failed");
2741 ret = -LTTNG_ERR_LOAD_INVALID_CONFIG;
2742 goto end;
2743 }
2744
2745 sessions_node = xmlDocGetRootElement(document->document);
2746 if (!sessions_node) {
2747 goto end;
2748 }
2749
2750 for (session_node = xmlFirstElementChild(sessions_node);
2751 session_node; session_node =
2752 xmlNextElementSibling(session_node)) {
2753 ret = process_session_node(session_node,
2754 session_name, override);
2755 if (session_name && ret == 0) {
2756 /* Target session found and loaded */
2757 session_found = 1;
2758 break;
2759 }
2760 }
2761 end:
2762 if (!ret) {
2763 ret = session_found ? 0 : -LTTNG_ERR_LOAD_SESSION_NOENT;
2764 }
2765 return ret;
2766 }
2767
2768 /* Allocate dirent as recommended by READDIR(3), NOTES on readdir_r */
2769 static
2770 struct dirent *alloc_dirent(const char *path)
2771 {
2772 size_t len;
2773 long name_max;
2774 struct dirent *entry;
2775
2776 name_max = pathconf(path, _PC_NAME_MAX);
2777 if (name_max == -1) {
2778 name_max = PATH_MAX;
2779 }
2780 len = offsetof(struct dirent, d_name) + name_max + 1;
2781 entry = zmalloc(len);
2782 return entry;
2783 }
2784
2785 static
2786 int load_session_from_path(const char *path, const char *session_name,
2787 struct session_config_validation_ctx *validation_ctx, int override)
2788 {
2789 int ret, session_found = !session_name;
2790 DIR *directory = NULL;
2791
2792 assert(path);
2793 assert(validation_ctx);
2794
2795 directory = opendir(path);
2796 if (!directory) {
2797 switch (errno) {
2798 case ENOTDIR:
2799 /* Try the file loading. */
2800 break;
2801 case ENOENT:
2802 ret = -LTTNG_ERR_LOAD_SESSION_NOENT;
2803 goto end;
2804 default:
2805 ret = -LTTNG_ERR_LOAD_IO_FAIL;
2806 goto end;
2807 }
2808 }
2809 if (directory) {
2810 struct dirent *entry;
2811 struct dirent *result;
2812 char *file_path = NULL;
2813 size_t path_len = strlen(path);
2814
2815 if (path_len >= PATH_MAX) {
2816 ret = -LTTNG_ERR_INVALID;
2817 goto end;
2818 }
2819
2820 entry = alloc_dirent(path);
2821 if (!entry) {
2822 ret = -LTTNG_ERR_NOMEM;
2823 goto end;
2824 }
2825
2826 file_path = zmalloc(PATH_MAX);
2827 if (!file_path) {
2828 ret = -LTTNG_ERR_NOMEM;
2829 free(entry);
2830 goto end;
2831 }
2832
2833 strncpy(file_path, path, path_len);
2834 if (file_path[path_len - 1] != '/') {
2835 file_path[path_len++] = '/';
2836 }
2837
2838 ret = 0;
2839 /* Search for *.lttng files */
2840 while (!readdir_r(directory, entry, &result) && result) {
2841 size_t file_name_len = strlen(result->d_name);
2842
2843 if (file_name_len <=
2844 sizeof(DEFAULT_SESSION_CONFIG_FILE_EXTENSION)) {
2845 continue;
2846 }
2847
2848 if (path_len + file_name_len >= PATH_MAX) {
2849 continue;
2850 }
2851
2852 if (strcmp(DEFAULT_SESSION_CONFIG_FILE_EXTENSION,
2853 result->d_name + file_name_len - sizeof(
2854 DEFAULT_SESSION_CONFIG_FILE_EXTENSION) + 1)) {
2855 continue;
2856 }
2857
2858 strncpy(file_path + path_len, result->d_name, file_name_len);
2859 file_path[path_len + file_name_len] = '\0';
2860
2861 ret = load_session_from_file(file_path, session_name,
2862 validation_ctx, override);
2863 if (session_name && !ret) {
2864 session_found = 1;
2865 break;
2866 }
2867 }
2868
2869 free(entry);
2870 free(file_path);
2871 } else {
2872 ret = load_session_from_file(path, session_name,
2873 validation_ctx, override);
2874 if (ret) {
2875 goto end;
2876 } else {
2877 session_found = 1;
2878 }
2879 }
2880
2881 end:
2882 if (directory) {
2883 if (closedir(directory)) {
2884 PERROR("closedir");
2885 }
2886 }
2887
2888 if (session_found) {
2889 ret = 0;
2890 }
2891
2892 return ret;
2893 }
2894
2895 /*
2896 * Validate that the given path's credentials and the current process have the
2897 * same UID. If so, return 1 else return 0 if it does NOT match.
2898 */
2899 static int validate_path_creds(const char *path)
2900 {
2901 int ret, uid = getuid();
2902 struct stat buf;
2903
2904 assert(path);
2905
2906 if (uid == 0) {
2907 goto valid;
2908 }
2909
2910 ret = stat(path, &buf);
2911 if (ret < 0) {
2912 if (errno != ENOENT) {
2913 PERROR("stat");
2914 }
2915 ret = -LTTNG_ERR_INVALID;
2916 goto valid;
2917 }
2918
2919 if (buf.st_uid != uid) {
2920 goto invalid;
2921 }
2922
2923 valid:
2924 return 1;
2925 invalid:
2926 return 0;
2927 }
2928
2929 LTTNG_HIDDEN
2930 int config_load_session(const char *path, const char *session_name,
2931 int override, unsigned int autoload)
2932 {
2933 int ret;
2934 bool session_loaded = false;
2935 const char *path_ptr = NULL;
2936 struct session_config_validation_ctx validation_ctx = { 0 };
2937
2938 ret = init_session_config_validation_ctx(&validation_ctx);
2939 if (ret) {
2940 goto end;
2941 }
2942
2943 if (!path) {
2944 char *home_path;
2945 const char *sys_path;
2946
2947 /* Try home path */
2948 home_path = utils_get_home_dir();
2949 if (home_path) {
2950 char path[PATH_MAX];
2951
2952 /*
2953 * Try user session configuration path. Ignore error here so we can
2954 * continue loading the system wide sessions.
2955 */
2956 if (autoload) {
2957 ret = snprintf(path, sizeof(path),
2958 DEFAULT_SESSION_HOME_CONFIGPATH "/"
2959 DEFAULT_SESSION_CONFIG_AUTOLOAD, home_path);
2960 if (ret < 0) {
2961 PERROR("snprintf session autoload home config path");
2962 goto end;
2963 }
2964
2965 /*
2966 * Credentials are only validated for the autoload in order to
2967 * avoid any user session daemon to try to load kernel sessions
2968 * automatically and failing all the times.
2969 */
2970 ret = validate_path_creds(path);
2971 if (ret) {
2972 path_ptr = path;
2973 }
2974 } else {
2975 ret = snprintf(path, sizeof(path),
2976 DEFAULT_SESSION_HOME_CONFIGPATH, home_path);
2977 if (ret < 0) {
2978 PERROR("snprintf session home config path");
2979 goto end;
2980 }
2981 path_ptr = path;
2982 }
2983 if (path_ptr) {
2984 ret = load_session_from_path(path_ptr, session_name,
2985 &validation_ctx, override);
2986 if (ret && ret != -LTTNG_ERR_LOAD_SESSION_NOENT) {
2987 goto end;
2988 }
2989 /*
2990 * Continue even if the session was found since we have to try
2991 * the system wide sessions.
2992 */
2993 session_loaded = true;
2994 }
2995 }
2996
2997 /* Reset path pointer for the system wide dir. */
2998 path_ptr = NULL;
2999
3000 /* Try system wide configuration directory. */
3001 if (autoload) {
3002 sys_path = DEFAULT_SESSION_SYSTEM_CONFIGPATH "/"
3003 DEFAULT_SESSION_CONFIG_AUTOLOAD;
3004 ret = validate_path_creds(sys_path);
3005 if (ret) {
3006 path_ptr = sys_path;
3007 }
3008 } else {
3009 sys_path = DEFAULT_SESSION_SYSTEM_CONFIGPATH;
3010 path_ptr = sys_path;
3011 }
3012
3013 if (path_ptr) {
3014 ret = load_session_from_path(path_ptr, session_name,
3015 &validation_ctx, override);
3016 if (!ret) {
3017 session_loaded = true;
3018 }
3019 }
3020 } else {
3021 ret = access(path, F_OK);
3022 if (ret < 0) {
3023 PERROR("access");
3024 switch (errno) {
3025 case ENOENT:
3026 ret = -LTTNG_ERR_INVALID;
3027 WARN("Session configuration path does not exist.");
3028 break;
3029 case EACCES:
3030 ret = -LTTNG_ERR_EPERM;
3031 break;
3032 default:
3033 ret = -LTTNG_ERR_UNK;
3034 break;
3035 }
3036 goto end;
3037 }
3038
3039 ret = load_session_from_path(path, session_name,
3040 &validation_ctx, override);
3041 }
3042 end:
3043 fini_session_config_validation_ctx(&validation_ctx);
3044 if (ret == -LTTNG_ERR_LOAD_SESSION_NOENT && !session_name && !path) {
3045 /*
3046 * Don't report an error if no sessions are found when called
3047 * without a session_name or a search path.
3048 */
3049 ret = 0;
3050 }
3051
3052 if (session_loaded && ret == -LTTNG_ERR_LOAD_SESSION_NOENT) {
3053 /* A matching session was found in one of the search paths. */
3054 ret = 0;
3055 }
3056 return ret;
3057 }
3058
3059 static
3060 void __attribute__((destructor)) session_config_exit(void)
3061 {
3062 xmlCleanupParser();
3063 }
3064
3065 LTTNG_HIDDEN
3066 struct config_document *config_document_get(const char *path)
3067 {
3068 int ret;
3069 struct config_document *document = NULL;
3070 struct session_config_validation_ctx validation_ctx = { 0 };
3071
3072 assert(path);
3073
3074 ret = access(path, F_OK);
3075 if (ret < 0) {
3076 PERROR("access");
3077 switch (errno) {
3078 case ENOENT:
3079 ERR("Configuration document path does not exist.");
3080 break;
3081 case EACCES:
3082 ERR("Configuration document permission denied.");
3083 break;
3084 default:
3085 ERR("Configuration document unknown error.");
3086 break;
3087 }
3088 goto end;
3089 }
3090
3091 ret = init_session_config_validation_ctx(&validation_ctx);
3092 if (ret) {
3093 goto end;
3094 }
3095
3096 ret = validate_file_read_creds(path);
3097 if (ret != 1) {
3098 if (ret == -1) {
3099 ERR("Configuration document permission denied.");
3100 } else {
3101 ERR("Configuration document does not exist.");
3102 }
3103 goto end;
3104 }
3105
3106 document = zmalloc(sizeof(struct config_document));
3107 if (!document) {
3108 PERROR("zmalloc");
3109 goto end;
3110 }
3111
3112 document->document = xmlParseFile(path);
3113 if (!document->document) {
3114 ERR("Configuration document parsing failed.");
3115 goto error;
3116 }
3117
3118 ret = xmlSchemaValidateDoc(validation_ctx.schema_validation_ctx,
3119 document->document);
3120 if (ret) {
3121 ERR("Session configuration file validation failed");
3122 goto error;
3123 }
3124
3125 end:
3126 return document;
3127 error:
3128 xmlFreeDoc(document->document);
3129 free(document);
3130 return NULL;
3131 }
3132
3133 LTTNG_HIDDEN
3134 void config_document_free(struct config_document *document)
3135 {
3136 if (document) {
3137 xmlFreeDoc(document->document);
3138 document->document = NULL;
3139 }
3140 }
3141
3142 LTTNG_HIDDEN
3143 int config_document_replace_element_value(struct config_document *document,
3144 const char *xpath, const char *value)
3145 {
3146 int ret;
3147 int xpath_result_size;
3148
3149 xmlXPathContextPtr xpath_context = NULL;
3150 xmlXPathObjectPtr xpath_object = NULL;
3151 xmlNodeSetPtr xpath_result_set = NULL;
3152 xmlChar *internal_xpath = NULL;
3153 xmlChar *internal_value = NULL;
3154
3155 assert(document);
3156 assert(xpath);
3157 assert(value);
3158
3159 internal_xpath = encode_string(xpath);
3160 if (!internal_xpath) {
3161 ret = -LTTNG_ERR_NOMEM;
3162 ERR("Unable to encode xpath string");
3163 goto end;
3164 }
3165
3166 internal_value = encode_string(value);
3167 if (!internal_value) {
3168 ret = -LTTNG_ERR_NOMEM;
3169 ERR("Unable to encode xpath replace value string");
3170 goto end;
3171 }
3172
3173 /* Initialize xpath context */
3174 xpath_context = xmlXPathNewContext(document->document);
3175 if (!xpath_context) {
3176 ret = -LTTNG_ERR_NOMEM;
3177 ERR("Unable to create xpath context");
3178 goto end;
3179 }
3180
3181 /* Evaluate de xpath expression */
3182 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3183 if (!xpath_object) {
3184 ret = -LTTNG_ERR_CONFIG_INVALID_QUERY;
3185 goto end;
3186 }
3187
3188 /* TODO: from here could be extracted and previopus could be a step in
3189 * subsequent operation, modify/substitute/delete node.
3190 */
3191 xpath_result_set = xpath_object->nodesetval;
3192 if (!xpath_result_set) {
3193 ret = -LTTNG_ERR_CONFIG_EMPTY_SET;
3194 goto end;
3195 }
3196
3197 xpath_result_size = xpath_result_set->nodeNr;
3198
3199 /*
3200 * Reverse traversal since last element could be nested under parent
3201 * element present in the result set.
3202 */
3203 for (int i = xpath_result_size - 1; i >=0; i--) {
3204 assert(xpath_result_set->nodeTab[i]);
3205 xmlNodeSetContent(xpath_result_set->nodeTab[i], internal_value);
3206
3207 /*
3208 * Libxml2 quirk regarding the freing and namesplace node see
3209 * libxml2 example and documentation for more details.
3210 */
3211 if (xpath_result_set->nodeTab[i]->type != XML_NAMESPACE_DECL) {
3212 xpath_result_set->nodeTab[i] = NULL;
3213 }
3214 }
3215
3216 end:
3217 xmlXPathFreeContext(xpath_context);
3218 xmlXPathFreeObject(xpath_object);
3219 xmlFree(internal_xpath);
3220 xmlFree(internal_value);
3221 return ret;
3222 }
3223
3224 LTTNG_HIDDEN
3225 int config_load_configuration_sessions(struct config_document *document,
3226 const char *session_name, int override)
3227 {
3228 int ret;
3229 struct session_config_validation_ctx validation_ctx = { 0 };
3230
3231 ret = init_session_config_validation_ctx(&validation_ctx);
3232 if (ret) {
3233 goto end;
3234 }
3235 ret = load_session_from_document(document, session_name,
3236 &validation_ctx, override);
3237 end:
3238 return ret;
3239 }
3240
3241 LTTNG_HIDDEN
3242 int config_document_replace_element(struct config_document *document,
3243 const char *xpath, const struct config_element *element)
3244 {
3245 int ret = 0;
3246 int xpath_result_size;
3247
3248 xmlXPathContextPtr xpath_context = NULL;
3249 xmlXPathObjectPtr xpath_object = NULL;
3250 xmlNodeSetPtr xpath_result_set = NULL;
3251 xmlChar *internal_xpath = NULL;
3252 xmlNodePtr old_node = NULL;
3253 xmlNodePtr copy = NULL;
3254
3255 assert(document);
3256 assert(xpath);
3257 assert(element);
3258 assert(element->element);
3259
3260 internal_xpath = encode_string(xpath);
3261 if (!internal_xpath) {
3262 ret = -LTTNG_ERR_NOMEM;
3263 ERR("Unable to encode xpath string");
3264 goto end;
3265 }
3266
3267 /* Initialize xpath context */
3268 xpath_context = xmlXPathNewContext(document->document);
3269 if (!xpath_context) {
3270 ret = -LTTNG_ERR_NOMEM;
3271 ERR("Unable to create xpath context");
3272 goto end;
3273 }
3274
3275 /* Evaluate the xpath expression */
3276 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3277 if (!xpath_object) {
3278 ret = -LTTNG_ERR_CONFIG_INVALID_QUERY;
3279 goto end;
3280 }
3281
3282 xpath_result_set = xpath_object->nodesetval;
3283 if (!xpath_result_set) {
3284 ret = -LTTNG_ERR_CONFIG_EMPTY_SET;
3285 goto end;
3286 }
3287
3288 xpath_result_size = xpath_result_set->nodeNr;
3289
3290 if (xpath_result_size > 1) {
3291 ret = -LTTNG_ERR_CONFIG_INVALID_COUNT;
3292 goto end;
3293 }
3294
3295 if (xpath_result_size == 0) {
3296 ret = -LTTNG_ERR_CONFIG_REPLACEMENT;
3297 goto end;
3298 }
3299
3300 assert(xpath_result_set->nodeTab[0]);
3301
3302 /* Do a copy of the element to ease caller memory management */
3303 copy = xmlCopyNode(element->element, 1);
3304 if (!copy) {
3305 ret = -LTTNG_ERR_NOMEM;
3306 ERR("Copy failed for node replacement");
3307 goto end;
3308 }
3309
3310
3311 old_node = xmlReplaceNode(xpath_result_set->nodeTab[0], copy);
3312 if (!old_node) {
3313 ret = -LTTNG_ERR_CONFIG_REPLACEMENT;
3314 xmlFreeNode(copy);
3315 goto end;
3316 }
3317 xmlFree(old_node);
3318 end:
3319 xmlXPathFreeContext(xpath_context);
3320 xmlXPathFreeObject(xpath_object);
3321 xmlFree(internal_xpath);
3322 return ret;
3323 }
3324
3325 LTTNG_HIDDEN
3326 char *config_document_get_element_value(struct config_document *document,
3327 const char *xpath)
3328 {
3329 char *value = NULL;
3330 int xpath_result_size;
3331 int value_result_size;
3332
3333 xmlXPathContextPtr xpath_context = NULL;
3334 xmlXPathObjectPtr xpath_object = NULL;
3335 xmlNodeSetPtr xpath_result_set = NULL;
3336 xmlChar *internal_xpath = NULL;
3337 xmlChar *internal_value = NULL;
3338
3339 assert(document);
3340 assert(xpath);
3341
3342 internal_xpath = encode_string(xpath);
3343 if (!internal_xpath) {
3344 value = NULL;
3345 ERR("Unable to encode xpath string");
3346 goto end;
3347 }
3348
3349 /* Initialize xpath context */
3350 xpath_context = xmlXPathNewContext(document->document);
3351 if (!xpath_context) {
3352 value = NULL;
3353 ERR("Unable to create xpath context");
3354 goto end;
3355 }
3356
3357 /* Evaluate the xpath expression */
3358 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3359 if (!xpath_object) {
3360 value = NULL;
3361 ERR("Unable to evaluate xpath query (invalid query format)");
3362 goto end;
3363 }
3364
3365 xpath_result_set = xpath_object->nodesetval;
3366 if (!xpath_result_set) {
3367 value = NULL;
3368 goto end;
3369 }
3370
3371 xpath_result_size = xpath_result_set->nodeNr;
3372
3373 if (xpath_result_size > 1) {
3374 ERR("To many result while fetching config element value");
3375 value = NULL;
3376 goto end;
3377 }
3378
3379 if (xpath_result_size == 0) {
3380 value = NULL;
3381 goto end;
3382 }
3383
3384 /*
3385 * Reverse traversal since last element could be nested under parent
3386 * element present in the result set.
3387 */
3388 assert(xpath_result_set->nodeTab[0]);
3389 internal_value = xmlNodeGetContent(xpath_result_set->nodeTab[0]);
3390 if (!internal_value) {
3391 value = NULL;
3392 goto end;
3393 }
3394
3395 value_result_size = xmlStrlen(internal_value);
3396 value = calloc(value_result_size + 1, sizeof(char));
3397 strncpy(value, (char *) internal_value, value_result_size);
3398
3399 end:
3400 xmlXPathFreeContext(xpath_context);
3401 xmlXPathFreeObject(xpath_object);
3402 xmlFree(internal_xpath);
3403 xmlFree(internal_value);
3404 return value;
3405 }
3406
3407 LTTNG_HIDDEN
3408 int config_document_element_exist(struct config_document *document,
3409 const char *xpath)
3410 {
3411 int exist = 0;
3412 int xpath_result_size;
3413
3414 xmlXPathContextPtr xpath_context = NULL;
3415 xmlXPathObjectPtr xpath_object = NULL;
3416 xmlNodeSetPtr xpath_result_set = NULL;
3417 xmlChar *internal_xpath = NULL;
3418
3419 assert(document);
3420 assert(document->document);
3421 assert(xpath);
3422
3423 internal_xpath = encode_string(xpath);
3424 if (!internal_xpath) {
3425 ERR("Unable to encode xpath string");
3426 goto end;
3427 }
3428
3429 /* Initialize xpath context */
3430 xpath_context = xmlXPathNewContext(document->document);
3431 if (!xpath_context) {
3432 ERR("Unable to create xpath context");
3433 goto end;
3434 }
3435
3436 /* Evaluate the xpath expression */
3437 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3438 if (!xpath_object) {
3439 ERR("Unable to evaluate xpath query (invalid query format)");
3440 goto end;
3441 }
3442
3443 xpath_result_set = xpath_object->nodesetval;
3444 if (!xpath_result_set) {
3445 goto end;
3446 }
3447
3448 xpath_result_size = xpath_result_set->nodeNr;
3449
3450 if (xpath_result_size > 0) {
3451 exist = 1;
3452 }
3453 end:
3454 xmlXPathFreeContext(xpath_context);
3455 xmlXPathFreeObject(xpath_object);
3456 xmlFree(internal_xpath);
3457 return exist;
3458
3459 }
3460
3461 LTTNG_HIDDEN
3462 struct config_element *config_element_create(const char *name,
3463 const char* value)
3464 {
3465 struct config_element *element;
3466
3467 assert(name);
3468
3469 xmlChar *internal_name = NULL;
3470 xmlChar *internal_value = NULL;
3471
3472 internal_name = encode_string(name);
3473 if (!internal_name) {
3474 ERR("Unable to encode config element name string");
3475 element = NULL;
3476 goto end;
3477 }
3478
3479
3480 if (value) {
3481 internal_value = encode_string(value);
3482 if (!internal_value) {
3483 ERR("Unable to encode config_element value string");
3484 element = NULL;
3485 goto end;
3486 }
3487 }
3488
3489 element = zmalloc(sizeof(struct config_element));
3490 if (!element) {
3491 goto end;
3492 }
3493
3494 element->element = xmlNewNode(NULL, internal_name);
3495 if (!element->element) {
3496 free(element);
3497 element = NULL;
3498 goto end;
3499 }
3500
3501 if (internal_value) {
3502 xmlNodeAddContent(element->element, internal_value);
3503 }
3504 end:
3505 xmlFree(internal_name);
3506 xmlFree(internal_value);
3507 return element;
3508 }
3509
3510 LTTNG_HIDDEN
3511 int config_element_add_child(struct config_element *parent,
3512 const struct config_element *child)
3513 {
3514 assert(parent);
3515 assert(child);
3516 assert(parent->element);
3517 assert(child->element);
3518
3519 int ret = 0;
3520 xmlNodePtr node = NULL;
3521 xmlNodePtr copy = NULL;
3522
3523 /* Do a copy to ease the memory management for caller */
3524 copy = xmlCopyNode(child->element, 1);
3525 if (!copy) {
3526 ret = -LTTNG_ERR_NOMEM;
3527 goto error;
3528 }
3529 node = xmlAddChild(parent->element, copy);
3530 if (!node) {
3531 xmlFreeNode(copy);
3532 ret = -LTTNG_ERR_CONFIG_ADD_CHILD;
3533 goto error;
3534 }
3535 error:
3536 return ret;
3537 }
3538
3539
3540 LTTNG_HIDDEN
3541 int config_document_insert_element(struct config_document *document,
3542 const char *xpath, const struct config_element *element)
3543 {
3544 int ret = 0;
3545 int xpath_result_size;
3546
3547 xmlXPathContextPtr xpath_context = NULL;
3548 xmlXPathObjectPtr xpath_object = NULL;
3549 xmlNodeSetPtr xpath_result_set = NULL;
3550 xmlChar *internal_xpath = NULL;
3551 xmlNodePtr child_node = NULL;
3552 xmlNodePtr local_copy = NULL;
3553
3554 assert(document);
3555 assert(xpath);
3556 assert(element);
3557 assert(element->element);
3558
3559 internal_xpath = encode_string(xpath);
3560 if (!internal_xpath) {
3561 ret = -LTTNG_ERR_NOMEM;
3562 goto end;
3563 }
3564
3565 /* Initialize xpath context */
3566 xpath_context = xmlXPathNewContext(document->document);
3567 if (!xpath_context) {
3568 ret = -LTTNG_ERR_NOMEM;
3569 goto end;
3570 }
3571
3572 /* Evaluate the xpath expression */
3573 xpath_object = xmlXPathEvalExpression(internal_xpath, xpath_context);
3574 if (!xpath_object) {
3575 ret = -LTTNG_ERR_CONFIG_INVALID_QUERY;
3576 goto end;
3577 }
3578
3579 xpath_result_set = xpath_object->nodesetval;
3580 if (!xpath_result_set) {
3581 ret = -LTTNG_ERR_CONFIG_EMPTY_SET;
3582 goto end;
3583 }
3584
3585 xpath_result_size = xpath_result_set->nodeNr;
3586
3587 if (xpath_result_size > 1) {
3588 ret = -LTTNG_ERR_CONFIG_INVALID_COUNT;
3589 goto end;
3590 }
3591
3592 if (xpath_result_size == 0) {
3593 ret = -LTTNG_ERR_CONFIG_INVALID_COUNT;
3594 goto end;
3595 }
3596
3597 assert(xpath_result_set->nodeTab[0]);
3598 /* Do a copy to simply memory management */
3599 local_copy = xmlCopyNode(element->element, 1);
3600 if (!local_copy) {
3601 ret = -LTTNG_ERR_NOMEM;
3602 ERR("Duplication of node to be insert failed");
3603 goto end;
3604 }
3605
3606 child_node = xmlAddChild(xpath_result_set->nodeTab[0], local_copy);
3607 if (!child_node) {
3608 ret = -LTTNG_ERR_CONFIG_ADD_CHILD;
3609 xmlFreeNode(local_copy);
3610 goto end;
3611 }
3612 end:
3613 xmlXPathFreeContext(xpath_context);
3614 xmlXPathFreeObject(xpath_object);
3615 xmlFree(internal_xpath);
3616 return ret;
3617 }
3618
3619 LTTNG_HIDDEN
3620 void config_element_free(struct config_element *element) {
3621 if (element->element) {
3622 xmlFree(element->element);
3623 }
3624
3625 free(element);
3626 }
This page took 0.109543 seconds and 5 git commands to generate.