1998-08-08 20:43:13 -04:00
|
|
|
/* delete.c - ldbm backend delete routine */
|
1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-06 19:07:46 -04:00
|
|
|
/*
|
2002-01-04 16:17:25 -05:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-06 19:07:46 -04:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
*/
|
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"
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ldbm_back_delete(
|
|
|
|
|
Backend *be,
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
2001-12-26 14:05:26 -05:00
|
|
|
struct berval *dn,
|
|
|
|
|
struct berval *ndn
|
1998-08-08 20:43:13 -04:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->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
|
|
|
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ENTRY, "ldbm_back_delete: %s\n", dn->bv_val, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
2001-12-26 14:05:26 -05:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_delete: %s\n", dn->bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
2002-01-29 12:58:36 -05:00
|
|
|
/* grab giant lock for writing */
|
|
|
|
|
ldap_pvt_thread_rdwr_wlock(&li->li_giant_rwlock);
|
|
|
|
|
|
1998-09-20 16:22:46 -04:00
|
|
|
/* get entry with writer lock */
|
2002-01-01 08:31:20 -05:00
|
|
|
if ( (e = dn2entry_w( be, ndn, &matched )) == NULL ) {
|
1999-07-15 22:45:46 -04:00
|
|
|
char *matched_dn = NULL;
|
2002-01-13 20:43:17 -05:00
|
|
|
BerVarray refs;
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, INFO,
|
|
|
|
|
"ldbm_back_delete: no such object %s\n", dn->bv_val, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1998-09-20 16:22:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "<=- ldbm_back_delete: no such object %s\n",
|
2001-12-26 14:05:26 -05:00
|
|
|
dn->bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
if ( matched != NULL ) {
|
1999-07-15 22:45:46 -04:00
|
|
|
matched_dn = ch_strdup( matched->e_dn );
|
|
|
|
|
refs = is_entry_referral( matched )
|
2001-12-26 15:59:24 -05:00
|
|
|
? get_entry_referrals( be, conn, 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 {
|
2001-10-25 22:05:14 -04:00
|
|
|
refs = referral_rewrite( default_referral,
|
2001-12-26 15:59:24 -05:00
|
|
|
NULL, dn, LDAP_SCOPE_DEFAULT );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2002-01-29 12:58:36 -05:00
|
|
|
ldap_pvt_thread_rdwr_wunlock(&li->li_giant_rwlock);
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
|
|
|
|
matched_dn, NULL, refs, NULL );
|
1998-09-20 16:22:46 -04:00
|
|
|
|
2002-01-13 20:43:17 -05:00
|
|
|
if ( refs ) ber_bvarray_free( refs );
|
2001-10-25 22:05:14 -04:00
|
|
|
free( matched_dn );
|
1999-07-15 22:45:46 -04:00
|
|
|
|
|
|
|
|
return( -1 );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2002-10-07 15:19:29 -04:00
|
|
|
/* check entry for "entry" acl */
|
|
|
|
|
if ( ! access_allowed( be, conn, op, e,
|
|
|
|
|
entry, NULL, ACL_WRITE, NULL ) )
|
|
|
|
|
{
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
|
|
|
|
"ldbm_back_delete: no write access to entry of (%s)\n",
|
|
|
|
|
dn->bv_val, 0, 0 );
|
|
|
|
|
#else
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no write access to entry\n", 0,
|
|
|
|
|
0, 0 );
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
|
NULL, "no write access to entry", NULL, NULL );
|
|
|
|
|
|
|
|
|
|
rc = 1;
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
if ( !manageDSAit && is_entry_referral( e ) ) {
|
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
|
/* parent is an alias, don't allow add */
|
2002-01-13 20:43:17 -05:00
|
|
|
BerVarray refs = get_entry_referrals( be,
|
2001-12-26 15:59:24 -05:00
|
|
|
conn, op, e );
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, INFO,
|
|
|
|
|
"ldbm_back_delete: entry (%s) is a referral.\n", e->e_dn, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
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
|
|
|
#endif
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
|
|
|
|
e->e_dn, NULL, refs, NULL );
|
|
|
|
|
|
2002-01-13 20:43:17 -05:00
|
|
|
if ( refs ) ber_bvarray_free( refs );
|
1999-07-15 22:45:46 -04:00
|
|
|
|
|
|
|
|
rc = 1;
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( has_children( be, e ) ) {
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
|
|
|
|
"ldbm_back_delete: (%s) is a non-leaf node.\n", dn->bv_val, 0,0);
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1999-07-15 22:45:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "<=- ldbm_back_delete: non leaf %s\n",
|
2002-01-06 02:21:06 -05:00
|
|
|
dn->bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_NOT_ALLOWED_ON_NONLEAF,
|
2000-04-25 09:06:22 -04:00
|
|
|
NULL, "subtree delete not supported", NULL, NULL );
|
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 */
|
2002-01-26 03:44:59 -05:00
|
|
|
if( !be_issuffix( be, &e->e_nname ) && (dnParent( &e->e_nname, &pdn ),
|
|
|
|
|
pdn.bv_len) ) {
|
2002-01-01 08:31:20 -05:00
|
|
|
if( (p = dn2entry_w( be, &pdn, NULL )) == NULL) {
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
|
|
|
|
"ldbm_back_delete: parent of (%s) does not exist\n", dn, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
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
|
|
|
#endif
|
|
|
|
|
|
2000-04-25 09:06:22 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
|
NULL, "could not locate parent of entry", NULL, NULL );
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
1999-01-19 00:10:50 -05:00
|
|
|
if ( ! access_allowed( be, conn, op, p,
|
2002-02-09 00:14:17 -05:00
|
|
|
children, NULL, ACL_WRITE, NULL ) )
|
1999-01-06 21:51:08 -05:00
|
|
|
{
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
|
|
|
|
"ldbm_back_delete: no access to parent of (%s)\n",
|
|
|
|
|
dn->bv_val, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
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
|
|
|
#endif
|
|
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
2002-10-07 15:19:29 -04:00
|
|
|
NULL, "no write access to parent", NULL, NULL );
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
/* no parent, must be root to delete */
|
2001-12-25 14:48:26 -05:00
|
|
|
if( ! be_isroot( be, &op->o_ndn ) ) {
|
2002-01-26 01:52:59 -05:00
|
|
|
if ( be_issuffix( be, (struct berval *)&slap_empty_bv ) || be_isupdate( be, &op->o_ndn ) ) {
|
2001-11-16 12:05:32 -05:00
|
|
|
p = (Entry *)&slap_entry_root;
|
2001-11-14 11:08:59 -05:00
|
|
|
|
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
2002-02-09 00:14:17 -05:00
|
|
|
children, NULL, ACL_WRITE, NULL );
|
2001-11-14 11:08:59 -05:00
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
|
if ( ! rc ) {
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
2001-11-14 11:08:59 -05:00
|
|
|
"ldbm_back_delete: no access "
|
2002-07-11 16:33:24 -04:00
|
|
|
"to parent of ("")\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
2001-11-14 11:08:59 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no "
|
|
|
|
|
"access to parent\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
2002-10-07 15:19:29 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
|
NULL, "no write access to parent", NULL, NULL );
|
2001-11-14 11:08:59 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
2001-12-26 14:05:26 -05:00
|
|
|
"ldbm_back_delete: (%s) has no "
|
2002-07-11 16:33:24 -04:00
|
|
|
"parent & not a root.\n", dn, 0, 0 );
|
2001-11-14 11:08:59 -05:00
|
|
|
#else
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
"<=- ldbm_back_delete: no parent & "
|
|
|
|
|
"not root\n", 0, 0, 0);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
1999-01-06 21:51:08 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/* delete from dn2id mapping */
|
2002-01-01 08:31:20 -05:00
|
|
|
if ( dn2id_delete( be, &e->e_nname, e->e_id ) != 0 ) {
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
|
|
|
|
"ldbm_back_delete: (%s) operations error\n", dn->bv_val, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1998-09-20 16:22:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
|
"<=- ldbm_back_delete: operations error %s\n",
|
2001-12-26 14:05:26 -05:00
|
|
|
dn->bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
2000-04-25 09:06:22 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
|
NULL, "DN index delete failed", NULL, NULL );
|
1999-01-06 21:51:08 -05:00
|
|
|
goto return_results;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* delete from disk and cache */
|
|
|
|
|
if ( id2entry_delete( be, e ) != 0 ) {
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, ERR,
|
|
|
|
|
"ldbm_back_delete: (%s) operations error\n", dn->bv_val, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1998-09-20 16:22:46 -04:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
|
"<=- ldbm_back_delete: operations error %s\n",
|
2001-12-26 14:05:26 -05:00
|
|
|
dn->bv_val, 0, 0);
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
2000-04-25 09:06:22 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
|
NULL, "entry delete failed", NULL, NULL );
|
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 */
|
|
|
|
|
(void) index_entry_del( be, e, e->e_attrs );
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
|
|
|
NULL, NULL, NULL, NULL );
|
1999-01-06 21:51:08 -05:00
|
|
|
rc = 0;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
return_results:;
|
|
|
|
|
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
|
|
|
|
1998-09-20 16:22:46 -04:00
|
|
|
/* free entry and writer lock */
|
|
|
|
|
cache_return_entry_w( &li->li_cache, e );
|
|
|
|
|
|
2002-01-29 12:58:36 -05:00
|
|
|
ldap_pvt_thread_rdwr_wunlock(&li->li_giant_rwlock);
|
|
|
|
|
|
1999-01-06 21:51:08 -05:00
|
|
|
return rc;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|