* and there and of course the likelihood of bugs increases.
* Juan C. Gomez (gomez@engr.sgi.com) 05/18/99
*/
-
int ldbm_modify_internal(
Backend *be,
Connection *conn,
size_t textlen
)
{
- int rc, err;
+ int rc = LDAP_SUCCESS;
Modification *mod;
Modifications *ml;
Attribute *save_attrs;
+ Attribute *ap;
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: add\n", 0, 0, 0);
#endif
- err = add_values( e, mod, op->o_ndn.bv_val );
+ rc = add_values( e, mod, op->o_ndn.bv_val );
- if( err != LDAP_SUCCESS ) {
+ if( rc != LDAP_SUCCESS ) {
*text = "modify: add values failed";
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
"ldbm_modify_internal: failed %d (%s)\n",
- err, *text ));
+ rc, *text ));
#else
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: %d %s\n",
- err, *text, 0);
+ rc, *text, 0);
#endif
}
break;
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: delete\n", 0, 0, 0);
#endif
- err = delete_values( e, mod, op->o_ndn.bv_val );
- assert( err != LDAP_TYPE_OR_VALUE_EXISTS );
- if( err != LDAP_SUCCESS ) {
+ rc = delete_values( e, mod, op->o_ndn.bv_val );
+ assert( rc != LDAP_TYPE_OR_VALUE_EXISTS );
+ if( rc != LDAP_SUCCESS ) {
*text = "modify: delete values failed";
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
- "ldbm_modify_internal: failed %d (%s)\n", err, *text ));
+ "ldbm_modify_internal: failed %d (%s)\n", rc, *text ));
#else
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: %d %s\n",
- err, *text, 0);
+ rc, *text, 0);
#endif
}
break;
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: replace\n", 0, 0, 0);
#endif
- err = replace_values( e, mod, op->o_ndn.bv_val );
- assert( err != LDAP_TYPE_OR_VALUE_EXISTS );
- if( err != LDAP_SUCCESS ) {
+ rc = replace_values( e, mod, op->o_ndn.bv_val );
+ assert( rc != LDAP_TYPE_OR_VALUE_EXISTS );
+ if( rc != LDAP_SUCCESS ) {
*text = "modify: replace values failed";
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
- "ldbm_modify_internal: failed %d (%s)\n", err, *text ));
+ "ldbm_modify_internal: failed %d (%s)\n", rc, *text ));
#else
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: %d %s\n",
- err, *text, 0);
+ rc, *text, 0);
#endif
}
* We need to add index if necessary.
*/
mod->sm_op = LDAP_MOD_ADD;
- err = add_values( e, mod, op->o_ndn.bv_val );
+ rc = add_values( e, mod, op->o_ndn.bv_val );
- if ( err == LDAP_TYPE_OR_VALUE_EXISTS ) {
- err = LDAP_SUCCESS;
+ if ( rc == LDAP_TYPE_OR_VALUE_EXISTS ) {
+ rc = LDAP_SUCCESS;
}
- if( err != LDAP_SUCCESS ) {
+ if( rc != LDAP_SUCCESS ) {
*text = "modify: (soft)add values failed";
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
- "ldbm_modify_internal: failed %d (%s)\n", err, *text ));
+ "ldbm_modify_internal: failed %d (%s)\n", rc, *text ));
#else
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: %d %s\n",
- err, *text, 0);
+ rc, *text, 0);
#endif
}
mod->sm_op, 0, 0);
#endif
- err = LDAP_OTHER;
+ rc = LDAP_OTHER;
*text = "Invalid modify operation";
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
- "ldbm_modify_internal: %d (%s)\n", err, *text ));
+ "ldbm_modify_internal: %d (%s)\n", rc, *text ));
#else
Debug(LDAP_DEBUG_ARGS, "ldbm_modify_internal: %d %s\n",
- err, *text, 0);
+ rc, *text, 0);
#endif
}
- if ( err != LDAP_SUCCESS ) {
- attrs_free( e->e_attrs );
- e->e_attrs = save_attrs;
- /* unlock entry, delete from cache */
- return err;
+ if ( rc != LDAP_SUCCESS ) {
+ goto exit;
}
- }
- /* check for abandon */
- ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
- if ( op->o_abandon ) {
- attrs_free( e->e_attrs );
- e->e_attrs = save_attrs;
- ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
- return SLAPD_ABANDON;
+ /* check if modified attribute was indexed */
+ rc = index_is_indexed( be, mod->sm_desc );
+ if ( rc == LDAP_SUCCESS ) {
+ ap = attr_find( save_attrs, mod->sm_desc );
+ if ( ap ) ap->a_flags |= SLAP_ATTR_IXDEL;
+
+ ap = attr_find( e->e_attrs, mod->sm_desc );
+ if ( ap ) ap->a_flags |= SLAP_ATTR_IXADD;
+ }
}
- ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
/* check that the entry still obeys the schema */
rc = entry_schema_check( be, e, save_attrs, text, textbuf, textlen );
if ( rc != LDAP_SUCCESS ) {
- attrs_free( e->e_attrs );
- e->e_attrs = save_attrs;
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
"ldbm_modify_internal: entry failed schema check: %s\n",
*text, 0, 0 );
#endif
- return rc;
+ goto exit;
}
/* check for abandon */
ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
- if ( op->o_abandon ) {
- attrs_free( e->e_attrs );
- e->e_attrs = save_attrs;
- ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
- return SLAPD_ABANDON;
- }
+ rc = op->o_abandon;
ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
+ if ( rc ) {
+ rc = SLAPD_ABANDON;
+ goto exit;
+ }
- /* delete indices for old attributes */
- index_entry_del( be, e, save_attrs);
+ /* update the indices of the modified attributes */
- /* add indices for new attributes */
- index_entry_add( be, e, e->e_attrs);
+ /* start with deleting the old index entries */
+ for ( ap = save_attrs; ap != NULL; ap = ap->a_next ) {
+ if ( ap->a_flags & SLAP_ATTR_IXDEL ) {
+ rc = index_values( be, ap->a_desc, ap->a_vals, e->e_id,
+ SLAP_INDEX_DELETE_OP );
+ if ( rc != LDAP_SUCCESS ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
+ "ldbm_modify_internal: Attribute index delete failure\n" ));
+#else
+ Debug( LDAP_DEBUG_ANY,
+ "Attribute index delete failure",
+ 0, 0, 0 );
+#endif
+ goto exit;
+ }
+ ap->a_flags &= ~SLAP_ATTR_IXDEL;
+ }
+ }
- attrs_free( save_attrs );
+ /* add the new index entries */
+ for ( ap = e->e_attrs; ap != NULL; ap = ap->a_next ) {
+ if ( ap->a_flags & SLAP_ATTR_IXADD ) {
+ rc = index_values( be, ap->a_desc, ap->a_vals, e->e_id,
+ SLAP_INDEX_ADD_OP );
+ if ( rc != LDAP_SUCCESS ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
+ "ldbm_modify_internal: Attribute index add failure\n" ));
+#else
+ Debug( LDAP_DEBUG_ANY,
+ "Attribute index add failure",
+ 0, 0, 0 );
+#endif
+ goto exit;
+ }
+ ap->a_flags &= ~SLAP_ATTR_IXADD;
+ }
+ }
- return LDAP_SUCCESS;
-}
+exit:
+ if ( rc == LDAP_SUCCESS ) {
+ attrs_free( save_attrs );
+ } else {
+ for ( ap = save_attrs; ap; ap = ap->a_next ) {
+ ap->a_flags = 0;
+ }
+ attrs_free( e->e_attrs );
+ e->e_attrs = save_attrs;
+ }
+ return rc;
+}
int
ldbm_back_modify(