]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/search.c
ITS#4450 fix from head
[openldap] / servers / slapd / back-ldap / search.c
1 /* search.c - ldap backend search function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1999-2006 The OpenLDAP Foundation.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * Portions Copyright 2000-2003 Pierangelo Masarati.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
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>.
17  */
18 /* ACKNOWLEDGEMENTS:
19  * This work was initially developed by the Howard Chu for inclusion
20  * in OpenLDAP Software and subsequently enhanced by Pierangelo
21  * Masarati.
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/socket.h>
29 #include <ac/string.h>
30 #include <ac/time.h>
31
32 #include "slap.h"
33 #include "back-ldap.h"
34 #undef ldap_debug       /* silence a warning in ldap-int.h */
35 #include "../../../libraries/libldap/ldap-int.h"
36
37 #include "lutil.h"
38
39 static int
40 ldap_build_entry( Operation *op, LDAPMessage *e, Entry *ent,
41          struct berval *bdn );
42
43 /*
44  * Quick'n'dirty rewrite of filter in case of error, to deal with
45  * <draft-zeilenga-ldap-t-f>.
46  */
47 static int
48 ldap_back_munge_filter(
49         Operation       *op,
50         struct berval   *filter )
51 {
52         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
53
54         char            *ptr;
55         int             gotit = 0;
56
57         Debug( LDAP_DEBUG_ARGS, "=> ldap_back_munge_filter \"%s\"\n",
58                         filter->bv_val, 0, 0 );
59
60         for ( ptr = strstr( filter->bv_val, "(?=" ); 
61                         ptr;
62                         ptr = strstr( ptr, "(?=" ) )
63         {
64                 static struct berval
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,
73                                 *newbv = NULL,
74                                 oldfilter = BER_BVNULL;
75
76                 if ( strncmp( ptr, bv_true.bv_val, bv_true.bv_len ) == 0 ) {
77                         oldbv = &bv_true;
78                         if ( li->li_flags & LDAP_BACK_F_SUPPORT_T_F ) {
79                                 newbv = &bv_t;
80
81                         } else {
82                                 newbv = &bv_T;
83                         }
84
85                 } else if ( strncmp( ptr, bv_false.bv_val, bv_false.bv_len ) == 0 )
86                 {
87                         oldbv = &bv_false;
88                         if ( li->li_flags & LDAP_BACK_F_SUPPORT_T_F ) {
89                                 newbv = &bv_f;
90
91                         } else {
92                                 newbv = &bv_F;
93                         }
94
95                 } else if ( strncmp( ptr, bv_undefined.bv_val, bv_undefined.bv_len ) == 0 )
96                 {
97                         oldbv = &bv_undefined;
98                         newbv = &bv_F;
99
100                 } else {
101                         gotit = 0;
102                         goto done;
103                 }
104
105                 oldfilter = *filter;
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,
110                                                 op->o_tmpmemctx );
111
112                                 AC_MEMCPY( filter->bv_val, op->ors_filterstr.bv_val,
113                                                 op->ors_filterstr.bv_len + 1 );
114
115                         } else {
116                                 filter->bv_val = op->o_tmprealloc( filter->bv_val,
117                                                 filter->bv_len + 1, op->o_tmpmemctx );
118                         }
119
120                         ptr = filter->bv_val + ( ptr - oldfilter.bv_val );
121                 }
122
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 );
127
128                 ptr += newbv->bv_len;
129                 gotit = 1;
130         }
131
132 done:;
133         Debug( LDAP_DEBUG_ARGS, "<= ldap_back_munge_filter \"%s\" (%d)\n",
134                         filter->bv_val, gotit, 0 );
135
136         return gotit;
137 }
138
139 int
140 ldap_back_search(
141                 Operation       *op,
142                 SlapReply       *rs )
143 {
144         ldapconn_t      *lc;
145         struct timeval  tv;
146         time_t          stoptime = (time_t)-1;
147         LDAPMessage     *res,
148                         *e;
149         int             rc = 0,
150                         msgid; 
151         struct berval   match = BER_BVNULL,
152                         filter = BER_BVNULL;
153         int             i;
154         char            **attrs = NULL;
155         int             freetext = 0;
156         int             do_retry = 1, dont_retry = 0;
157         LDAPControl     **ctrls = NULL;
158         /* FIXME: shouldn't this be null? */
159         const char      *save_matched = rs->sr_matched;
160
161         lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
162         if ( !lc || !ldap_back_dobind( lc, op, rs, LDAP_BACK_SENDERR ) ) {
163                 return rs->sr_err;
164         }
165
166         /*
167          * FIXME: in case of values return filter, we might want
168          * to map attrs and maybe rewrite value
169          */
170
171         /* should we check return values? */
172         if ( op->ors_deref != -1 ) {
173                 ldap_set_option( lc->lc_ld, LDAP_OPT_DEREF,
174                                 (void *)&op->ors_deref );
175         }
176
177         if ( op->ors_tlimit != SLAP_NO_LIMIT ) {
178                 tv.tv_sec = op->ors_tlimit;
179                 tv.tv_usec = 0;
180                 stoptime = op->o_time + op->ors_tlimit;
181
182         } else {
183                 LDAP_BACK_TV_SET( &tv );
184         }
185
186         if ( op->ors_attrs ) {
187                 for ( i = 0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++ )
188                         /* just count attrs */ ;
189
190                 attrs = ch_malloc( ( i + 1 )*sizeof( char * ) );
191                 if ( attrs == NULL ) {
192                         rs->sr_err = LDAP_NO_MEMORY;
193                         rc = -1;
194                         goto finish;
195                 }
196         
197                 for ( i = 0; !BER_BVISNULL( &op->ors_attrs[i].an_name ); i++ ) {
198                         attrs[ i ] = op->ors_attrs[i].an_name.bv_val;
199                 }
200                 attrs[ i ] = NULL;
201         }
202
203         ctrls = op->o_ctrls;
204         rc = ldap_back_proxy_authz_ctrl( lc, op, rs, &ctrls );
205         if ( rc != LDAP_SUCCESS ) {
206                 goto finish;
207         }
208
209         /* deal with <draft-zeilenga-ldap-t-f> filters */
210         filter = op->ors_filterstr;
211 retry:
212         rs->sr_err = ldap_search_ext( lc->lc_ld, op->o_req_dn.bv_val,
213                         op->ors_scope, filter.bv_val,
214                         attrs, op->ors_attrsonly, ctrls, NULL,
215                         tv.tv_sec ? &tv : NULL,
216                         op->ors_slimit, &msgid );
217
218         if ( rs->sr_err != LDAP_SUCCESS ) {
219                 switch ( rs->sr_err ) {
220                 case LDAP_SERVER_DOWN:
221                         if ( do_retry ) {
222                                 do_retry = 0;
223                                 if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_DONTSEND ) ) {
224                                         goto retry;
225                                 }
226                         }
227
228                         if ( lc == NULL ) {
229                                 /* reset by ldap_back_retry ... */
230                                 rs->sr_err = slap_map_api2result( rs );
231
232                         } else {
233                                 rc = ldap_back_op_result( lc, op, rs, msgid, 0, LDAP_BACK_DONTSEND );
234                         }
235                                 
236                         goto finish;
237
238                 case LDAP_FILTER_ERROR:
239                         if ( ldap_back_munge_filter( op, &filter ) ) {
240                                 goto retry;
241                         }
242
243                         /* invalid filters return success with no data */
244                         rs->sr_err = LDAP_SUCCESS;
245                         rs->sr_text = NULL;
246                         goto finish;
247                 
248                 default:
249                         rs->sr_err = slap_map_api2result( rs );
250                         rs->sr_text = NULL;
251                         goto finish;
252                 }
253         }
254
255         /* We pull apart the ber result, stuff it into a slapd entry, and
256          * let send_search_entry stuff it back into ber format. Slow & ugly,
257          * but this is necessary for version matching, and for ACL processing.
258          */
259
260         for ( rc = 0; rc != -1; rc = ldap_result( lc->lc_ld, msgid, LDAP_MSG_ONE, &tv, &res ) )
261         {
262                 /* check for abandon */
263                 if ( op->o_abandon ) {
264                         if ( rc > 0 ) {
265                                 ldap_msgfree( res );
266                         }
267                         ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
268                         rc = SLAPD_ABANDON;
269                         goto finish;
270                 }
271
272                 if ( rc == 0 ) {
273                         LDAP_BACK_TV_SET( &tv );
274                         ldap_pvt_thread_yield();
275
276                         /* check time limit */
277                         if ( op->ors_tlimit != SLAP_NO_LIMIT
278                                         && slap_get_time() > stoptime )
279                         {
280                                 ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
281                                 rc = rs->sr_err = LDAP_TIMELIMIT_EXCEEDED;
282                                 goto finish;
283                         }
284                         continue;
285
286                 } else {
287                         /* don't retry any more */
288                         dont_retry = 1;
289                 }
290
291
292                 if ( rc == LDAP_RES_SEARCH_ENTRY ) {
293                         Entry           ent = { 0 };
294                         struct berval   bdn = BER_BVNULL;
295
296                         do_retry = 0;
297
298                         e = ldap_first_entry( lc->lc_ld, res );
299                         rc = ldap_build_entry( op, e, &ent, &bdn );
300                         if ( rc == LDAP_SUCCESS ) {
301                                 rs->sr_entry = &ent;
302                                 rs->sr_attrs = op->ors_attrs;
303                                 rs->sr_operational_attrs = NULL;
304                                 rs->sr_flags = 0;
305                                 rs->sr_err = LDAP_SUCCESS;
306                                 rc = rs->sr_err = send_search_entry( op, rs );
307                                 if ( !BER_BVISNULL( &ent.e_name ) ) {
308                                         assert( ent.e_name.bv_val != bdn.bv_val );
309                                         op->o_tmpfree( ent.e_name.bv_val, op->o_tmpmemctx );
310                                         BER_BVZERO( &ent.e_name );
311                                 }
312                                 if ( !BER_BVISNULL( &ent.e_nname ) ) {
313                                         op->o_tmpfree( ent.e_nname.bv_val, op->o_tmpmemctx );
314                                         BER_BVZERO( &ent.e_nname );
315                                 }
316                                 entry_clean( &ent );
317                         }
318                         ldap_msgfree( res );
319                         if ( rc != LDAP_SUCCESS ) {
320                                 if ( rc == LDAP_UNAVAILABLE ) {
321                                         rc = rs->sr_err = LDAP_OTHER;
322                                 } else {
323                                         ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
324                                 }
325                                 goto finish;
326                         }
327
328                 } else if ( rc == LDAP_RES_SEARCH_REFERENCE ) {
329                         char            **references = NULL;
330
331                         do_retry = 0;
332                         rc = ldap_parse_reference( lc->lc_ld, res,
333                                         &references, &rs->sr_ctrls, 1 );
334
335                         if ( rc != LDAP_SUCCESS ) {
336                                 continue;
337                         }
338
339                         /* FIXME: there MUST be at least one */
340                         if ( references && references[ 0 ] && references[ 0 ][ 0 ] ) {
341                                 int             cnt;
342
343                                 for ( cnt = 0; references[ cnt ]; cnt++ )
344                                         /* NO OP */ ;
345
346                                 /* FIXME: there MUST be at least one */
347                                 rs->sr_ref = ch_malloc( ( cnt + 1 ) * sizeof( struct berval ) );
348
349                                 for ( cnt = 0; references[ cnt ]; cnt++ ) {
350                                         ber_str2bv( references[ cnt ], 0, 0, &rs->sr_ref[ cnt ] );
351                                 }
352                                 BER_BVZERO( &rs->sr_ref[ cnt ] );
353
354                                 /* ignore return value by now */
355                                 ( void )send_search_reference( op, rs );
356
357                         } else {
358                                 Debug( LDAP_DEBUG_ANY,
359                                         "%s ldap_back_search: "
360                                         "got SEARCH_REFERENCE "
361                                         "with no referrals\n",
362                                         op->o_log_prefix, 0, 0 );
363                         }
364
365                         /* cleanup */
366                         if ( references ) {
367                                 ber_memvfree( (void **)references );
368                                 ch_free( rs->sr_ref );
369                                 rs->sr_ref = NULL;
370                         }
371
372                         if ( rs->sr_ctrls ) {
373                                 ldap_controls_free( rs->sr_ctrls );
374                                 rs->sr_ctrls = NULL;
375                         }
376
377                 } else {
378                         char            **references = NULL, *err = NULL;
379
380                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
381                                         &match.bv_val, &err,
382                                         &references, &rs->sr_ctrls, 1 );
383                         if ( rc != LDAP_SUCCESS ) {
384                                 rs->sr_err = rc;
385                         }
386                         rs->sr_err = slap_map_api2result( rs );
387                         if ( err ) {
388                                 rs->sr_text = err;
389                                 freetext = 1;
390                         }
391
392                         if ( references && references[ 0 ] && references[ 0 ][ 0 ] ) {
393                                 int     cnt;
394
395                                 if ( rs->sr_err != LDAP_REFERRAL ) {
396                                         /* FIXME: error */
397                                         Debug( LDAP_DEBUG_ANY,
398                                                 "%s ldap_back_search: "
399                                                 "got referrals with %d\n",
400                                                 op->o_log_prefix,
401                                                 rs->sr_err, 0 );
402                                         rs->sr_err = LDAP_REFERRAL;
403                                 }
404
405                                 for ( cnt = 0; references[ cnt ]; cnt++ )
406                                         /* NO OP */ ;
407                                 
408                                 rs->sr_ref = ch_malloc( ( cnt + 1 ) * sizeof( struct berval ) );
409
410                                 for ( cnt = 0; references[ cnt ]; cnt++ ) {
411                                         /* duplicating ...*/
412                                         ber_str2bv( references[ cnt ], 0, 1, &rs->sr_ref[ cnt ] );
413                                 }
414                                 BER_BVZERO( &rs->sr_ref[ cnt ] );
415                         }
416
417                         if ( match.bv_val != NULL ) {
418                                 {
419                                         match.bv_len = strlen( match.bv_val );
420                                 }
421                         }
422
423                         /* cleanup */
424                         if ( references ) {
425                                 ber_memvfree( (void **)references );
426                         }
427
428                         rc = 0;
429                         break;
430                 }
431         }
432
433         if ( rc == -1 && dont_retry == 0 ) {
434                 if ( do_retry ) {
435                         do_retry = 0;
436                         if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_DONTSEND ) ) {
437                                 goto retry;
438                         }
439                 }
440                 rs->sr_err = LDAP_SERVER_DOWN;
441                 rs->sr_err = slap_map_api2result( rs );
442                 goto finish;
443         }
444
445         /*
446          * Rewrite the matched portion of the search base, if required
447          */
448         if ( !BER_BVISNULL( &match ) && !BER_BVISEMPTY( &match ) ) {
449                 struct berval   pmatch;
450
451                 if ( dnPretty( NULL, &match, &pmatch, op->o_tmpmemctx ) == LDAP_SUCCESS ) {
452                         rs->sr_matched = pmatch.bv_val;
453                         LDAP_FREE( match.bv_val );
454
455                 } else {
456                         rs->sr_matched = match.bv_val;
457                 }
458         }
459
460         if ( rs->sr_v2ref ) {
461                 rs->sr_err = LDAP_REFERRAL;
462         }
463
464 finish:;
465         if ( rc != SLAPD_ABANDON ) {
466                 send_ldap_result( op, rs );
467         }
468
469         (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
470
471         if ( rs->sr_ctrls ) {
472                 ldap_controls_free( rs->sr_ctrls );
473                 rs->sr_ctrls = NULL;
474         }
475
476         if ( rs->sr_matched != NULL && rs->sr_matched != save_matched ) {
477                 if ( rs->sr_matched != match.bv_val ) {
478                         ber_memfree_x( (char *)rs->sr_matched, op->o_tmpmemctx );
479
480                 } else {
481                         LDAP_FREE( match.bv_val );
482                 }
483                 rs->sr_matched = save_matched;
484         }
485
486         if ( !BER_BVISNULL( &filter ) && filter.bv_val != op->ors_filterstr.bv_val ) {
487                 op->o_tmpfree( filter.bv_val, op->o_tmpmemctx );
488         }
489
490         if ( rs->sr_text ) {
491                 if ( freetext ) {
492                         LDAP_FREE( (char *)rs->sr_text );
493                 }
494                 rs->sr_text = NULL;
495         }
496
497         if ( rs->sr_ref ) {
498                 ber_bvarray_free( rs->sr_ref );
499                 rs->sr_ref = NULL;
500         }
501
502         if ( attrs ) {
503                 ch_free( attrs );
504         }
505
506         if ( lc != NULL ) {
507                 ldap_back_release_conn( op, rs, lc );
508         }
509
510         return rs->sr_err;
511 }
512
513 static int
514 ldap_build_entry(
515                 Operation       *op,
516                 LDAPMessage     *e,
517                 Entry           *ent,
518                 struct berval   *bdn )
519 {
520         struct berval   a;
521         BerElement      ber = *e->lm_ber;
522         Attribute       *attr, **attrp;
523         const char      *text;
524         int             last;
525
526         /* safe assumptions ... */
527         assert( ent != NULL );
528         BER_BVZERO( &ent->e_bv );
529
530         if ( ber_scanf( &ber, "{m{", bdn ) == LBER_ERROR ) {
531                 return LDAP_DECODING_ERROR;
532         }
533
534         /*
535          * Note: this may fail if the target host(s) schema differs
536          * from the one known to the meta, and a DN with unknown
537          * attributes is returned.
538          * 
539          * FIXME: should we log anything, or delegate to dnNormalize?
540          */
541         /* Note: if the distinguished values or the naming attributes
542          * change, should we massage them as well?
543          */
544         if ( dnPrettyNormal( NULL, bdn, &ent->e_name, &ent->e_nname,
545                 op->o_tmpmemctx ) != LDAP_SUCCESS )
546         {
547                 return LDAP_INVALID_DN_SYNTAX;
548         }
549
550         attrp = &ent->e_attrs;
551
552         while ( ber_scanf( &ber, "{m", &a ) != LBER_ERROR ) {
553                 int                             i;
554                 slap_syntax_validate_func       *validate;
555                 slap_syntax_transform_func      *pretty;
556
557                 attr = (Attribute *)ch_malloc( sizeof( Attribute ) );
558                 if ( attr == NULL ) {
559                         continue;
560                 }
561                 attr->a_flags = 0;
562                 attr->a_next = 0;
563                 attr->a_desc = NULL;
564                 if ( slap_bv2ad( &a, &attr->a_desc, &text ) 
565                                 != LDAP_SUCCESS )
566                 {
567                         if ( slap_bv2undef_ad( &a, &attr->a_desc, &text,
568                                 SLAP_AD_PROXIED ) != LDAP_SUCCESS )
569                         {
570                                 Debug( LDAP_DEBUG_ANY, 
571                                         "%s ldap_build_entry: "
572                                         "slap_bv2undef_ad(%s): %s\n",
573                                         op->o_log_prefix, a.bv_val, text );
574                                 ch_free( attr );
575                                 continue;
576                         }
577                 }
578
579                 /* no subschemaSubentry */
580                 if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry
581                         || attr->a_desc == slap_schema.si_ad_entryDN )
582                 {
583
584                         /* 
585                          * We eat target's subschemaSubentry because
586                          * a search for this value is likely not
587                          * to resolve to the appropriate backend;
588                          * later, the local subschemaSubentry is
589                          * added.
590                          *
591                          * We also eat entryDN because the frontend
592                          * will reattach it without checking if already
593                          * present...
594                          */
595                         ( void )ber_scanf( &ber, "x" /* [W] */ );
596
597                         ch_free( attr );
598                         continue;
599                 }
600                 
601                 if ( ber_scanf( &ber, "[W]", &attr->a_vals ) == LBER_ERROR
602                                 || attr->a_vals == NULL )
603                 {
604                         /*
605                          * Note: attr->a_vals can be null when using
606                          * values result filter
607                          */
608                         attr->a_vals = (struct berval *)&slap_dummy_bv;
609                         last = 0;
610
611                 } else {
612                         for ( last = 0; !BER_BVISNULL( &attr->a_vals[ last ] ); last++ )
613                                 /* just count vals */ ;
614                 }
615
616                 validate = attr->a_desc->ad_type->sat_syntax->ssyn_validate;
617                 pretty = attr->a_desc->ad_type->sat_syntax->ssyn_pretty;
618
619                 if ( !validate && !pretty ) {
620                         attr->a_nvals = NULL;
621                         attr_free( attr );
622                         goto next_attr;
623                 }
624
625                 for ( i = 0; i < last; i++ ) {
626                         struct berval   pval;
627                         int             rc;
628
629                         if ( pretty ) {
630                                 rc = pretty( attr->a_desc->ad_type->sat_syntax,
631                                         &attr->a_vals[i], &pval, NULL );
632
633                         } else {
634                                 rc = validate( attr->a_desc->ad_type->sat_syntax,
635                                         &attr->a_vals[i] );
636                         }
637
638                         if ( rc != LDAP_SUCCESS ) {
639                                 /* check if, by chance, it's an undefined objectClass */
640                                 if ( attr->a_desc == slap_schema.si_ad_objectClass &&
641                                                 oc_bvfind_undef( &attr->a_vals[i] ) != NULL )
642                                 {
643                                         ber_dupbv( &pval, &attr->a_vals[i] );
644
645                                 } else {
646                                         attr->a_nvals = NULL;
647                                         attr_free( attr );
648                                         goto next_attr;
649                                 }
650                         }
651
652                         if ( pretty ) {
653                                 LBER_FREE( attr->a_vals[i].bv_val );
654                                 attr->a_vals[i] = pval;
655                         }
656                 }
657
658                 if ( last && attr->a_desc->ad_type->sat_equality &&
659                                 attr->a_desc->ad_type->sat_equality->smr_normalize )
660                 {
661                         attr->a_nvals = ch_malloc( ( last + 1 )*sizeof( struct berval ) );
662                         for ( i = 0; i < last; i++ ) {
663                                 int             rc;
664
665                                 /*
666                                  * check that each value is valid per syntax
667                                  * and pretty if appropriate
668                                  */
669                                 rc = attr->a_desc->ad_type->sat_equality->smr_normalize(
670                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
671                                         attr->a_desc->ad_type->sat_syntax,
672                                         attr->a_desc->ad_type->sat_equality,
673                                         &attr->a_vals[i], &attr->a_nvals[i],
674                                         NULL );
675
676                                 if ( rc != LDAP_SUCCESS ) {
677                                         BER_BVZERO( &attr->a_nvals[i] );
678                                         ch_free( attr );
679                                         goto next_attr;
680                                 }
681                         }
682                         BER_BVZERO( &attr->a_nvals[i] );
683
684                 } else {
685                         attr->a_nvals = attr->a_vals;
686                 }
687                 *attrp = attr;
688                 attrp = &attr->a_next;
689
690 next_attr:;
691         }
692
693         return LDAP_SUCCESS;
694 }
695
696 /* return 0 IFF we can retrieve the entry with ndn
697  */
698 int
699 ldap_back_entry_get(
700                 Operation               *op,
701                 struct berval           *ndn,
702                 ObjectClass             *oc,
703                 AttributeDescription    *at,
704                 int                     rw,
705                 Entry                   **ent
706 )
707 {
708         ldapconn_t      *lc;
709         int             rc = 1,
710                         do_not_cache;
711         struct berval   bdn;
712         LDAPMessage     *result = NULL,
713                         *e = NULL;
714         char            *attr[3], **attrp = NULL;
715         char            *filter = NULL;
716         SlapReply       rs;
717         int             do_retry = 1;
718         LDAPControl     **ctrls = NULL;
719
720         *ent = NULL;
721
722         /* Tell getconn this is a privileged op */
723         do_not_cache = op->o_do_not_cache;
724         op->o_do_not_cache = 1;
725         lc = ldap_back_getconn( op, &rs, LDAP_BACK_DONTSEND );
726         if ( !lc || !ldap_back_dobind( lc, op, &rs, LDAP_BACK_DONTSEND ) ) {
727                 op->o_do_not_cache = do_not_cache;
728                 return rs.sr_err;
729         }
730         op->o_do_not_cache = do_not_cache;
731
732         if ( at ) {
733                 attrp = attr;
734                 if ( oc && at != slap_schema.si_ad_objectClass ) {
735                         attr[0] = slap_schema.si_ad_objectClass->ad_cname.bv_val;
736                         attr[1] = at->ad_cname.bv_val;
737                         attr[2] = NULL;
738
739                 } else {
740                         attr[0] = at->ad_cname.bv_val;
741                         attr[1] = NULL;
742                 }
743         }
744
745         if ( oc ) {
746                 char    *ptr;
747
748                 filter = ch_malloc( STRLENOF( "(objectclass=)" ) 
749                                 + oc->soc_cname.bv_len + 1 );
750                 ptr = lutil_strcopy( filter, "(objectclass=" );
751                 ptr = lutil_strcopy( ptr, oc->soc_cname.bv_val );
752                 *ptr++ = ')';
753                 *ptr++ = '\0';
754         }
755
756         ctrls = op->o_ctrls;
757         rc = ldap_back_proxy_authz_ctrl( lc, op, &rs, &ctrls );
758         if ( rc != LDAP_SUCCESS ) {
759                 goto cleanup;
760         }
761         
762 retry:
763         rc = ldap_search_ext_s( lc->lc_ld, ndn->bv_val, LDAP_SCOPE_BASE, filter,
764                                 attrp, 0, ctrls, NULL,
765                                 NULL, LDAP_NO_LIMIT, &result );
766         if ( rc != LDAP_SUCCESS ) {
767                 if ( rc == LDAP_SERVER_DOWN && do_retry ) {
768                         do_retry = 0;
769                         if ( ldap_back_retry( &lc, op, &rs, LDAP_BACK_DONTSEND ) ) {
770                                 goto retry;
771                         }
772                 }
773                 goto cleanup;
774         }
775
776         e = ldap_first_entry( lc->lc_ld, result );
777         if ( e == NULL ) {
778                 /* the entry exists, but it doesn't match the filter? */
779                 goto cleanup;
780         }
781
782         *ent = ch_calloc( 1, sizeof( Entry ) );
783         if ( *ent == NULL ) {
784                 rc = LDAP_NO_MEMORY;
785                 goto cleanup;
786         }
787
788         rc = ldap_build_entry( op, e, *ent, &bdn );
789
790         if ( rc != LDAP_SUCCESS ) {
791                 ch_free( *ent );
792                 *ent = NULL;
793         }
794
795 cleanup:
796         (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
797
798         if ( result ) {
799                 ldap_msgfree( result );
800         }
801
802         if ( filter ) {
803                 ch_free( filter );
804         }
805
806         if ( lc != NULL ) {
807                 ldap_back_release_conn( op, &rs, lc );
808         }
809
810         return rc;
811 }
812