1999-05-26 10:35:20 +08:00
|
|
|
/* compare.c - ldap backend compare 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/>.
|
|
|
|
*
|
2013-01-03 02:20:30 +08:00
|
|
|
* Copyright 2003-2013 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_compare(
|
2004-11-13 22:43:30 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs )
|
1999-05-26 10:35:20 +08:00
|
|
|
{
|
2006-06-25 00:58:49 +08:00
|
|
|
ldapinfo_t *li = (ldapinfo_t *)op->o_bd->be_private;
|
2006-06-16 07:12:38 +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;
|
|
|
|
ldap_back_send_t retrying = LDAP_BACK_RETRYING;
|
|
|
|
LDAPControl **ctrls = NULL;
|
|
|
|
int rc = LDAP_SUCCESS;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2006-10-08 02:07:56 +08:00
|
|
|
if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
|
2005-06-30 00:38:09 +08:00
|
|
|
lc = NULL;
|
2004-11-13 22:43:30 +08:00
|
|
|
goto cleanup;
|
2003-01-28 00:39:56 +08:00
|
|
|
}
|
2001-02-20 03:14:12 +08:00
|
|
|
|
2006-09-26 22:51:47 +08:00
|
|
|
retry:
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls = op->o_ctrls;
|
2007-08-22 23:49:35 +08:00
|
|
|
rc = ldap_back_controls_add( op, rs, lc, &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 );
|
2003-12-01 16:04:51 +08:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2006-03-29 03:20:01 +08:00
|
|
|
rs->sr_err = ldap_compare_ext( lc->lc_ld, op->o_req_dn.bv_val,
|
2004-11-13 22:43:30 +08:00
|
|
|
op->orc_ava->aa_desc->ad_cname.bv_val,
|
|
|
|
&op->orc_ava->aa_value,
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls, NULL, &msgid );
|
2006-09-04 16:24:05 +08:00
|
|
|
rc = ldap_back_op_result( lc, op, rs, msgid,
|
|
|
|
li->li_timeout[ SLAP_OP_COMPARE ],
|
2006-06-25 00:58:49 +08:00
|
|
|
( LDAP_BACK_SENDRESULT | retrying ) );
|
|
|
|
if ( rc == LDAP_UNAVAILABLE && retrying ) {
|
|
|
|
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 */
|
2007-08-22 23:49:35 +08:00
|
|
|
(void)ldap_back_controls_free( op, rs, &ctrls );
|
2004-11-13 22:43:30 +08:00
|
|
|
goto retry;
|
|
|
|
}
|
2004-10-01 19:16:38 +08:00
|
|
|
}
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2012-02-08 21:18:29 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &li->li_counter_mutex );
|
|
|
|
ldap_pvt_mp_add( li->li_ops_completed[ SLAP_OP_COMPARE ], 1 );
|
|
|
|
ldap_pvt_thread_mutex_unlock( &li->li_counter_mutex );
|
|
|
|
|
2003-12-01 16:04:51 +08:00
|
|
|
cleanup:
|
2007-08-22 23:49:35 +08:00
|
|
|
(void)ldap_back_controls_free( op, rs, &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
|
|
|
}
|
|
|
|
|
2005-01-24 17:38:11 +08:00
|
|
|
return rs->sr_err;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|