]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Merge duplicate subsections in profile library 760/head
authorRobbie Harwood <rharwood@redhat.com>
Tue, 10 Apr 2018 19:55:41 +0000 (15:55 -0400)
committerGreg Hudson <ghudson@mit.edu>
Tue, 17 Apr 2018 16:38:06 +0000 (12:38 -0400)
Modify profile_add_node() to return the existing node, rather than
making a new one, when adding subsection configuration.

This fixes an issue where the first instance of a subsection will hide
the second instance entirely.  In particular, it was previously
impossible to split realm-specific configuration across multiple
config files.

[ghudson@mit.edu: adjusted style, added test case]

ticket: 7863
tags: pullup
target_version: 1.16-next
target_version: 1.15-next

src/util/profile/prof_test1
src/util/profile/prof_tree.c
src/util/profile/test.ini

index 7e30fc12fdc30283bb61657c754d832484befa01..7d13c938921ad43eba25f521b811946ad8c7d0ab 100644 (file)
@@ -341,6 +341,27 @@ proc test9 {} {
     puts "OK: test9: profile_flush_to_file with no changes"
 }
 
+proc test10 {} {
+    global wd verbose
+
+    # Regression test for #7863: multiply-specified subsections should
+    # be merged.
+    set p [profile_init_path $wd/test2.ini]
+    set x [profile_get_values $p {{test section 2} child_section2 child}]
+    if $verbose { puts "Read $x from profile" }
+    if ![string equal $x "slick harry {john\tb } ron"] {
+       puts stderr "Error: test10: Did not get expected merged children."
+       exit 1
+    }
+
+    set x [profile_get_string $p {test section 2} child_section2 chores]
+    if $verbose { puts "Read $x from profile" }
+    if ![string equal $x "cleaning"] {
+       puts stderr "Error: test10: Did not find expected chores."
+       exit 1
+    }
+}
+
 test1
 test2
 test3
@@ -350,5 +371,6 @@ test6
 test7
 test8
 test9
+test10
 
 exit 0
index 081f688e4ad31ef4e4547df0a3979b1d9df7a34b..38aadc4e5e2f25cc8fe86b31c3a09d3be3fc2b16 100644 (file)
@@ -9,7 +9,7 @@
  *
  * Each node may represent either a relation or a section header.
  *
- * A section header must have its value field set to 0, and may a one
+ * A section header must have its value field be null, and may have one
  * or more child nodes, pointed to by first_child.
  *
  * A relation has as its value a pointer to allocated memory
@@ -159,15 +159,22 @@ errcode_t profile_add_node(struct profile_node *section, const char *name,
         return PROF_ADD_NOT_SECTION;
 
     /*
-     * Find the place to insert the new node.  We look for the
-     * place *after* the last match of the node name, since
+     * Find the place to insert the new node.  If we are adding a subsection
+     * and already have a subsection with that name, merge them.  Otherwise,
+     * we look for the place *after* the last match of the node name, since
      * order matters.
      */
     for (p=section->first_child, last = 0; p; last = p, p = p->next) {
         int cmp;
         cmp = strcmp(p->name, name);
-        if (cmp > 0)
+        if (cmp > 0) {
             break;
+        } else if (value == NULL && cmp == 0 &&
+                   p->value == NULL && p->deleted != 1) {
+            /* Found duplicate subsection, so don't make a new one. */
+            *ret_node = p;
+            return 0;
+        }
     }
     retval = profile_create_node(name, value, &new);
     if (retval)
index 23ca896773e97a31fdeb845744137db0f7970907..6622df108156f9c92aef0461a2eb5abb00f9143b 100644 (file)
@@ -10,6 +10,12 @@ this is a comment.  Everything up to the first square brace is ignored.
        }
        child_section2 = foo
 
+[test section 2]
+       child_section2 = {
+               child = ron
+               chores = cleaning
+       }
+
 [realms]
 ATHENA.MIT.EDU = {
        server = KERBEROS.MIT.EDU:88