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