* bus/config-parser.c (bus_config_parser_new): fix an invalid _unref
authorOlivier Andrieu <oliv__a@users.sourceforge.net>
Sat, 31 Jul 2004 18:28:10 +0000 (18:28 +0000)
committerOlivier Andrieu <oliv__a@users.sourceforge.net>
Sat, 31 Jul 2004 18:28:10 +0000 (18:28 +0000)
in the SELinux support.

* doc/busconfig.dtd: update DTD for SELinux support.

* bus/config-loader-libxml.c: fix error handler and parser
initialisation/cleanup. OOM test now works with libxml2 HEAD.

* configure.in: remove the warning about libxml2

* dbus/dbus-bus.c: silence doxygen warning.

ChangeLog
bus/config-loader-libxml.c
bus/config-parser.c
configure.in
dbus/dbus-bus.c
doc/busconfig.dtd

index 229872e..8be4171 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
+
+       * bus/config-parser.c (bus_config_parser_new): fix an invalid
+       _unref in the SELinux support.
+
+       * doc/busconfig.dtd: update DTD for SELinux support.
+
+       * bus/config-loader-libxml.c: fix error handler and parser
+       initialisation/cleanup. OOM test now works with libxml2 HEAD.
+
+       * configure.in: remove the warning about libxml2.
+
+       * dbus/dbus-bus.c: silence doxygen warning.
+
 2004-07-31  Colin Walters  <walters@redhat.com>
 
        * configure.in: Move #error in SELinux check to its own line.
index a1b8f83..51ee1e5 100644 (file)
@@ -122,13 +122,12 @@ xml_text_reader_error (void *arg, xmlErrorPtr xml_error)
                  xml_error->code, xml_error->message);
 #endif
 
-  if (!dbus_error_is_set (error) && 
-      (xml_error->level == XML_ERR_ERROR ||
-       xml_error->level == XML_ERR_FATAL))
+  if (!dbus_error_is_set (error))
     {
-      if (xml_error->code != XML_ERR_NO_MEMORY)
+      if (xml_error->code == XML_ERR_NO_MEMORY)
         _DBUS_SET_OOM (error);
-      else
+      else if (xml_error->level == XML_ERR_ERROR ||
+               xml_error->level == XML_ERR_FATAL)
         dbus_set_error (error, DBUS_ERROR_FAILED,
                         "Error loading config file: '%s'",
                         xml_error->message);
@@ -146,7 +145,6 @@ bus_config_load (const DBusString      *file,
   xmlTextReader *reader;
   BusConfigParser *parser;
   DBusString dirname, data;
-  const char *data_str;
   DBusError tmp_error;
   int ret;
   
@@ -155,17 +153,6 @@ bus_config_load (const DBusString      *file,
   parser = NULL;
   reader = NULL;
 
-  if (is_toplevel)
-    {
-      /* xmlMemSetup only fails if one of the functions is NULL */
-      xmlMemSetup (dbus_free,
-                   dbus_malloc,
-                   dbus_realloc,
-                   _dbus_strdup);
-      xmlInitParser ();
-      xmlSetGenericErrorFunc (NULL, xml_shut_up);
-    }
-
   if (!_dbus_string_init (&dirname))
     {
       _DBUS_SET_OOM (error);
@@ -179,6 +166,17 @@ bus_config_load (const DBusString      *file,
       return NULL;
     }
 
+  if (is_toplevel)
+    {
+      /* xmlMemSetup only fails if one of the functions is NULL */
+      xmlMemSetup (dbus_free,
+                   dbus_malloc,
+                   dbus_realloc,
+                   _dbus_strdup);
+      xmlInitParser ();
+      xmlSetGenericErrorFunc (NULL, xml_shut_up);
+    }
+
   if (!_dbus_string_get_dirname (file, &dirname))
     {
       _DBUS_SET_OOM (error);
@@ -195,9 +193,8 @@ bus_config_load (const DBusString      *file,
   if (!_dbus_file_get_contents (&data, file, error))
     goto failed;
 
-  data_str = _dbus_string_get_const_data (&data);
-
-  reader = xmlReaderForMemory (data_str, _dbus_string_get_length (&data),
+  reader = xmlReaderForMemory (_dbus_string_get_const_data (&data), 
+                               _dbus_string_get_length (&data),
                               NULL, NULL, 0);
   if (reader == NULL)
     {
@@ -295,8 +292,6 @@ bus_config_load (const DBusString      *file,
 
  reader_out:
   xmlFreeTextReader (reader);
-  if (is_toplevel)
-    xmlCleanupParser(); 
   reader = NULL;
   if (dbus_error_is_set (&tmp_error))
     {
@@ -308,6 +303,8 @@ bus_config_load (const DBusString      *file,
     goto failed;
   _dbus_string_free (&dirname);
   _dbus_string_free (&data);
+  if (is_toplevel)
+    xmlCleanupParser();
   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
   return parser;
   
@@ -315,6 +312,8 @@ bus_config_load (const DBusString      *file,
   _DBUS_ASSERT_ERROR_IS_SET (error);
   _dbus_string_free (&dirname);
   _dbus_string_free (&data);
+  if (is_toplevel)
+    xmlCleanupParser();
   if (parser)
     bus_config_parser_unref (parser);
   _dbus_assert (reader == NULL); /* must go to reader_out first */
index 29fade1..89492f0 100644 (file)
@@ -346,9 +346,6 @@ bus_config_parser_new (const DBusString      *basedir,
       
       _dbus_string_free (&parser->basedir);
 
-      if (parser->service_sid_table == NULL)
-        _dbus_hash_table_unref (parser->service_sid_table);
-      
       dbus_free (parser);
       return NULL;
     }
index cbc4774..75eab6e 100644 (file)
@@ -672,12 +672,6 @@ else
         fi
 fi
 
-if $dbus_use_libxml ; then
-       dnl libxml OOM handling is a bit broken
-       AC_MSG_WARN([libxml loader is not as robust as the expat one wrt. OOM handling])
-fi
-
-
 AM_CONDITIONAL(DBUS_USE_EXPAT, $dbus_use_expat)
 AM_CONDITIONAL(DBUS_USE_LIBXML, $dbus_use_libxml)
 
index 4dd2eaf..567468f 100644 (file)
@@ -549,7 +549,7 @@ dbus_bus_get_base_service (DBusConnection *connection)
  * Asks the bus to return the uid of a service.
  *
  * @param connection the connection
- * @param service_name the service name
+ * @param service the service name
  * @param error location to store the error
  * @returns a result code, -1 if error is set
  */ 
index 97c0b82..5414bc5 100644 (file)
@@ -8,7 +8,8 @@
                      auth |
                      include |
                      policy |
-                     limit)*>
+                     limit |
+                     selinux)*>
 
 <!ELEMENT user (#PCDATA)>
 <!ELEMENT listen (#PCDATA)>
@@ -50,3 +51,8 @@
 <!ELEMENT limit (#PCDATA)>
 <!ATTLIST limit name CDATA #REQUIRED>
 
+<!ELEMENT selinux (associate)*>
+<!ELEMENT associate EMPTY>
+<!ATTLIST associate
+          own CDATA #REQUIRED
+          context CDATA #REQUIRED>