1 /* search.c - ldap backend search function */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1999-2005 The OpenLDAP Foundation.
6 * Portions Copyright 1999-2003 Howard Chu.
7 * Portions Copyright 2000-2003 Pierangelo Masarati.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
14 * A copy of this license is available in the file LICENSE in the
15 * top-level directory of the distribution or, alternatively, at
16 * <http://www.OpenLDAP.org/license.html>.
19 * This work was initially developed by the Howard Chu for inclusion
20 * in OpenLDAP Software and subsequently enhanced by Pierangelo
28 #include <ac/socket.h>
29 #include <ac/string.h>
33 #include "back-ldap.h"
34 #undef ldap_debug /* silence a warning in ldap-int.h */
35 #include "../../../libraries/libldap/ldap-int.h"
40 ldap_build_entry( Operation *op, LDAPMessage *e, Entry *ent,
44 * Quick'n'dirty rewrite of filter in case of error, to deal with
45 * <draft-zeilenga-ldap-t-f>.
48 ldap_back_munge_filter(
50 struct berval *filter )
52 struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
57 Debug( LDAP_DEBUG_ARGS, "=> ldap_back_munge_filter \"%s\"\n",
58 filter->bv_val, 0, 0 );
60 for ( ptr = strstr( filter->bv_val, "(?=" );
62 ptr = strstr( ptr, "(?=" ) )
65 bv_true = BER_BVC( "(?=true)" ),
66 bv_false = BER_BVC( "(?=false)" ),
67 bv_undefined = BER_BVC( "(?=undefined)" ),
68 bv_t = BER_BVC( "(&)" ),
69 bv_f = BER_BVC( "(|)" ),
70 bv_T = BER_BVC( "(objectClass=*)" ),
71 bv_F = BER_BVC( "(!(objectClass=*))" );
72 struct berval *oldbv = NULL,
74 oldfilter = BER_BVNULL;
76 if ( strncmp( ptr, bv_true.bv_val, bv_true.bv_len ) == 0 ) {
78 if ( li->flags & LDAP_BACK_F_SUPPORT_T_F ) {
85 } else if ( strncmp( ptr, bv_false.bv_val, bv_false.bv_len ) == 0 )
88 if ( li->flags & LDAP_BACK_F_SUPPORT_T_F ) {
95 } else if ( strncmp( ptr, bv_undefined.bv_val, bv_undefined.bv_len ) == 0 )
97 oldbv = &bv_undefined;
106 if ( newbv->bv_len > oldbv->bv_len ) {
107 filter->bv_len += newbv->bv_len - oldbv->bv_len;
108 if ( filter->bv_val == op->ors_filterstr.bv_val ) {
109 filter->bv_val = op->o_tmpalloc( filter->bv_len + 1,
112 AC_MEMCPY( filter->bv_val, op->ors_filterstr.bv_val,
113 op->ors_filterstr.bv_len + 1 );
116 filter->bv_val = op->o_tmprealloc( filter->bv_val,
117 filter->bv_len + 1, op->o_tmpmemctx );
120 ptr = filter->bv_val + ( ptr - oldfilter.bv_val );
123 AC_MEMCPY( &ptr[ newbv->bv_len ],
124 &ptr[ oldbv->bv_len ],
125 oldfilter.bv_len - ( ptr - filter->bv_val ) - oldbv->bv_len + 1 );
126 AC_MEMCPY( ptr, newbv->bv_val, newbv->bv_len );
128 ptr += newbv->bv_len;
133 Debug( LDAP_DEBUG_ARGS, "<= ldap_back_munge_filter \"%s\" (%d)\n",
134 filter->bv_val, gotit, 0 );
151 struct berval match = BER_BVNULL,
155 int dontfreetext = 0;
157 LDAPControl **ctrls = NULL;
159 lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
160 if ( !lc || !ldap_back_dobind( lc, op, rs, LDAP_BACK_SENDERR ) ) {
165 * FIXME: in case of values return filter, we might want
166 * to map attrs and maybe rewrite value
169 /* should we check return values? */
170 if ( op->ors_deref != -1 ) {
171 ldap_set_option( lc->lc_ld, LDAP_OPT_DEREF,
172 (void *)&op->ors_deref );
175 if ( op->ors_tlimit != SLAP_NO_LIMIT ) {
176 tv.tv_sec = op->ors_tlimit;
178 stoptime = op->o_time + op->ors_tlimit;
184 if ( op->ors_attrs ) {
185 for ( i = 0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++ )
186 /* just count attrs */ ;
188 attrs = ch_malloc( ( i + 1 )*sizeof( char * ) );
189 if ( attrs == NULL ) {
190 rs->sr_err = LDAP_NO_MEMORY;
195 for ( i = 0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++ ) {
196 attrs[ i ] = op->ors_attrs[i].an_name.bv_val;
202 rc = ldap_back_proxy_authz_ctrl( lc, op, rs, &ctrls );
203 if ( rc != LDAP_SUCCESS ) {
208 /* deal with <draft-zeilenga-ldap-t-f> filters */
209 filter = op->ors_filterstr;
211 rs->sr_err = ldap_search_ext( lc->lc_ld, op->o_req_ndn.bv_val,
212 op->ors_scope, filter.bv_val,
213 attrs, op->ors_attrsonly, ctrls, NULL,
214 tv.tv_sec ? &tv : NULL,
215 op->ors_slimit, &msgid );
217 if ( rs->sr_err != LDAP_SUCCESS ) {
219 switch ( rs->sr_err ) {
220 case LDAP_SERVER_DOWN:
223 if ( ldap_back_retry( lc, op, rs, LDAP_BACK_DONTSEND ) ) {
227 rc = ldap_back_op_result( lc, op, rs, msgid, LDAP_BACK_DONTSEND );
228 ldap_back_freeconn( op, lc );
232 case LDAP_FILTER_ERROR:
233 if ( ldap_back_munge_filter( op, &filter ) ) {
237 /* invalid filters return success with no data */
238 rs->sr_err = LDAP_SUCCESS;
243 rs->sr_err = slap_map_api2result( rs );
249 /* We pull apart the ber result, stuff it into a slapd entry, and
250 * let send_search_entry stuff it back into ber format. Slow & ugly,
251 * but this is necessary for version matching, and for ACL processing.
254 for ( rc = 0; rc != -1; rc = ldap_result( lc->lc_ld, msgid, 0, &tv, &res ) )
256 /* check for abandon */
257 if ( op->o_abandon ) {
261 ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
269 ldap_pvt_thread_yield();
271 /* check time limit */
272 if ( op->ors_tlimit != SLAP_NO_LIMIT
273 && slap_get_time() > stoptime )
275 ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
276 rc = rs->sr_err = LDAP_TIMELIMIT_EXCEEDED;
280 } else if ( rc == LDAP_RES_SEARCH_ENTRY ) {
282 struct berval bdn = BER_BVNULL;
287 e = ldap_first_entry( lc->lc_ld, res );
288 rc = ldap_build_entry( op, e, &ent, &bdn );
289 if ( rc == LDAP_SUCCESS ) {
291 rs->sr_attrs = op->ors_attrs;
292 rs->sr_operational_attrs = NULL;
294 abort = send_search_entry( op, rs );
295 if ( !BER_BVISNULL( &ent.e_name ) ) {
296 assert( ent.e_name.bv_val != bdn.bv_val );
297 free( ent.e_name.bv_val );
298 BER_BVZERO( &ent.e_name );
300 if ( !BER_BVISNULL( &ent.e_nname ) ) {
301 free( ent.e_nname.bv_val );
302 BER_BVZERO( &ent.e_nname );
308 ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
312 } else if ( rc == LDAP_RES_SEARCH_REFERENCE ) {
313 char **references = NULL;
317 rc = ldap_parse_reference( lc->lc_ld, res,
318 &references, &rs->sr_ctrls, 1 );
320 if ( rc != LDAP_SUCCESS ) {
324 if ( references == NULL ) {
328 for ( cnt = 0; references[ cnt ]; cnt++ )
331 rs->sr_ref = ch_calloc( cnt + 1, sizeof( struct berval ) );
333 for ( cnt = 0; references[ cnt ]; cnt++ ) {
334 ber_str2bv( references[ cnt ], 0, 0, &rs->sr_ref[ cnt ] );
337 /* ignore return value by now */
338 ( void )send_search_reference( op, rs );
342 ldap_value_free( references );
343 ch_free( rs->sr_ref );
347 if ( rs->sr_ctrls ) {
348 ldap_controls_free( rs->sr_ctrls );
353 char **references = NULL;
355 rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
356 &match.bv_val, (char **)&rs->sr_text,
357 &references, &rs->sr_ctrls, 1 );
358 if ( rc != LDAP_SUCCESS ) {
361 rs->sr_err = slap_map_api2result( rs );
366 for ( cnt = 0; references[ cnt ]; cnt++ )
369 rs->sr_ref = ch_calloc( cnt + 1, sizeof( struct berval ) );
371 for ( cnt = 0; references[ cnt ]; cnt++ ) {
372 ber_str2bv( references[ cnt ], 0, 1, &rs->sr_ref[ cnt ] );
377 ldap_value_free( references );
389 if ( ldap_back_retry( lc, op, rs, LDAP_BACK_SENDERR ) ) {
393 rs->sr_err = LDAP_SERVER_DOWN;
398 * Rewrite the matched portion of the search base, if required
400 if ( !BER_BVISNULL( &match ) && !BER_BVISEMPTY( &match ) ) {
401 rs->sr_matched = match.bv_val;
403 if ( rs->sr_v2ref ) {
404 rs->sr_err = LDAP_REFERRAL;
408 if ( rc != SLAPD_ABANDON ) {
409 send_ldap_result( op, rs );
412 (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
414 if ( rs->sr_ctrls ) {
415 ldap_controls_free( rs->sr_ctrls );
419 if ( match.bv_val ) {
420 rs->sr_matched = NULL;
421 LDAP_FREE( match.bv_val );
424 if ( !BER_BVISNULL( &filter ) && filter.bv_val != op->ors_filterstr.bv_val ) {
425 op->o_tmpfree( filter.bv_val, op->o_tmpmemctx );
429 if ( !dontfreetext ) {
430 LDAP_FREE( (char *)rs->sr_text );
436 ber_bvarray_free( rs->sr_ref );
445 ldap_back_release_conn( op, rs, lc );
459 BerElement ber = *e->lm_ber;
460 Attribute *attr, **attrp;
464 /* safe assumptions ... */
465 assert( ent != NULL );
466 BER_BVZERO( &ent->e_bv );
468 if ( ber_scanf( &ber, "{m{", bdn ) == LBER_ERROR ) {
469 return LDAP_DECODING_ERROR;
473 * Note: this may fail if the target host(s) schema differs
474 * from the one known to the meta, and a DN with unknown
475 * attributes is returned.
477 * FIXME: should we log anything, or delegate to dnNormalize?
479 /* Note: if the distinguished values or the naming attributes
480 * change, should we massage them as well?
482 if ( dnPrettyNormal( NULL, bdn, &ent->e_name, &ent->e_nname,
483 op->o_tmpmemctx ) != LDAP_SUCCESS )
485 return LDAP_INVALID_DN_SYNTAX;
488 attrp = &ent->e_attrs;
490 while ( ber_scanf( &ber, "{m", &a ) != LBER_ERROR ) {
492 slap_syntax_validate_func *validate;
493 slap_syntax_transform_func *pretty;
495 attr = (Attribute *)ch_malloc( sizeof( Attribute ) );
496 if ( attr == NULL ) {
502 if ( slap_bv2ad( &a, &attr->a_desc, &text )
505 if ( slap_bv2undef_ad( &a, &attr->a_desc, &text )
508 Debug( LDAP_DEBUG_ANY,
509 "slap_bv2undef_ad(%s): %s\n",
516 /* no subschemaSubentry */
517 if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry ) {
520 * We eat target's subschemaSubentry because
521 * a search for this value is likely not
522 * to resolve to the appropriate backend;
523 * later, the local subschemaSubentry is
526 ( void )ber_scanf( &ber, "x" /* [W] */ );
532 if ( ber_scanf( &ber, "[W]", &attr->a_vals ) == LBER_ERROR
533 || attr->a_vals == NULL )
536 * Note: attr->a_vals can be null when using
537 * values result filter
539 attr->a_vals = (struct berval *)&slap_dummy_bv;
543 for ( last = 0; !BER_BVISNULL( &attr->a_vals[ last ] ); last++ )
544 /* just count vals */ ;
547 validate = attr->a_desc->ad_type->sat_syntax->ssyn_validate;
548 pretty = attr->a_desc->ad_type->sat_syntax->ssyn_pretty;
550 if ( !validate && !pretty ) {
551 attr->a_nvals = NULL;
556 for ( i = 0; i < last; i++ ) {
561 rc = pretty( attr->a_desc->ad_type->sat_syntax,
562 &attr->a_vals[i], &pval, NULL );
565 rc = validate( attr->a_desc->ad_type->sat_syntax,
569 if ( rc != LDAP_SUCCESS ) {
570 /* check if, by chance, it's an undefined objectClass */
571 if ( attr->a_desc == slap_schema.si_ad_objectClass &&
572 oc_bvfind_undef( &attr->a_vals[i] ) != NULL )
574 ber_dupbv( &pval, &attr->a_vals[i] );
577 attr->a_nvals = NULL;
584 LBER_FREE( attr->a_vals[i].bv_val );
585 attr->a_vals[i] = pval;
589 if ( last && attr->a_desc->ad_type->sat_equality &&
590 attr->a_desc->ad_type->sat_equality->smr_normalize )
592 attr->a_nvals = ch_malloc( ( last + 1 )*sizeof( struct berval ) );
593 for ( i = 0; i < last; i++ ) {
597 * check that each value is valid per syntax
598 * and pretty if appropriate
600 rc = attr->a_desc->ad_type->sat_equality->smr_normalize(
601 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
602 attr->a_desc->ad_type->sat_syntax,
603 attr->a_desc->ad_type->sat_equality,
604 &attr->a_vals[i], &attr->a_nvals[i],
607 if ( rc != LDAP_SUCCESS ) {
608 BER_BVZERO( &attr->a_nvals[i] );
613 BER_BVZERO( &attr->a_nvals[i] );
616 attr->a_nvals = attr->a_vals;
619 attrp = &attr->a_next;
627 /* return 0 IFF we can retrieve the entry with ndn
634 AttributeDescription *at,
643 LDAPMessage *result = NULL,
649 LDAPControl **ctrls = NULL;
651 /* Tell getconn this is a privileged op */
652 do_not_cache = op->o_do_not_cache;
653 op->o_do_not_cache = 1;
654 lc = ldap_back_getconn( op, &rs, LDAP_BACK_DONTSEND );
655 if ( !lc || !ldap_back_dobind( lc, op, &rs, LDAP_BACK_DONTSEND ) ) {
656 op->o_do_not_cache = do_not_cache;
659 op->o_do_not_cache = do_not_cache;
662 if ( oc && at != slap_schema.si_ad_objectClass ) {
663 gattr[0] = slap_schema.si_ad_objectClass->ad_cname.bv_val;
664 gattr[1] = at->ad_cname.bv_val;
668 gattr[0] = at->ad_cname.bv_val;
676 filter = ch_malloc( STRLENOF( "(objectclass=)" )
677 + oc->soc_cname.bv_len + 1 );
678 ptr = lutil_strcopy( filter, "(objectclass=" );
679 ptr = lutil_strcopy( ptr, oc->soc_cname.bv_val );
685 rc = ldap_back_proxy_authz_ctrl( lc, op, &rs, &ctrls );
686 if ( rc != LDAP_SUCCESS ) {
691 rc = ldap_search_ext_s( lc->lc_ld, ndn->bv_val, LDAP_SCOPE_BASE, filter,
692 at ? gattr : NULL, 0, ctrls, NULL,
693 LDAP_NO_LIMIT, LDAP_NO_LIMIT, &result );
694 if ( rc != LDAP_SUCCESS ) {
695 if ( rc == LDAP_SERVER_DOWN && do_retry ) {
697 if ( ldap_back_retry( lc, op, &rs, LDAP_BACK_DONTSEND ) ) {
704 e = ldap_first_entry( lc->lc_ld, result );
709 *ent = ch_calloc( 1, sizeof( Entry ) );
711 rc = ldap_build_entry( op, e, *ent, &bdn );
713 if ( rc != LDAP_SUCCESS ) {
719 (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
722 ldap_msgfree( result );
730 ldap_back_release_conn( op, &rs, lc );