1 /* delete.c - ldbm backend delete routine */
4 * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
12 #include <ac/string.h>
13 #include <ac/socket.h>
16 #include "back-ldbm.h"
17 #include "proto-back-ldbm.h"
28 struct ldbminfo *li = (struct ldbminfo *) be->be_private;
34 int manageDSAit = get_manageDSAit( op );
35 AttributeDescription *children = slap_schema.si_ad_children;
38 LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
39 "ldbm_back_delete: %s\n", dn ));
41 Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_delete: %s\n", dn, 0, 0);
44 /* get entry with writer lock */
45 if ( (e = dn2entry_w( be, ndn, &matched )) == NULL ) {
46 char *matched_dn = NULL;
50 LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
51 "ldbm_back_delete: no such object %s\n", dn ));
53 Debug(LDAP_DEBUG_ARGS, "<=- ldbm_back_delete: no such object %s\n",
57 if ( matched != NULL ) {
58 matched_dn = ch_strdup( matched->e_dn );
59 refs = is_entry_referral( matched )
60 ? get_entry_referrals( be, conn, op, matched,
61 dn, LDAP_SCOPE_DEFAULT )
63 cache_return_entry_r( &li->li_cache, matched );
66 refs = referral_rewrite( default_referral,
67 NULL, dn, LDAP_SCOPE_DEFAULT );
70 send_ldap_result( conn, op, LDAP_REFERRAL,
71 matched_dn, NULL, refs, NULL );
79 if ( !manageDSAit && is_entry_referral( e ) ) {
80 /* parent is a referral, don't allow add */
81 /* parent is an alias, don't allow add */
82 struct berval **refs = get_entry_referrals( be,
83 conn, op, e, dn, LDAP_SCOPE_DEFAULT );
86 LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
87 "ldbm_back_delete: entry (%s) is a referral.\n",
90 Debug( LDAP_DEBUG_TRACE, "entry is referral\n", 0,
95 send_ldap_result( conn, op, LDAP_REFERRAL,
96 e->e_dn, NULL, refs, NULL );
105 if ( has_children( be, e ) ) {
107 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
108 "ldbm_back_delete: (%s) is a non-leaf node.\n", dn ));
110 Debug(LDAP_DEBUG_ARGS, "<=- ldbm_back_delete: non leaf %s\n",
114 send_ldap_result( conn, op, LDAP_NOT_ALLOWED_ON_NONLEAF,
115 NULL, "subtree delete not supported", NULL, NULL );
119 /* delete from parent's id2children entry */
120 if( (pdn = dn_parent( be, e->e_ndn )) != NULL && pdn[ 0 ] != '\0' ) {
121 if( (p = dn2entry_w( be, pdn, NULL )) == NULL) {
123 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
124 "ldbm_back_delete: parent of (%s) does not exist\n", dn ));
126 Debug( LDAP_DEBUG_TRACE,
127 "<=- ldbm_back_delete: parent does not exist\n",
131 send_ldap_result( conn, op, LDAP_OTHER,
132 NULL, "could not locate parent of entry", NULL, NULL );
136 /* check parent for "children" acl */
137 if ( ! access_allowed( be, conn, op, p,
138 children, NULL, ACL_WRITE ) )
141 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
142 "ldbm_back_delete: no access to parent of (%s)\n", dn ));
144 Debug( LDAP_DEBUG_TRACE,
145 "<=- ldbm_back_delete: no access to parent\n", 0,
149 send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
150 NULL, NULL, NULL, NULL );
155 /* no parent, must be root to delete */
156 if( ! be_isroot( be, op->o_ndn ) && ! be_issuffix( be, "" ) ) {
158 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
159 "ldbm_back_delete: (%s) has no parent & not a root.\n",
162 Debug( LDAP_DEBUG_TRACE,
163 "<=- ldbm_back_delete: no parent & not root\n",
167 send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
168 NULL, NULL, NULL, NULL );
172 ldap_pvt_thread_mutex_lock(&li->li_root_mutex);
176 /* delete from dn2id mapping */
177 if ( dn2id_delete( be, e->e_ndn, e->e_id ) != 0 ) {
179 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
180 "ldbm_back_delete: (%s) operations error\n", dn ));
182 Debug(LDAP_DEBUG_ARGS,
183 "<=- ldbm_back_delete: operations error %s\n",
187 send_ldap_result( conn, op, LDAP_OTHER,
188 NULL, "DN index delete failed", NULL, NULL );
192 /* delete from disk and cache */
193 if ( id2entry_delete( be, e ) != 0 ) {
195 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
196 "ldbm_back_delete: (%s) operations error\n",
199 Debug(LDAP_DEBUG_ARGS,
200 "<=- ldbm_back_delete: operations error %s\n",
204 send_ldap_result( conn, op, LDAP_OTHER,
205 NULL, "entry delete failed", NULL, NULL );
209 /* delete attribute indices */
210 (void) index_entry_del( be, e, e->e_attrs );
212 send_ldap_result( conn, op, LDAP_SUCCESS,
213 NULL, NULL, NULL, NULL );
217 if ( pdn != NULL ) free(pdn);
220 /* free parent and writer lock */
221 cache_return_entry_w( &li->li_cache, p );
225 /* release root lock */
226 ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
229 /* free entry and writer lock */
230 cache_return_entry_w( &li->li_cache, e );