1999-05-26 10:35:20 +08:00
|
|
|
/* delete.c - ldap backend delete function */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 14:35:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2007-01-03 04:00:42 +08:00
|
|
|
* Copyright 2003-2007 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
|
|
|
* Portions Copyright 2000-2003 Pierangelo Masarati.
|
2003-11-27 14:35:14 +08: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>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
|
|
* Masarati.
|
2001-01-17 15:09:22 +08:00
|
|
|
*/
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldap.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_back_delete(
|
2004-11-13 22:43:30 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs )
|
1999-05-26 10:35:20 +08:00
|
|
|
{
|
2007-01-10 08:53:05 +08:00
|
|
|
ldapinfo_t *li = (ldapinfo_t *)op->o_bd->be_private;
|
2005-11-07 07:29:10 +08:00
|
|
|
|
2006-10-08 02:07:56 +08:00
|
|
|
ldapconn_t *lc = NULL;
|
2006-06-25 00:58:49 +08:00
|
|
|
ber_int_t msgid;
|
|
|
|
LDAPControl **ctrls = NULL;
|
|
|
|
ldap_back_send_t retrying = LDAP_BACK_RETRYING;
|
|
|
|
int rc = LDAP_SUCCESS;
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2006-10-08 02:07:56 +08:00
|
|
|
if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
|
2005-08-03 06:48:30 +08:00
|
|
|
return rs->sr_err;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2003-12-01 16:04:51 +08:00
|
|
|
|
2006-09-26 22:51:47 +08:00
|
|
|
retry:
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls = op->o_ctrls;
|
2006-06-16 07:12:38 +08:00
|
|
|
rc = ldap_back_proxy_authz_ctrl( &lc->lc_bound_ndn,
|
|
|
|
li->li_version, &li->li_idassert, op, rs, &ctrls );
|
2003-12-01 16:04:51 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2004-10-01 19:16:38 +08:00
|
|
|
send_ldap_result( op, rs );
|
2005-08-03 06:48:30 +08:00
|
|
|
rc = rs->sr_err;
|
2003-12-01 16:04:51 +08:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2006-03-29 03:20:01 +08:00
|
|
|
rs->sr_err = ldap_delete_ext( lc->lc_ld, op->o_req_dn.bv_val,
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls, NULL, &msgid );
|
2005-11-07 07:29:10 +08:00
|
|
|
rc = ldap_back_op_result( lc, op, rs, msgid,
|
2006-09-04 16:24:05 +08:00
|
|
|
li->li_timeout[ SLAP_OP_DELETE ],
|
2006-06-25 00:58:49 +08:00
|
|
|
( LDAP_BACK_SENDRESULT | retrying ) );
|
2007-01-18 05:52:13 +08:00
|
|
|
if ( rs->sr_err == LDAP_UNAVAILABLE && retrying ) {
|
2006-06-25 00:58:49 +08:00
|
|
|
retrying &= ~LDAP_BACK_RETRYING;
|
2005-11-19 23:00:50 +08:00
|
|
|
if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
|
2006-09-26 22:51:47 +08:00
|
|
|
/* if the identity changed, there might be need to re-authz */
|
|
|
|
(void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
|
2005-01-20 17:04:37 +08:00
|
|
|
goto retry;
|
|
|
|
}
|
2004-10-01 19:16:38 +08:00
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2003-12-01 16:04:51 +08:00
|
|
|
cleanup:
|
2004-11-13 22:43:30 +08:00
|
|
|
(void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
|
2003-12-01 16:04:51 +08:00
|
|
|
|
2005-06-30 00:38:09 +08:00
|
|
|
if ( lc != NULL ) {
|
2007-01-10 08:53:05 +08:00
|
|
|
ldap_back_release_conn( li, lc );
|
2005-06-30 00:38:09 +08:00
|
|
|
}
|
|
|
|
|
2004-10-01 19:16:38 +08:00
|
|
|
return rc;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|