1 /* search.c - ldap backend search function */
4 * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
7 /* This is an altered version */
9 * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
11 * Permission is granted to anyone to use this software for any purpose
12 * on any computer system, and to alter it and redistribute it, subject
13 * to the following restrictions:
15 * 1. The author is not responsible for the consequences of use of this
16 * software, no matter how awful, even if they arise from flaws in it.
18 * 2. The origin of this software must not be misrepresented, either by
19 * explicit claim or by omission. Since few users ever read sources,
20 * credits should appear in the documentation.
22 * 3. Altered versions must be plainly marked as such, and must not be
23 * misrepresented as being the original software. Since few users
24 * ever read sources, credits should appear in the documentation.
26 * 4. This notice may not be removed or altered.
30 * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
32 * This software is being modified by Pierangelo Masarati.
33 * The previously reported conditions apply to the modified code as well.
34 * Changes in the original code are highlighted where required.
35 * Credits for the original code go to the author, Howard Chu.
42 #include <ac/socket.h>
43 #include <ac/string.h>
47 #include "back-ldap.h"
48 #undef ldap_debug /* silence a warning in ldap-int.h */
49 #include "../../../libraries/libldap/ldap-int.h"
54 ldap_build_entry( Operation *op, LDAPMessage *e, Entry *ent,
55 struct berval *bdn, int flags );
56 #define LDAP_BUILD_ENTRY_PRIVATE 0x01
57 #define LDAP_BUILD_ENTRY_NORMALIZE 0x02
59 static struct berval dummy = { 0, NULL };
66 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
71 struct berval match = { 0, NULL };
72 char **mapped_attrs = NULL;
74 struct berval mfilter = { 0, NULL };
75 struct slap_limits_set *limit = NULL;
79 lc = ldap_back_getconn(op, rs);
85 * FIXME: in case of values return filter, we might want
86 * to map attrs and maybe rewrite value
88 if ( !ldap_back_dobind( lc, op, rs ) ) {
92 /* if not root, get appropriate limits */
93 if ( be_isroot( op->o_bd, &op->o_ndn ) ) {
96 ( void ) get_limits( op->o_bd, &op->o_ndn, &limit );
99 /* if no time limit requested, rely on remote server limits */
100 /* if requested limit higher than hard limit, abort */
101 if ( !isroot && op->oq_search.rs_tlimit > limit->lms_t_hard ) {
102 /* no hard limit means use soft instead */
103 if ( limit->lms_t_hard == 0
104 && limit->lms_t_soft > -1
105 && op->oq_search.rs_tlimit > limit->lms_t_soft ) {
106 op->oq_search.rs_tlimit = limit->lms_t_soft;
108 /* positive hard limit means abort */
109 } else if ( limit->lms_t_hard > 0 ) {
110 rs->sr_err = LDAP_ADMINLIMIT_EXCEEDED;
115 /* negative hard limit means no limit */
118 /* if no size limit requested, rely on remote server limits */
119 /* if requested limit higher than hard limit, abort */
120 if ( !isroot && op->oq_search.rs_slimit > limit->lms_s_hard ) {
121 /* no hard limit means use soft instead */
122 if ( limit->lms_s_hard == 0
123 && limit->lms_s_soft > -1
124 && op->oq_search.rs_slimit > limit->lms_s_soft ) {
125 op->oq_search.rs_slimit = limit->lms_s_soft;
127 /* positive hard limit means abort */
128 } else if ( limit->lms_s_hard > 0 ) {
129 rs->sr_err = LDAP_ADMINLIMIT_EXCEEDED;
134 /* negative hard limit means no limit */
137 /* should we check return values? */
138 if (op->oq_search.rs_deref != -1)
139 ldap_set_option( lc->ld, LDAP_OPT_DEREF, (void *)&op->oq_search.rs_deref);
140 if (op->oq_search.rs_tlimit != -1) {
141 tv.tv_sec = op->oq_search.rs_tlimit;
148 * Rewrite the search base, if required
150 dc.rwmap = &li->rwmap;
151 #ifdef ENABLE_REWRITE
152 dc.conn = op->o_conn;
154 dc.ctx = "searchBase";
159 if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mbase ) ) {
160 send_ldap_result( op, rs );
164 rc = ldap_back_filter_map_rewrite( &dc, op->oq_search.rs_filter,
165 &mfilter, BACKLDAP_MAP );
168 rs->sr_err = LDAP_OTHER;
169 rs->sr_text = "Rewrite error";
174 rs->sr_err = ldap_back_map_attrs( &li->rwmap.rwm_at,
175 op->oq_search.rs_attrs,
176 BACKLDAP_MAP, &mapped_attrs );
183 if ( mapped_attrs == NULL && op->oq_search.rs_attrs) {
186 /* this can happen only if ch_calloc() fails
187 * in ldap_back_map_attrs() */
188 for (count=0; op->oq_search.rs_attrs[count].an_name.bv_val; count++);
189 mapped_attrs = ch_malloc( (count+1) * sizeof(char *));
190 for (count=0; op->oq_search.rs_attrs[count].an_name.bv_val; count++) {
191 mapped_attrs[count] = op->oq_search.rs_attrs[count].an_name.bv_val;
193 mapped_attrs[count] = NULL;
197 rs->sr_err = ldap_search_ext(lc->ld, mbase.bv_val,
198 op->oq_search.rs_scope, mfilter.bv_val,
199 mapped_attrs, op->oq_search.rs_attrsonly,
201 tv.tv_sec ? &tv : NULL, op->oq_search.rs_slimit,
203 if ( rs->sr_err != LDAP_SUCCESS ) {
205 rc = ldap_back_op_result(lc, op, rs, msgid, 0);
209 /* We pull apart the ber result, stuff it into a slapd entry, and
210 * let send_search_entry stuff it back into ber format. Slow & ugly,
211 * but this is necessary for version matching, and for ACL processing.
214 for ( rc=0; rc != -1; rc = ldap_result(lc->ld, msgid, 0, &tv, &res))
216 /* check for abandon */
218 ldap_abandon(lc->ld, msgid);
226 ldap_pvt_thread_yield();
228 } else if (rc == LDAP_RES_SEARCH_ENTRY) {
231 e = ldap_first_entry(lc->ld,res);
232 if ( ldap_build_entry(op, e, &ent, &bdn,
233 LDAP_BUILD_ENTRY_PRIVATE) == LDAP_SUCCESS ) {
235 rs->sr_attrs = op->oq_search.rs_attrs;
236 send_search_entry( op, rs );
237 while (ent.e_attrs) {
242 ent.e_attrs = a->a_next;
245 if (a->a_vals != &dummy)
246 ber_bvarray_free(a->a_vals);
248 ber_bvarray_free(a->a_nvals);
252 if ( ent.e_dn && ( ent.e_dn != bdn.bv_val ) )
259 } else if ( rc == LDAP_RES_SEARCH_REFERENCE ) {
260 char **references = NULL;
263 rc = ldap_parse_reference( lc->ld, res,
264 &references, &rs->sr_ctrls, 1 );
266 if ( rc != LDAP_SUCCESS ) {
270 if ( references == NULL ) {
274 for ( cnt = 0; references[ cnt ]; cnt++ )
277 rs->sr_ref = ch_calloc( cnt + 1, sizeof( struct berval ) );
279 for ( cnt = 0; references[ cnt ]; cnt++ ) {
280 rs->sr_ref[ cnt ].bv_val = references[ cnt ];
281 rs->sr_ref[ cnt ].bv_len = strlen( references[ cnt ] );
284 /* ignore return value by now */
285 ( void )send_search_reference( op, rs );
289 ldap_value_free( references );
290 ch_free( rs->sr_ref );
294 if ( rs->sr_ctrls ) {
295 ldap_controls_free( rs->sr_ctrls );
300 rc = ldap_parse_result(lc->ld, res, &rs->sr_err,
301 &match.bv_val, (char **)&rs->sr_text,
303 if (rc != LDAP_SUCCESS ) rs->sr_err = rc;
304 rs->sr_err = ldap_back_map_result(rs);
314 * Rewrite the matched portion of the search base, if required
316 if ( match.bv_val && *match.bv_val ) {
319 #ifdef ENABLE_REWRITE
320 dc.ctx = "matchedDn";
325 match.bv_len = strlen( match.bv_val );
326 ldap_back_dn_massage(&dc, &match, &mdn);
327 rs->sr_matched = mdn.bv_val;
329 if ( rs->sr_v2ref ) {
330 rs->sr_err = LDAP_REFERRAL;
334 send_ldap_result( op, rs );
336 if ( match.bv_val ) {
337 if ( rs->sr_matched != match.bv_val ) {
338 free( (char *)rs->sr_matched );
340 rs->sr_matched = NULL;
341 LDAP_FREE( match.bv_val );
344 LDAP_FREE( (char *)rs->sr_text );
347 if ( mapped_attrs ) {
348 ch_free( mapped_attrs );
350 if ( mfilter.bv_val != op->oq_search.rs_filterstr.bv_val ) {
351 ch_free( mfilter.bv_val );
353 if ( mbase.bv_val != op->o_req_dn.bv_val ) {
354 free( mbase.bv_val );
369 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
370 struct berval a, mapped;
371 BerElement ber = *e->lm_ber;
372 Attribute *attr, **attrp;
376 int private = flags & LDAP_BUILD_ENTRY_PRIVATE;
377 int normalize = flags & LDAP_BUILD_ENTRY_NORMALIZE;
380 /* safe assumptions ... */
382 ent->e_bv.bv_val = NULL;
384 if ( ber_scanf( &ber, "{m{", bdn ) == LBER_ERROR ) {
385 return LDAP_DECODING_ERROR;
389 * Rewrite the dn of the result, if needed
391 dc.rwmap = &li->rwmap;
392 #ifdef ENABLE_REWRITE
393 dc.conn = op->o_conn;
395 dc.ctx = "searchResult";
400 if ( ldap_back_dn_massage( &dc, bdn, &ent->e_name ) ) {
405 * Note: this may fail if the target host(s) schema differs
406 * from the one known to the meta, and a DN with unknown
407 * attributes is returned.
409 * FIXME: should we log anything, or delegate to dnNormalize2?
411 if ( dnNormalize2( NULL, &ent->e_name, &ent->e_nname, op->o_tmpmemctx ) != LDAP_SUCCESS ) {
412 return LDAP_INVALID_DN_SYNTAX;
418 attrp = &ent->e_attrs;
420 #ifdef ENABLE_REWRITE
421 dc.ctx = "searchAttrDN";
423 while ( ber_scanf( &ber, "{m", &a ) != LBER_ERROR ) {
424 ldap_back_map(&li->rwmap.rwm_at, &a, &mapped, BACKLDAP_REMAP);
425 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0')
427 attr = (Attribute *)ch_malloc( sizeof(Attribute) );
433 if (slap_bv2ad(&mapped, &attr->a_desc, &text) != LDAP_SUCCESS) {
434 if (slap_bv2undef_ad(&mapped, &attr->a_desc, &text)
437 LDAP_LOG( BACK_LDAP, DETAIL1,
438 "slap_bv2undef_ad(%s): %s\n", mapped.bv_val, text, 0 );
439 #else /* !NEW_LOGGING */
440 Debug( LDAP_DEBUG_ANY,
441 "slap_bv2undef_ad(%s): "
442 "%s\n%s", mapped.bv_val, text, "" );
443 #endif /* !NEW_LOGGING */
449 /* no subschemaSubentry */
450 if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry ) {
453 * We eat target's subschemaSubentry because
454 * a search for this value is likely not
455 * to resolve to the appropriate backend;
456 * later, the local subschemaSubentry is
459 ( void )ber_scanf( &ber, "x" /* [W] */ );
465 if ( ber_scanf( &ber, "[W]", &attr->a_vals ) == LBER_ERROR
466 || attr->a_vals == NULL ) {
468 * Note: attr->a_vals can be null when using
469 * values result filter
472 attr->a_vals = &dummy;
474 attr->a_vals = ch_malloc(sizeof(struct berval));
475 attr->a_vals->bv_val = NULL;
476 attr->a_vals->bv_len = 0;
480 for ( last = 0; attr->a_vals[last].bv_val; last++ );
484 } else if ( attr->a_desc == slap_schema.si_ad_objectClass
485 || attr->a_desc == slap_schema.si_ad_structuralObjectClass ) {
486 for ( bv = attr->a_vals; bv->bv_val; bv++ ) {
487 ldap_back_map(&li->rwmap.rwm_oc, bv, &mapped,
489 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0') {
490 LBER_FREE(bv->bv_val);
494 *bv = attr->a_vals[last];
495 attr->a_vals[last].bv_val = NULL;
498 } else if ( mapped.bv_val != bv->bv_val ) {
500 * FIXME: after LBER_FREEing
501 * the value is replaced by
504 LBER_FREE(bv->bv_val);
505 ber_dupbv( bv, &mapped );
510 * It is necessary to try to rewrite attributes with
511 * dn syntax because they might be used in ACLs as
512 * members of groups; since ACLs are applied to the
513 * rewritten stuff, no dn-based subject clause could
514 * be used at the ldap backend side (see
515 * http://www.OpenLDAP.org/faq/data/cache/452.html)
516 * The problem can be overcome by moving the dn-based
517 * ACLs to the target directory server, and letting
518 * everything pass thru the ldap backend.
520 } else if ( attr->a_desc->ad_type->sat_syntax ==
521 slap_schema.si_syn_distinguishedName ) {
522 ldap_dnattr_result_rewrite( &dc, attr->a_vals );
526 if ( normalize && last && attr->a_desc->ad_type->sat_equality &&
527 attr->a_desc->ad_type->sat_equality->smr_normalize ) {
530 attr->a_nvals = ch_malloc((last+1)*sizeof(struct berval));
531 for (i=0; i<last; i++) {
532 attr->a_desc->ad_type->sat_equality->smr_normalize(
533 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
534 attr->a_desc->ad_type->sat_syntax,
535 attr->a_desc->ad_type->sat_equality,
536 &attr->a_vals[i], &attr->a_nvals[i],
539 attr->a_nvals[i].bv_val = NULL;
540 attr->a_nvals[i].bv_len = 0;
542 attr->a_nvals = attr->a_vals;
545 attrp = &attr->a_next;
547 /* make sure it's free'able */
548 if (!private && ent->e_name.bv_val == bdn->bv_val)
549 ber_dupbv( &ent->e_name, bdn );
553 /* return 0 IFF we can retrieve the entry with ndn
560 AttributeDescription *at,
565 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
568 struct berval mapped = { 0, NULL }, bdn, mdn;
569 LDAPMessage *result = NULL, *e = NULL;
576 /* Tell getconn this is a privileged op */
577 is_oc = op->o_do_not_cache;
578 op->o_do_not_cache = 1;
579 lc = ldap_back_getconn(op, &rs);
582 if ( !lc || !ldap_back_dobind(lc, op, &rs) ) {
583 op->o_do_not_cache = is_oc;
587 op->o_do_not_cache = is_oc;
591 * Rewrite the search base, if required
593 dc.rwmap = &li->rwmap;
594 #ifdef ENABLE_REWRITE
595 dc.conn = op->o_conn;
597 dc.ctx = "searchBase";
602 if ( ldap_back_dn_massage( &dc, ndn, &mdn ) ) {
606 ldap_back_map(&li->rwmap.rwm_at, &at->ad_cname, &mapped, BACKLDAP_MAP);
607 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0') {
612 is_oc = (strcasecmp("objectclass", mapped.bv_val) == 0);
614 gattr[0] = "objectclass";
615 gattr[1] = mapped.bv_val;
618 gattr[0] = mapped.bv_val;
623 ldap_back_map(&li->rwmap.rwm_oc, &oc->soc_cname, &mapped,
625 filter = ch_malloc(sizeof("(objectclass=)") + mapped.bv_len);
626 ptr = lutil_strcopy(filter, "(objectclass=");
627 ptr = lutil_strcopy(ptr, mapped.bv_val);
632 if (ldap_search_ext_s(lc->ld, mdn.bv_val, LDAP_SCOPE_BASE, filter,
633 gattr, 0, NULL, NULL, LDAP_NO_LIMIT,
634 LDAP_NO_LIMIT, &result) != LDAP_SUCCESS)
639 if ((e = ldap_first_entry(lc->ld, result)) == NULL) {
643 *ent = ch_calloc(1,sizeof(Entry));
645 rc = ldap_build_entry(op, e, *ent, &bdn, LDAP_BUILD_ENTRY_NORMALIZE);
647 if (rc != LDAP_SUCCESS) {
654 ldap_msgfree(result);
661 if ( mdn.bv_val != ndn->bv_val ) {
662 ch_free( mdn.bv_val );