]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/search.c
Reverse last commit. Wrong tree.
[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                         if ( lc == NULL ) {
228                                 /* reset by ldap_back_retry ... */
229                                 rs->sr_err = slap_map_api2result( rs );
230
231                         } else {
232                                 rc = ldap_back_op_result( lc, op, rs, msgid, 0, LDAP_BACK_DONTSEND );
233                                 ldap_back_freeconn( op, lc, 0 );
234                                 lc = NULL;
235                         }
236                                 
237                         goto finish;
238
239                 case LDAP_FILTER_ERROR:
240                         if ( ldap_back_munge_filter( op, &filter ) ) {
241                                 goto retry;
242                         }
243
244                         /* invalid filters return success with no data */
245                         rs->sr_err = LDAP_SUCCESS;
246                         rs->sr_text = NULL;
247                         goto finish;
248                 
249                 default:
250                         rs->sr_err = slap_map_api2result( rs );
251                         rs->sr_text = NULL;
252                         goto finish;
253                 }
254         }
255
256         /* We pull apart the ber result, stuff it into a slapd entry, and
257          * let send_search_entry stuff it back into ber format. Slow & ugly,
258          * but this is necessary for version matching, and for ACL processing.
259          */
260
261         for ( rc = 0; rc != -1; rc = ldap_result( lc->lc_ld, msgid, LDAP_MSG_ONE, &tv, &res ) )
262         {
263                 /* check for abandon */
264                 if ( op->o_abandon ) {
265                         if ( rc > 0 ) {
266                                 ldap_msgfree( res );
267                         }
268                         ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
269                         rc = SLAPD_ABANDON;
270                         goto finish;
271                 }
272
273                 if ( rc == 0 ) {
274                         LDAP_BACK_TV_SET( &tv );
275                         ldap_pvt_thread_yield();
276
277                         /* check time limit */
278                         if ( op->ors_tlimit != SLAP_NO_LIMIT
279                                         && slap_get_time() > stoptime )
280                         {
281                                 ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
282                                 rc = rs->sr_err = LDAP_TIMELIMIT_EXCEEDED;
283                                 goto finish;
284                         }
285                         continue;
286
287                 } else {
288                         /* don't retry any more */
289                         dont_retry = 1;
290                 }
291
292
293                 if ( rc == LDAP_RES_SEARCH_ENTRY ) {
294                         Entry           ent = { 0 };
295                         struct berval   bdn = BER_BVNULL;
296
297                         do_retry = 0;
298
299                         e = ldap_first_entry( lc->lc_ld, res );
300                         rc = ldap_build_entry( op, e, &ent, &bdn );
301                         if ( rc == LDAP_SUCCESS ) {
302                                 rs->sr_entry = &ent;
303                                 rs->sr_attrs = op->ors_attrs;
304                                 rs->sr_operational_attrs = NULL;
305                                 rs->sr_flags = 0;
306                                 rs->sr_err = LDAP_SUCCESS;
307                                 rc = rs->sr_err = send_search_entry( op, rs );
308                                 if ( !BER_BVISNULL( &ent.e_name ) ) {
309                                         assert( ent.e_name.bv_val != bdn.bv_val );
310                                         op->o_tmpfree( ent.e_name.bv_val, op->o_tmpmemctx );
311                                         BER_BVZERO( &ent.e_name );
312                                 }
313                                 if ( !BER_BVISNULL( &ent.e_nname ) ) {
314                                         op->o_tmpfree( ent.e_nname.bv_val, op->o_tmpmemctx );
315                                         BER_BVZERO( &ent.e_nname );
316                                 }
317                                 entry_clean( &ent );
318                         }
319                         ldap_msgfree( res );
320                         if ( rc != LDAP_SUCCESS ) {
321                                 if ( rc == LDAP_UNAVAILABLE ) {
322                                         rc = rs->sr_err = LDAP_OTHER;
323                                 } else {
324                                         ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
325                                 }
326                                 goto finish;
327                         }
328
329                 } else if ( rc == LDAP_RES_SEARCH_REFERENCE ) {
330                         char            **references = NULL;
331
332                         do_retry = 0;
333                         rc = ldap_parse_reference( lc->lc_ld, res,
334                                         &references, &rs->sr_ctrls, 1 );
335
336                         if ( rc != LDAP_SUCCESS ) {
337                                 continue;
338                         }
339
340                         /* FIXME: there MUST be at least one */
341                         if ( references && references[ 0 ] && references[ 0 ][ 0 ] ) {
342                                 int             cnt;
343
344                                 for ( cnt = 0; references[ cnt ]; cnt++ )
345                                         /* NO OP */ ;
346
347                                 /* FIXME: there MUST be at least one */
348                                 rs->sr_ref = ch_malloc( ( cnt + 1 ) * sizeof( struct berval ) );
349
350                                 for ( cnt = 0; references[ cnt ]; cnt++ ) {
351                                         ber_str2bv( references[ cnt ], 0, 0, &rs->sr_ref[ cnt ] );
352                                 }
353                                 BER_BVZERO( &rs->sr_ref[ cnt ] );
354
355                                 /* ignore return value by now */
356                                 ( void )send_search_reference( op, rs );
357
358                         } else {
359                                 Debug( LDAP_DEBUG_ANY,
360                                         "%s ldap_back_search: "
361                                         "got SEARCH_REFERENCE "
362                                         "with no referrals\n",
363                                         op->o_log_prefix, 0, 0 );
364                         }
365
366                         /* cleanup */
367                         if ( references ) {
368                                 ber_memvfree( (void **)references );
369                                 ch_free( rs->sr_ref );
370                                 rs->sr_ref = NULL;
371                         }
372
373                         if ( rs->sr_ctrls ) {
374                                 ldap_controls_free( rs->sr_ctrls );
375                                 rs->sr_ctrls = NULL;
376                         }
377
378                 } else {
379                         char            **references = NULL;
380
381                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
382                                         &match.bv_val, (char **)&rs->sr_text,
383                                         &references, &rs->sr_ctrls, 1 );
384                         freetext = 1;
385                         if ( rc != LDAP_SUCCESS ) {
386                                 rs->sr_err = rc;
387                         }
388                         rs->sr_err = slap_map_api2result( rs );
389
390                         if ( references && references[ 0 ] && references[ 0 ][ 0 ] ) {
391                                 int     cnt;
392
393                                 if ( rs->sr_err != LDAP_REFERRAL ) {
394                                         /* FIXME: error */
395                                         Debug( LDAP_DEBUG_ANY,
396                                                 "%s ldap_back_search: "
397                                                 "got referrals with %d\n",
398                                                 op->o_log_prefix,
399                                                 rs->sr_err, 0 );
400                                         rs->sr_err = LDAP_REFERRAL;
401                                 }
402
403                                 for ( cnt = 0; references[ cnt ]; cnt++ )
404                                         /* NO OP */ ;
405                                 
406                                 rs->sr_ref = ch_malloc( ( cnt + 1 ) * sizeof( struct berval ) );
407
408                                 for ( cnt = 0; references[ cnt ]; cnt++ ) {
409                                         /* duplicating ...*/
410                                         ber_str2bv( references[ cnt ], 0, 1, &rs->sr_ref[ cnt ] );
411                                 }
412                                 BER_BVZERO( &rs->sr_ref[ cnt ] );
413                         }
414
415                         if ( match.bv_val != NULL ) {
416                                 {
417                                         match.bv_len = strlen( match.bv_val );
418                                 }
419                         }
420
421                         /* cleanup */
422                         if ( references ) {
423                                 ber_memvfree( (void **)references );
424                         }
425
426                         rc = 0;
427                         break;
428                 }
429         }
430
431         if ( rc == -1 && dont_retry == 0 ) {
432                 if ( do_retry ) {
433                         do_retry = 0;
434                         if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_DONTSEND ) ) {
435                                 goto retry;
436                         }
437                 }
438                 rs->sr_err = LDAP_SERVER_DOWN;
439                 rs->sr_err = slap_map_api2result( rs );
440                 goto finish;
441         }
442
443         /*
444          * Rewrite the matched portion of the search base, if required
445          */
446         if ( !BER_BVISNULL( &match ) && !BER_BVISEMPTY( &match ) ) {
447                 struct berval   pmatch;
448
449                 if ( dnPretty( NULL, &match, &pmatch, op->o_tmpmemctx ) == LDAP_SUCCESS ) {
450                         rs->sr_matched = pmatch.bv_val;
451                         LDAP_FREE( match.bv_val );
452
453                 } else {
454                         rs->sr_matched = match.bv_val;
455                 }
456         }
457
458         if ( rs->sr_v2ref ) {
459                 rs->sr_err = LDAP_REFERRAL;
460         }
461
462 finish:;
463         if ( rc != SLAPD_ABANDON ) {
464                 send_ldap_result( op, rs );
465         }
466
467         (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
468
469         if ( rs->sr_ctrls ) {
470                 ldap_controls_free( rs->sr_ctrls );
471                 rs->sr_ctrls = NULL;
472         }
473
474         if ( rs->sr_matched != NULL && rs->sr_matched != save_matched ) {
475                 if ( rs->sr_matched != match.bv_val ) {
476                         ber_memfree_x( (char *)rs->sr_matched, op->o_tmpmemctx );
477
478                 } else {
479                         LDAP_FREE( match.bv_val );
480                 }
481                 rs->sr_matched = save_matched;
482         }
483
484         if ( !BER_BVISNULL( &filter ) && filter.bv_val != op->ors_filterstr.bv_val ) {
485                 op->o_tmpfree( filter.bv_val, op->o_tmpmemctx );
486         }
487
488         if ( rs->sr_text ) {
489                 if ( freetext ) {
490                         LDAP_FREE( (char *)rs->sr_text );
491                 }
492                 rs->sr_text = NULL;
493         }
494
495         if ( rs->sr_ref ) {
496                 ber_bvarray_free( rs->sr_ref );
497                 rs->sr_ref = NULL;
498         }
499
500         if ( attrs ) {
501                 ch_free( attrs );
502         }
503
504         if ( lc != NULL ) {
505                 ldap_back_release_conn( op, rs, lc );
506         }
507
508         return rs->sr_err;
509 }
510
511 static int
512 ldap_build_entry(
513                 Operation       *op,
514                 LDAPMessage     *e,
515                 Entry           *ent,
516                 struct berval   *bdn )
517 {
518         struct berval   a;
519         BerElement      ber = *e->lm_ber;
520         Attribute       *attr, **attrp;
521         const char      *text;
522         int             last;
523
524         /* safe assumptions ... */
525         assert( ent != NULL );
526         BER_BVZERO( &ent->e_bv );
527
528         if ( ber_scanf( &ber, "{m{", bdn ) == LBER_ERROR ) {
529                 return LDAP_DECODING_ERROR;
530         }
531
532         /*
533          * Note: this may fail if the target host(s) schema differs
534          * from the one known to the meta, and a DN with unknown
535          * attributes is returned.
536          * 
537          * FIXME: should we log anything, or delegate to dnNormalize?
538          */
539         /* Note: if the distinguished values or the naming attributes
540          * change, should we massage them as well?
541          */
542         if ( dnPrettyNormal( NULL, bdn, &ent->e_name, &ent->e_nname,
543                 op->o_tmpmemctx ) != LDAP_SUCCESS )
544         {
545                 return LDAP_INVALID_DN_SYNTAX;
546         }
547
548         attrp = &ent->e_attrs;
549
550         while ( ber_scanf( &ber, "{m", &a ) != LBER_ERROR ) {
551                 int                             i;
552                 slap_syntax_validate_func       *validate;
553                 slap_syntax_transform_func      *pretty;
554
555                 attr = (Attribute *)ch_malloc( sizeof( Attribute ) );
556                 if ( attr == NULL ) {
557                         continue;
558                 }
559                 attr->a_flags = 0;
560                 attr->a_next = 0;
561                 attr->a_desc = NULL;
562                 if ( slap_bv2ad( &a, &attr->a_desc, &text ) 
563                                 != LDAP_SUCCESS )
564                 {
565                         if ( slap_bv2undef_ad( &a, &attr->a_desc, &text,
566                                 SLAP_AD_PROXIED ) != LDAP_SUCCESS )
567                         {
568                                 Debug( LDAP_DEBUG_ANY, 
569                                         "%s ldap_build_entry: "
570                                         "slap_bv2undef_ad(%s): %s\n",
571                                         op->o_log_prefix, a.bv_val, text );
572                                 ch_free( attr );
573                                 continue;
574                         }
575                 }
576
577                 /* no subschemaSubentry */
578                 if ( attr->a_desc == slap_schema.si_ad_subschemaSubentry
579                         || attr->a_desc == slap_schema.si_ad_entryDN )
580                 {
581
582                         /* 
583                          * We eat target's subschemaSubentry because
584                          * a search for this value is likely not
585                          * to resolve to the appropriate backend;
586                          * later, the local subschemaSubentry is
587                          * added.
588                          *
589                          * We also eat entryDN because the frontend
590                          * will reattach it without checking if already
591                          * present...
592                          */
593                         ( void )ber_scanf( &ber, "x" /* [W] */ );
594
595                         ch_free( attr );
596                         continue;
597                 }
598                 
599                 if ( ber_scanf( &ber, "[W]", &attr->a_vals ) == LBER_ERROR
600                                 || attr->a_vals == NULL )
601                 {
602                         /*
603                          * Note: attr->a_vals can be null when using
604                          * values result filter
605                          */
606                         attr->a_vals = (struct berval *)&slap_dummy_bv;
607                         last = 0;
608
609                 } else {
610                         for ( last = 0; !BER_BVISNULL( &attr->a_vals[ last ] ); last++ )
611                                 /* just count vals */ ;
612                 }
613
614                 validate = attr->a_desc->ad_type->sat_syntax->ssyn_validate;
615                 pretty = attr->a_desc->ad_type->sat_syntax->ssyn_pretty;
616
617                 if ( !validate && !pretty ) {
618                         attr->a_nvals = NULL;
619                         attr_free( attr );
620                         goto next_attr;
621                 }
622
623                 for ( i = 0; i < last; i++ ) {
624                         struct berval   pval;
625                         int             rc;
626
627                         if ( pretty ) {
628                                 rc = pretty( attr->a_desc->ad_type->sat_syntax,
629                                         &attr->a_vals[i], &pval, NULL );
630
631                         } else {
632                                 rc = validate( attr->a_desc->ad_type->sat_syntax,
633                                         &attr->a_vals[i] );
634                         }
635
636                         if ( rc != LDAP_SUCCESS ) {
637                                 /* check if, by chance, it's an undefined objectClass */
638                                 if ( attr->a_desc == slap_schema.si_ad_objectClass &&
639                                                 oc_bvfind_undef( &attr->a_vals[i] ) != NULL )
640                                 {
641                                         ber_dupbv( &pval, &attr->a_vals[i] );
642
643                                 } else {
644                                         attr->a_nvals = NULL;
645                                         attr_free( attr );
646                                         goto next_attr;
647                                 }
648                         }
649
650                         if ( pretty ) {
651                                 LBER_FREE( attr->a_vals[i].bv_val );
652                                 attr->a_vals[i] = pval;
653                         }
654                 }
655
656                 if ( last && attr->a_desc->ad_type->sat_equality &&
657                                 attr->a_desc->ad_type->sat_equality->smr_normalize )
658                 {
659                         attr->a_nvals = ch_malloc( ( last + 1 )*sizeof( struct berval ) );
660                         for ( i = 0; i < last; i++ ) {
661                                 int             rc;
662
663                                 /*
664                                  * check that each value is valid per syntax
665                                  * and pretty if appropriate
666                                  */
667                                 rc = attr->a_desc->ad_type->sat_equality->smr_normalize(
668                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
669                                         attr->a_desc->ad_type->sat_syntax,
670                                         attr->a_desc->ad_type->sat_equality,
671                                         &attr->a_vals[i], &attr->a_nvals[i],
672                                         NULL );
673
674                                 if ( rc != LDAP_SUCCESS ) {
675                                         BER_BVZERO( &attr->a_nvals[i] );
676                                         ch_free( attr );
677                                         goto next_attr;
678                                 }
679                         }
680                         BER_BVZERO( &attr->a_nvals[i] );
681
682                 } else {
683                         attr->a_nvals = attr->a_vals;
684                 }
685                 *attrp = attr;
686                 attrp = &attr->a_next;
687
688 next_attr:;
689         }
690
691         return LDAP_SUCCESS;
692 }
693
694 /* return 0 IFF we can retrieve the entry with ndn
695  */
696 int
697 ldap_back_entry_get(
698                 Operation               *op,
699                 struct berval           *ndn,
700                 ObjectClass             *oc,
701                 AttributeDescription    *at,
702                 int                     rw,
703                 Entry                   **ent
704 )
705 {
706         ldapconn_t      *lc;
707         int             rc = 1,
708                         do_not_cache;
709         struct berval   bdn;
710         LDAPMessage     *result = NULL,
711                         *e = NULL;
712         char            *attr[3], **attrp = NULL;
713         char            *filter = NULL;
714         SlapReply       rs;
715         int             do_retry = 1;
716         LDAPControl     **ctrls = NULL;
717
718         *ent = NULL;
719
720         /* Tell getconn this is a privileged op */
721         do_not_cache = op->o_do_not_cache;
722         op->o_do_not_cache = 1;
723         lc = ldap_back_getconn( op, &rs, LDAP_BACK_DONTSEND );
724         if ( !lc || !ldap_back_dobind( lc, op, &rs, LDAP_BACK_DONTSEND ) ) {
725                 op->o_do_not_cache = do_not_cache;
726                 return rs.sr_err;
727         }
728         op->o_do_not_cache = do_not_cache;
729
730         if ( at ) {
731                 attrp = attr;
732                 if ( oc && at != slap_schema.si_ad_objectClass ) {
733                         attr[0] = slap_schema.si_ad_objectClass->ad_cname.bv_val;
734                         attr[1] = at->ad_cname.bv_val;
735                         attr[2] = NULL;
736
737                 } else {
738                         attr[0] = at->ad_cname.bv_val;
739                         attr[1] = NULL;
740                 }
741         }
742
743         if ( oc ) {
744                 char    *ptr;
745
746                 filter = ch_malloc( STRLENOF( "(objectclass=)" ) 
747                                 + oc->soc_cname.bv_len + 1 );
748                 ptr = lutil_strcopy( filter, "(objectclass=" );
749                 ptr = lutil_strcopy( ptr, oc->soc_cname.bv_val );
750                 *ptr++ = ')';
751                 *ptr++ = '\0';
752         }
753
754         ctrls = op->o_ctrls;
755         rc = ldap_back_proxy_authz_ctrl( lc, op, &rs, &ctrls );
756         if ( rc != LDAP_SUCCESS ) {
757                 goto cleanup;
758         }
759         
760 retry:
761         rc = ldap_search_ext_s( lc->lc_ld, ndn->bv_val, LDAP_SCOPE_BASE, filter,
762                                 attrp, 0, ctrls, NULL,
763                                 NULL, LDAP_NO_LIMIT, &result );
764         if ( rc != LDAP_SUCCESS ) {
765                 if ( rc == LDAP_SERVER_DOWN && do_retry ) {
766                         do_retry = 0;
767                         if ( ldap_back_retry( &lc, op, &rs, LDAP_BACK_DONTSEND ) ) {
768                                 goto retry;
769                         }
770                 }
771                 goto cleanup;
772         }
773
774         e = ldap_first_entry( lc->lc_ld, result );
775         if ( e == NULL ) {
776                 /* the entry exists, but it doesn't match the filter? */
777                 goto cleanup;
778         }
779
780         *ent = ch_calloc( 1, sizeof( Entry ) );
781         if ( *ent == NULL ) {
782                 rc = LDAP_NO_MEMORY;
783                 goto cleanup;
784         }
785
786         rc = ldap_build_entry( op, e, *ent, &bdn );
787
788         if ( rc != LDAP_SUCCESS ) {
789                 ch_free( *ent );
790                 *ent = NULL;
791         }
792
793 cleanup:
794         (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
795
796         if ( result ) {
797                 ldap_msgfree( result );
798         }
799
800         if ( filter ) {
801                 ch_free( filter );
802         }
803
804         if ( lc != NULL ) {
805                 ldap_back_release_conn( op, &rs, lc );
806         }
807
808         return rc;
809 }
810