2003-11-27 14:35:14 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1999-2005 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
2003-11-27 14:35:14 +08:00
|
|
|
* All rights reserved.
|
2001-05-12 08:51:28 +08:00
|
|
|
*
|
2003-11-27 14:35:14 +08:00
|
|
|
* 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-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "../back-ldap/back-ldap.h"
|
|
|
|
#include "back-meta.h"
|
|
|
|
|
|
|
|
int
|
2003-04-04 05:35:54 +08:00
|
|
|
meta_back_compare( Operation *op, SlapReply *rs )
|
2001-05-12 08:51:28 +08:00
|
|
|
{
|
2003-04-04 05:35:54 +08:00
|
|
|
struct metainfo *li = ( struct metainfo * )op->o_bd->be_private;
|
2001-05-12 08:51:28 +08:00
|
|
|
struct metaconn *lc;
|
2002-08-10 01:15:10 +08:00
|
|
|
struct metasingleconn *lsc;
|
2003-04-08 01:04:14 +08:00
|
|
|
char *match = NULL, *err = NULL;
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval mmatch = BER_BVNULL;
|
2003-04-08 03:01:48 +08:00
|
|
|
int candidates = 0, last = 0, i, count = 0, rc;
|
2001-05-20 01:02:39 +08:00
|
|
|
int cres = LDAP_SUCCESS, rres = LDAP_SUCCESS;
|
2001-05-12 08:51:28 +08:00
|
|
|
int *msgid;
|
2003-04-08 01:04:14 +08:00
|
|
|
dncookie dc;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-04-04 08:43:40 +08:00
|
|
|
lc = meta_back_getconn( op, rs, META_OP_ALLOW_MULTIPLE,
|
2003-04-04 05:35:54 +08:00
|
|
|
&op->o_req_ndn, NULL );
|
|
|
|
if ( !lc ) {
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !meta_back_dobind( lc, op ) ) {
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
send_ldap_result( op, rs );
|
2001-05-12 08:51:28 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
msgid = ch_calloc( sizeof( int ), li->ntargets );
|
|
|
|
if ( msgid == NULL ) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* start an asynchronous compare for each candidate target
|
|
|
|
*/
|
2003-04-08 01:04:14 +08:00
|
|
|
dc.conn = op->o_conn;
|
|
|
|
dc.rs = rs;
|
2004-03-11 05:11:14 +08:00
|
|
|
dc.ctx = "compareDN";
|
2003-04-08 01:04:14 +08:00
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
for ( i = 0, lsc = lc->conns; !META_LAST(lsc); ++i, ++lsc ) {
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval mdn = BER_BVNULL;
|
2003-04-04 05:35:54 +08:00
|
|
|
struct berval mapped_attr = op->oq_compare.rs_ava->aa_desc->ad_cname;
|
|
|
|
struct berval mapped_value = op->oq_compare.rs_ava->aa_value;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
if ( lsc->candidate != META_CANDIDATE ) {
|
2003-01-24 06:07:33 +08:00
|
|
|
msgid[ i ] = -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Rewrite the compare dn, if needed
|
|
|
|
*/
|
2003-04-08 01:04:14 +08:00
|
|
|
dc.rwmap = &li->targets[ i ]->rwmap;
|
|
|
|
|
|
|
|
switch ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
|
|
|
|
case LDAP_UNWILLING_TO_PERFORM:
|
|
|
|
rc = 1;
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
default:
|
2001-05-12 08:51:28 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if attr is objectClass, try to remap the value
|
|
|
|
*/
|
2003-04-04 05:35:54 +08:00
|
|
|
if ( op->oq_compare.rs_ava->aa_desc == slap_schema.si_ad_objectClass ) {
|
2003-04-08 01:04:14 +08:00
|
|
|
ldap_back_map( &li->targets[ i ]->rwmap.rwm_oc,
|
2003-04-04 05:35:54 +08:00
|
|
|
&op->oq_compare.rs_ava->aa_value,
|
|
|
|
&mapped_value, BACKLDAP_MAP );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-01-28 00:39:56 +08:00
|
|
|
if ( mapped_value.bv_val == NULL || mapped_value.bv_val[0] == '\0' ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* else try to remap the attribute
|
|
|
|
*/
|
|
|
|
} else {
|
2003-04-08 01:04:14 +08:00
|
|
|
ldap_back_map( &li->targets[ i ]->rwmap.rwm_at,
|
2003-04-04 05:35:54 +08:00
|
|
|
&op->oq_compare.rs_ava->aa_desc->ad_cname,
|
|
|
|
&mapped_attr, BACKLDAP_MAP );
|
2003-01-28 00:39:56 +08:00
|
|
|
if ( mapped_attr.bv_val == NULL || mapped_attr.bv_val[0] == '\0' ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
2004-12-31 01:45:07 +08:00
|
|
|
|
|
|
|
if ( op->oq_compare.rs_ava->aa_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName )
|
|
|
|
{
|
|
|
|
dc.ctx = "compareAttrDN";
|
|
|
|
|
|
|
|
switch ( ldap_back_dn_massage( &dc, &op->oq_compare.rs_ava->aa_value, &mapped_value ) )
|
|
|
|
{
|
|
|
|
case LDAP_UNWILLING_TO_PERFORM:
|
|
|
|
rc = 1;
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the compare op is spawned across the targets and the first
|
|
|
|
* that returns determines the result; a constraint on unicity
|
|
|
|
* of the result ought to be enforced
|
|
|
|
*/
|
2003-04-08 01:04:14 +08:00
|
|
|
msgid[ i ] = ldap_compare( lc->conns[ i ].ld, mdn.bv_val,
|
2002-01-04 00:29:38 +08:00
|
|
|
mapped_attr.bv_val, mapped_value.bv_val );
|
2004-12-31 01:45:07 +08:00
|
|
|
|
2003-04-08 01:04:14 +08:00
|
|
|
if ( mdn.bv_val != op->o_req_dn.bv_val ) {
|
|
|
|
free( mdn.bv_val );
|
|
|
|
mdn.bv_val = NULL;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2004-12-31 01:45:07 +08:00
|
|
|
|
2003-04-04 05:35:54 +08:00
|
|
|
if ( mapped_attr.bv_val != op->oq_compare.rs_ava->aa_desc->ad_cname.bv_val ) {
|
2002-01-04 00:29:38 +08:00
|
|
|
free( mapped_attr.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2004-12-31 01:45:07 +08:00
|
|
|
|
2003-04-04 05:35:54 +08:00
|
|
|
if ( mapped_value.bv_val != op->oq_compare.rs_ava->aa_value.bv_val ) {
|
2002-01-04 00:29:38 +08:00
|
|
|
free( mapped_value.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2003-01-24 06:07:33 +08:00
|
|
|
if ( msgid[ i ] == -1 ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
++candidates;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wait for replies
|
|
|
|
*/
|
|
|
|
for ( rc = 0, count = 0; candidates > 0; ) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: should we check for abandon?
|
|
|
|
*/
|
2002-08-10 01:15:10 +08:00
|
|
|
for ( i = 0, lsc = lc->conns; !META_LAST(lsc); lsc++, i++ ) {
|
2003-04-04 05:35:54 +08:00
|
|
|
int lrc;
|
|
|
|
LDAPMessage *res = NULL;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-01-24 06:07:33 +08:00
|
|
|
if ( msgid[ i ] == -1 ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-08-10 01:15:10 +08:00
|
|
|
lrc = ldap_result( lsc->ld, msgid[ i ],
|
2001-05-12 08:51:28 +08:00
|
|
|
0, NULL, &res );
|
|
|
|
|
|
|
|
if ( lrc == 0 ) {
|
|
|
|
/*
|
|
|
|
* FIXME: should we yield?
|
|
|
|
*/
|
|
|
|
if ( res ) {
|
|
|
|
ldap_msgfree( res );
|
|
|
|
}
|
|
|
|
continue;
|
2003-04-04 05:35:54 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
} else if ( lrc == LDAP_RES_COMPARE ) {
|
|
|
|
if ( count > 0 ) {
|
2002-08-01 06:49:02 +08:00
|
|
|
rres = LDAP_OTHER;
|
2001-05-12 08:51:28 +08:00
|
|
|
rc = -1;
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2003-04-06 00:53:57 +08:00
|
|
|
rs->sr_err = ldap_result2error( lsc->ld, res, 1 );
|
|
|
|
switch ( rs->sr_err ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
case LDAP_COMPARE_TRUE:
|
|
|
|
case LDAP_COMPARE_FALSE:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* true or flase, got it;
|
|
|
|
* sending to cache ...
|
|
|
|
*/
|
|
|
|
if ( li->cache.ttl != META_DNCACHE_DISABLED ) {
|
2003-04-04 05:35:54 +08:00
|
|
|
( void )meta_dncache_update_entry( &li->cache, &op->o_req_ndn, i );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
count++;
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-04-06 01:32:59 +08:00
|
|
|
rres = slap_map_api2result( rs );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( err != NULL ) {
|
|
|
|
free( err );
|
|
|
|
}
|
2002-08-10 01:15:10 +08:00
|
|
|
ldap_get_option( lsc->ld,
|
2001-05-12 08:51:28 +08:00
|
|
|
LDAP_OPT_ERROR_STRING, &err );
|
|
|
|
|
|
|
|
if ( match != NULL ) {
|
|
|
|
free( match );
|
|
|
|
}
|
2002-08-10 01:15:10 +08:00
|
|
|
ldap_get_option( lsc->ld,
|
2001-05-12 08:51:28 +08:00
|
|
|
LDAP_OPT_MATCHED_DN, &match );
|
|
|
|
|
|
|
|
last = i;
|
|
|
|
break;
|
|
|
|
}
|
2003-01-24 06:07:33 +08:00
|
|
|
msgid[ i ] = -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
--candidates;
|
2003-01-24 06:07:33 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
} else {
|
2003-01-24 06:07:33 +08:00
|
|
|
msgid[ i ] = -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
--candidates;
|
|
|
|
if ( res ) {
|
|
|
|
ldap_msgfree( res );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-03 16:55:17 +08:00
|
|
|
finish:;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Rewrite the matched portion of the search base, if required
|
|
|
|
*
|
|
|
|
* FIXME: only the last one gets caught!
|
|
|
|
*/
|
|
|
|
if ( count == 1 ) {
|
|
|
|
if ( match != NULL ) {
|
|
|
|
free( match );
|
|
|
|
match = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the result of the compare is assigned to the res code
|
|
|
|
* that will be returned
|
|
|
|
*/
|
|
|
|
rres = cres;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* At least one compare failed with matched portion,
|
|
|
|
* and none was successful
|
|
|
|
*/
|
2003-04-08 01:04:14 +08:00
|
|
|
} else if ( match != NULL && match[0] != '\0' ) {
|
|
|
|
struct berval matched;
|
|
|
|
|
|
|
|
matched.bv_val = match;
|
|
|
|
matched.bv_len = strlen( match );
|
|
|
|
|
2004-03-11 05:11:14 +08:00
|
|
|
dc.ctx = "matchedDN";
|
2003-04-08 01:04:14 +08:00
|
|
|
ldap_back_dn_massage( &dc, &matched, &mmatch );
|
2001-05-14 07:44:22 +08:00
|
|
|
}
|
|
|
|
|
2004-04-03 20:15:33 +08:00
|
|
|
if ( rres != LDAP_SUCCESS ) {
|
|
|
|
rs->sr_err = rres;
|
|
|
|
}
|
2003-04-08 01:04:14 +08:00
|
|
|
rs->sr_matched = mmatch.bv_val;
|
2003-04-04 05:35:54 +08:00
|
|
|
send_ldap_result( op, rs );
|
|
|
|
rs->sr_matched = NULL;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( match != NULL ) {
|
2003-04-08 01:04:14 +08:00
|
|
|
if ( mmatch.bv_val != match ) {
|
|
|
|
free( mmatch.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
free( match );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( msgid ) {
|
|
|
|
free( msgid );
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|