1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* config-parser-trivial.c XML-library-agnostic configuration file parser
3 * Does not do includes or anything remotely complicated.
5 * Copyright (C) 2003, 2004, 2007 Red Hat, Inc.
7 * Licensed under the Academic Free License version 2.1
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "config-parser-common.h"
27 #include "config-parser-trivial.h"
29 #include <dbus/dbus-list.h>
30 #include <dbus/dbus-internals.h>
34 * TRIVIAL parser for bus configuration file.
36 struct BusConfigParser
39 DBusString user; /**< User the dbus-daemon runs as */
40 DBusString bus_type; /**< Message bus type */
41 DBusString service_helper; /**< Location of the setuid helper */
42 DBusList *service_dirs; /**< Directories to look for services in */
46 service_dirs_find_dir (DBusList **service_dirs,
51 _dbus_assert (dir != NULL);
53 for (link = *service_dirs; link; link = _dbus_list_get_next_link(service_dirs, link))
57 link_dir = (const char *)link->data;
58 if (strcmp (dir, link_dir) == 0)
66 service_dirs_append_link_unique_or_free (DBusList **service_dirs,
69 if (!service_dirs_find_dir (service_dirs, dir_link->data))
71 _dbus_list_append_link (service_dirs, dir_link);
75 dbus_free (dir_link->data);
76 _dbus_list_free_link (dir_link);
81 bus_config_parser_new (const DBusString *basedir,
82 dbus_bool_t is_toplevel,
83 const BusConfigParser *parent)
85 BusConfigParser *parser;
87 parser = dbus_new0 (BusConfigParser, 1);
91 parser->type = ELEMENT_NONE;
94 parser->service_dirs = NULL;
96 /* init the strings */
97 if (!_dbus_string_init (&parser->user))
99 if (!_dbus_string_init (&parser->bus_type))
101 if (!_dbus_string_init (&parser->service_helper))
107 /* argh. we have do do this carefully because of OOM */
109 _dbus_string_free (&parser->bus_type);
111 _dbus_string_free (&parser->user);
119 bus_config_parser_unref (BusConfigParser *parser)
121 _dbus_string_free (&parser->user);
122 _dbus_string_free (&parser->service_helper);
123 _dbus_string_free (&parser->bus_type);
125 _dbus_list_foreach (&parser->service_dirs,
126 (DBusForeachFunction) dbus_free,
129 _dbus_list_clear (&parser->service_dirs);
135 bus_config_parser_check_doctype (BusConfigParser *parser,
139 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
141 if (strcmp (doctype, "busconfig") != 0)
143 dbus_set_error (error,
145 "Configuration file has the wrong document type %s",
154 bus_config_parser_start_element (BusConfigParser *parser,
155 const char *element_name,
156 const char **attribute_names,
157 const char **attribute_values,
160 /* we don't do processing of attribute names, we don't need to */
161 parser->type = bus_config_parser_element_name_to_type (element_name);
163 switch (parser->type)
165 case ELEMENT_SERVICEHELPER:
167 case ELEMENT_CONFIGTYPE:
168 /* content about to be handled */
171 case ELEMENT_STANDARD_SYSTEM_SERVICEDIRS:
177 if (!_dbus_get_standard_system_servicedirs (&dirs))
183 while ((link = _dbus_list_pop_first_link (&dirs)))
184 service_dirs_append_link_unique_or_free (&parser->service_dirs, link);
190 /* we really don't care about the others... */
191 _dbus_verbose (" START We don't care about '%s' type '%i'\n", element_name, parser->type);
199 bus_config_parser_end_element (BusConfigParser *parser,
200 const char *element_name,
208 bus_config_parser_content (BusConfigParser *parser,
209 const DBusString *content,
212 DBusString content_sane;
217 if (!_dbus_string_init (&content_sane))
222 if (!_dbus_string_copy (content, 0, &content_sane, 0))
228 /* rip out white space */
229 _dbus_string_chop_white (&content_sane);
230 if (_dbus_string_get_length (&content_sane) == 0)
232 /* optimise, there is no content */
237 switch (parser->type)
239 case ELEMENT_SERVICEDIR:
243 /* copy the sane data into a char array */
244 if (!_dbus_string_copy_data(&content_sane, &cpath))
250 /* append the dynamic char string to service dirs */
251 if (!_dbus_list_append (&parser->service_dirs, cpath))
260 case ELEMENT_SERVICEHELPER:
262 if (!_dbus_string_copy (&content_sane, 0, &parser->service_helper, 0))
272 if (!_dbus_string_copy (&content_sane, 0, &parser->user, 0))
280 case ELEMENT_CONFIGTYPE:
282 if (!_dbus_string_copy (&content_sane, 0, &parser->bus_type, 0))
291 /* we don't care about the others... really */
292 _dbus_verbose (" CONTENTS We don't care about '%s' type '%i'\n", _dbus_string_get_const_data (&content_sane), parser->type);
301 _dbus_string_free (&content_sane);
307 bus_config_parser_finished (BusConfigParser *parser,
310 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
311 _dbus_verbose ("finished scanning!\n");
316 bus_config_parser_get_user (BusConfigParser *parser)
318 return _dbus_string_get_const_data (&parser->user);
322 bus_config_parser_get_type (BusConfigParser *parser)
324 return _dbus_string_get_const_data (&parser->bus_type);
328 bus_config_parser_get_service_dirs (BusConfigParser *parser)
330 return &parser->service_dirs;
333 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
345 check_return_values (const DBusString *full_path)
347 BusConfigParser *parser;
354 dbus_error_init (&error);
357 printf ("Testing values from: %s\n", _dbus_string_get_const_data (full_path));
359 parser = bus_config_load (full_path, TRUE, NULL, &error);
362 _DBUS_ASSERT_ERROR_IS_SET (&error);
363 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
364 _dbus_verbose ("Failed to load valid file due to OOM\n");
367 _DBUS_ASSERT_ERROR_IS_CLEAR (&error);
369 /* check user return value is okay */
370 user = bus_config_parser_get_user (parser);
373 _dbus_warn ("User was NULL!\n");
377 /* the username can be configured in configure.in so this test doesn't work */
378 if (strcmp (user, "dbus") != 0)
380 _dbus_warn ("User was invalid; '%s'!\n", user);
383 printf (" <user>dbus</user> OKAY!\n");
386 /* check type return value is okay */
387 type = bus_config_parser_get_type (parser);
390 _dbus_warn ("Type was NULL!\n");
393 if (strcmp (type, "system") != 0)
395 _dbus_warn ("Type was invalid; '%s'!\n", user);
398 printf (" <type>system</type> OKAY!\n");
400 /* check dirs return value is okay */
401 dirs = bus_config_parser_get_service_dirs (parser);
404 _dbus_warn ("Service dirs are NULL!\n");
407 printf (" <standard_system_service_dirs/> OKAY!\n");
408 /* NOTE: We tested the specific return values in the config-parser tests */
414 bus_config_parser_unref (parser);
415 dbus_error_free (&error);
420 do_load (const DBusString *full_path,
422 dbus_bool_t oom_possible)
424 BusConfigParser *parser;
427 dbus_error_init (&error);
429 parser = bus_config_load (full_path, TRUE, NULL, &error);
432 _DBUS_ASSERT_ERROR_IS_SET (&error);
435 dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
437 _dbus_verbose ("Failed to load valid file due to OOM\n");
438 dbus_error_free (&error);
441 else if (validity == VALID)
443 _dbus_warn ("Failed to load valid file but still had memory: %s\n",
446 dbus_error_free (&error);
451 dbus_error_free (&error);
457 _DBUS_ASSERT_ERROR_IS_CLEAR (&error);
459 bus_config_parser_unref (parser);
461 if (validity == INVALID)
463 _dbus_warn ("Accepted invalid file\n");
473 const DBusString *full_path;
478 check_loader_oom_func (void *data)
480 LoaderOomData *d = data;
482 return do_load (d->full_path, d->validity, TRUE);
486 process_test_valid_subdir (const DBusString *test_base_dir,
490 DBusString test_directory;
499 if (!_dbus_string_init (&test_directory))
500 _dbus_assert_not_reached ("didn't allocate test_directory\n");
502 _dbus_string_init_const (&filename, subdir);
504 if (!_dbus_string_copy (test_base_dir, 0,
506 _dbus_assert_not_reached ("couldn't copy test_base_dir to test_directory");
508 if (!_dbus_concat_dir_and_file (&test_directory, &filename))
509 _dbus_assert_not_reached ("couldn't allocate full path");
511 _dbus_string_free (&filename);
512 if (!_dbus_string_init (&filename))
513 _dbus_assert_not_reached ("didn't allocate filename string\n");
515 dbus_error_init (&error);
516 dir = _dbus_directory_open (&test_directory, &error);
519 _dbus_warn ("Could not open %s: %s\n",
520 _dbus_string_get_const_data (&test_directory),
522 dbus_error_free (&error);
526 if (validity == VALID)
527 printf ("Testing valid files:\n");
528 else if (validity == INVALID)
529 printf ("Testing invalid files:\n");
531 printf ("Testing unknown files:\n");
534 while (_dbus_directory_get_next_file (dir, &filename, &error))
536 DBusString full_path;
539 if (!_dbus_string_init (&full_path))
540 _dbus_assert_not_reached ("couldn't init string");
542 if (!_dbus_string_copy (&test_directory, 0, &full_path, 0))
543 _dbus_assert_not_reached ("couldn't copy dir to full_path");
545 if (!_dbus_concat_dir_and_file (&full_path, &filename))
546 _dbus_assert_not_reached ("couldn't concat file to dir");
548 if (!_dbus_string_ends_with_c_str (&full_path, ".conf"))
550 _dbus_verbose ("Skipping non-.conf file %s\n",
551 _dbus_string_get_const_data (&filename));
552 _dbus_string_free (&full_path);
556 printf (" %s\n", _dbus_string_get_const_data (&filename));
558 _dbus_verbose (" expecting %s\n",
559 validity == VALID ? "valid" :
560 (validity == INVALID ? "invalid" :
561 (validity == UNKNOWN ? "unknown" : "???")));
563 d.full_path = &full_path;
564 d.validity = validity;
566 /* FIXME hackaround for an expat problem, see
567 * https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=124747
568 * http://freedesktop.org/pipermail/dbus/2004-May/001153.html
570 /* if (!_dbus_test_oom_handling ("config-loader", check_loader_oom_func, &d)) */
571 if (!check_loader_oom_func (&d))
572 _dbus_assert_not_reached ("test failed");
574 _dbus_string_free (&full_path);
577 if (dbus_error_is_set (&error))
579 _dbus_warn ("Could not get next file in %s: %s\n",
580 _dbus_string_get_const_data (&test_directory),
582 dbus_error_free (&error);
591 _dbus_directory_close (dir);
592 _dbus_string_free (&test_directory);
593 _dbus_string_free (&filename);
598 /* convenience function, do not reuse outside of TEST */
600 make_full_path (const DBusString *test_data_dir,
603 DBusString *full_path)
610 if (!_dbus_string_init (full_path))
612 _dbus_warn ("couldn't allocate full path");
616 if (!_dbus_string_copy (test_data_dir, 0, full_path, 0))
618 _dbus_warn ("couldn't allocate full path");
622 _dbus_string_init_const (&filename, subdir);
623 if (!_dbus_concat_dir_and_file (full_path, &filename))
625 _dbus_warn ("couldn't allocate full path");
628 _dbus_string_free (&filename);
630 _dbus_string_init_const (&filename, file);
631 if (!_dbus_concat_dir_and_file (full_path, &filename))
633 _dbus_warn ("couldn't allocate full path");
641 _dbus_string_free (&filename);
646 check_file_valid (DBusString *full_path,
651 if (validity == VALID)
652 printf ("Testing valid file:\n");
653 else if (validity == INVALID)
654 printf ("Testing invalid file:\n");
656 printf ("Testing unknown file:\n");
658 /* print the filename, just so we match the other output */
659 printf (" %s\n", _dbus_string_get_const_data (full_path));
661 /* only test one file */
662 retval = do_load (full_path, validity, TRUE);
668 bus_config_parser_trivial_test (const DBusString *test_data_dir)
670 DBusString full_path;
675 if (test_data_dir == NULL ||
676 _dbus_string_get_length (test_data_dir) == 0)
678 printf ("No test data\n");
682 /* We already test default_session_servicedirs and default_system_servicedirs
683 * in bus_config_parser_test() */
684 if (!process_test_valid_subdir (test_data_dir, "valid-config-files", VALID))
688 /* We already test default_session_servicedirs and default_system_servicedirs
689 * in bus_config_parser_test() */
690 if (!process_test_valid_subdir (test_data_dir, "valid-config-files-system", VALID))
694 /* we don't process all the invalid files, as the trivial parser can't hope
695 * to validate them all for all different syntaxes. We just check one broken
696 * file to see if junk is received */
697 if (!make_full_path (test_data_dir, "invalid-config-files", "not-well-formed.conf", &full_path))
699 if (!check_file_valid (&full_path, INVALID))
701 _dbus_string_free (&full_path);
704 /* just test if the check_file_valid works okay and we got sane values */
705 if (!make_full_path (test_data_dir, "valid-config-files-system", "system.conf", &full_path))
707 if (!check_file_valid (&full_path, VALID))
709 /* check to see if we got the correct values from the parser */
710 if (!check_return_values (&full_path))
718 _dbus_string_free (&full_path);
720 /* we don't process equiv-config-files as we don't handle <include> */
724 #endif /* DBUS_ENABLE_EMBEDDED_TESTS */