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