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