1999-05-26 10:35:20 +08:00
|
|
|
/* search.c - ldap backend search 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 1999-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/socket.h>
|
|
|
|
#include <ac/string.h>
|
1999-05-26 18:45:51 +08:00
|
|
|
#include <ac/time.h>
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldap.h"
|
2002-02-11 17:38:49 +08:00
|
|
|
#undef ldap_debug /* silence a warning in ldap-int.h */
|
2002-01-02 19:00:36 +08:00
|
|
|
#include "../../../libraries/libldap/ldap-int.h"
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
#include "lutil.h"
|
|
|
|
|
2003-04-04 19:03:29 +08:00
|
|
|
static int
|
|
|
|
ldap_build_entry( Operation *op, LDAPMessage *e, Entry *ent,
|
|
|
|
struct berval *bdn, int flags );
|
|
|
|
#define LDAP_BUILD_ENTRY_PRIVATE 0x01
|
|
|
|
|
2004-04-07 12:11:43 +08:00
|
|
|
static struct berval dummy = BER_BVNULL;
|
1999-09-02 16:05:17 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
int
|
|
|
|
ldap_back_search(
|
|
|
|
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;
|
|
|
|
struct timeval tv;
|
|
|
|
LDAPMessage *res, *e;
|
2003-04-06 00:53:29 +08:00
|
|
|
int rc = 0, msgid;
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval match = BER_BVNULL;
|
2003-03-01 19:08:53 +08:00
|
|
|
char **mapped_attrs = NULL;
|
2001-12-28 12:20:08 +08:00
|
|
|
struct berval mbase;
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval mfilter = BER_BVNULL;
|
2003-12-01 16:04:51 +08:00
|
|
|
int dontfreetext = 0;
|
2004-07-05 07:35:18 +08:00
|
|
|
int freeconn = 0;
|
2003-04-07 18:15:18 +08:00
|
|
|
dncookie dc;
|
2003-12-01 16:04:51 +08:00
|
|
|
LDAPControl **ctrls = NULL;
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2003-04-04 07:23:56 +08:00
|
|
|
lc = ldap_back_getconn(op, rs);
|
2001-01-20 05:27:20 +08:00
|
|
|
if ( !lc ) {
|
1999-05-26 10:35:20 +08:00
|
|
|
return( -1 );
|
2001-01-20 05:27:20 +08:00
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2002-08-31 18:35:23 +08:00
|
|
|
/*
|
|
|
|
* FIXME: in case of values return filter, we might want
|
|
|
|
* to map attrs and maybe rewrite value
|
|
|
|
*/
|
2003-04-04 07:23:56 +08:00
|
|
|
if ( !ldap_back_dobind( lc, op, rs ) ) {
|
2002-08-31 18:35:23 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* should we check return values? */
|
2004-07-05 07:35:18 +08:00
|
|
|
if ( op->ors_deref != -1 ) {
|
|
|
|
ldap_set_option( lc->ld, LDAP_OPT_DEREF, (void *)&op->ors_deref );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( op->ors_tlimit != SLAP_NO_LIMIT ) {
|
2004-03-09 02:12:45 +08:00
|
|
|
tv.tv_sec = op->ors_tlimit;
|
2003-02-14 13:23:45 +08:00
|
|
|
tv.tv_usec = 0;
|
2004-07-05 07:35:18 +08:00
|
|
|
|
2003-02-14 13:23:45 +08:00
|
|
|
} else {
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
}
|
2002-08-29 22:39:31 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* Rewrite the search base, if required
|
|
|
|
*/
|
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;
|
|
|
|
dc.ctx = "searchBase";
|
|
|
|
#else
|
|
|
|
dc.tofrom = 1;
|
2004-01-17 20:25:46 +08:00
|
|
|
dc.normalized = 0;
|
2003-04-07 18:15:18 +08:00
|
|
|
#endif
|
2004-01-17 19:48:14 +08:00
|
|
|
if ( ldap_back_dn_massage( &dc, &op->o_req_ndn, &mbase ) ) {
|
2003-04-07 18:15:18 +08:00
|
|
|
send_ldap_result( op, rs );
|
|
|
|
return -1;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2002-01-06 02:31:38 +08:00
|
|
|
|
2004-03-09 02:12:45 +08:00
|
|
|
rc = ldap_back_filter_map_rewrite( &dc, op->ors_filter,
|
2003-04-08 00:52:59 +08:00
|
|
|
&mfilter, BACKLDAP_MAP );
|
2003-03-01 19:08:53 +08:00
|
|
|
|
2004-02-29 00:05:59 +08:00
|
|
|
switch ( rc ) {
|
|
|
|
case LDAP_SUCCESS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_COMPARE_FALSE:
|
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
|
|
|
rs->sr_text = NULL;
|
|
|
|
rc = 0;
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
default:
|
2003-04-06 00:53:29 +08:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
rs->sr_text = "Rewrite error";
|
2003-12-01 16:04:51 +08:00
|
|
|
dontfreetext = 1;
|
2003-03-01 19:08:53 +08:00
|
|
|
rc = -1;
|
|
|
|
goto finish;
|
2002-01-06 02:31:38 +08:00
|
|
|
}
|
|
|
|
|
2003-04-08 00:52:59 +08:00
|
|
|
rs->sr_err = ldap_back_map_attrs( &li->rwmap.rwm_at,
|
2004-03-09 02:12:45 +08:00
|
|
|
op->ors_attrs,
|
2003-04-06 00:53:29 +08:00
|
|
|
BACKLDAP_MAP, &mapped_attrs );
|
2004-07-05 07:35:18 +08:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2003-04-06 00:53:29 +08:00
|
|
|
rc = -1;
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
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 ) {
|
|
|
|
dontfreetext = 1;
|
|
|
|
goto finish;
|
2001-02-20 03:14:12 +08:00
|
|
|
}
|
2003-12-01 16:04:51 +08:00
|
|
|
#endif /* LDAP_BACK_PROXY_AUTHZ */
|
|
|
|
|
2004-07-05 07:35:18 +08:00
|
|
|
rs->sr_err = ldap_search_ext( lc->ld, mbase.bv_val,
|
2004-03-09 02:12:45 +08:00
|
|
|
op->ors_scope, mfilter.bv_val,
|
|
|
|
mapped_attrs, op->ors_attrsonly,
|
2004-05-14 04:25:53 +08:00
|
|
|
ctrls, NULL,
|
2004-03-09 02:12:45 +08:00
|
|
|
tv.tv_sec ? &tv : NULL, op->ors_slimit,
|
2003-12-01 16:04:51 +08:00
|
|
|
&msgid );
|
|
|
|
|
2003-04-05 06:20:49 +08:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2001-06-03 16:53:13 +08:00
|
|
|
fail:;
|
2004-07-05 07:35:18 +08:00
|
|
|
rc = ldap_back_op_result( lc, op, rs, msgid, 0 );
|
|
|
|
if ( freeconn ) {
|
|
|
|
ldap_back_freeconn( op, lc );
|
|
|
|
lc = NULL;
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
goto finish;
|
2001-02-20 03:14:12 +08:00
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
/* We pull apart the ber result, stuff it into a slapd entry, and
|
|
|
|
* let send_search_entry stuff it back into ber format. Slow & ugly,
|
|
|
|
* but this is necessary for version matching, and for ACL processing.
|
|
|
|
*/
|
2003-02-14 07:19:51 +08:00
|
|
|
|
2004-07-05 07:35:18 +08:00
|
|
|
for ( rc = 0; rc != -1; rc = ldap_result( lc->ld, msgid, 0, &tv, &res ) )
|
2001-02-20 03:14:12 +08:00
|
|
|
{
|
1999-05-26 10:35:20 +08:00
|
|
|
/* check for abandon */
|
2004-07-05 07:35:18 +08:00
|
|
|
if ( op->o_abandon ) {
|
|
|
|
ldap_abandon( lc->ld, msgid );
|
2001-05-12 08:51:28 +08:00
|
|
|
rc = 0;
|
2001-02-20 03:14:12 +08:00
|
|
|
goto finish;
|
|
|
|
}
|
2002-08-31 18:35:23 +08:00
|
|
|
|
2004-07-05 07:35:18 +08:00
|
|
|
if ( rc == 0 ) {
|
1999-05-26 10:35:20 +08:00
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 100000;
|
|
|
|
ldap_pvt_thread_yield();
|
2002-08-31 18:35:23 +08:00
|
|
|
|
2004-07-05 07:35:18 +08:00
|
|
|
} else if ( rc == LDAP_RES_SEARCH_ENTRY ) {
|
2003-12-13 10:00:07 +08:00
|
|
|
Entry ent = {0};
|
2003-03-26 19:50:03 +08:00
|
|
|
struct berval bdn;
|
2004-02-13 10:44:13 +08:00
|
|
|
int abort = 0;
|
2004-07-05 07:35:18 +08:00
|
|
|
e = ldap_first_entry( lc->ld, res );
|
|
|
|
rc = ldap_build_entry( op, e, &ent, &bdn,
|
|
|
|
LDAP_BUILD_ENTRY_PRIVATE );
|
|
|
|
if ( rc == LDAP_SUCCESS ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_entry = &ent;
|
2004-03-09 02:12:45 +08:00
|
|
|
rs->sr_attrs = op->ors_attrs;
|
2004-07-19 05:44:29 +08:00
|
|
|
rs->sr_operational_attrs = NULL;
|
2004-03-17 19:50:15 +08:00
|
|
|
rs->sr_flags = 0;
|
2004-02-13 10:44:13 +08:00
|
|
|
abort = send_search_entry( op, rs );
|
2003-03-26 19:50:03 +08:00
|
|
|
while (ent.e_attrs) {
|
2003-04-05 09:20:55 +08:00
|
|
|
Attribute *a;
|
|
|
|
BerVarray v;
|
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
a = ent.e_attrs;
|
|
|
|
ent.e_attrs = a->a_next;
|
2003-04-05 09:20:55 +08:00
|
|
|
|
|
|
|
v = a->a_vals;
|
2004-07-05 07:35:18 +08:00
|
|
|
if ( a->a_vals != &dummy ) {
|
2003-03-26 19:50:03 +08:00
|
|
|
ber_bvarray_free(a->a_vals);
|
2004-07-05 07:35:18 +08:00
|
|
|
}
|
|
|
|
if ( a->a_nvals != v ) {
|
2003-04-04 09:01:28 +08:00
|
|
|
ber_bvarray_free(a->a_nvals);
|
2004-07-05 07:35:18 +08:00
|
|
|
}
|
2003-03-26 19:50:03 +08:00
|
|
|
ch_free(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ent.e_dn && ( ent.e_dn != bdn.bv_val ) )
|
|
|
|
free( ent.e_dn );
|
|
|
|
if ( ent.e_ndn )
|
|
|
|
free( ent.e_ndn );
|
2002-08-14 01:00:33 +08:00
|
|
|
}
|
2004-07-05 07:35:18 +08:00
|
|
|
ldap_msgfree( res );
|
2004-02-13 10:44:13 +08:00
|
|
|
if ( abort ) {
|
2004-07-05 07:35:18 +08:00
|
|
|
ldap_abandon( lc->ld, msgid );
|
2004-02-13 10:44:13 +08:00
|
|
|
goto finish;
|
|
|
|
}
|
2002-08-31 18:35:23 +08:00
|
|
|
|
|
|
|
} else if ( rc == LDAP_RES_SEARCH_REFERENCE ) {
|
|
|
|
char **references = NULL;
|
|
|
|
int cnt;
|
|
|
|
|
|
|
|
rc = ldap_parse_reference( lc->ld, res,
|
2003-03-30 17:03:54 +08:00
|
|
|
&references, &rs->sr_ctrls, 1 );
|
2002-08-31 18:35:23 +08:00
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( references == NULL ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( cnt = 0; references[ cnt ]; cnt++ )
|
|
|
|
/* NO OP */ ;
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = ch_calloc( cnt + 1, sizeof( struct berval ) );
|
2002-08-31 18:35:23 +08:00
|
|
|
|
|
|
|
for ( cnt = 0; references[ cnt ]; cnt++ ) {
|
2004-07-07 06:02:52 +08:00
|
|
|
ber_str2bv( references[ cnt ], 0, 0, &rs->sr_ref[ cnt ] );
|
2002-08-31 18:35:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ignore return value by now */
|
2003-03-30 17:03:54 +08:00
|
|
|
( void )send_search_reference( op, rs );
|
2002-08-31 18:35:23 +08:00
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
if ( references ) {
|
|
|
|
ldap_value_free( references );
|
2003-03-30 17:03:54 +08:00
|
|
|
ch_free( rs->sr_ref );
|
|
|
|
rs->sr_ref = NULL;
|
2002-08-31 18:35:23 +08:00
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_ctrls ) {
|
|
|
|
ldap_controls_free( rs->sr_ctrls );
|
|
|
|
rs->sr_ctrls = NULL;
|
2002-08-31 18:35:23 +08:00
|
|
|
}
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
} else {
|
2004-07-05 07:35:18 +08:00
|
|
|
rc = ldap_parse_result( lc->ld, res, &rs->sr_err,
|
2003-04-08 01:07:52 +08:00
|
|
|
&match.bv_val, (char **)&rs->sr_text,
|
2004-07-05 07:35:18 +08:00
|
|
|
NULL, NULL, 1 );
|
|
|
|
if (rc != LDAP_SUCCESS ) {
|
|
|
|
rs->sr_err = rc;
|
|
|
|
}
|
2004-04-06 01:36:53 +08:00
|
|
|
rs->sr_err = slap_map_api2result( rs );
|
1999-05-26 10:35:20 +08:00
|
|
|
rc = 0;
|
|
|
|
break;
|
2001-02-20 03:14:12 +08:00
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
|
|
|
|
2004-07-05 07:35:18 +08:00
|
|
|
if ( rc == -1 ) {
|
|
|
|
/* FIXME: invalidate the connection? */
|
|
|
|
rs->sr_err = LDAP_SERVER_DOWN;
|
|
|
|
freeconn = 1;
|
1999-05-26 10:35:20 +08:00
|
|
|
goto fail;
|
2004-07-05 07:35:18 +08:00
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* Rewrite the matched portion of the search base, if required
|
|
|
|
*/
|
2003-04-08 01:07:52 +08:00
|
|
|
if ( match.bv_val && *match.bv_val ) {
|
|
|
|
struct berval mdn;
|
2003-03-12 02:09:38 +08:00
|
|
|
|
2003-04-07 18:15:18 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
2004-03-11 05:11:14 +08:00
|
|
|
dc.ctx = "matchedDN";
|
2003-04-07 18:15:18 +08:00
|
|
|
#else
|
|
|
|
dc.tofrom = 0;
|
|
|
|
dc.normalized = 0;
|
|
|
|
#endif
|
2003-04-08 01:07:52 +08:00
|
|
|
match.bv_len = strlen( match.bv_val );
|
2004-07-05 07:35:18 +08:00
|
|
|
ldap_back_dn_massage( &dc, &match, &mdn );
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_matched = mdn.bv_val;
|
2003-03-12 02:09:38 +08:00
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_v2ref ) {
|
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
|
|
|
}
|
2001-02-20 03:14:12 +08:00
|
|
|
|
2001-06-03 16:53:13 +08:00
|
|
|
finish:;
|
2003-04-06 00:53:29 +08:00
|
|
|
send_ldap_result( op, rs );
|
|
|
|
|
2003-12-01 16:04:51 +08:00
|
|
|
#ifdef LDAP_BACK_PROXY_AUTHZ
|
|
|
|
if ( ctrls && ctrls != op->o_ctrls ) {
|
|
|
|
free( ctrls[ 0 ] );
|
|
|
|
free( ctrls );
|
|
|
|
}
|
|
|
|
#endif /* LDAP_BACK_PROXY_AUTHZ */
|
|
|
|
|
2003-04-08 01:07:52 +08:00
|
|
|
if ( match.bv_val ) {
|
|
|
|
if ( rs->sr_matched != match.bv_val ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
free( (char *)rs->sr_matched );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_matched = NULL;
|
2003-04-08 01:07:52 +08:00
|
|
|
LDAP_FREE( match.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_text ) {
|
2003-12-01 16:04:51 +08:00
|
|
|
if ( !dontfreetext ) {
|
|
|
|
LDAP_FREE( (char *)rs->sr_text );
|
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = NULL;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2001-12-26 17:19:57 +08:00
|
|
|
if ( mapped_attrs ) {
|
2002-01-13 01:35:01 +08:00
|
|
|
ch_free( mapped_attrs );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2004-03-09 02:12:45 +08:00
|
|
|
if ( mfilter.bv_val != op->ors_filterstr.bv_val ) {
|
2003-03-01 19:08:53 +08:00
|
|
|
ch_free( mfilter.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2004-03-06 17:33:24 +08:00
|
|
|
if ( mbase.bv_val != op->o_req_ndn.bv_val ) {
|
2001-12-28 12:20:08 +08:00
|
|
|
free( mbase.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
|
|
|
|
2003-04-04 19:03:29 +08:00
|
|
|
static int
|
2003-03-26 19:50:03 +08:00
|
|
|
ldap_build_entry(
|
2003-04-04 05:35:27 +08:00
|
|
|
Operation *op,
|
1999-05-26 10:35:20 +08:00
|
|
|
LDAPMessage *e,
|
2003-03-26 19:50:03 +08:00
|
|
|
Entry *ent,
|
|
|
|
struct berval *bdn,
|
2003-04-04 19:03:29 +08:00
|
|
|
int flags
|
1999-05-26 10:35:20 +08:00
|
|
|
)
|
|
|
|
{
|
2003-04-04 05:35:27 +08:00
|
|
|
struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval a, mapped;
|
|
|
|
BerElement ber = *e->lm_ber;
|
1999-07-26 06:13:52 +08:00
|
|
|
Attribute *attr, **attrp;
|
2003-03-26 19:50:03 +08:00
|
|
|
struct berval *bv;
|
2000-06-09 02:36:37 +08:00
|
|
|
const char *text;
|
2003-04-04 09:01:28 +08:00
|
|
|
int last;
|
2003-04-04 19:03:29 +08:00
|
|
|
int private = flags & LDAP_BUILD_ENTRY_PRIVATE;
|
2003-04-07 18:15:18 +08:00
|
|
|
dncookie dc;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2003-04-04 08:43:40 +08:00
|
|
|
/* safe assumptions ... */
|
|
|
|
assert( ent );
|
|
|
|
ent->e_bv.bv_val = NULL;
|
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
if ( ber_scanf( &ber, "{m{", bdn ) == LBER_ERROR ) {
|
2002-08-14 01:00:33 +08:00
|
|
|
return LDAP_DECODING_ERROR;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Rewrite the dn of the result, if needed
|
|
|
|
*/
|
2003-04-08 00:52:59 +08:00
|
|
|
dc.rwmap = &li->rwmap;
|
2003-04-07 18:15:18 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
dc.conn = op->o_conn;
|
|
|
|
dc.rs = NULL;
|
|
|
|
dc.ctx = "searchResult";
|
|
|
|
#else
|
|
|
|
dc.tofrom = 0;
|
|
|
|
dc.normalized = 0;
|
|
|
|
#endif
|
|
|
|
if ( ldap_back_dn_massage( &dc, bdn, &ent->e_name ) ) {
|
2002-08-14 01:00:33 +08:00
|
|
|
return LDAP_OTHER;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2002-08-10 22:25:41 +08:00
|
|
|
/*
|
|
|
|
* Note: this may fail if the target host(s) schema differs
|
|
|
|
* from the one known to the meta, and a DN with unknown
|
|
|
|
* attributes is returned.
|
|
|
|
*
|
2003-04-30 02:28:14 +08:00
|
|
|
* FIXME: should we log anything, or delegate to dnNormalize?
|
2002-08-10 22:25:41 +08:00
|
|
|
*/
|
2004-05-23 01:26:02 +08:00
|
|
|
/* Note: if the distinguished values or the naming attributes
|
|
|
|
* change, should we massage them as well?
|
|
|
|
*/
|
2003-04-30 02:28:14 +08:00
|
|
|
if ( dnNormalize( 0, NULL, NULL, &ent->e_name, &ent->e_nname,
|
|
|
|
op->o_tmpmemctx ) != LDAP_SUCCESS )
|
|
|
|
{
|
2002-08-14 01:00:33 +08:00
|
|
|
return LDAP_INVALID_DN_SYNTAX;
|
2002-08-10 22:25:41 +08:00
|
|
|
}
|
2004-05-23 01:26:02 +08:00
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
attrp = &ent->e_attrs;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2003-04-07 19:55:12 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
dc.ctx = "searchAttrDN";
|
|
|
|
#endif
|
2002-01-06 14:11:01 +08:00
|
|
|
while ( ber_scanf( &ber, "{m", &a ) != LBER_ERROR ) {
|
2004-07-23 07:03:04 +08:00
|
|
|
int i;
|
|
|
|
slap_syntax_validate_func *validate;
|
|
|
|
slap_syntax_transform_func *pretty;
|
2004-07-07 06:02:52 +08:00
|
|
|
|
|
|
|
ldap_back_map( &li->rwmap.rwm_at, &a, &mapped, BACKLDAP_REMAP );
|
|
|
|
if ( BER_BVISNULL( &mapped ) || BER_BVISEMPTY( &mapped ) )
|
2001-02-20 03:14:12 +08:00
|
|
|
continue;
|
2004-07-07 06:02:52 +08:00
|
|
|
attr = (Attribute *)ch_malloc( sizeof( Attribute ) );
|
|
|
|
if ( attr == NULL )
|
2000-06-06 13:21:14 +08:00
|
|
|
continue;
|
2002-01-14 07:23:23 +08:00
|
|
|
attr->a_flags = 0;
|
1999-05-26 10:35:20 +08:00
|
|
|
attr->a_next = 0;
|
2001-01-17 14:32:26 +08:00
|
|
|
attr->a_desc = NULL;
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( slap_bv2ad( &mapped, &attr->a_desc, &text ) != LDAP_SUCCESS ) {
|
|
|
|
if ( slap_bv2undef_ad( &mapped, &attr->a_desc, &text )
|
|
|
|
!= LDAP_SUCCESS )
|
|
|
|
{
|
2001-10-04 02:17:08 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDAP, DETAIL1,
|
|
|
|
"slap_bv2undef_ad(%s): %s\n", mapped.bv_val, text, 0 );
|
2001-10-04 02:17:08 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-07-07 06:02:52 +08:00
|
|
|
"slap_bv2undef_ad(%s): %s\n", mapped.bv_val, text, 0 );
|
2001-10-04 02:17:08 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2004-07-07 06:02:52 +08:00
|
|
|
ch_free( attr );
|
2001-10-04 02:17:08 +08:00
|
|
|
continue;
|
|
|
|
}
|
2001-02-20 03:14:12 +08:00
|
|
|
}
|
2002-01-05 03:11:55 +08:00
|
|
|
|
|
|
|
/* no subschemaSubentry */
|
|
|
|
if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry ) {
|
2003-04-04 06:40:41 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We eat target's subschemaSubentry because
|
|
|
|
* a search for this value is likely not
|
|
|
|
* to resolve to the appropriate backend;
|
|
|
|
* later, the local subschemaSubentry is
|
|
|
|
* added.
|
2003-04-04 06:48:17 +08:00
|
|
|
*/
|
2003-04-05 09:20:55 +08:00
|
|
|
( void )ber_scanf( &ber, "x" /* [W] */ );
|
2003-04-04 06:40:41 +08:00
|
|
|
|
2002-01-05 03:11:55 +08:00
|
|
|
ch_free(attr);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-08-29 22:39:31 +08:00
|
|
|
if ( ber_scanf( &ber, "[W]", &attr->a_vals ) == LBER_ERROR
|
2004-07-07 06:02:52 +08:00
|
|
|
|| attr->a_vals == NULL )
|
|
|
|
{
|
2002-08-29 22:39:31 +08:00
|
|
|
/*
|
|
|
|
* Note: attr->a_vals can be null when using
|
|
|
|
* values result filter
|
|
|
|
*/
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( private ) {
|
2003-03-26 19:50:03 +08:00
|
|
|
attr->a_vals = &dummy;
|
|
|
|
} else {
|
2004-07-07 06:02:52 +08:00
|
|
|
attr->a_vals = ch_malloc( sizeof( struct berval ) );
|
|
|
|
BER_BVZERO( &attr->a_vals[0] );
|
2003-03-26 19:50:03 +08:00
|
|
|
}
|
2003-04-04 09:01:28 +08:00
|
|
|
last = 0;
|
2004-07-07 06:02:52 +08:00
|
|
|
|
2003-04-04 09:01:28 +08:00
|
|
|
} else {
|
2004-07-07 06:02:52 +08:00
|
|
|
for ( last = 0; !BER_BVISNULL( &attr->a_vals[last] ); last++ );
|
2003-04-04 09:01:28 +08:00
|
|
|
}
|
2004-07-07 06:02:52 +08:00
|
|
|
|
2003-04-04 09:01:28 +08:00
|
|
|
if ( last == 0 ) {
|
|
|
|
/* empty */
|
2002-01-05 03:11:55 +08:00
|
|
|
} else if ( attr->a_desc == slap_schema.si_ad_objectClass
|
2004-07-07 06:02:52 +08:00
|
|
|
|| attr->a_desc == slap_schema.si_ad_structuralObjectClass )
|
|
|
|
{
|
|
|
|
for ( bv = attr->a_vals; !BER_BVISNULL( bv ); bv++ ) {
|
|
|
|
ldap_back_map( &li->rwmap.rwm_oc, bv, &mapped,
|
|
|
|
BACKLDAP_REMAP );
|
|
|
|
if ( BER_BVISNULL( &mapped ) || BER_BVISEMPTY( &mapped ) ) {
|
|
|
|
LBER_FREE( bv->bv_val );
|
|
|
|
BER_BVZERO( bv );
|
2001-02-20 03:14:12 +08:00
|
|
|
if (--last < 0)
|
|
|
|
break;
|
2002-01-04 08:49:34 +08:00
|
|
|
*bv = attr->a_vals[last];
|
2004-07-07 06:02:52 +08:00
|
|
|
BER_BVZERO( &attr->a_vals[last] );
|
2003-03-01 19:08:53 +08:00
|
|
|
bv--;
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
} else if ( mapped.bv_val != bv->bv_val ) {
|
2002-01-13 01:35:01 +08:00
|
|
|
/*
|
|
|
|
* FIXME: after LBER_FREEing
|
|
|
|
* the value is replaced by
|
|
|
|
* ch_alloc'ed memory
|
|
|
|
*/
|
2004-07-07 06:02:52 +08:00
|
|
|
LBER_FREE( bv->bv_val );
|
2002-01-02 19:00:36 +08:00
|
|
|
ber_dupbv( bv, &mapped );
|
2001-02-20 03:14:12 +08:00
|
|
|
}
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* It is necessary to try to rewrite attributes with
|
|
|
|
* dn syntax because they might be used in ACLs as
|
|
|
|
* members of groups; since ACLs are applied to the
|
2002-05-02 01:45:03 +08:00
|
|
|
* rewritten stuff, no dn-based subject clause could
|
2001-05-12 08:51:28 +08:00
|
|
|
* be used at the ldap backend side (see
|
|
|
|
* http://www.OpenLDAP.org/faq/data/cache/452.html)
|
|
|
|
* The problem can be overcome by moving the dn-based
|
|
|
|
* ACLs to the target directory server, and letting
|
|
|
|
* everything pass thru the ldap backend.
|
|
|
|
*/
|
2003-04-07 18:15:18 +08:00
|
|
|
} else if ( attr->a_desc->ad_type->sat_syntax ==
|
2004-07-07 06:02:52 +08:00
|
|
|
slap_schema.si_syn_distinguishedName )
|
|
|
|
{
|
2003-04-08 01:51:42 +08:00
|
|
|
ldap_dnattr_result_rewrite( &dc, attr->a_vals );
|
2001-02-20 03:14:12 +08:00
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
validate = attr->a_desc->ad_type->sat_syntax->ssyn_validate;
|
|
|
|
pretty = attr->a_desc->ad_type->sat_syntax->ssyn_pretty;
|
|
|
|
|
|
|
|
if ( !validate && !pretty ) {
|
|
|
|
attr->a_nvals = NULL;
|
|
|
|
attr_free( attr );
|
|
|
|
goto next_attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0; i < last; i++ ) {
|
|
|
|
struct berval pval;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if ( pretty ) {
|
|
|
|
rc = pretty( attr->a_desc->ad_type->sat_syntax,
|
|
|
|
&attr->a_vals[i], &pval, NULL );
|
|
|
|
} else {
|
|
|
|
rc = validate( attr->a_desc->ad_type->sat_syntax,
|
|
|
|
&attr->a_vals[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
attr->a_nvals = NULL;
|
|
|
|
attr_free( attr );
|
|
|
|
goto next_attr;
|
|
|
|
}
|
2003-04-07 19:40:23 +08:00
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( pretty ) {
|
|
|
|
LBER_FREE( attr->a_vals[i].bv_val );
|
|
|
|
attr->a_vals[i] = pval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( last && attr->a_desc->ad_type->sat_equality &&
|
|
|
|
attr->a_desc->ad_type->sat_equality->smr_normalize )
|
|
|
|
{
|
|
|
|
attr->a_nvals = ch_malloc( ( last + 1 )*sizeof( struct berval ) );
|
|
|
|
for ( i = 0; i < last; i++ ) {
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check that each value is valid per syntax
|
|
|
|
* and pretty if appropriate
|
|
|
|
*/
|
|
|
|
rc = attr->a_desc->ad_type->sat_equality->smr_normalize(
|
2003-04-07 19:40:23 +08:00
|
|
|
SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
|
|
|
|
attr->a_desc->ad_type->sat_syntax,
|
|
|
|
attr->a_desc->ad_type->sat_equality,
|
2003-04-11 09:29:28 +08:00
|
|
|
&attr->a_vals[i], &attr->a_nvals[i],
|
2003-12-01 16:01:31 +08:00
|
|
|
NULL /* op->o_tmpmemctx */ );
|
2004-07-07 06:02:52 +08:00
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
BER_BVZERO( &attr->a_nvals[i] );
|
|
|
|
ch_free( attr );
|
|
|
|
goto next_attr;
|
|
|
|
}
|
2003-04-04 09:01:28 +08:00
|
|
|
}
|
2004-07-07 06:02:52 +08:00
|
|
|
BER_BVZERO( &attr->a_nvals[i] );
|
|
|
|
|
2003-04-04 09:01:28 +08:00
|
|
|
} else {
|
2003-04-07 19:38:45 +08:00
|
|
|
attr->a_nvals = attr->a_vals;
|
2003-04-04 09:01:28 +08:00
|
|
|
}
|
1999-07-26 06:13:52 +08:00
|
|
|
*attrp = attr;
|
|
|
|
attrp = &attr->a_next;
|
2004-07-07 06:02:52 +08:00
|
|
|
|
|
|
|
next_attr:;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2003-12-01 16:04:51 +08:00
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
/* make sure it's free'able */
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( !private && ent->e_name.bv_val == bdn->bv_val ) {
|
2003-03-26 19:50:03 +08:00
|
|
|
ber_dupbv( &ent->e_name, bdn );
|
2004-07-07 06:02:52 +08:00
|
|
|
}
|
2003-03-26 19:50:03 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return 0 IFF we can retrieve the entry with ndn
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ldap_back_entry_get(
|
|
|
|
Operation *op,
|
|
|
|
struct berval *ndn,
|
|
|
|
ObjectClass *oc,
|
|
|
|
AttributeDescription *at,
|
|
|
|
int rw,
|
|
|
|
Entry **ent
|
|
|
|
)
|
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
|
2003-03-26 19:50:03 +08:00
|
|
|
struct ldapconn *lc;
|
|
|
|
int rc = 1, is_oc;
|
2004-04-07 12:11:43 +08:00
|
|
|
struct berval mapped = BER_BVNULL, bdn, mdn;
|
2003-03-26 19:50:03 +08:00
|
|
|
LDAPMessage *result = NULL, *e = NULL;
|
|
|
|
char *gattr[3];
|
2003-04-05 09:20:55 +08:00
|
|
|
char *filter = NULL;
|
2003-03-30 17:03:54 +08:00
|
|
|
Connection *oconn;
|
|
|
|
SlapReply rs;
|
2003-04-07 18:15:18 +08:00
|
|
|
dncookie dc;
|
2003-03-26 19:50:03 +08:00
|
|
|
|
|
|
|
/* Tell getconn this is a privileged op */
|
|
|
|
is_oc = op->o_do_not_cache;
|
|
|
|
op->o_do_not_cache = 1;
|
2003-04-04 07:23:56 +08:00
|
|
|
lc = ldap_back_getconn(op, &rs);
|
2003-03-30 17:03:54 +08:00
|
|
|
oconn = op->o_conn;
|
|
|
|
op->o_conn = NULL;
|
2003-04-04 07:23:56 +08:00
|
|
|
if ( !lc || !ldap_back_dobind(lc, op, &rs) ) {
|
2003-03-26 19:50:03 +08:00
|
|
|
op->o_do_not_cache = is_oc;
|
2003-03-30 17:03:54 +08:00
|
|
|
op->o_conn = oconn;
|
2003-03-26 19:50:03 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
op->o_do_not_cache = is_oc;
|
2003-03-30 17:03:54 +08:00
|
|
|
op->o_conn = oconn;
|
2003-03-26 19:50:03 +08:00
|
|
|
|
2003-04-04 08:48:54 +08:00
|
|
|
/*
|
|
|
|
* Rewrite the search base, if required
|
|
|
|
*/
|
2003-04-08 00:52:59 +08:00
|
|
|
dc.rwmap = &li->rwmap;
|
2003-04-04 08:48:54 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
2003-04-07 18:15:18 +08:00
|
|
|
dc.conn = op->o_conn;
|
|
|
|
dc.rs = &rs;
|
|
|
|
dc.ctx = "searchBase";
|
|
|
|
#else
|
|
|
|
dc.tofrom = 1;
|
|
|
|
dc.normalized = 1;
|
|
|
|
#endif
|
|
|
|
if ( ldap_back_dn_massage( &dc, ndn, &mdn ) ) {
|
2003-04-04 09:01:28 +08:00
|
|
|
return 1;
|
2003-04-04 08:48:54 +08:00
|
|
|
}
|
|
|
|
|
2003-09-20 15:48:57 +08:00
|
|
|
if ( at ) {
|
|
|
|
ldap_back_map(&li->rwmap.rwm_at, &at->ad_cname, &mapped, BACKLDAP_MAP);
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( BER_BVISNULL( &mapped ) || BER_BVISEMPTY( &mapped ) ) {
|
2003-09-20 15:48:57 +08:00
|
|
|
rc = 1;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2004-07-07 06:02:52 +08:00
|
|
|
is_oc = ( strcasecmp( "objectclass", mapped.bv_val ) == 0 );
|
|
|
|
if ( oc && !is_oc ) {
|
2004-05-25 12:54:32 +08:00
|
|
|
gattr[0] = "objectclass";
|
|
|
|
gattr[1] = mapped.bv_val;
|
|
|
|
gattr[2] = NULL;
|
2004-07-07 06:02:52 +08:00
|
|
|
|
2004-05-25 12:54:32 +08:00
|
|
|
} else {
|
|
|
|
gattr[0] = mapped.bv_val;
|
|
|
|
gattr[1] = NULL;
|
|
|
|
}
|
2003-04-04 08:48:54 +08:00
|
|
|
}
|
|
|
|
|
2003-03-26 19:50:03 +08:00
|
|
|
if (oc) {
|
|
|
|
char *ptr;
|
2003-04-08 00:52:59 +08:00
|
|
|
ldap_back_map(&li->rwmap.rwm_oc, &oc->soc_cname, &mapped,
|
2003-04-04 09:01:28 +08:00
|
|
|
BACKLDAP_MAP);
|
2004-07-07 06:02:52 +08:00
|
|
|
filter = ch_malloc( STRLENOF( "(objectclass=)" ) + mapped.bv_len + 1 );
|
|
|
|
ptr = lutil_strcopy( filter, "(objectclass=" );
|
|
|
|
ptr = lutil_strcopy( ptr, mapped.bv_val );
|
2003-03-26 19:50:03 +08:00
|
|
|
*ptr++ = ')';
|
|
|
|
*ptr++ = '\0';
|
|
|
|
}
|
2003-12-01 16:04:51 +08:00
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( ldap_search_ext_s( lc->ld, mdn.bv_val, LDAP_SCOPE_BASE, filter,
|
2003-03-26 19:50:03 +08:00
|
|
|
gattr, 0, NULL, NULL, LDAP_NO_LIMIT,
|
2004-07-07 06:02:52 +08:00
|
|
|
LDAP_NO_LIMIT, &result) != LDAP_SUCCESS )
|
2003-03-26 19:50:03 +08:00
|
|
|
{
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
e = ldap_first_entry( lc->ld, result );
|
|
|
|
if ( e == NULL ) {
|
2003-03-26 19:50:03 +08:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
*ent = ch_calloc( 1, sizeof( Entry ) );
|
2003-03-26 19:50:03 +08:00
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
rc = ldap_build_entry( op, e, *ent, &bdn, 0 );
|
2003-03-26 19:50:03 +08:00
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
ch_free( *ent );
|
2003-03-26 19:50:03 +08:00
|
|
|
*ent = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanup:
|
2004-07-07 06:02:52 +08:00
|
|
|
if ( result ) {
|
|
|
|
ldap_msgfree( result );
|
2003-03-26 19:50:03 +08:00
|
|
|
}
|
|
|
|
|
2003-04-05 09:20:55 +08:00
|
|
|
if ( filter ) {
|
|
|
|
ch_free( filter );
|
|
|
|
}
|
|
|
|
|
2003-04-04 08:48:54 +08:00
|
|
|
if ( mdn.bv_val != ndn->bv_val ) {
|
2003-04-04 09:01:28 +08:00
|
|
|
ch_free( mdn.bv_val );
|
2003-04-04 08:48:54 +08:00
|
|
|
}
|
|
|
|
|
2004-07-07 06:02:52 +08:00
|
|
|
return rc;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2003-03-26 19:50:03 +08:00
|
|
|
|