2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1999-2007 The OpenLDAP Foundation.
5 * Portions Copyright 2001-2003 Pierangelo Masarati.
6 * Portions Copyright 1999-2003 Howard Chu.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in the file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
18 * This work was initially developed by the Howard Chu for inclusion
19 * in OpenLDAP Software and subsequently enhanced by Pierangelo
27 #include <ac/string.h>
28 #include <ac/socket.h>
31 #include "../back-ldap/back-ldap.h"
32 #include "back-meta.h"
35 meta_back_delete( Operation *op, SlapReply *rs )
37 metainfo_t *mi = ( metainfo_t * )op->o_bd->be_private;
38 metaconn_t *mc = NULL;
40 struct berval mdn = BER_BVNULL;
46 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
47 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR ) ) {
51 assert( mc->mc_conns[ candidate ].msc_ld != NULL );
54 * Rewrite the compare dn, if needed
56 dc.target = &mi->mi_targets[ candidate ];
61 if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
62 send_ldap_result( op, rs );
67 rs->sr_err = ldap_delete_ext( mc->mc_conns[ candidate ].msc_ld,
68 mdn.bv_val, op->o_ctrls, NULL, &msgid );
69 if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
71 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR ) ) {
76 } else if ( rs->sr_err == LDAP_SUCCESS ) {
77 struct timeval tv, *tvp = NULL;
78 LDAPMessage *res = NULL;
81 if ( mi->mi_targets[ candidate ].mt_timeout[ LDAP_BACK_OP_DELETE ] != 0 ) {
82 tv.tv_sec = mi->mi_targets[ candidate ].mt_timeout[ LDAP_BACK_OP_DELETE ];
87 rs->sr_err = LDAP_OTHER;
89 rc = ldap_result( mc->mc_conns[ candidate ].msc_ld,
90 msgid, LDAP_MSG_ALL, tvp, &res );
93 rs->sr_err = LDAP_OTHER;
97 ldap_abandon_ext( mc->mc_conns[ candidate ].msc_ld,
99 rs->sr_err = op->o_protocol >= LDAP_VERSION3 ?
100 LDAP_ADMINLIMIT_EXCEEDED : LDAP_OPERATIONS_ERROR;
103 case LDAP_RES_DELETE:
104 rc = ldap_parse_result( mc->mc_conns[ candidate ].msc_ld,
105 res, &rs->sr_err, NULL, NULL, NULL, NULL, 1 );
106 if ( rc != LDAP_SUCCESS ) {
119 rs->sr_err = meta_back_op_result( mc, op, rs, candidate );
122 send_ldap_result( op, rs );
126 if ( mdn.bv_val != op->o_req_dn.bv_val ) {
133 meta_back_release_conn( op, mc );