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"
53 static struct berval dummy = { 0, NULL };
60 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
64 int count, rc = 0, msgid;
66 char **mapped_attrs = NULL;
68 struct berval mfilter = { 0, NULL };
69 struct slap_limits_set *limit = NULL;
72 lc = ldap_back_getconn(li, op, rs);
78 * FIXME: in case of values return filter, we might want
79 * to map attrs and maybe rewrite value
81 if ( !ldap_back_dobind( li, lc, op, rs ) ) {
85 /* if not root, get appropriate limits */
86 if ( be_isroot( op->o_bd, &op->o_ndn ) ) {
89 ( void ) get_limits( op->o_bd, &op->o_ndn, &limit );
92 /* if no time limit requested, rely on remote server limits */
93 /* if requested limit higher than hard limit, abort */
94 if ( !isroot && op->oq_search.rs_tlimit > limit->lms_t_hard ) {
95 /* no hard limit means use soft instead */
96 if ( limit->lms_t_hard == 0
97 && limit->lms_t_soft > -1
98 && op->oq_search.rs_tlimit > limit->lms_t_soft ) {
99 op->oq_search.rs_tlimit = limit->lms_t_soft;
101 /* positive hard limit means abort */
102 } else if ( limit->lms_t_hard > 0 ) {
103 rs->sr_err = LDAP_ADMINLIMIT_EXCEEDED;
104 send_ldap_result( op, rs );
109 /* negative hard limit means no limit */
112 /* if no size limit requested, rely on remote server limits */
113 /* if requested limit higher than hard limit, abort */
114 if ( !isroot && op->oq_search.rs_slimit > limit->lms_s_hard ) {
115 /* no hard limit means use soft instead */
116 if ( limit->lms_s_hard == 0
117 && limit->lms_s_soft > -1
118 && op->oq_search.rs_slimit > limit->lms_s_soft ) {
119 op->oq_search.rs_slimit = limit->lms_s_soft;
121 /* positive hard limit means abort */
122 } else if ( limit->lms_s_hard > 0 ) {
123 rs->sr_err = LDAP_ADMINLIMIT_EXCEEDED;
124 send_ldap_result( op, rs );
129 /* negative hard limit means no limit */
132 /* should we check return values? */
133 if (op->oq_search.rs_deref != -1)
134 ldap_set_option( lc->ld, LDAP_OPT_DEREF, (void *)&op->oq_search.rs_deref);
135 if (op->oq_search.rs_tlimit != -1) {
136 tv.tv_sec = op->oq_search.rs_tlimit;
143 * Rewrite the search base, if required
145 #ifdef ENABLE_REWRITE
146 switch ( rewrite_session( li->rwinfo, "searchBase",
147 op->o_req_dn.bv_val, op->o_conn, &mbase.bv_val ) ) {
148 case REWRITE_REGEXEC_OK:
149 if ( mbase.bv_val == NULL ) {
150 mbase = op->o_req_dn;
153 LDAP_LOG( BACK_LDAP, DETAIL1,
154 "[rw] searchBase: \"%s\" -> \"%s\"\n",
155 op->o_req_dn.bv_val, mbase.bv_val, 0 );
156 #else /* !NEW_LOGGING */
157 Debug( LDAP_DEBUG_ARGS, "rw> searchBase: \"%s\" -> \"%s\"\n%s",
158 op->o_req_dn.bv_val, mbase.bv_val, "" );
159 #endif /* !NEW_LOGGING */
162 case REWRITE_REGEXEC_UNWILLING:
163 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
164 "Operation not allowed" );
168 case REWRITE_REGEXEC_ERR:
169 send_ldap_error( op, rs, LDAP_OTHER,
175 #else /* !ENABLE_REWRITE */
176 ldap_back_dn_massage( li, &op->o_req_dn, &mbase, 0, 1 );
177 #endif /* !ENABLE_REWRITE */
179 #ifdef ENABLE_REWRITE
180 rc = ldap_back_filter_map_rewrite_( li->rwinfo, op->o_conn,
181 &li->at_map, &li->oc_map, op->oq_search.rs_filter, &mfilter,
183 #else /* ! ENABLE_REWRITE */
184 rc = ldap_back_filter_map_rewrite_( &li->at_map, &li->oc_map,
185 op->oq_search.rs_filter, &mfilter, BACKLDAP_MAP );
186 #endif /* ! ENABLE_REWRITE */
193 mapped_attrs = ldap_back_map_attrs(&li->at_map, op->oq_search.rs_attrs, BACKLDAP_MAP);
194 if ( mapped_attrs == NULL && op->oq_search.rs_attrs) {
195 for (count=0; op->oq_search.rs_attrs[count].an_name.bv_val; count++);
196 mapped_attrs = ch_malloc( (count+1) * sizeof(char *));
197 for (count=0; op->oq_search.rs_attrs[count].an_name.bv_val; count++) {
198 mapped_attrs[count] = op->oq_search.rs_attrs[count].an_name.bv_val;
200 mapped_attrs[count] = NULL;
203 rc = ldap_search_ext(lc->ld, mbase.bv_val, op->oq_search.rs_scope, mfilter.bv_val,
204 mapped_attrs, op->oq_search.rs_attrsonly, op->o_ctrls, NULL, tv.tv_sec ? &tv
205 : NULL, op->oq_search.rs_slimit, &msgid);
206 if ( rc != LDAP_SUCCESS ) {
208 rc = ldap_back_op_result(li, lc, op, rs, msgid, rc, 0);
212 /* We pull apart the ber result, stuff it into a slapd entry, and
213 * let send_search_entry stuff it back into ber format. Slow & ugly,
214 * but this is necessary for version matching, and for ACL processing.
217 for ( rc=0; rc != -1; rc = ldap_result(lc->ld, msgid, 0, &tv, &res))
219 /* check for abandon */
221 ldap_abandon(lc->ld, msgid);
229 ldap_pvt_thread_yield();
231 } else if (rc == LDAP_RES_SEARCH_ENTRY) {
234 e = ldap_first_entry(lc->ld,res);
235 if ( ldap_build_entry(op, e, &ent, &bdn, 1) == LDAP_SUCCESS ) {
238 rs->sr_attrs = op->oq_search.rs_attrs;
239 send_search_entry( op, rs );
240 while (ent.e_attrs) {
242 ent.e_attrs = a->a_next;
243 if (a->a_vals != &dummy)
244 ber_bvarray_free(a->a_vals);
248 if ( ent.e_dn && ( ent.e_dn != bdn.bv_val ) )
255 } else if ( rc == LDAP_RES_SEARCH_REFERENCE ) {
256 char **references = NULL;
259 rc = ldap_parse_reference( lc->ld, res,
260 &references, &rs->sr_ctrls, 1 );
262 if ( rc != LDAP_SUCCESS ) {
266 if ( references == NULL ) {
270 for ( cnt = 0; references[ cnt ]; cnt++ )
273 rs->sr_ref = ch_calloc( cnt + 1, sizeof( struct berval ) );
275 for ( cnt = 0; references[ cnt ]; cnt++ ) {
276 rs->sr_ref[ cnt ].bv_val = references[ cnt ];
277 rs->sr_ref[ cnt ].bv_len = strlen( references[ cnt ] );
280 /* ignore return value by now */
281 ( void )send_search_reference( op, rs );
285 ldap_value_free( references );
286 ch_free( rs->sr_ref );
290 if ( rs->sr_ctrls ) {
291 ldap_controls_free( rs->sr_ctrls );
296 rc = ldap_parse_result(lc->ld, res, &rs->sr_err, &match,
297 (char **)&rs->sr_text, NULL, NULL, 1);
298 if (rc != LDAP_SUCCESS ) rs->sr_err = rc;
299 rs->sr_err = ldap_back_map_result(rs->sr_err);
308 #ifdef ENABLE_REWRITE
310 * Rewrite the matched portion of the search base, if required
312 if ( match != NULL ) {
313 switch ( rewrite_session( li->rwinfo, "matchedDn",
314 match, op->o_conn, (char **)&rs->sr_matched ) ) {
315 case REWRITE_REGEXEC_OK:
316 if ( rs->sr_matched == NULL ) {
317 rs->sr_matched = ( char * )match;
320 LDAP_LOG( BACK_LDAP, DETAIL1,
321 "[rw] matchedDn:" " \"%s\" -> \"%s\"\n", match, rs->sr_matched, 0 );
322 #else /* !NEW_LOGGING */
323 Debug( LDAP_DEBUG_ARGS, "rw> matchedDn:"
324 " \"%s\" -> \"%s\"\n%s",
325 match, rs->sr_matched, "" );
326 #endif /* !NEW_LOGGING */
329 case REWRITE_REGEXEC_UNWILLING:
331 case REWRITE_REGEXEC_ERR:
332 /* FIXME: no error, but no matched ... */
333 rs->sr_matched = NULL;
337 #else /* !ENABLE_REWRITE */
338 if ( match != NULL ) {
339 struct berval dn, mdn;
341 ber_str2bv(match, 0, 0, &dn);
342 ldap_back_dn_massage(li, &dn, &mdn, 0, 0);
343 rs->sr_matched = mdn.bv_val;
345 #endif /* !ENABLE_REWRITE */
346 if ( rs->sr_v2ref ) {
347 rs->sr_err = LDAP_REFERRAL;
349 send_ldap_result( op, rs );
353 if ( rs->sr_matched != match ) {
354 free( (char *)rs->sr_matched );
356 rs->sr_matched = NULL;
360 LDAP_FREE( (char *)rs->sr_text );
363 if ( mapped_attrs ) {
364 ch_free( mapped_attrs );
366 if ( mfilter.bv_val != op->oq_search.rs_filterstr.bv_val ) {
367 ch_free( mfilter.bv_val );
369 if ( mbase.bv_val != op->o_req_dn.bv_val ) {
370 free( mbase.bv_val );
385 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
386 struct berval a, mapped;
387 BerElement ber = *e->lm_ber;
388 Attribute *attr, **attrp;
392 if ( ber_scanf( &ber, "{m{", bdn ) == LBER_ERROR ) {
393 return LDAP_DECODING_ERROR;
395 #ifdef ENABLE_REWRITE
398 * Rewrite the dn of the result, if needed
400 switch ( rewrite_session( li->rwinfo, "searchResult",
401 bdn->bv_val, op->o_conn,
402 &ent->e_name.bv_val ) ) {
403 case REWRITE_REGEXEC_OK:
404 if ( ent->e_name.bv_val == NULL ) {
408 LDAP_LOG( BACK_LDAP, DETAIL1,
409 "[rw] searchResult: \"%s\"" " -> \"%s\"\n",
410 bdn->bv_val, ent->e_dn, 0 );
411 #else /* !NEW_LOGGING */
412 Debug( LDAP_DEBUG_ARGS, "rw> searchResult: \"%s\""
413 " -> \"%s\"\n%s", bdn->bv_val, ent->e_dn, "" );
414 #endif /* !NEW_LOGGING */
415 ent->e_name.bv_len = strlen( ent->e_name.bv_val );
419 case REWRITE_REGEXEC_ERR:
420 case REWRITE_REGEXEC_UNWILLING:
423 #else /* !ENABLE_REWRITE */
424 ldap_back_dn_massage( li, bdn, &ent->e_name, 0, 0 );
425 #endif /* !ENABLE_REWRITE */
428 * Note: this may fail if the target host(s) schema differs
429 * from the one known to the meta, and a DN with unknown
430 * attributes is returned.
432 * FIXME: should we log anything, or delegate to dnNormalize2?
434 if ( dnNormalize2( NULL, &ent->e_name, &ent->e_nname ) != LDAP_SUCCESS ) {
435 return LDAP_INVALID_DN_SYNTAX;
441 attrp = &ent->e_attrs;
443 while ( ber_scanf( &ber, "{m", &a ) != LBER_ERROR ) {
444 ldap_back_map(&li->at_map, &a, &mapped, BACKLDAP_REMAP);
445 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0')
447 attr = (Attribute *)ch_malloc( sizeof(Attribute) );
453 if (slap_bv2ad(&mapped, &attr->a_desc, &text) != LDAP_SUCCESS) {
454 if (slap_bv2undef_ad(&mapped, &attr->a_desc, &text)
457 LDAP_LOG( BACK_LDAP, DETAIL1,
458 "slap_bv2undef_ad(%s): %s\n", mapped.bv_val, text, 0 );
459 #else /* !NEW_LOGGING */
460 Debug( LDAP_DEBUG_ANY,
461 "slap_bv2undef_ad(%s): "
462 "%s\n%s", mapped.bv_val, text, "" );
463 #endif /* !NEW_LOGGING */
469 /* no subschemaSubentry */
470 if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry ) {
474 * We eat target's subschemaSubentry because
475 * a search for this value is likely not
476 * to resolve to the appropriate backend;
477 * later, the local subschemaSubentry is
480 ber_skip_tag( &ber, &len );
486 if ( ber_scanf( &ber, "[W]", &attr->a_vals ) == LBER_ERROR
487 || attr->a_vals == NULL ) {
489 * Note: attr->a_vals can be null when using
490 * values result filter
493 attr->a_vals = &dummy;
495 attr->a_vals = ch_malloc(sizeof(struct berval));
496 attr->a_vals->bv_val = NULL;
497 attr->a_vals->bv_len = 0;
499 } else if ( attr->a_desc == slap_schema.si_ad_objectClass
500 || attr->a_desc == slap_schema.si_ad_structuralObjectClass ) {
503 for ( last = 0; attr->a_vals[last].bv_val; last++ );
505 for ( bv = attr->a_vals; bv->bv_val; bv++ ) {
506 ldap_back_map(&li->oc_map, bv, &mapped,
508 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0') {
509 LBER_FREE(bv->bv_val);
513 *bv = attr->a_vals[last];
514 attr->a_vals[last].bv_val = NULL;
517 } else if ( mapped.bv_val != bv->bv_val ) {
519 * FIXME: after LBER_FREEing
520 * the value is replaced by
523 LBER_FREE(bv->bv_val);
524 ber_dupbv( bv, &mapped );
529 * It is necessary to try to rewrite attributes with
530 * dn syntax because they might be used in ACLs as
531 * members of groups; since ACLs are applied to the
532 * rewritten stuff, no dn-based subject clause could
533 * be used at the ldap backend side (see
534 * http://www.OpenLDAP.org/faq/data/cache/452.html)
535 * The problem can be overcome by moving the dn-based
536 * ACLs to the target directory server, and letting
537 * everything pass thru the ldap backend.
539 } else if ( strcmp( attr->a_desc->ad_type->sat_syntax->ssyn_oid,
540 SLAPD_DN_SYNTAX ) == 0 ) {
543 for ( last = 0; attr->a_vals[last].bv_val; last++ );
545 for ( bv = attr->a_vals; bv->bv_val; bv++ ) {
546 struct berval newval;
548 #ifdef ENABLE_REWRITE
549 switch ( rewrite_session( li->rwinfo,
554 case REWRITE_REGEXEC_OK:
556 if ( newval.bv_val == NULL ) {
559 newval.bv_len = strlen( newval.bv_val );
561 LDAP_LOG( BACK_LDAP, DETAIL1,
562 "[rw] searchResult on attr=%s: \"%s\" -> \"%s\"\n",
563 attr->a_desc->ad_type->sat_cname.bv_val,
564 bv->bv_val, newval.bv_val );
565 #else /* !NEW_LOGGING */
566 Debug( LDAP_DEBUG_ARGS,
567 "rw> searchResult on attr=%s: \"%s\" -> \"%s\"\n",
568 attr->a_desc->ad_type->sat_cname.bv_val,
569 bv->bv_val, newval.bv_val );
570 #endif /* !NEW_LOGGING */
575 case REWRITE_REGEXEC_UNWILLING:
576 LBER_FREE(bv->bv_val);
580 *bv = attr->a_vals[last];
581 attr->a_vals[last].bv_val = NULL;
585 case REWRITE_REGEXEC_ERR:
587 * FIXME: better give up,
589 * or leave it untouched?
593 #else /* !ENABLE_REWRITE */
594 ldap_back_dn_massage( li, bv, &newval, 0, 0 );
595 if ( bv->bv_val != newval.bv_val ) {
596 LBER_FREE( bv->bv_val );
599 #endif /* !ENABLE_REWRITE */
606 attr->a_nvals = attr->a_vals;
609 attrp = &attr->a_next;
611 /* make sure it's free'able */
612 if (!private && ent->e_name.bv_val == bdn->bv_val)
613 ber_dupbv( &ent->e_name, bdn );
617 /* return 0 IFF we can retrieve the entry with ndn
624 AttributeDescription *at,
629 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
632 struct berval mapped = { 0, NULL }, bdn;
633 LDAPMessage *result = NULL, *e = NULL;
639 ldap_back_map(&li->at_map, &at->ad_cname, &mapped, BACKLDAP_MAP);
640 if (mapped.bv_val == NULL || mapped.bv_val[0] == '\0') {
644 /* Tell getconn this is a privileged op */
645 is_oc = op->o_do_not_cache;
646 op->o_do_not_cache = 1;
647 lc = ldap_back_getconn(li, op, &rs);
650 if ( !lc || !ldap_back_dobind(li, lc, op, &rs) ) {
651 op->o_do_not_cache = is_oc;
655 op->o_do_not_cache = is_oc;
658 is_oc = (strcasecmp("objectclass", mapped.bv_val) == 0);
660 gattr[0] = "objectclass";
661 gattr[1] = mapped.bv_val;
664 gattr[0] = mapped.bv_val;
669 filter = ch_malloc(sizeof("(objectclass=)" + oc->soc_cname.bv_len));
670 ptr = lutil_strcopy(filter, "(objectclass=");
671 ptr = lutil_strcopy(ptr, oc->soc_cname.bv_val);
675 filter = "(objectclass=*)";
678 if (ldap_search_ext_s(lc->ld, ndn->bv_val, LDAP_SCOPE_BASE, filter,
679 gattr, 0, NULL, NULL, LDAP_NO_LIMIT,
680 LDAP_NO_LIMIT, &result) != LDAP_SUCCESS)
685 if ((e = ldap_first_entry(lc->ld, result)) == NULL) {
689 *ent = ch_malloc(sizeof(Entry));
691 rc = ldap_build_entry(op, e, *ent, &bdn, 0);
693 if (rc != LDAP_SUCCESS) {
700 ldap_msgfree(result);