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