mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
68 lines
1.5 KiB
C
68 lines
1.5 KiB
C
|
/* delete.c - ldbm backend delete routine */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include "slap.h"
|
||
|
#include "back-ldbm.h"
|
||
|
|
||
|
extern Entry *dn2entry();
|
||
|
extern Attribute *attr_find();
|
||
|
|
||
|
int
|
||
|
ldbm_back_delete(
|
||
|
Backend *be,
|
||
|
Connection *conn,
|
||
|
Operation *op,
|
||
|
char *dn
|
||
|
)
|
||
|
{
|
||
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
||
|
char *matched = NULL;
|
||
|
Entry *e;
|
||
|
|
||
|
if ( (e = dn2entry( be, dn, &matched )) == NULL ) {
|
||
|
send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched, "" );
|
||
|
if ( matched != NULL ) {
|
||
|
free( matched );
|
||
|
}
|
||
|
return( -1 );
|
||
|
}
|
||
|
|
||
|
if ( has_children( be, e ) ) {
|
||
|
send_ldap_result( conn, op, LDAP_NOT_ALLOWED_ON_NONLEAF, "",
|
||
|
"" );
|
||
|
cache_return_entry( &li->li_cache, e );
|
||
|
return( -1 );
|
||
|
}
|
||
|
|
||
|
if ( ! access_allowed( be, conn, op, e, "entry", NULL, op->o_dn,
|
||
|
ACL_WRITE ) ) {
|
||
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS, "", "" );
|
||
|
cache_return_entry( &li->li_cache, e );
|
||
|
return( -1 );
|
||
|
}
|
||
|
|
||
|
/* XXX delete from parent's id2children entry XXX */
|
||
|
|
||
|
/* delete from dn2id mapping */
|
||
|
if ( dn2id_delete( be, e->e_dn ) != 0 ) {
|
||
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
||
|
cache_return_entry( &li->li_cache, e );
|
||
|
return( -1 );
|
||
|
}
|
||
|
|
||
|
/* delete from disk and cache */
|
||
|
if ( id2entry_delete( be, e ) != 0 ) {
|
||
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
||
|
cache_return_entry( &li->li_cache, e );
|
||
|
return( -1 );
|
||
|
}
|
||
|
cache_return_entry( &li->li_cache, e );
|
||
|
|
||
|
send_ldap_result( conn, op, LDAP_SUCCESS, "", "" );
|
||
|
|
||
|
return( 0 );
|
||
|
}
|