1998-08-08 20:43:13 -04:00
|
|
|
/* delete.c - ldbm backend delete routine */
|
1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-28 16:08:20 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2006-01-03 18:11:52 -05:00
|
|
|
* Copyright 1998-2006 The OpenLDAP Foundation.
|
2003-11-28 16:08:20 -05: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>.
|
1999-08-06 19:07:46 -04:00
|
|
|
*/
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
|
|
|
|
#include "back-ldbm.h"
|
1998-09-20 16:22:46 -04:00
|
|
|
#include "proto-back-ldbm.h"
|
2005-10-13 18:20:52 -04:00
|
|
|
#include "lutil.h"
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ldbm_back_delete(
|
|
|
|
|
Operation *op,
|
2003-03-30 04:03:54 -05:00
|
|
|
SlapReply *rs )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
2003-03-30 04:03:54 -05:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) op->o_bd->be_private;
|
1999-09-03 16:25:58 -04:00
|
|
|
Entry *matched;
|
2002-01-01 08:31:20 -05:00
|
|
|
struct berval pdn;
|
1999-01-06 21:51:08 -05:00
|
|
|
Entry *e, *p = NULL;
|
|
|
|
|
int rc = -1;
|
1999-07-15 22:45:46 -04:00
|
|
|
int manageDSAit = get_manageDSAit( op );
|
2000-05-27 21:36:03 -04:00
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
2002-10-07 15:19:29 -04:00
|
|
|
AttributeDescription *entry = slap_schema.si_ad_entry;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_delete: %s\n", op->o_req_dn.bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2002-01-29 12:58:36 -05:00
|
|
|
/* grab giant lock for writing */
|
|
|
|
|
ldap_pvt_thread_rdwr_wlock(&li->li_giant_rwlock);
|
|
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
/* allocate CSN */
|
|
|
|
|
if ( !SLAP_SHADOW( op->o_bd )) {
|
|
|
|
|
struct berval csn;
|
|
|
|
|
char csnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
|
|
|
|
|
|
|
|
|
|
csn.bv_val = csnbuf;
|
|
|
|
|
csn.bv_len = sizeof(csnbuf);
|
|
|
|
|
slap_get_csn( op, &csn, 1 );
|
|
|
|
|
}
|
|
|
|
|
|
1998-09-20 16:22:46 -04:00
|
|
|
/* get entry with writer lock */
|
2003-07-14 20:55:58 -04:00
|
|
|
e = dn2entry_w( op->o_bd, &op->o_req_ndn, &matched );
|
|
|
|
|
|
2003-08-27 18:16:04 -04:00
|
|
|
/* FIXME : dn2entry() should return non-glue entry */
|
2003-07-14 20:55:58 -04:00
|
|
|
if ( e == NULL || ( !manageDSAit && is_entry_glue( e ))) {
|
1998-09-20 16:22:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "<=- ldbm_back_delete: no such object %s\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_req_dn.bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
if ( matched != NULL ) {
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_matched = ch_strdup( matched->e_dn );
|
|
|
|
|
rs->sr_ref = is_entry_referral( matched )
|
|
|
|
|
? get_entry_referrals( op, matched )
|
1999-07-15 22:45:46 -04:00
|
|
|
: NULL;
|
|
|
|
|
cache_return_entry_r( &li->li_cache, matched );
|
2001-10-25 22:05:14 -04:00
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
} else {
|
2005-01-15 05:39:23 -05:00
|
|
|
rs->sr_ref = referral_rewrite( default_referral, NULL,
|
|
|
|
|
&op->o_req_dn, LDAP_SCOPE_DEFAULT );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
2005-10-13 18:20:52 -04:00
|
|
|
rs->sr_flags |= REP_MATCHED_MUSTBEFREED | REP_REF_MUSTBEFREED;
|
2005-10-13 07:58:44 -04:00
|
|
|
goto return_results;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2002-10-07 15:19:29 -04:00
|
|
|
/* check entry for "entry" acl */
|
2005-04-07 20:18:24 -04:00
|
|
|
if ( ! access_allowed( op, e, entry, NULL, ACL_WDEL, NULL ) )
|
2002-10-07 15:19:29 -04:00
|
|
|
{
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no write access to entry\n", 0,
|
|
|
|
|
0, 0 );
|
|
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
rs->sr_text = "no write access to entry";
|
2002-10-07 15:19:29 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-06 14:44:41 -05:00
|
|
|
if ( !manageDSAit && is_entry_referral( e ) ) {
|
1999-07-15 22:45:46 -04:00
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
|
/* parent is an alias, don't allow add */
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_ref = get_entry_referrals( op, e );
|
1999-07-15 22:45:46 -04:00
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry is referral\n", 0,
|
|
|
|
|
0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_matched = ch_strdup( e->e_name.bv_val );
|
|
|
|
|
rs->sr_flags = REP_MATCHED_MUSTBEFREED | REP_REF_MUSTBEFREED;
|
1999-07-15 22:45:46 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( has_children( op->o_bd, e ) ) {
|
1999-07-15 22:45:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "<=- ldbm_back_delete: non leaf %s\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_req_dn.bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_NOT_ALLOWED_ON_NONLEAF;
|
|
|
|
|
rs->sr_text = "subordinate objects must be deleted first";
|
1999-07-15 22:45:46 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
/* delete from parent's id2children entry */
|
2003-03-30 04:03:54 -05:00
|
|
|
if( !be_issuffix( op->o_bd, &e->e_nname ) && (dnParent( &e->e_nname, &pdn ),
|
2002-01-26 03:44:59 -05:00
|
|
|
pdn.bv_len) ) {
|
2003-03-30 04:03:54 -05:00
|
|
|
if( (p = dn2entry_w( op->o_bd, &pdn, NULL )) == NULL) {
|
1999-01-27 23:34:55 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: parent does not exist\n",
|
1999-01-06 21:51:08 -05:00
|
|
|
0, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "could not locate parent of entry";
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( ! access_allowed( op, p,
|
2005-04-07 20:18:24 -04:00
|
|
|
children, NULL, ACL_WDEL, NULL ) )
|
1999-01-06 21:51:08 -05:00
|
|
|
{
|
1999-01-27 23:34:55 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no access to parent\n", 0,
|
1999-01-06 21:51:08 -05:00
|
|
|
0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
rs->sr_text = "no write access to parent";
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
/* no parent, must be root to delete */
|
2004-04-05 21:06:20 -04:00
|
|
|
if( ! be_isroot( op ) ) {
|
2004-04-07 13:32:37 -04:00
|
|
|
if ( be_issuffix( op->o_bd, (struct berval *)&slap_empty_bv )
|
2004-04-10 06:00:58 -04:00
|
|
|
|| be_shadow_update( op ) ) {
|
2001-11-16 12:05:32 -05:00
|
|
|
p = (Entry *)&slap_entry_root;
|
2001-11-14 11:08:59 -05:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rc = access_allowed( op, p,
|
2005-04-07 20:18:24 -04:00
|
|
|
children, NULL, ACL_WDEL, NULL );
|
2001-11-14 11:08:59 -05:00
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
|
if ( ! rc ) {
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no "
|
|
|
|
|
"access to parent\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
rs->sr_text = "no write access to parent";
|
2001-11-14 11:08:59 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no parent & "
|
|
|
|
|
"not root\n", 0, 0, 0);
|
|
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
2001-11-14 11:08:59 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
1999-01-06 21:51:08 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/* delete from dn2id mapping */
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( dn2id_delete( op->o_bd, &e->e_nname, e->e_id ) != 0 ) {
|
1998-09-20 16:22:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
|
"<=- ldbm_back_delete: operations error %s\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_req_dn.bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "DN index delete failed";
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* delete from disk and cache */
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( id2entry_delete( op->o_bd, e ) != 0 ) {
|
1998-09-20 16:22:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
|
"<=- ldbm_back_delete: operations error %s\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
op->o_req_dn.bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "entry delete failed";
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
1998-09-20 16:22:46 -04:00
|
|
|
|
2001-10-09 15:41:48 -04:00
|
|
|
/* delete attribute indices */
|
2003-04-10 21:29:28 -04:00
|
|
|
(void) index_entry_del( op, e );
|
2001-10-09 15:41:48 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
return_results:;
|
2005-10-13 07:58:44 -04:00
|
|
|
rc = rs->sr_err;
|
|
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
if( p != NULL ) {
|
|
|
|
|
/* free parent and writer lock */
|
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
1999-01-21 17:20:03 -05:00
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
if ( e != NULL ) {
|
|
|
|
|
/* free entry and writer lock */
|
|
|
|
|
cache_return_entry_w( &li->li_cache, e );
|
|
|
|
|
}
|
1998-09-20 16:22:46 -04:00
|
|
|
|
2002-01-29 12:58:36 -05:00
|
|
|
ldap_pvt_thread_rdwr_wunlock(&li->li_giant_rwlock);
|
|
|
|
|
|
2005-10-13 07:58:44 -04:00
|
|
|
send_ldap_result( op, rs );
|
|
|
|
|
if ( !SLAP_SHADOW( op->o_bd ))
|
|
|
|
|
slap_graduate_commit_csn( op );
|
|
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
return rc;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|