1 /* delete.c - ldap backend delete function */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2003-2011 The OpenLDAP Foundation.
6 * Portions Copyright 1999-2003 Howard Chu.
7 * Portions Copyright 2000-2003 Pierangelo Masarati.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
14 * A copy of this license is available in the file LICENSE in the
15 * top-level directory of the distribution or, alternatively, at
16 * <http://www.OpenLDAP.org/license.html>.
19 * This work was initially developed by the Howard Chu for inclusion
20 * in OpenLDAP Software and subsequently enhanced by Pierangelo
28 #include <ac/string.h>
29 #include <ac/socket.h>
32 #include "back-ldap.h"
39 ldapinfo_t *li = (ldapinfo_t *)op->o_bd->be_private;
41 ldapconn_t *lc = NULL;
43 LDAPControl **ctrls = NULL;
44 ldap_back_send_t retrying = LDAP_BACK_RETRYING;
45 int rc = LDAP_SUCCESS;
47 if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
53 rc = ldap_back_controls_add( op, rs, lc, &ctrls );
54 if ( rc != LDAP_SUCCESS ) {
55 send_ldap_result( op, rs );
60 rs->sr_err = ldap_delete_ext( lc->lc_ld, op->o_req_dn.bv_val,
61 ctrls, NULL, &msgid );
62 rc = ldap_back_op_result( lc, op, rs, msgid,
63 li->li_timeout[ SLAP_OP_DELETE ],
64 ( LDAP_BACK_SENDRESULT | retrying ) );
65 if ( rs->sr_err == LDAP_UNAVAILABLE && retrying ) {
66 retrying &= ~LDAP_BACK_RETRYING;
67 if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
68 /* if the identity changed, there might be need to re-authz */
69 (void)ldap_back_controls_free( op, rs, &ctrls );
75 (void)ldap_back_controls_free( op, rs, &ctrls );
78 ldap_back_release_conn( li, lc );