2000-09-28 06:28:59 +08:00
|
|
|
/* modify.c - bdb backend modify routine */
|
|
|
|
/* $OpenLDAP$ */
|
2003-11-29 05:08:20 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 2000-2005 The OpenLDAP Foundation.
|
2003-11-29 05:08:20 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2000-09-28 06:28:59 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
|
|
|
|
2004-02-24 09:55:59 +08:00
|
|
|
static struct berval scbva[] = {
|
|
|
|
BER_BVC("glue"),
|
|
|
|
BER_BVNULL
|
|
|
|
};
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
int bdb_modify_internal(
|
|
|
|
Operation *op,
|
|
|
|
DB_TXN *tid,
|
|
|
|
Modifications *modlist,
|
|
|
|
Entry *e,
|
2001-06-15 15:08:37 +08:00
|
|
|
const char **text,
|
|
|
|
char *textbuf,
|
|
|
|
size_t textlen )
|
2000-09-28 06:28:59 +08:00
|
|
|
{
|
|
|
|
int rc, err;
|
|
|
|
Modification *mod;
|
|
|
|
Modifications *ml;
|
|
|
|
Attribute *save_attrs;
|
2002-01-14 07:23:23 +08:00
|
|
|
Attribute *ap;
|
2004-02-23 04:44:44 +08:00
|
|
|
int glue_attr_delete = 0;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2000-09-28 08:02:47 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_modify_internal: 0x%08lx: %s\n",
|
|
|
|
e->e_id, e->e_dn, 0);
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( !acl_check_modlist( op, e, modlist )) {
|
2000-09-28 06:28:59 +08:00
|
|
|
return LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
}
|
|
|
|
|
2003-04-17 00:23:36 +08:00
|
|
|
/* save_attrs will be disposed of by bdb_cache_modify */
|
2000-09-28 06:28:59 +08:00
|
|
|
save_attrs = e->e_attrs;
|
|
|
|
e->e_attrs = attrs_dup( e->e_attrs );
|
|
|
|
|
2004-02-23 04:44:44 +08:00
|
|
|
for ( ml = modlist; ml != NULL; ml = ml->sml_next ) {
|
2004-02-24 09:55:59 +08:00
|
|
|
int match;
|
2004-02-23 04:44:44 +08:00
|
|
|
mod = &ml->sml_mod;
|
|
|
|
switch( mod->sm_op ) {
|
|
|
|
case LDAP_MOD_ADD:
|
|
|
|
case LDAP_MOD_REPLACE:
|
|
|
|
if ( mod->sm_desc == slap_schema.si_ad_structuralObjectClass ) {
|
2004-02-24 09:55:59 +08:00
|
|
|
value_match( &match, slap_schema.si_ad_structuralObjectClass,
|
2005-03-20 09:58:38 +08:00
|
|
|
slap_schema.si_ad_structuralObjectClass->
|
|
|
|
ad_type->sat_equality,
|
|
|
|
SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
|
|
|
|
&mod->sm_values[0], &scbva[0], text );
|
|
|
|
if ( !match ) glue_attr_delete = 1;
|
2004-02-23 04:44:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( glue_attr_delete )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( glue_attr_delete ) {
|
|
|
|
Attribute **app = &e->e_attrs;
|
|
|
|
while ( *app != NULL ) {
|
|
|
|
if ( !is_at_operational( (*app)->a_desc->ad_type )) {
|
|
|
|
Attribute *save = *app;
|
|
|
|
*app = (*app)->a_next;
|
|
|
|
attr_free( save );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
app = &(*app)->a_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
for ( ml = modlist; ml != NULL; ml = ml->sml_next ) {
|
|
|
|
mod = &ml->sml_mod;
|
|
|
|
|
|
|
|
switch ( mod->sm_op ) {
|
|
|
|
case LDAP_MOD_ADD:
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: add\n", 0, 0, 0);
|
2003-02-09 13:39:21 +08:00
|
|
|
err = modify_add_values( e, mod, get_permissiveModify(op),
|
2003-02-09 05:53:05 +08:00
|
|
|
text, textbuf, textlen );
|
2000-09-28 06:28:59 +08:00
|
|
|
if( err != LDAP_SUCCESS ) {
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
|
|
|
|
err, *text, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_MOD_DELETE:
|
2004-06-30 01:32:43 +08:00
|
|
|
if ( glue_attr_delete ) {
|
|
|
|
err = LDAP_SUCCESS;
|
2004-02-23 04:44:44 +08:00
|
|
|
break;
|
2004-06-30 01:32:43 +08:00
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: delete\n", 0, 0, 0);
|
2003-02-09 13:39:21 +08:00
|
|
|
err = modify_delete_values( e, mod, get_permissiveModify(op),
|
2003-02-09 05:53:05 +08:00
|
|
|
text, textbuf, textlen );
|
2000-09-28 06:28:59 +08:00
|
|
|
assert( err != LDAP_TYPE_OR_VALUE_EXISTS );
|
|
|
|
if( err != LDAP_SUCCESS ) {
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
|
|
|
|
err, *text, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_MOD_REPLACE:
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: replace\n", 0, 0, 0);
|
2003-02-09 13:39:21 +08:00
|
|
|
err = modify_replace_values( e, mod, get_permissiveModify(op),
|
2003-02-09 05:53:05 +08:00
|
|
|
text, textbuf, textlen );
|
2000-09-28 06:28:59 +08:00
|
|
|
if( err != LDAP_SUCCESS ) {
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
|
|
|
|
err, *text, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2003-08-08 00:42:40 +08:00
|
|
|
case LDAP_MOD_INCREMENT:
|
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
"bdb_modify_internal: increment\n", 0, 0, 0);
|
|
|
|
err = modify_increment_values( e, mod, get_permissiveModify(op),
|
|
|
|
text, textbuf, textlen );
|
|
|
|
if( err != LDAP_SUCCESS ) {
|
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
"bdb_modify_internal: %d %s\n",
|
|
|
|
err, *text, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
case SLAP_MOD_SOFTADD:
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: softadd\n", 0, 0, 0);
|
|
|
|
/* Avoid problems in index_add_mods()
|
|
|
|
* We need to add index if necessary.
|
|
|
|
*/
|
|
|
|
mod->sm_op = LDAP_MOD_ADD;
|
|
|
|
|
2003-02-09 13:39:21 +08:00
|
|
|
err = modify_add_values( e, mod, get_permissiveModify(op),
|
2003-02-09 05:53:05 +08:00
|
|
|
text, textbuf, textlen );
|
2003-04-15 09:13:28 +08:00
|
|
|
|
|
|
|
mod->sm_op = SLAP_MOD_SOFTADD;
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
if ( err == LDAP_TYPE_OR_VALUE_EXISTS ) {
|
|
|
|
err = LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( err != LDAP_SUCCESS ) {
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
|
|
|
|
err, *text, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Debug(LDAP_DEBUG_ANY, "bdb_modify_internal: invalid op %d\n",
|
|
|
|
mod->sm_op, 0, 0);
|
|
|
|
*text = "Invalid modify operation";
|
|
|
|
err = LDAP_OTHER;
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "bdb_modify_internal: %d %s\n",
|
|
|
|
err, *text, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( err != LDAP_SUCCESS ) {
|
|
|
|
attrs_free( e->e_attrs );
|
|
|
|
e->e_attrs = save_attrs;
|
|
|
|
/* unlock entry, delete from cache */
|
|
|
|
return err;
|
|
|
|
}
|
2002-01-14 07:23:23 +08:00
|
|
|
|
2002-01-19 12:51:42 +08:00
|
|
|
/* If objectClass was modified, reset the flags */
|
|
|
|
if ( mod->sm_desc == slap_schema.si_ad_objectClass ) {
|
|
|
|
e->e_ocflags = 0;
|
|
|
|
}
|
2003-09-21 18:11:46 +08:00
|
|
|
|
2005-03-20 09:58:38 +08:00
|
|
|
if ( glue_attr_delete ) e->e_ocflags = 0;
|
2004-02-23 04:44:44 +08:00
|
|
|
|
2003-09-21 18:11:46 +08:00
|
|
|
/* check if modified attribute was indexed
|
|
|
|
* but not in case of NOOP... */
|
|
|
|
err = bdb_index_is_indexed( op->o_bd, mod->sm_desc );
|
|
|
|
if ( err == LDAP_SUCCESS && !op->o_noop ) {
|
|
|
|
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;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check that the entry still obeys the schema */
|
2003-03-30 17:03:54 +08:00
|
|
|
rc = entry_schema_check( op->o_bd, e, save_attrs, text, textbuf, textlen );
|
2002-09-01 01:03:42 +08:00
|
|
|
if ( rc != LDAP_SUCCESS || op->o_noop ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
attrs_free( e->e_attrs );
|
2004-07-09 19:18:42 +08:00
|
|
|
/* clear the indexing flags */
|
|
|
|
for ( ap = save_attrs; ap != NULL; ap = ap->a_next ) {
|
|
|
|
ap->a_flags = 0;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
e->e_attrs = save_attrs;
|
2002-09-01 01:03:42 +08:00
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"entry failed schema check: %s\n",
|
|
|
|
*text, 0, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if NOOP then silently revert to saved attrs */
|
2000-09-28 06:28:59 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-01-14 07:23:23 +08:00
|
|
|
/* update the indices of the modified attributes */
|
2003-09-21 18:11:46 +08:00
|
|
|
|
|
|
|
/* 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 = bdb_index_values( op, tid, ap->a_desc,
|
|
|
|
ap->a_nvals,
|
|
|
|
e->e_id, SLAP_INDEX_DELETE_OP );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
attrs_free( e->e_attrs );
|
|
|
|
e->e_attrs = save_attrs;
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"Attribute index delete failure",
|
|
|
|
0, 0, 0 );
|
|
|
|
return rc;
|
2002-01-14 07:23:23 +08:00
|
|
|
}
|
2003-09-21 18:11:46 +08:00
|
|
|
ap->a_flags &= ~SLAP_ATTR_IXDEL;
|
2002-01-14 07:23:23 +08:00
|
|
|
}
|
2003-09-21 18:11:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add the new index entries */
|
|
|
|
for ( ap = e->e_attrs; ap != NULL; ap = ap->a_next ) {
|
|
|
|
if (ap->a_flags & SLAP_ATTR_IXADD) {
|
|
|
|
rc = bdb_index_values( op, tid, ap->a_desc,
|
|
|
|
ap->a_nvals,
|
|
|
|
e->e_id, SLAP_INDEX_ADD_OP );
|
2002-01-14 07:23:23 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
attrs_free( e->e_attrs );
|
|
|
|
e->e_attrs = save_attrs;
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-09-21 18:11:46 +08:00
|
|
|
"Attribute index add failure",
|
2002-01-14 07:23:23 +08:00
|
|
|
0, 0, 0 );
|
2003-09-21 18:11:46 +08:00
|
|
|
return rc;
|
2002-01-14 07:23:23 +08:00
|
|
|
}
|
2003-09-21 18:11:46 +08:00
|
|
|
ap->a_flags &= ~SLAP_ATTR_IXADD;
|
2002-01-14 07:23:23 +08:00
|
|
|
}
|
2001-10-04 07:39:29 +08:00
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2003-03-30 17:03:54 +08:00
|
|
|
bdb_modify( Operation *op, SlapReply *rs )
|
2000-09-28 06:28:59 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
|
2002-04-30 00:42:41 +08:00
|
|
|
Entry *e = NULL;
|
2003-04-17 00:23:36 +08:00
|
|
|
EntryInfo *ei = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
int manageDSAit = get_manageDSAit( op );
|
2001-06-15 15:08:37 +08:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN];
|
|
|
|
size_t textlen = sizeof textbuf;
|
2003-04-17 00:23:36 +08:00
|
|
|
DB_TXN *ltid = NULL, *lt2;
|
2004-12-05 10:00:19 +08:00
|
|
|
struct bdb_op_info opinfo = {0};
|
2004-07-06 04:08:20 +08:00
|
|
|
Entry dummy = {0};
|
2005-04-09 19:15:05 +08:00
|
|
|
int fakeroot = 0;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2003-02-07 23:47:32 +08:00
|
|
|
u_int32_t locker = 0;
|
2002-06-01 04:49:19 +08:00
|
|
|
DB_LOCK lock;
|
|
|
|
|
2003-07-01 19:55:18 +08:00
|
|
|
int num_retries = 0;
|
|
|
|
|
2004-06-23 14:56:23 +08:00
|
|
|
LDAPControl **preread_ctrl = NULL;
|
|
|
|
LDAPControl **postread_ctrl = NULL;
|
2003-09-17 02:56:04 +08:00
|
|
|
LDAPControl *ctrls[SLAP_MAX_RESPONSE_CONTROLS];
|
|
|
|
int num_ctrls = 0;
|
|
|
|
|
2003-08-26 03:15:04 +08:00
|
|
|
int rc;
|
2002-10-26 01:51:30 +08:00
|
|
|
|
2004-11-17 22:53:03 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, LDAP_XSTRING(bdb_modify) ": %s\n",
|
2004-06-23 14:56:23 +08:00
|
|
|
op->o_req_dn.bv_val, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2004-06-23 14:56:23 +08:00
|
|
|
ctrls[num_ctrls] = NULL;
|
|
|
|
|
2001-11-28 05:59:56 +08:00
|
|
|
if( 0 ) {
|
2000-09-28 08:02:47 +08:00
|
|
|
retry: /* transaction retry */
|
2004-07-06 04:08:20 +08:00
|
|
|
if ( dummy.e_attrs ) {
|
|
|
|
attrs_free( dummy.e_attrs );
|
|
|
|
dummy.e_attrs = NULL;
|
|
|
|
}
|
2002-01-25 15:19:01 +08:00
|
|
|
if( e != NULL ) {
|
2002-06-06 18:14:14 +08:00
|
|
|
bdb_unlocked_cache_return_entry_w(&bdb->bi_cache, e);
|
2003-04-17 00:23:36 +08:00
|
|
|
e = NULL;
|
2002-01-25 15:19:01 +08:00
|
|
|
}
|
2000-09-28 08:02:47 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": retrying...\n", 0, 0, 0);
|
2002-10-26 01:51:30 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = TXN_ABORT( ltid );
|
2000-09-28 06:28:59 +08:00
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
2003-02-26 20:09:10 +08:00
|
|
|
op->o_do_not_cache = opinfo.boi_acl_cache;
|
2003-03-30 17:03:54 +08:00
|
|
|
if( rs->sr_err != 0 ) {
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
rs->sr_text = "internal error";
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
2002-01-18 21:34:50 +08:00
|
|
|
ldap_pvt_thread_yield();
|
2003-09-27 11:16:38 +08:00
|
|
|
bdb_trans_backoff( ++num_retries );
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
2002-01-29 06:57:50 +08:00
|
|
|
/* begin transaction */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = TXN_BEGIN( bdb->bi_dbenv, NULL, <id,
|
2002-01-29 06:57:50 +08:00
|
|
|
bdb->bi_db_opflags );
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = NULL;
|
|
|
|
if( rs->sr_err != 0 ) {
|
2002-01-29 06:57:50 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": txn_begin failed: "
|
|
|
|
"%s (%d)\n", db_strerror(rs->sr_err), rs->sr_err, 0 );
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
rs->sr_text = "internal error";
|
2002-01-29 06:57:50 +08:00
|
|
|
goto return_results;
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
2002-06-01 04:49:19 +08:00
|
|
|
locker = TXN_ID ( ltid );
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
opinfo.boi_bdb = op->o_bd;
|
2000-09-28 06:28:59 +08:00
|
|
|
opinfo.boi_txn = ltid;
|
2003-02-07 23:47:32 +08:00
|
|
|
opinfo.boi_locker = locker;
|
2000-09-28 06:28:59 +08:00
|
|
|
opinfo.boi_err = 0;
|
2003-02-26 20:09:10 +08:00
|
|
|
opinfo.boi_acl_cache = op->o_do_not_cache;
|
2000-09-28 06:28:59 +08:00
|
|
|
op->o_private = &opinfo;
|
|
|
|
|
2003-04-17 00:23:36 +08:00
|
|
|
/* get entry or ancestor */
|
2003-05-25 08:53:08 +08:00
|
|
|
rs->sr_err = bdb_dn2entry( op, ltid, &op->o_req_ndn, &ei, 1,
|
|
|
|
locker, &lock );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2005-04-09 19:15:05 +08:00
|
|
|
e = ei->bei_e;
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_err != 0 ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": dn2entry failed (%d)\n",
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err, 0, 0 );
|
|
|
|
switch( rs->sr_err ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
case DB_NOTFOUND:
|
2005-04-09 19:15:05 +08:00
|
|
|
if ( BER_BVISEMPTY( &op->o_req_ndn )) {
|
2005-04-15 14:58:03 +08:00
|
|
|
struct berval gluebv = BER_BVC("glue");
|
2005-04-09 19:15:05 +08:00
|
|
|
e = ch_calloc( 1, sizeof(Entry));
|
|
|
|
e->e_name.bv_val = ch_strdup( "" );
|
|
|
|
ber_dupbv( &e->e_nname, &e->e_name );
|
2005-04-15 14:58:03 +08:00
|
|
|
attr_merge_one( e, slap_schema.si_ad_objectClass,
|
|
|
|
&gluebv, NULL );
|
2005-04-09 19:15:05 +08:00
|
|
|
attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
|
2005-04-15 14:58:03 +08:00
|
|
|
&gluebv, NULL );
|
2005-04-09 19:21:08 +08:00
|
|
|
e->e_private = ei;
|
2005-04-09 19:15:05 +08:00
|
|
|
fakeroot = 1;
|
|
|
|
rs->sr_err = 0;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
break;
|
2002-04-20 05:41:32 +08:00
|
|
|
case LDAP_BUSY:
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "ldap server busy";
|
2002-04-20 05:41:32 +08:00
|
|
|
goto return_results;
|
2000-09-28 06:28:59 +08:00
|
|
|
default:
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
2003-04-03 09:59:08 +08:00
|
|
|
rs->sr_text = "internal error";
|
|
|
|
goto return_results;
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* acquire and lock entry */
|
2003-08-28 06:16:04 +08:00
|
|
|
/* FIXME: dn2entry() should return non-glue entry */
|
2004-06-23 14:56:23 +08:00
|
|
|
if (( rs->sr_err == DB_NOTFOUND ) ||
|
|
|
|
( !manageDSAit && e && is_entry_glue( e )))
|
|
|
|
{
|
2003-07-15 08:43:39 +08:00
|
|
|
if ( e != NULL ) {
|
2003-04-17 00:23:36 +08:00
|
|
|
rs->sr_matched = ch_strdup( e->e_dn );
|
|
|
|
rs->sr_ref = is_entry_referral( e )
|
|
|
|
? get_entry_referrals( op, e )
|
2000-09-28 06:28:59 +08:00
|
|
|
: NULL;
|
2003-04-17 00:23:36 +08:00
|
|
|
bdb_unlocked_cache_return_entry_r (&bdb->bi_cache, e);
|
|
|
|
e = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
} else {
|
2005-01-15 18:39:23 +08:00
|
|
|
rs->sr_ref = referral_rewrite( default_referral, NULL,
|
2005-03-20 09:58:38 +08:00
|
|
|
&op->o_req_dn, LDAP_SCOPE_DEFAULT );
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
|
|
|
send_ldap_result( op, rs );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2004-10-06 13:51:38 +08:00
|
|
|
if ( rs->sr_ref != default_referral ) {
|
2003-11-27 03:49:47 +08:00
|
|
|
ber_bvarray_free( rs->sr_ref );
|
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
free( (char *)rs->sr_matched );
|
|
|
|
rs->sr_ref = NULL;
|
|
|
|
rs->sr_matched = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2002-06-11 03:02:25 +08:00
|
|
|
goto done;
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( !manageDSAit && is_entry_referral( e ) ) {
|
2002-01-29 12:53:47 +08:00
|
|
|
/* entry is a referral, don't allow modify */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = get_entry_referrals( op, e );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": entry is referral\n",
|
2000-09-28 06:28:59 +08:00
|
|
|
0, 0, 0 );
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
|
|
|
rs->sr_matched = e->e_name.bv_val;
|
|
|
|
send_ldap_result( op, rs );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
ber_bvarray_free( rs->sr_ref );
|
|
|
|
rs->sr_ref = NULL;
|
|
|
|
rs->sr_matched = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
goto done;
|
|
|
|
}
|
2002-10-26 01:51:30 +08:00
|
|
|
|
2003-06-10 12:44:41 +08:00
|
|
|
if ( get_assert( op ) &&
|
|
|
|
( test_filter( op, e, get_assertion( op )) != LDAP_COMPARE_TRUE ))
|
|
|
|
{
|
|
|
|
rs->sr_err = LDAP_ASSERTION_FAILED;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2003-09-17 02:56:04 +08:00
|
|
|
if( op->o_preread ) {
|
2004-06-23 14:56:23 +08:00
|
|
|
if( preread_ctrl == NULL ) {
|
|
|
|
preread_ctrl = &ctrls[num_ctrls++];
|
|
|
|
ctrls[num_ctrls] = NULL;
|
|
|
|
}
|
2003-09-17 02:56:04 +08:00
|
|
|
if ( slap_read_controls( op, rs, e,
|
2004-06-23 14:56:23 +08:00
|
|
|
&slap_pre_read_bv, preread_ctrl ) )
|
2003-09-17 02:56:04 +08:00
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-03-20 09:58:38 +08:00
|
|
|
"<=- " LDAP_XSTRING(bdb_modify) ": pre-read failed!\n",
|
|
|
|
0, 0, 0 );
|
2003-09-17 02:56:04 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-17 00:23:36 +08:00
|
|
|
/* nested transaction */
|
2005-03-20 09:58:38 +08:00
|
|
|
rs->sr_err = TXN_BEGIN( bdb->bi_dbenv, ltid, <2, bdb->bi_db_opflags );
|
2003-04-17 00:23:36 +08:00
|
|
|
rs->sr_text = NULL;
|
|
|
|
if( rs->sr_err != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-03-20 09:58:38 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": txn_begin(2) failed: " "%s (%d)\n",
|
2003-04-17 00:23:36 +08:00
|
|
|
db_strerror(rs->sr_err), rs->sr_err, 0 );
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
rs->sr_text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
/* Modify the entry */
|
2003-04-17 00:23:36 +08:00
|
|
|
dummy = *e;
|
|
|
|
rs->sr_err = bdb_modify_internal( op, lt2, op->oq_modify.rs_modlist,
|
|
|
|
&dummy, &rs->sr_text, textbuf, textlen );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if( rs->sr_err != LDAP_SUCCESS ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": modify failed (%d)\n",
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err, 0, 0 );
|
|
|
|
if ( (rs->sr_err == LDAP_INSUFFICIENT_ACCESS) && opinfo.boi_err ) {
|
|
|
|
rs->sr_err = opinfo.boi_err;
|
2003-02-26 20:49:21 +08:00
|
|
|
}
|
2004-07-06 04:08:20 +08:00
|
|
|
/* Only free attrs if they were dup'd. */
|
|
|
|
if ( dummy.e_attrs == e->e_attrs ) dummy.e_attrs = NULL;
|
2003-03-30 17:03:54 +08:00
|
|
|
switch( rs->sr_err ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* change the entry itself */
|
2003-04-17 00:23:36 +08:00
|
|
|
rs->sr_err = bdb_id2entry_update( op->o_bd, lt2, &dummy );
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_err != 0 ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-03-20 09:58:38 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": id2entry update failed " "(%d)\n",
|
|
|
|
rs->sr_err, 0, 0 );
|
2003-03-30 17:03:54 +08:00
|
|
|
switch( rs->sr_err ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "entry update failed";
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
2003-09-17 02:56:04 +08:00
|
|
|
|
2003-04-17 00:23:36 +08:00
|
|
|
if ( TXN_COMMIT( lt2, 0 ) != 0 ) {
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
rs->sr_text = "txn_commit(2) failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2004-06-23 14:02:49 +08:00
|
|
|
if( op->o_postread ) {
|
2004-06-23 14:56:23 +08:00
|
|
|
if( postread_ctrl == NULL ) {
|
|
|
|
postread_ctrl = &ctrls[num_ctrls++];
|
|
|
|
ctrls[num_ctrls] = NULL;
|
|
|
|
}
|
2004-07-06 04:08:20 +08:00
|
|
|
if( slap_read_controls( op, rs, &dummy,
|
2004-06-23 14:56:23 +08:00
|
|
|
&slap_post_read_bv, postread_ctrl ) )
|
2004-06-23 14:02:49 +08:00
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
"<=- " LDAP_XSTRING(bdb_modify)
|
|
|
|
": post-read failed!\n", 0, 0, 0 );
|
2004-06-23 14:02:49 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-29 08:02:27 +08:00
|
|
|
if( op->o_noop ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( ( rs->sr_err = TXN_ABORT( ltid ) ) != 0 ) {
|
|
|
|
rs->sr_text = "txn_abort (no-op) failed";
|
2002-08-31 20:00:39 +08:00
|
|
|
} else {
|
2003-12-30 07:31:39 +08:00
|
|
|
rs->sr_err = LDAP_NO_OPERATION;
|
|
|
|
goto return_results;
|
2002-08-31 20:00:39 +08:00
|
|
|
}
|
2002-01-29 08:02:27 +08:00
|
|
|
} else {
|
2005-01-08 17:13:16 +08:00
|
|
|
/* may have changed in bdb_modify_internal() */
|
|
|
|
e->e_ocflags = dummy.e_ocflags;
|
2005-04-09 19:15:05 +08:00
|
|
|
if ( fakeroot ) {
|
2005-04-09 19:21:08 +08:00
|
|
|
e->e_private = NULL;
|
2005-04-09 19:15:05 +08:00
|
|
|
entry_free( e );
|
|
|
|
} else {
|
|
|
|
rc = bdb_cache_modify( e, dummy.e_attrs, bdb->bi_dbenv, locker, &lock );
|
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
2004-06-16 05:13:40 +08:00
|
|
|
}
|
2004-07-06 04:08:20 +08:00
|
|
|
dummy.e_attrs = NULL;
|
2003-08-23 10:51:33 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = TXN_COMMIT( ltid, 0 );
|
2002-01-29 08:02:27 +08:00
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if( rs->sr_err != 0 ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": txn_%s failed: %s (%d)\n",
|
2002-01-29 08:02:27 +08:00
|
|
|
op->o_noop ? "abort (no-op)" : "commit",
|
2003-03-30 17:03:54 +08:00
|
|
|
db_strerror(rs->sr_err), rs->sr_err );
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
rs->sr_text = "commit failed";
|
2001-11-28 05:59:56 +08:00
|
|
|
|
2003-09-17 02:56:04 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 22:53:03 +08:00
|
|
|
LDAP_XSTRING(bdb_modify) ": updated%s id=%08lx dn=\"%s\"\n",
|
2003-09-17 02:56:04 +08:00
|
|
|
op->o_noop ? " (no-op)" : "",
|
2004-10-31 07:48:26 +08:00
|
|
|
dummy.e_id, op->o_req_dn.bv_val );
|
2003-09-17 02:56:04 +08:00
|
|
|
|
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
|
|
|
rs->sr_text = NULL;
|
|
|
|
if( num_ctrls ) rs->sr_ctrls = ctrls;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
return_results:
|
2004-07-06 04:08:20 +08:00
|
|
|
if( dummy.e_attrs ) {
|
|
|
|
attrs_free( dummy.e_attrs );
|
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_result( op, rs );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if( rs->sr_err == LDAP_SUCCESS && bdb->bi_txn_cp ) {
|
2000-09-28 12:09:13 +08:00
|
|
|
ldap_pvt_thread_yield();
|
2001-12-07 13:05:00 +08:00
|
|
|
TXN_CHECKPOINT( bdb->bi_dbenv,
|
2000-09-28 12:09:13 +08:00
|
|
|
bdb->bi_txn_cp_kbyte, bdb->bi_txn_cp_min, 0 );
|
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
done:
|
|
|
|
if( ltid != NULL ) {
|
2002-02-02 11:28:32 +08:00
|
|
|
TXN_ABORT( ltid );
|
2000-09-28 06:28:59 +08:00
|
|
|
op->o_private = NULL;
|
|
|
|
}
|
|
|
|
|
2000-09-28 10:27:49 +08:00
|
|
|
if( e != NULL ) {
|
2002-06-06 18:14:14 +08:00
|
|
|
bdb_unlocked_cache_return_entry_w (&bdb->bi_cache, e);
|
2000-09-28 10:27:49 +08:00
|
|
|
}
|
2004-06-23 14:56:23 +08:00
|
|
|
|
|
|
|
if( preread_ctrl != NULL ) {
|
2004-11-11 05:38:41 +08:00
|
|
|
slap_sl_free( (*preread_ctrl)->ldctl_value.bv_val, op->o_tmpmemctx );
|
|
|
|
slap_sl_free( *preread_ctrl, op->o_tmpmemctx );
|
2004-06-23 14:56:23 +08:00
|
|
|
}
|
|
|
|
if( postread_ctrl != NULL ) {
|
2004-11-11 05:38:41 +08:00
|
|
|
slap_sl_free( (*postread_ctrl)->ldctl_value.bv_val, op->o_tmpmemctx );
|
|
|
|
slap_sl_free( *postread_ctrl, op->o_tmpmemctx );
|
2004-06-23 14:56:23 +08:00
|
|
|
}
|
2003-12-30 07:31:39 +08:00
|
|
|
return rs->sr_err;
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|