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/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2003-2004 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(
|
|
|
|
Operation *op,
|
2003-03-30 17:03:54 +08:00
|
|
|
SlapReply *rs )
|
1999-05-26 10:35:20 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
|
1999-05-26 10:35:20 +08:00
|
|
|
struct ldapconn *lc;
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval mapped_at = BER_BVNULL, mapped_val = BER_BVNULL;
|
|
|
|
struct berval mdn = BER_BVNULL;
|
2003-02-14 13:23:45 +08:00
|
|
|
ber_int_t msgid;
|
2003-04-07 18:15:18 +08:00
|
|
|
int freeval = 0;
|
|
|
|
dncookie dc;
|
2003-12-01 16:04:51 +08:00
|
|
|
LDAPControl **ctrls = NULL;
|
2004-05-14 04:25:53 +08:00
|
|
|
#ifdef LDAP_BACK_PROXY_AUTHZ
|
2003-12-01 16:04:51 +08:00
|
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
#endif /* LDAP_BACK_PROXY_AUTHZ */
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2003-04-04 07:23:56 +08:00
|
|
|
lc = ldap_back_getconn(op, rs);
|
|
|
|
if (!lc || !ldap_back_dobind( lc, op, rs ) ) {
|
1999-05-26 10:35:20 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* Rewrite the compare dn, if needed
|
|
|
|
*/
|
2003-04-08 00:52:59 +08:00
|
|
|
dc.rwmap = &li->rwmap;
|
2001-05-12 08:51:28 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
2003-04-07 18:15:18 +08:00
|
|
|
dc.conn = op->o_conn;
|
|
|
|
dc.rs = rs;
|
2004-03-11 05:11:14 +08:00
|
|
|
dc.ctx = "compareDN";
|
2003-04-07 18:15:18 +08:00
|
|
|
#else
|
|
|
|
dc.tofrom = 1;
|
|
|
|
dc.normalized = 0;
|
|
|
|
#endif
|
2004-03-07 00:49:08 +08:00
|
|
|
if ( ldap_back_dn_massage( &dc, &op->o_req_ndn, &mdn ) ) {
|
2003-04-07 18:15:18 +08:00
|
|
|
send_ldap_result( op, rs );
|
|
|
|
return -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2003-04-08 04:16:56 +08:00
|
|
|
if ( op->orc_ava->aa_desc == slap_schema.si_ad_objectClass
|
2003-04-08 05:06:06 +08:00
|
|
|
|| op->orc_ava->aa_desc == slap_schema.si_ad_structuralObjectClass ) {
|
2003-04-08 00:52:59 +08:00
|
|
|
ldap_back_map(&li->rwmap.rwm_oc, &op->orc_ava->aa_value,
|
|
|
|
&mapped_val, BACKLDAP_MAP);
|
2003-04-07 18:15:18 +08:00
|
|
|
if (mapped_val.bv_val == NULL || mapped_val.bv_val[0] == '\0') {
|
2003-01-28 00:39:56 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
2003-04-07 18:15:18 +08:00
|
|
|
mapped_at = op->orc_ava->aa_desc->ad_cname;
|
2003-01-28 00:39:56 +08:00
|
|
|
} else {
|
2003-04-08 00:52:59 +08:00
|
|
|
ldap_back_map(&li->rwmap.rwm_at,
|
|
|
|
&op->orc_ava->aa_desc->ad_cname, &mapped_at,
|
2003-01-28 00:39:56 +08:00
|
|
|
BACKLDAP_MAP);
|
|
|
|
if (mapped_at.bv_val == NULL || mapped_at.bv_val[0] == '\0') {
|
|
|
|
return( -1 );
|
|
|
|
}
|
2003-04-07 18:15:18 +08:00
|
|
|
if (op->orc_ava->aa_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) {
|
|
|
|
#ifdef ENABLE_REWRITE
|
2003-04-07 19:55:12 +08:00
|
|
|
dc.ctx = "compareAttrDN";
|
2003-04-07 18:15:18 +08:00
|
|
|
#endif
|
|
|
|
ldap_back_dn_massage( &dc, &op->orc_ava->aa_value, &mapped_val );
|
|
|
|
if (mapped_val.bv_val == NULL || mapped_val.bv_val[0] == '\0') {
|
|
|
|
mapped_val = op->orc_ava->aa_value;
|
2003-04-07 19:50:15 +08:00
|
|
|
} else if (mapped_val.bv_val != op->orc_ava->aa_value.bv_val) {
|
2003-04-07 18:31:32 +08:00
|
|
|
freeval = 1;
|
2003-04-07 18:15:18 +08:00
|
|
|
}
|
2003-12-01 16:04:51 +08:00
|
|
|
} else {
|
|
|
|
mapped_val = op->orc_ava->aa_value;
|
2003-04-07 18:15:18 +08:00
|
|
|
}
|
2003-01-28 00:39:56 +08:00
|
|
|
}
|
2001-02-20 03:14:12 +08:00
|
|
|
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls = op->o_ctrls;
|
2003-12-01 16:04:51 +08:00
|
|
|
#ifdef LDAP_BACK_PROXY_AUTHZ
|
|
|
|
rc = ldap_back_proxy_authz_ctrl( lc, op, rs, &ctrls );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
#endif /* LDAP_BACK_PROXY_AUTHZ */
|
|
|
|
|
|
|
|
rs->sr_err = ldap_compare_ext( lc->ld, mdn.bv_val,
|
|
|
|
mapped_at.bv_val, &mapped_val,
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls, NULL, &msgid );
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2003-12-01 16:04:51 +08:00
|
|
|
#ifdef LDAP_BACK_PROXY_AUTHZ
|
|
|
|
cleanup:
|
|
|
|
if ( ctrls && ctrls != op->o_ctrls ) {
|
|
|
|
free( ctrls[ 0 ] );
|
|
|
|
free( ctrls );
|
|
|
|
}
|
|
|
|
#endif /* LDAP_BACK_PROXY_AUTHZ */
|
|
|
|
|
2004-03-07 00:49:08 +08:00
|
|
|
if ( mdn.bv_val != op->o_req_ndn.bv_val ) {
|
2001-12-28 12:20:08 +08:00
|
|
|
free( mdn.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2003-04-07 18:31:32 +08:00
|
|
|
if ( freeval ) {
|
|
|
|
free( mapped_val.bv_val );
|
|
|
|
}
|
2003-12-01 16:04:51 +08:00
|
|
|
|
|
|
|
#ifdef LDAP_BACK_PROXY_AUTHZ
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif /* LDAP_BACK_PROXY_AUTHZ */
|
2003-04-05 06:20:49 +08:00
|
|
|
return( ldap_back_op_result( lc, op, rs, msgid, 1 ) );
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|