2001-10-05 09:19:58 +08:00
|
|
|
/* delete.c - bdb backend delete routine */
|
2000-09-24 07:15:40 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-24 07:15:40 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
2000-09-25 06:48:13 +08:00
|
|
|
#include "external.h"
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
bdb_delete(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2001-12-27 03:05:26 +08:00
|
|
|
struct berval *dn,
|
|
|
|
struct berval *ndn
|
2000-09-24 07:15:40 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
Entry *matched;
|
|
|
|
char *pdn = NULL;
|
|
|
|
Entry *e, *p = NULL;
|
|
|
|
int rc;
|
2000-09-28 10:27:49 +08:00
|
|
|
const char *text;
|
2000-09-24 07:15:40 +08:00
|
|
|
int manageDSAit = get_manageDSAit( op );
|
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
|
|
|
DB_TXN *ltid = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
struct bdb_op_info opinfo;
|
2000-09-24 07:15:40 +08:00
|
|
|
|
2001-12-27 03:05:26 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "==> bdb_delete: %s\n",
|
|
|
|
dn->bv_val, 0, 0 );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
2001-11-28 05:59:56 +08:00
|
|
|
if( 0 ) {
|
2000-09-28 08:24:28 +08:00
|
|
|
retry: /* transaction retry */
|
2001-12-27 03:05:26 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "==> bdb_delete: retrying...\n",
|
|
|
|
0, 0, 0 );
|
2000-09-28 08:24:28 +08:00
|
|
|
rc = txn_abort( ltid );
|
2000-09-24 07:15:40 +08:00
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
|
|
|
if( rc != 0 ) {
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-27 11:41:03 +08:00
|
|
|
if( bdb->bi_txn ) {
|
|
|
|
/* begin transaction */
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = txn_begin( bdb->bi_dbenv, NULL, <id,
|
|
|
|
bdb->bi_db_opflags );
|
2001-11-27 11:41:03 +08:00
|
|
|
text = NULL;
|
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_delete: txn_begin failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
opinfo.boi_bdb = be;
|
|
|
|
opinfo.boi_txn = ltid;
|
|
|
|
opinfo.boi_err = 0;
|
|
|
|
op->o_private = &opinfo;
|
2000-09-24 07:15:40 +08:00
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
/* get entry for read/modify/write */
|
2001-12-27 07:26:17 +08:00
|
|
|
rc = bdb_dn2entry( be, ltid, ndn, &e, &matched, DB_RMW );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
|
|
|
case 0:
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( e == NULL ) {
|
|
|
|
char *matched_dn = NULL;
|
2002-01-02 19:00:36 +08:00
|
|
|
BVarray refs;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ARGS,
|
|
|
|
"<=- bdb_delete: no such object %s\n",
|
2002-01-06 15:21:06 +08:00
|
|
|
dn->bv_val, 0, 0);
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
if ( matched != NULL ) {
|
|
|
|
matched_dn = ch_strdup( matched->e_dn );
|
|
|
|
refs = is_entry_referral( matched )
|
2001-12-27 04:59:24 +08:00
|
|
|
? get_entry_referrals( be, conn, op, matched )
|
2000-09-28 06:28:59 +08:00
|
|
|
: NULL;
|
|
|
|
bdb_entry_return( be, matched );
|
2000-09-28 10:27:49 +08:00
|
|
|
matched = NULL;
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
} else {
|
2001-11-05 14:24:11 +08:00
|
|
|
refs = referral_rewrite( default_referral,
|
2001-12-27 04:59:24 +08:00
|
|
|
NULL, dn, LDAP_SCOPE_DEFAULT );
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
|
|
|
matched_dn, NULL, refs, NULL );
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
bvarray_free( refs );
|
2001-11-05 14:24:11 +08:00
|
|
|
free( matched_dn );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
rc = -1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-27 03:05:26 +08:00
|
|
|
pdn = dn_parent( be, ndn->bv_val );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
if( pdn != NULL && *pdn != '\0' ) {
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval pbv;
|
|
|
|
|
|
|
|
pbv.bv_len = ndn->bv_len - (pdn - ndn->bv_val);
|
|
|
|
pbv.bv_val = pdn;
|
2000-09-28 06:28:59 +08:00
|
|
|
/* get parent */
|
2001-12-27 07:26:17 +08:00
|
|
|
rc = bdb_dn2entry( be, ltid, &pbv, &p, NULL, 0 );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
2000-09-24 14:04:58 +08:00
|
|
|
case 0:
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
2000-09-24 07:15:40 +08:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( p == NULL) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- bdb_delete: parent does not exist\n",
|
|
|
|
0, 0, 0);
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "could not locate parent of entry";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
|
|
|
|
bdb_entry_return( be, p );
|
2000-09-28 10:27:49 +08:00
|
|
|
p = NULL;
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
if ( !rc ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- bdb_delete: no access to parent\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* no parent, must be root to delete */
|
2001-12-26 03:48:26 +08:00
|
|
|
if( ! be_isroot( be, &op->o_ndn ) ) {
|
2001-12-25 08:05:26 +08:00
|
|
|
if ( be_issuffix( be, "" ) || be_isupdate( be, &op->o_ndn ) ) {
|
2001-11-17 01:05:32 +08:00
|
|
|
p = (Entry *)&slap_entry_root;
|
2001-11-15 00:09:33 +08:00
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
if ( !rc ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- bdb_delete: no access "
|
|
|
|
"to parent\n", 0, 0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- bdb_delete: no parent "
|
|
|
|
"and not root\n", 0, 0, 0);
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
if ( !manageDSAit && is_entry_referral( e ) ) {
|
2000-09-24 07:15:40 +08:00
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
/* parent is an alias, don't allow add */
|
2002-01-02 19:00:36 +08:00
|
|
|
BVarray refs = get_entry_referrals( be,
|
2001-12-27 04:59:24 +08:00
|
|
|
conn, op, e );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_delete: entry is referral\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
2000-09-28 06:28:59 +08:00
|
|
|
e->e_dn, NULL, refs, NULL );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
bvarray_free( refs );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
rc = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-27 07:26:17 +08:00
|
|
|
rc = bdb_dn2id_children( be, ltid, &e->e_nname );
|
2000-09-24 14:04:58 +08:00
|
|
|
if( rc != DB_NOTFOUND ) {
|
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
case 0:
|
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
"<=- bdb_delete: non-leaf %s\n",
|
2002-01-06 15:21:06 +08:00
|
|
|
dn->bv_val, 0, 0);
|
2000-09-24 14:04:58 +08:00
|
|
|
rc = LDAP_NOT_ALLOWED_ON_NONLEAF;
|
|
|
|
text = "subtree delete not supported";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
"<=- bdb_delete: has_children failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2000-09-24 14:04:58 +08:00
|
|
|
/* delete from dn2id */
|
2001-12-08 18:10:04 +08:00
|
|
|
rc = bdb_dn2id_delete( be, ltid, pdn, e );
|
2000-09-24 14:04:58 +08:00
|
|
|
if ( rc != 0 ) {
|
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
2000-09-24 14:04:58 +08:00
|
|
|
"<=- bdb_delete: dn2id failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2000-09-24 07:15:40 +08:00
|
|
|
text = "DN index delete failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-10-14 00:55:54 +08:00
|
|
|
/* delete indices for old attributes */
|
|
|
|
rc = bdb_index_entry_del( be, ltid, e, e->e_attrs );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
|
|
|
Debug( LDAP_DEBUG_ANY, "entry index delete failed!\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
text = "entry index delete failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2000-09-24 14:04:58 +08:00
|
|
|
/* delete from id2entry */
|
2001-11-27 09:09:19 +08:00
|
|
|
rc = bdb_id2entry_delete( be, ltid, e->e_id );
|
|
|
|
if ( rc != 0 ) {
|
2000-09-24 14:04:58 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
2000-09-24 14:04:58 +08:00
|
|
|
"<=- bdb_delete: id2entry failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2000-09-24 07:15:40 +08:00
|
|
|
text = "entry delete failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-12-06 11:26:37 +08:00
|
|
|
|
|
|
|
#if 0 /* Do we want to reclaim deleted IDs? */
|
|
|
|
ldap_pvt_thread_mutex_lock( &bdb->bi_lastid_mutex );
|
|
|
|
if ( e->e_id == bdb->bi_lastid ) {
|
|
|
|
bdb_last_id( be, ltid );
|
|
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_unlock( &bdb->bi_lastid_mutex );
|
|
|
|
#endif
|
|
|
|
|
2001-11-27 11:41:03 +08:00
|
|
|
if( bdb->bi_txn ) {
|
2001-11-27 10:35:20 +08:00
|
|
|
rc = txn_commit( ltid, 0 );
|
2001-11-27 11:41:03 +08:00
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
|
|
|
|
2001-11-24 20:28:52 +08:00
|
|
|
if( rc != 0 ) {
|
2000-09-24 07:15:40 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-24 20:28:52 +08:00
|
|
|
"bdb_delete: txn_commit failed: %s (%d)\n",
|
2000-09-24 07:15:40 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "commit failed";
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2000-09-24 07:15:40 +08:00
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-24 20:28:52 +08:00
|
|
|
"bdb_delete: deleted id=%08lx dn=\"%s\"\n",
|
2000-09-24 07:15:40 +08:00
|
|
|
e->e_id, e->e_dn, 0 );
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
text = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return_results:
|
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
|
|
NULL, text, NULL, NULL );
|
|
|
|
|
2000-09-28 12:09:13 +08:00
|
|
|
if(rc == LDAP_SUCCESS && bdb->bi_txn_cp ) {
|
|
|
|
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-24 07:15:40 +08:00
|
|
|
done:
|
2000-09-24 14:04:58 +08:00
|
|
|
/* free entry */
|
2000-09-28 10:27:49 +08:00
|
|
|
if( e != NULL ) {
|
|
|
|
bdb_entry_return( be, e );
|
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
if( ltid != NULL ) {
|
|
|
|
txn_abort( ltid );
|
|
|
|
op->o_private = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|