]> git.sur5r.net Git - openldap/commitdiff
ITS#7976 fix delta-mmr/accesslog interaction
authorHoward Chu <hyc@openldap.org>
Thu, 30 Oct 2014 15:00:13 +0000 (15:00 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 30 Oct 2014 15:00:13 +0000 (15:00 +0000)
servers/slapd/backover.c
servers/slapd/syncrepl.c

index f5ca6e7252fd83d38ca36c760f8a8f16a8ae6a70..918dd1701cb7838604a14db5468263644bf20198 100644 (file)
@@ -684,9 +684,14 @@ int overlay_op_walk(
        }
        if ( rc == SLAP_CB_BYPASS )
                rc = SLAP_CB_CONTINUE;
+       /* if an overlay halted processing, make sure
+        * any previously set cleanup handlers are run
+        */
+       if ( rc != SLAP_CB_CONTINUE )
+               goto cleanup;
 
        bi = oi->oi_orig;
-       if ( (&bi->bi_op_bind)[ which ] && rc == SLAP_CB_CONTINUE ) {
+       if ( (&bi->bi_op_bind)[ which ] ) {
                op->o_bd->bd_info = bi;
                rc = (&bi->bi_op_bind)[ which ]( op, rs );
        }
@@ -700,6 +705,7 @@ int overlay_op_walk(
         */
        if ( rc == LDAP_UNWILLING_TO_PERFORM ) {
                slap_callback *sc_next;
+cleanup:
                for ( ; op->o_callback && op->o_callback->sc_response !=
                        over_back_response; op->o_callback = sc_next ) {
                        sc_next = op->o_callback->sc_next;
index 836adf1ed65fc9e0a9d422bd5ded595a92c4fec0..caab9f58eda15c181bf800949bd48640446470c1 100644 (file)
@@ -2055,8 +2055,11 @@ syncrepl_op_modify( Operation *op, SlapReply *rs )
                overlay_entry_release_ov( op, e, 0, on );
        }
        /* equal? Should never happen */
-       if ( match == 0 )
+       if ( match == 0 ) {
+               /* tell accesslog this was a failure */
+               rs->sr_err = LDAP_TYPE_OR_VALUE_EXISTS;
                return LDAP_SUCCESS;
+       }
 
        /* mod is older: resolve conflicts...
         * 1. Save/copy original modlist. Split Replace to Del/Add.