]> git.sur5r.net Git - openldap/blob - servers/slapd/result.c
use a separate field for a modified entry in SlapReply
[openldap] / servers / slapd / result.c
1 /* result.c - routines to send ldap results, errors, and referrals */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30
31 #include <ac/socket.h>
32 #include <ac/errno.h>
33 #include <ac/string.h>
34 #include <ac/ctype.h>
35 #include <ac/time.h>
36 #include <ac/unistd.h>
37
38 #include "slap.h"
39
40 #ifdef LDAP_SLAPI
41 #include "slapi/slapi.h"
42 #endif
43
44 int slap_null_cb( Operation *op, SlapReply *rs )
45 {
46         return 0;
47 }
48
49 int slap_replog_cb( Operation *op, SlapReply *rs )
50 {
51         if ( rs->sr_err == LDAP_SUCCESS ) {
52                 replog( op );
53         }
54         return SLAP_CB_CONTINUE;
55 }
56
57 static char *v2ref( BerVarray ref, const char *text )
58 {
59         size_t len = 0, i = 0;
60         char *v2;
61
62         if(ref == NULL) {
63                 if (text) {
64                         return ch_strdup(text);
65                 } else {
66                         return NULL;
67                 }
68         }
69         
70         if ( text != NULL ) {
71                 len = strlen( text );
72                 if (text[len-1] != '\n') {
73                     i = 1;
74                 }
75         }
76
77         v2 = SLAP_MALLOC( len+i+sizeof("Referral:") );
78         if( v2 == NULL ) {
79 #ifdef NEW_LOGGING
80                 LDAP_LOG( OPERATION, ERR, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
81 #else
82                 Debug( LDAP_DEBUG_ANY, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
83 #endif
84                 return NULL;
85         }
86
87         if( text != NULL ) {
88                 strcpy(v2, text);
89                 if( i ) {
90                         v2[len++] = '\n';
91                 }
92         }
93         strcpy( v2+len, "Referral:" );
94         len += sizeof("Referral:");
95
96         for( i=0; ref[i].bv_val != NULL; i++ ) {
97                 v2 = SLAP_REALLOC( v2, len + ref[i].bv_len + 1 );
98                 if( v2 == NULL ) {
99 #ifdef NEW_LOGGING
100                         LDAP_LOG( OPERATION, ERR, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
101 #else
102                         Debug( LDAP_DEBUG_ANY, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
103 #endif
104                         return NULL;
105                 }
106                 v2[len-1] = '\n';
107                 AC_MEMCPY(&v2[len], ref[i].bv_val, ref[i].bv_len );
108                 len += ref[i].bv_len;
109                 if (ref[i].bv_val[ref[i].bv_len-1] != '/') {
110                         ++len;
111                 }
112         }
113
114         v2[len-1] = '\0';
115         return v2;
116 }
117
118 static ber_tag_t req2res( ber_tag_t tag )
119 {
120         switch( tag ) {
121         case LDAP_REQ_ADD:
122         case LDAP_REQ_BIND:
123         case LDAP_REQ_COMPARE:
124         case LDAP_REQ_EXTENDED:
125         case LDAP_REQ_MODIFY:
126         case LDAP_REQ_MODRDN:
127                 tag++;
128                 break;
129
130         case LDAP_REQ_DELETE:
131                 tag = LDAP_RES_DELETE;
132                 break;
133
134         case LDAP_REQ_ABANDON:
135         case LDAP_REQ_UNBIND:
136                 tag = LBER_SEQUENCE;
137                 break;
138
139         case LDAP_REQ_SEARCH:
140                 tag = LDAP_RES_SEARCH_RESULT;
141                 break;
142
143         default:
144                 tag = LBER_SEQUENCE;
145         }
146
147         return tag;
148 }
149
150 static long send_ldap_ber(
151         Connection *conn,
152         BerElement *ber )
153 {
154         ber_len_t bytes;
155
156         ber_get_option( ber, LBER_OPT_BER_BYTES_TO_WRITE, &bytes );
157
158         /* write only one pdu at a time - wait til it's our turn */
159         ldap_pvt_thread_mutex_lock( &conn->c_write_mutex );
160
161         /* lock the connection */ 
162         ldap_pvt_thread_mutex_lock( &conn->c_mutex );
163
164         /* write the pdu */
165         while( 1 ) {
166                 int err;
167                 ber_socket_t    sd;
168
169                 if ( connection_state_closing( conn ) ) {
170                         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
171                         ldap_pvt_thread_mutex_unlock( &conn->c_write_mutex );
172
173                         return 0;
174                 }
175
176                 if ( ber_flush( conn->c_sb, ber, 0 ) == 0 ) {
177                         break;
178                 }
179
180                 err = errno;
181
182                 /*
183                  * we got an error.  if it's ewouldblock, we need to
184                  * wait on the socket being writable.  otherwise, figure
185                  * it's a hard error and return.
186                  */
187
188 #ifdef NEW_LOGGING
189                 LDAP_LOG( OPERATION, ERR, 
190                         "send_ldap_ber: conn %lu  ber_flush failed err=%d (%s)\n",
191                         conn ? conn->c_connid : 0, err, sock_errstr(err) );
192 #else
193                 Debug( LDAP_DEBUG_CONNS, "ber_flush failed errno=%d reason=\"%s\"\n",
194                     err, sock_errstr(err), 0 );
195 #endif
196
197                 if ( err != EWOULDBLOCK && err != EAGAIN ) {
198                         connection_closing( conn );
199
200                         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
201                         ldap_pvt_thread_mutex_unlock( &conn->c_write_mutex );
202
203                         return( -1 );
204                 }
205
206                 /* wait for socket to be write-ready */
207                 conn->c_writewaiter = 1;
208                 ber_sockbuf_ctrl( conn->c_sb, LBER_SB_OPT_GET_FD, &sd );
209                 slapd_set_write( sd, 1 );
210
211                 ldap_pvt_thread_cond_wait( &conn->c_write_cv, &conn->c_mutex );
212                 conn->c_writewaiter = 0;
213         }
214
215         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
216         ldap_pvt_thread_mutex_unlock( &conn->c_write_mutex );
217
218         return bytes;
219 }
220
221 static int
222 send_ldap_control( BerElement *ber, LDAPControl *c )
223 {
224         int rc;
225
226         assert( c != NULL );
227
228         rc = ber_printf( ber, "{s" /*}*/, c->ldctl_oid );
229
230         if( c->ldctl_iscritical ) {
231                 rc = ber_printf( ber, "b",
232                         (ber_int_t) c->ldctl_iscritical ) ;
233                 if( rc == -1 ) return rc;
234         }
235
236         if( c->ldctl_value.bv_val != NULL ) {
237                 rc = ber_printf( ber, "O", &c->ldctl_value ); 
238                 if( rc == -1 ) return rc;
239         }
240
241         rc = ber_printf( ber, /*{*/"N}" );
242         if( rc == -1 ) return rc;
243
244         return 0;
245 }
246
247 static int
248 send_ldap_controls( Operation *o, BerElement *ber, LDAPControl **c )
249 {
250         int rc;
251 #ifdef LDAP_SLAPI
252         LDAPControl **sctrls = NULL;
253
254         /*
255          * Retrieve any additional controls that may be set by the
256          * plugin.
257          */
258
259         if ( o->o_pb && slapi_pblock_get( o->o_pb, SLAPI_RESCONTROLS, &sctrls ) != 0 ) {
260                 sctrls = NULL;
261         }
262
263         if ( c == NULL && sctrls == NULL ) return 0;
264 #else
265         if( c == NULL ) return 0;
266 #endif /* LDAP_SLAPI */
267
268         rc = ber_printf( ber, "t{"/*}*/, LDAP_TAG_CONTROLS );
269         if( rc == -1 ) return rc;
270
271 #ifdef LDAP_SLAPI
272         if ( c != NULL )
273 #endif /* LDAP_SLAPI */
274         for( ; *c != NULL; c++) {
275                 rc = send_ldap_control( ber, *c );
276                 if( rc == -1 ) return rc;
277         }
278
279 #ifdef LDAP_SLAPI
280         if ( sctrls != NULL ) {
281                 for ( c = sctrls; *c != NULL; c++ ) {
282                         rc = send_ldap_control( ber, *c );
283                         if( rc == -1 ) return rc;
284                 }
285         }
286 #endif /* LDAP_SLAPI */
287
288         rc = ber_printf( ber, /*{*/"N}" );
289
290         return rc;
291 }
292
293 static int
294 send_ldap_response(
295         Operation *op,
296         SlapReply *rs )
297 {
298         BerElementBuffer berbuf;
299         BerElement      *ber = (BerElement *) &berbuf;
300         int             rc = LDAP_SUCCESS;
301         long    bytes;
302
303         if (op->o_callback) {
304                 slap_callback *sc = op->o_callback;
305                 rc = SLAP_CB_CONTINUE;
306                 for ( ; op->o_callback; ) {
307                         if ( op->o_callback->sc_response ) {
308                                 rc = op->o_callback->sc_response( op, rs );
309                                 if ( rc != SLAP_CB_CONTINUE ) break;
310                         }
311                         op->o_callback = op->o_callback->sc_next;
312                 }
313                 op->o_callback = sc;
314                 if ( rc != SLAP_CB_CONTINUE ) goto clean2;
315         }
316
317 #ifdef LDAP_CONNECTIONLESS
318         if (op->o_conn && op->o_conn->c_is_udp)
319                 ber = op->o_res_ber;
320         else
321 #endif
322         {
323                 ber_init_w_nullc( ber, LBER_USE_DER );
324                 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
325         }
326
327 #ifdef NEW_LOGGING
328         LDAP_LOG( OPERATION, ENTRY, 
329                 "send_ldap_response:  msgid=%d tag=%lu err=%d\n",
330                 rs->sr_msgid, rs->sr_tag, rs->sr_err );
331 #else
332         Debug( LDAP_DEBUG_TRACE,
333                 "send_ldap_response: msgid=%d tag=%lu err=%d\n",
334                 rs->sr_msgid, rs->sr_tag, rs->sr_err );
335 #endif
336
337         if( rs->sr_ref ) {
338 #ifdef NEW_LOGGING
339                 LDAP_LOG( OPERATION, ARGS, 
340                         "send_ldap_response: conn %lu  ref=\"%s\"\n",
341                         op->o_connid,
342                         rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL" , 0 );
343 #else
344                 Debug( LDAP_DEBUG_ARGS, "send_ldap_response: ref=\"%s\"\n",
345                         rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL",
346                         NULL, NULL );
347 #endif
348         }
349
350 #ifdef LDAP_CONNECTIONLESS
351         if (op->o_conn && op->o_conn->c_is_udp &&
352                 op->o_protocol == LDAP_VERSION2 )
353         {
354                 rc = ber_printf( ber, "t{ess" /*"}"*/,
355                         rs->sr_tag, rs->sr_err,
356                 rs->sr_matched == NULL ? "" : rs->sr_matched,
357                 rs->sr_text == NULL ? "" : rs->sr_text );
358         } else 
359 #endif
360         if ( rs->sr_type == REP_INTERMEDIATE ) {
361             rc = ber_printf( ber, "{it{" /*"}}"*/,
362                         rs->sr_msgid, rs->sr_tag );
363
364         } else {
365             rc = ber_printf( ber, "{it{ess" /*"}}"*/,
366                 rs->sr_msgid, rs->sr_tag, rs->sr_err,
367                 rs->sr_matched == NULL ? "" : rs->sr_matched,
368                 rs->sr_text == NULL ? "" : rs->sr_text );
369         }
370
371         if( rc != -1 ) {
372                 if ( rs->sr_ref != NULL ) {
373                         assert( rs->sr_err == LDAP_REFERRAL );
374                         rc = ber_printf( ber, "t{W}",
375                                 LDAP_TAG_REFERRAL, rs->sr_ref );
376                 } else {
377                         assert( rs->sr_err != LDAP_REFERRAL );
378                 }
379         }
380
381         if( rc != -1 && rs->sr_type == REP_SASL && rs->sr_sasldata != NULL ) {
382                 rc = ber_printf( ber, "tO",
383                         LDAP_TAG_SASL_RES_CREDS, rs->sr_sasldata );
384         }
385
386         if( rc != -1 &&
387                 ( rs->sr_type == REP_EXTENDED || rs->sr_type == REP_INTERMEDIATE ))
388         {
389                 if ( rs->sr_rspoid != NULL ) {
390                         rc = ber_printf( ber, "ts",
391                                 LDAP_TAG_EXOP_RES_OID, rs->sr_rspoid );
392                 }
393                 if( rc != -1 && rs->sr_rspdata != NULL ) {
394                         rc = ber_printf( ber, "tO",
395                                 LDAP_TAG_EXOP_RES_VALUE, rs->sr_rspdata );
396                 }
397         }
398
399         if( rc != -1 ) {
400                 rc = ber_printf( ber, /*"{"*/ "N}" );
401         }
402
403         if( rc != -1 ) {
404                 rc = send_ldap_controls( op, ber, rs->sr_ctrls );
405         }
406
407         if( rc != -1 ) {
408                 rc = ber_printf( ber, /*"{"*/ "N}" );
409         }
410
411 #ifdef LDAP_CONNECTIONLESS
412         if( op->o_conn && op->o_conn->c_is_udp && op->o_protocol == LDAP_VERSION2
413                 && rc != -1 )
414         {
415                 rc = ber_printf( ber, /*"{"*/ "N}" );
416         }
417 #endif
418                 
419         if ( rc == -1 ) {
420 #ifdef NEW_LOGGING
421                 LDAP_LOG( OPERATION, ERR, 
422                         "send_ldap_response: conn %lu  ber_printf failed\n",
423                         op->o_connid, 0, 0 );
424 #else
425                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
426 #endif
427
428 #ifdef LDAP_CONNECTIONLESS
429                 if (!op->o_conn || op->o_conn->c_is_udp == 0)
430 #endif
431                 {
432                         ber_free_buf( ber );
433                 }
434                 goto cleanup;
435         }
436
437         /* send BER */
438         bytes = send_ldap_ber( op->o_conn, ber );
439 #ifdef LDAP_CONNECTIONLESS
440         if (!op->o_conn || op->o_conn->c_is_udp == 0)
441 #endif
442         {
443                 ber_free_buf( ber );
444         }
445
446         if ( bytes < 0 ) {
447 #ifdef NEW_LOGGING
448                 LDAP_LOG( OPERATION, ERR, 
449                         "send_ldap_response: conn %lu ber write failed\n",
450                         op->o_connid ? op->o_connid : 0, 0, 0 );
451 #else
452                 Debug( LDAP_DEBUG_ANY,
453                         "send_ldap_response: ber write failed\n",
454                         0, 0, 0 );
455 #endif
456
457                 goto cleanup;
458         }
459
460 #ifdef LDAP_SLAPI
461         if ( op->o_pb ) {
462                 slapi_pblock_set( op->o_pb, SLAPI_RESULT_CODE, (void *)rs->sr_err );
463                 slapi_pblock_set( op->o_pb, SLAPI_RESULT_MATCHED,
464                         (void *)rs->sr_matched );
465                 slapi_pblock_set( op->o_pb, SLAPI_RESULT_TEXT, (void *)rs->sr_text );
466         }
467 #endif /* LDAP_SLAPI */
468
469         ldap_pvt_thread_mutex_lock( &num_sent_mutex );
470         num_bytes_sent += bytes;
471         num_pdu_sent++;
472         ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
473
474 cleanup:;
475         /* Tell caller that we did this for real, as opposed to being
476          * overridden by a callback
477          */
478         rc = SLAP_CB_CONTINUE;
479
480 clean2:;
481         if ( op->o_callback ) {
482                 slap_callback *sc = op->o_callback;
483                 for ( ; op->o_callback; op->o_callback = op->o_callback->sc_next ) {
484                         if ( op->o_callback->sc_cleanup ) {
485                                 (void)op->o_callback->sc_cleanup( op, rs );
486                         }
487                 }
488                 op->o_callback = sc;
489         }
490
491
492         if ( rs->sr_matched && rs->sr_flags & REP_MATCHED_MUSTBEFREED ) {
493                 free( (char *)rs->sr_matched );
494                 rs->sr_matched = NULL;
495         }
496
497         if ( rs->sr_ref && rs->sr_flags & REP_REF_MUSTBEFREED ) {
498                 ber_bvarray_free( rs->sr_ref );
499                 rs->sr_ref = NULL;
500         }
501
502         return rc;
503 }
504
505
506 void
507 send_ldap_disconnect( Operation *op, SlapReply *rs )
508 {
509 #define LDAP_UNSOLICITED_ERROR(e) \
510         (  (e) == LDAP_PROTOCOL_ERROR \
511         || (e) == LDAP_STRONG_AUTH_REQUIRED \
512         || (e) == LDAP_UNAVAILABLE )
513
514         assert( LDAP_UNSOLICITED_ERROR( rs->sr_err ) );
515
516         rs->sr_type = REP_EXTENDED;
517
518 #ifdef NEW_LOGGING
519         LDAP_LOG( OPERATION, ENTRY, 
520                 "send_ldap_disconnect: conn %lu  %d:%s\n",
521                 op->o_connid, rs->sr_err, rs->sr_text ? rs->sr_text : "" );
522 #else
523         Debug( LDAP_DEBUG_TRACE,
524                 "send_ldap_disconnect %d:%s\n",
525                 rs->sr_err, rs->sr_text ? rs->sr_text : "", NULL );
526 #endif
527
528         if ( op->o_protocol < LDAP_VERSION3 ) {
529                 rs->sr_rspoid = NULL;
530                 rs->sr_tag = req2res( op->o_tag );
531                 rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
532
533         } else {
534                 rs->sr_rspoid = LDAP_NOTICE_DISCONNECT;
535                 rs->sr_tag = LDAP_RES_EXTENDED;
536                 rs->sr_msgid = 0;
537         }
538
539         if ( send_ldap_response( op, rs ) == SLAP_CB_CONTINUE ) {
540                 Statslog( LDAP_DEBUG_STATS,
541                         "conn=%lu op=%lu DISCONNECT tag=%lu err=%d text=%s\n",
542                         op->o_connid, op->o_opid, rs->sr_tag, rs->sr_err,
543                         rs->sr_text ? rs->sr_text : "" );
544         }
545 }
546
547 void
548 slap_send_ldap_result( Operation *op, SlapReply *rs )
549 {
550         char *tmp = NULL;
551         const char *otext = rs->sr_text;
552         BerVarray oref = rs->sr_ref;
553
554         rs->sr_type = REP_RESULT;
555
556         assert( !LDAP_API_ERROR( rs->sr_err ));
557
558 #ifdef NEW_LOGGING
559         LDAP_LOG( OPERATION, ENTRY, 
560                 "send_ldap_result: conn=%lu op=%lu p=%d\n",
561                 op->o_connid, op->o_opid, op->o_protocol );
562 #else
563         Debug( LDAP_DEBUG_TRACE,
564                 "send_ldap_result: conn=%lu op=%lu p=%d\n",
565                 op->o_connid, op->o_opid, op->o_protocol );
566 #endif
567
568 #ifdef NEW_LOGGING
569         LDAP_LOG( OPERATION, ARGS, 
570                 "send_ldap_result: err=%d matched=\"%s\" text=\"%s\"\n",
571                 rs->sr_err, rs->sr_matched ? rs->sr_matched : "",
572                 rs->sr_text ? rs->sr_text : "" );
573 #else
574         Debug( LDAP_DEBUG_ARGS,
575                 "send_ldap_result: err=%d matched=\"%s\" text=\"%s\"\n",
576                 rs->sr_err, rs->sr_matched ? rs->sr_matched : "",
577                 rs->sr_text ? rs->sr_text : "" );
578 #endif
579
580
581         if( rs->sr_ref ) {
582 #ifdef NEW_LOGGING
583                 LDAP_LOG( OPERATION, ARGS, 
584                         "send_ldap_result: referral=\"%s\"\n",
585                         rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL", 0, 0 );
586 #else
587                 Debug( LDAP_DEBUG_ARGS,
588                         "send_ldap_result: referral=\"%s\"\n",
589                         rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL",
590                         NULL, NULL );
591 #endif
592         }
593
594         assert( rs->sr_err != LDAP_PARTIAL_RESULTS );
595
596         if ( rs->sr_err == LDAP_REFERRAL ) {
597 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
598                 if( op->o_domain_scope ) {
599                         rs->sr_ref = NULL;
600                 }
601 #endif
602                 if( rs->sr_ref == NULL ) {
603                         rs->sr_err = LDAP_NO_SUCH_OBJECT;
604                 } else if ( op->o_protocol < LDAP_VERSION3 ) {
605                         rs->sr_err = LDAP_PARTIAL_RESULTS;
606                 }
607         }
608
609 #ifdef LDAP_SLAPI
610         /*
611          * Call pre-result plugins. To avoid infinite recursion plugins
612          * should just set SLAPI_RESULT_CODE rather than sending a
613          * result if they wish to change the result.
614          */
615         if ( op->o_pb != NULL ) {
616                 slapi_int_pblock_set_operation( op->o_pb, op );
617                 slapi_pblock_set( op->o_pb, SLAPI_RESULT_CODE,
618                         (void *)rs->sr_err );
619                 slapi_pblock_set( op->o_pb, SLAPI_RESULT_TEXT,
620                         (void *)rs->sr_text );
621                 slapi_pblock_set( op->o_pb, SLAPI_RESULT_MATCHED,
622                         (void *)rs->sr_matched );
623
624                 (void) slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_PRE_RESULT_FN,
625                         op->o_pb );
626         }
627 #endif /* LDAP_SLAPI */
628
629         if ( op->o_protocol < LDAP_VERSION3 ) {
630                 tmp = v2ref( rs->sr_ref, rs->sr_text );
631                 rs->sr_text = tmp;
632                 rs->sr_ref = NULL;
633         }
634
635         rs->sr_tag = req2res( op->o_tag );
636         rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
637
638         if ( send_ldap_response( op, rs ) == SLAP_CB_CONTINUE ) {
639                 if ( op->o_tag == LDAP_REQ_SEARCH ) {
640                         char nbuf[64];
641                         snprintf( nbuf, sizeof nbuf, "%d nentries=%d",
642                                 rs->sr_err, rs->sr_nentries );
643
644                         Statslog( LDAP_DEBUG_STATS,
645                         "conn=%lu op=%lu SEARCH RESULT tag=%lu err=%s text=%s\n",
646                                 op->o_connid, op->o_opid, rs->sr_tag, nbuf,
647                                 rs->sr_text ? rs->sr_text : "" );
648                 } else {
649                         Statslog( LDAP_DEBUG_STATS,
650                                 "conn=%lu op=%lu RESULT tag=%lu err=%d text=%s\n",
651                                 op->o_connid, op->o_opid, rs->sr_tag, rs->sr_err,
652                                 rs->sr_text ? rs->sr_text : "" );
653                 }
654         }
655
656         if( tmp != NULL ) ch_free(tmp);
657         rs->sr_text = otext;
658         rs->sr_ref = oref;
659 }
660
661 void
662 send_ldap_sasl( Operation *op, SlapReply *rs )
663 {
664         rs->sr_type = REP_SASL;
665 #ifdef NEW_LOGGING
666         LDAP_LOG( OPERATION, ENTRY, 
667                 "send_ldap_sasl: conn %lu err=%d len=%lu\n",
668                 op->o_connid, rs->sr_err,
669                 rs->sr_sasldata ? rs->sr_sasldata->bv_len : -1 );
670 #else
671         Debug( LDAP_DEBUG_TRACE, "send_ldap_sasl: err=%d len=%ld\n",
672                 rs->sr_err,
673                 rs->sr_sasldata ? (long) rs->sr_sasldata->bv_len : -1, NULL );
674 #endif
675
676         rs->sr_tag = req2res( op->o_tag );
677         rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
678
679         send_ldap_response( op, rs );
680 }
681
682 void
683 slap_send_ldap_extended( Operation *op, SlapReply *rs )
684 {
685         rs->sr_type = REP_EXTENDED;
686
687 #ifdef NEW_LOGGING
688         LDAP_LOG( OPERATION, ENTRY, 
689                 "send_ldap_extended: err=%d oid=%s len=%ld\n",
690                 rs->sr_err, rs->sr_rspoid ? rs->sr_rspoid : "",
691                 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
692 #else
693         Debug( LDAP_DEBUG_TRACE,
694                 "send_ldap_extended: err=%d oid=%s len=%ld\n",
695                 rs->sr_err,
696                 rs->sr_rspoid ? rs->sr_rspoid : "",
697                 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
698 #endif
699
700         rs->sr_tag = req2res( op->o_tag );
701         rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
702
703         send_ldap_response( op, rs );
704 }
705
706 void
707 slap_send_ldap_intermediate( Operation *op, SlapReply *rs )
708 {
709         rs->sr_type = REP_INTERMEDIATE;
710 #ifdef NEW_LOGGING
711         LDAP_LOG( OPERATION, ENTRY,
712                 "send_ldap_intermediate: err=%d oid=%s len=%ld\n",
713                 rs->sr_err, rs->sr_rspoid ? rs->sr_rspoid : "",
714                 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
715 #else
716         Debug( LDAP_DEBUG_TRACE,
717                 "send_ldap_intermediate: err=%d oid=%s len=%ld\n",
718                 rs->sr_err,
719                 rs->sr_rspoid ? rs->sr_rspoid : "",
720                 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
721 #endif
722         rs->sr_tag = LDAP_RES_INTERMEDIATE;
723         rs->sr_msgid = op->o_msgid;
724         send_ldap_response( op, rs );
725 }
726
727 int
728 slap_send_search_entry( Operation *op, SlapReply *rs )
729 {
730         BerElementBuffer berbuf;
731         BerElement      *ber = (BerElement *) &berbuf;
732         Attribute       *a, *aa;
733         int             i, j, rc=-1, bytes;
734         char            *edn;
735         int             userattrs;
736         int             opattrs;
737         AccessControlState acl_state = ACL_STATE_INIT;
738 #ifdef LDAP_SLAPI
739         /* Support for computed attribute plugins */
740         computed_attr_context    ctx;
741         AttributeName   *anp;
742 #endif
743         AttributeDescription *ad_entry = slap_schema.si_ad_entry;
744
745         /* a_flags: array of flags telling if the i-th element will be
746          *          returned or filtered out
747          * e_flags: array of a_flags
748          */
749         char            **e_flags = NULL;
750         Entry           *e;
751
752         rs->sr_type = REP_SEARCH;
753         if (op->o_callback) {
754                 slap_callback *sc = op->o_callback;
755                 rc = SLAP_CB_CONTINUE;
756                 for ( ; op->o_callback; ) {
757                         if ( op->o_callback->sc_response ) {
758                                 rc = op->o_callback->sc_response( op, rs );
759                                 if ( rc != SLAP_CB_CONTINUE ) break;
760                         }
761                         op->o_callback = op->o_callback->sc_next;
762                 }
763                 op->o_callback = sc;
764                 if ( rc != SLAP_CB_CONTINUE ) goto error_return;
765         }
766
767         e = rs->sr_mentry ? rs->sr_mentry : rs->sr_entry;
768
769 #ifdef NEW_LOGGING
770         LDAP_LOG( OPERATION, ENTRY, "send_search_entry: conn %lu dn=\"%s\"%s\n",
771                 op->o_connid, e->e_name.bv_val,
772                 op->ors_attrsonly ? " (attrsOnly)" : "" );
773 #else
774         Debug( LDAP_DEBUG_TRACE, "=> send_search_entry: conn %lu dn=\"%s\"%s\n",
775                 op->o_connid, e->e_name.bv_val,
776                 op->ors_attrsonly ? " (attrsOnly)" : "" );
777 #endif
778
779         if ( !access_allowed( op, e, ad_entry, NULL, ACL_READ, NULL )) {
780 #ifdef NEW_LOGGING
781                 LDAP_LOG( ACL, INFO, 
782                         "send_search_entry: conn %lu access to entry (%s) not allowed\n", 
783                         op->o_connid, e->e_name.bv_val, 0 );
784 #else
785                 Debug( LDAP_DEBUG_ACL,
786                         "send_search_entry: access to entry not allowed\n",
787                     0, 0, 0 );
788 #endif
789
790                 rc = 1;
791                 goto error_return;
792         }
793
794         edn = e->e_nname.bv_val;
795
796         if ( op->o_res_ber ) {
797                 /* read back control or LDAP_CONNECTIONLESS */
798                 ber = op->o_res_ber;
799
800         } else {
801                 ber_len_t       siz, len;
802                 struct berval   bv;
803
804                 entry_flatsize( e, &siz, &len, 0 );
805                 bv.bv_len = siz + len;
806                 bv.bv_val = op->o_tmpalloc(bv.bv_len, op->o_tmpmemctx );
807
808                 ber_init2( ber, &bv, LBER_USE_DER );
809                 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
810         }
811
812 #ifdef LDAP_CONNECTIONLESS
813         if ( op->o_conn && op->o_conn->c_is_udp ) {
814                 /* CONNECTIONLESS */
815                 if ( op->o_protocol == LDAP_VERSION2 ) {
816                         rc = ber_printf(ber, "t{O{" /*}}*/,
817                                 LDAP_RES_SEARCH_ENTRY, &e->e_name );
818                 } else {
819                         rc = ber_printf( ber, "{it{O{" /*}}}*/, op->o_msgid,
820                                 LDAP_RES_SEARCH_ENTRY, &e->e_name );
821                 }
822         } else
823 #endif
824         if ( op->o_res_ber ) {
825                 /* read back control */
826                 rc = ber_printf( ber, "{O{" /*}}*/, &e->e_name );
827         } else {
828                 rc = ber_printf( ber, "{it{O{" /*}}}*/, op->o_msgid,
829                         LDAP_RES_SEARCH_ENTRY, &e->e_name );
830         }
831
832         if ( rc == -1 ) {
833 #ifdef NEW_LOGGING
834                 LDAP_LOG( OPERATION, ERR, 
835                         "send_search_entry: conn %lu  ber_printf failed\n", 
836                         op->o_connid, 0, 0 );
837 #else
838                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
839 #endif
840
841                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
842                 send_ldap_error( op, rs, LDAP_OTHER, "encoding DN error" );
843                 goto error_return;
844         }
845
846         /* check for special all user attributes ("*") type */
847         userattrs = ( rs->sr_attrs == NULL ) ? 1
848                 : an_find( rs->sr_attrs, &AllUser );
849
850         /* check for special all operational attributes ("+") type */
851         opattrs = ( rs->sr_attrs == NULL ) ? 0
852                 : an_find( rs->sr_attrs, &AllOper );
853
854         /* create an array of arrays of flags. Each flag corresponds
855          * to particular value of attribute and equals 1 if value matches
856          * to ValuesReturnFilter or 0 if not
857          */     
858         if ( op->o_vrFilter != NULL ) {
859                 int     k = 0;
860                 size_t  size;
861
862                 for ( a = e->e_attrs, i=0; a != NULL; a = a->a_next, i++ ) {
863                         for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) k++;
864                 }
865
866                 size = i * sizeof(char *) + k;
867                 if ( size > 0 ) {
868                         char    *a_flags;
869                         e_flags = slap_sl_calloc ( 1, i * sizeof(char *) + k, op->o_tmpmemctx );
870                         if( e_flags == NULL ) {
871 #ifdef NEW_LOGGING
872                                 LDAP_LOG( OPERATION, ERR, 
873                                         "send_search_entry: conn %lu slap_sl_calloc failed\n",
874                                         op->o_connid ? op->o_connid : 0, 0, 0 );
875 #else
876                         Debug( LDAP_DEBUG_ANY, 
877                                         "send_search_entry: slap_sl_calloc failed\n", 0, 0, 0 );
878 #endif
879                                 ber_free( ber, 1 );
880         
881                                 send_ldap_error( op, rs, LDAP_OTHER, "out of memory" );
882                                 goto error_return;
883                         }
884                         a_flags = (char *)(e_flags + i);
885                         memset( a_flags, 0, k );
886                         for ( a = e->e_attrs, i = 0; a != NULL; a = a->a_next, i++ ) {
887                                 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ );
888                                 e_flags[i] = a_flags;
889                                 a_flags += j;
890                         }
891         
892                         rc = filter_matched_values(op, e->e_attrs, &e_flags) ; 
893                         if ( rc == -1 ) {
894 #ifdef NEW_LOGGING
895                                 LDAP_LOG( OPERATION, ERR, "send_search_entry: "
896                                         "conn %lu matched values filtering failed\n",
897                                         op->o_connid ? op->o_connid : 0, 0, 0 );
898 #else
899                         Debug( LDAP_DEBUG_ANY,
900                                         "matched values filtering failed\n", 0, 0, 0 );
901 #endif
902                                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
903                                 send_ldap_error( op, rs, LDAP_OTHER,
904                                         "matched values filtering error" );
905                                 goto error_return;
906                         }
907                 }
908         }
909
910         for ( a = e->e_attrs, j = 0; a != NULL; a = a->a_next, j++ ) {
911                 AttributeDescription *desc = a->a_desc;
912                 int finish = 0;
913
914                 if ( rs->sr_attrs == NULL ) {
915                         /* all attrs request, skip operational attributes */
916                         if( is_at_operational( desc->ad_type ) ) {
917                                 continue;
918                         }
919
920                 } else {
921                         /* specific attrs requested */
922                         if ( is_at_operational( desc->ad_type ) ) {
923                                 if( !opattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
924                                         continue;
925                                 }
926
927                         } else {
928                                 if (!userattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
929                                         continue;
930                                 }
931                         }
932                 }
933
934                 if ( op->ors_attrsonly ) {
935                         if ( ! access_allowed( op, e, desc, NULL,
936                                 ACL_READ, &acl_state ) )
937                         {
938 #ifdef NEW_LOGGING
939                                 LDAP_LOG( ACL, INFO, 
940                                         "send_search_entry: conn %lu access to attribute %s not "
941                                         "allowed\n", op->o_connid, desc->ad_cname.bv_val, 0 );
942 #else
943                                 Debug( LDAP_DEBUG_ACL, "send_search_entry: "
944                                         "conn %lu access to attribute %s not allowed\n",
945                                         op->o_connid, desc->ad_cname.bv_val, 0 );
946 #endif
947                                 continue;
948                         }
949
950                         if (( rc = ber_printf( ber, "{O[" /*]}*/ , &desc->ad_cname )) == -1 ) {
951 #ifdef NEW_LOGGING
952                                 LDAP_LOG( OPERATION, ERR, 
953                                         "send_search_entry: conn %lu  ber_printf failed\n", 
954                                         op->o_connid, 0, 0 );
955 #else
956                                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
957 #endif
958
959                                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
960                                 send_ldap_error( op, rs, LDAP_OTHER,
961                                         "encoding description error");
962                                 goto error_return;
963                         }
964                         finish = 1;
965
966                 } else {
967                         int first = 1;
968                         for ( i = 0; a->a_nvals[i].bv_val != NULL; i++ ) {
969                                 if ( ! access_allowed( op, e,
970                                         desc, &a->a_nvals[i], ACL_READ, &acl_state ) )
971                                 {
972 #ifdef NEW_LOGGING
973                                         LDAP_LOG( ACL, INFO, 
974                                                 "send_search_entry: conn %lu "
975                                                 "access to attribute %s, value #%d not allowed\n",
976                                                 op->o_connid, desc->ad_cname.bv_val, i );
977 #else
978                                         Debug( LDAP_DEBUG_ACL,
979                                                 "send_search_entry: conn %lu "
980                                                 "access to attribute %s, value #%d not allowed\n",
981                                                 op->o_connid, desc->ad_cname.bv_val, i );
982 #endif
983
984                                         continue;
985                                 }
986
987                                 if ( op->o_vrFilter && e_flags[j][i] == 0 ){
988                                         continue;
989                                 }
990
991                                 if ( first ) {
992                                         first = 0;
993                                         finish = 1;
994                                         if (( rc = ber_printf( ber, "{O[" /*]}*/ , &desc->ad_cname )) == -1 ) {
995 #ifdef NEW_LOGGING
996                                                 LDAP_LOG( OPERATION, ERR, 
997                                                         "send_search_entry: conn %lu  ber_printf failed\n", 
998                                                         op->o_connid, 0, 0 );
999 #else
1000                                                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1001 #endif
1002
1003                                                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1004                                                 send_ldap_error( op, rs, LDAP_OTHER,
1005                                                         "encoding description error");
1006                                                 goto error_return;
1007                                         }
1008                                 }
1009                                 if (( rc = ber_printf( ber, "O", &a->a_vals[i] )) == -1 ) {
1010 #ifdef NEW_LOGGING
1011                                         LDAP_LOG( OPERATION, ERR, 
1012                                                 "send_search_entry: conn %lu  "
1013                                                 "ber_printf failed.\n", op->o_connid, 0, 0 );
1014 #else
1015                                         Debug( LDAP_DEBUG_ANY,
1016                                             "ber_printf failed\n", 0, 0, 0 );
1017 #endif
1018
1019                                         if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1020                                         send_ldap_error( op, rs, LDAP_OTHER,
1021                                                 "encoding values error" );
1022                                         goto error_return;
1023                                 }
1024                         }
1025                 }
1026
1027                 if ( finish && ( rc = ber_printf( ber, /*{[*/ "]N}" )) == -1 ) {
1028 #ifdef NEW_LOGGING
1029                         LDAP_LOG( OPERATION, ERR, 
1030                                 "send_search_entry: conn %lu ber_printf failed\n", 
1031                                 op->o_connid, 0, 0 );
1032 #else
1033                         Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1034 #endif
1035
1036                         if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1037                         send_ldap_error( op, rs, LDAP_OTHER, "encode end error" );
1038                         goto error_return;
1039                 }
1040         }
1041
1042         /* eventually will loop through generated operational attributes */
1043         /* only subschemaSubentry and numSubordinates are implemented */
1044         aa = backend_operational( op, rs, opattrs );
1045
1046         if ( aa != NULL && op->o_vrFilter != NULL ) {
1047                 int     k = 0;
1048                 size_t  size;
1049
1050                 for ( a = aa, i=0; a != NULL; a = a->a_next, i++ ) {
1051                         for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) k++;
1052                 }
1053
1054                 size = i * sizeof(char *) + k;
1055                 if ( size > 0 ) {
1056                         char    *a_flags, **tmp;
1057                 
1058                         /*
1059                          * Reuse previous memory - we likely need less space
1060                          * for operational attributes
1061                          */
1062                         tmp = slap_sl_realloc( e_flags, i * sizeof(char *) + k,
1063                                 op->o_tmpmemctx );
1064                         if ( tmp == NULL ) {
1065 #ifdef NEW_LOGGING
1066                                 LDAP_LOG( OPERATION, ERR, 
1067                                         "send_search_entry: conn %lu "
1068                                         "not enough memory "
1069                                         "for matched values filtering\n", 
1070                                         op->o_connid, 0, 0);
1071 #else
1072                                 Debug( LDAP_DEBUG_ANY,
1073                                         "send_search_entry: conn %lu "
1074                                         "not enough memory "
1075                                         "for matched values filtering\n",
1076                                         op->o_connid, 0, 0 );
1077 #endif
1078                                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1079                                 send_ldap_error( op, rs, LDAP_OTHER,
1080                                         "not enough memory for matched values filtering" );
1081                                 goto error_return;
1082                         }
1083                         e_flags = tmp;
1084                         a_flags = (char *)(e_flags + i);
1085                         memset( a_flags, 0, k );
1086                         for ( a = aa, i=0; a != NULL; a = a->a_next, i++ ) {
1087                                 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ );
1088                                 e_flags[i] = a_flags;
1089                                 a_flags += j;
1090                         }
1091                         rc = filter_matched_values(op, aa, &e_flags) ; 
1092                     
1093                         if ( rc == -1 ) {
1094 #ifdef NEW_LOGGING
1095                                 LDAP_LOG( OPERATION, ERR, 
1096                                         "send_search_entry: conn %lu "
1097                                         "matched values filtering failed\n", 
1098                                         op->o_connid ? op->o_connid : 0, 0, 0);
1099 #else
1100                                 Debug( LDAP_DEBUG_ANY,
1101                                         "matched values filtering failed\n", 0, 0, 0 );
1102 #endif
1103                                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1104                                 send_ldap_error( op, rs, LDAP_OTHER,
1105                                         "matched values filtering error" );
1106                                 goto error_return;
1107                         }
1108                 }
1109         }
1110
1111         for (a = aa, j=0; a != NULL; a = a->a_next, j++ ) {
1112                 AttributeDescription *desc = a->a_desc;
1113
1114                 if ( rs->sr_attrs == NULL ) {
1115                         /* all attrs request, skip operational attributes */
1116                         if( is_at_operational( desc->ad_type ) ) {
1117                                 continue;
1118                         }
1119
1120                 } else {
1121                         /* specific attrs requested */
1122                         if( is_at_operational( desc->ad_type ) ) {
1123                                 if( !opattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
1124                                         continue;
1125                                 }
1126                         } else {
1127                                 if (!userattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
1128                                         continue;
1129                                 }
1130                         }
1131                 }
1132
1133                 if ( ! access_allowed( op, e, desc, NULL,
1134                         ACL_READ, &acl_state ) )
1135                 {
1136 #ifdef NEW_LOGGING
1137                         LDAP_LOG( ACL, INFO, 
1138                                 "send_search_entry: conn %lu "
1139                                 "access to attribute %s not allowed\n",
1140                                 op->o_connid, desc->ad_cname.bv_val, 0 );
1141 #else
1142                         Debug( LDAP_DEBUG_ACL,
1143                                 "send_search_entry: conn %lu "
1144                                 "access to attribute %s not allowed\n",
1145                                 op->o_connid, desc->ad_cname.bv_val, 0 );
1146 #endif
1147
1148                         continue;
1149                 }
1150
1151                 rc = ber_printf( ber, "{O[" /*]}*/ , &desc->ad_cname );
1152                 if ( rc == -1 ) {
1153 #ifdef NEW_LOGGING
1154                         LDAP_LOG( OPERATION, ERR, 
1155                                 "send_search_entry: conn %lu  "
1156                                 "ber_printf failed\n", op->o_connid, 0, 0 );
1157 #else
1158                         Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1159 #endif
1160
1161                         if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1162                         send_ldap_error( op, rs, LDAP_OTHER,
1163                                 "encoding description error" );
1164                         attrs_free( aa );
1165                         goto error_return;
1166                 }
1167
1168                 if ( ! op->ors_attrsonly ) {
1169                         for ( i = 0; a->a_vals[i].bv_val != NULL; i++ ) {
1170                                 if ( ! access_allowed( op, e,
1171                                         desc, &a->a_vals[i], ACL_READ, &acl_state ) )
1172                                 {
1173 #ifdef NEW_LOGGING
1174                                         LDAP_LOG( ACL, INFO, 
1175                                                 "send_search_entry: conn %lu "
1176                                                 "access to %s, value %d not allowed\n",
1177                                                 op->o_connid, desc->ad_cname.bv_val, i );
1178 #else
1179                                         Debug( LDAP_DEBUG_ACL,
1180                                                 "send_search_entry: access to attribute %s, "
1181                                                 "value %d not allowed\n",
1182                                                 desc->ad_cname.bv_val, i, 0 );
1183 #endif
1184
1185                                         continue;
1186                                 }
1187
1188                                 if ( op->o_vrFilter && e_flags[j][i] == 0 ){
1189                                         continue;
1190                                 }
1191
1192                                 if (( rc = ber_printf( ber, "O", &a->a_vals[i] )) == -1 ) {
1193 #ifdef NEW_LOGGING
1194                                         LDAP_LOG( OPERATION, ERR, 
1195                                                 "send_search_entry: conn %lu  ber_printf failed\n", 
1196                                                 op->o_connid, 0, 0 );
1197 #else
1198                                         Debug( LDAP_DEBUG_ANY,
1199                                             "ber_printf failed\n", 0, 0, 0 );
1200 #endif
1201
1202                                         if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1203                                         send_ldap_error( op, rs, LDAP_OTHER,
1204                                                 "encoding values error" );
1205                                         attrs_free( aa );
1206                                         goto error_return;
1207                                 }
1208                         }
1209                 }
1210
1211                 if (( rc = ber_printf( ber, /*{[*/ "]N}" )) == -1 ) {
1212 #ifdef NEW_LOGGING
1213                         LDAP_LOG( OPERATION, ERR, 
1214                                 "send_search_entry: conn %lu  ber_printf failed\n",
1215                                 op->o_connid, 0, 0 );
1216 #else
1217                         Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1218 #endif
1219
1220                         if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1221                         send_ldap_error( op, rs, LDAP_OTHER, "encode end error" );
1222                         attrs_free( aa );
1223                         goto error_return;
1224                 }
1225         }
1226
1227 #ifdef LDAP_SLAPI
1228         /*
1229          * First, setup the computed attribute context that is
1230          * passed to all plugins.
1231          */
1232         if ( op->o_pb ) {
1233                 ctx.cac_pb = op->o_pb;
1234                 ctx.cac_attrs = rs->sr_attrs;
1235                 ctx.cac_attrsonly = op->ors_attrsonly;
1236                 ctx.cac_userattrs = userattrs;
1237                 ctx.cac_opattrs = opattrs;
1238                 ctx.cac_acl_state = acl_state;
1239                 ctx.cac_private = (void *)ber;
1240
1241                 /*
1242                  * For each client requested attribute, call the plugins.
1243                  */
1244                 if ( rs->sr_attrs != NULL ) {
1245                         for ( anp = rs->sr_attrs; anp->an_name.bv_val != NULL; anp++ ) {
1246                                 rc = compute_evaluator( &ctx, anp->an_name.bv_val,
1247                                         e, slapi_int_compute_output_ber );
1248                                 if ( rc == 1 ) break;
1249                         }
1250                 } else {
1251                         /*
1252                          * Technically we shouldn't be returning operational attributes
1253                          * when the user requested only user attributes. We'll let the
1254                          * plugin decide whether to be naughty or not.
1255                          */
1256                         rc = compute_evaluator( &ctx, "*",
1257                                 e, slapi_int_compute_output_ber );
1258                 }
1259                 if ( rc == 1 ) {
1260                         if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1261                         send_ldap_error( op, rs, LDAP_OTHER, "computed attribute error" );
1262                         goto error_return;
1263                 }
1264         }
1265 #endif /* LDAP_SLAPI */
1266
1267         /* free e_flags */
1268         if ( e_flags ) {
1269                 slap_sl_free( e_flags, op->o_tmpmemctx );
1270                 e_flags = NULL;
1271         }
1272
1273         attrs_free( aa );
1274         rc = ber_printf( ber, /*{{*/ "}N}" );
1275
1276         if( rc != -1 ) {
1277                 rc = send_ldap_controls( op, ber, rs->sr_ctrls );
1278         }
1279
1280         if( rc != -1 ) {
1281 #ifdef LDAP_CONNECTIONLESS
1282                 if( op->o_conn && op->o_conn->c_is_udp ) {
1283                         if ( op->o_protocol != LDAP_VERSION2 ) {
1284                                 rc = ber_printf( ber, /*{*/ "N}" );
1285                         }
1286                 } else
1287 #endif
1288                 if ( op->o_res_ber == NULL ) {
1289                         rc = ber_printf( ber, /*{*/ "N}" );
1290                 }
1291         }
1292
1293         if ( rc == -1 ) {
1294 #ifdef NEW_LOGGING
1295                 LDAP_LOG( OPERATION, ERR, 
1296                         "send_search_entry: conn %lu ber_printf failed\n", 
1297                         op->o_connid, 0, 0 );
1298 #else
1299                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1300 #endif
1301
1302                 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1303                 send_ldap_error( op, rs, LDAP_OTHER, "encode entry end error" );
1304                 rc = 1;
1305                 goto error_return;
1306         }
1307
1308         if ( op->o_res_ber == NULL ) {
1309                 bytes = send_ldap_ber( op->o_conn, ber );
1310                 ber_free_buf( ber );
1311
1312                 if ( bytes < 0 ) {
1313 #ifdef NEW_LOGGING
1314                         LDAP_LOG( OPERATION, ERR, 
1315                                 "send_search_entry: conn %lu  ber write failed.\n", 
1316                                 op->o_connid, 0, 0 );
1317 #else
1318                         Debug( LDAP_DEBUG_ANY,
1319                                 "send_search_entry: ber write failed\n",
1320                                 0, 0, 0 );
1321 #endif
1322
1323                         rc = -1;
1324                         goto error_return;
1325                 }
1326                 rs->sr_nentries++;
1327
1328                 ldap_pvt_thread_mutex_lock( &num_sent_mutex );
1329                 num_bytes_sent += bytes;
1330                 num_entries_sent++;
1331                 num_pdu_sent++;
1332                 ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
1333         }
1334
1335         Statslog( LDAP_DEBUG_STATS2, "conn=%lu op=%lu ENTRY dn=\"%s\"\n",
1336             op->o_connid, op->o_opid, e->e_dn, 0, 0 );
1337
1338 #ifdef NEW_LOGGING
1339         LDAP_LOG( OPERATION, ENTRY, 
1340                 "send_search_entry: conn %lu exit.\n", op->o_connid, 0, 0 );
1341 #else
1342         Debug( LDAP_DEBUG_TRACE, "<= send_search_entry\n", 0, 0, 0 );
1343 #endif
1344
1345         rc = 0;
1346
1347 error_return:;
1348         if ( e_flags ) {
1349                 slap_sl_free( e_flags, op->o_tmpmemctx );
1350         }
1351
1352         if ( op->o_callback ) {
1353                 slap_callback *sc = op->o_callback;
1354                 for ( ; op->o_callback; op->o_callback = op->o_callback->sc_next ) {
1355                         if ( op->o_callback->sc_cleanup ) {
1356                                 (void)op->o_callback->sc_cleanup( op, rs );
1357                         }
1358                 }
1359                 op->o_callback = sc;
1360         }
1361
1362         /* FIXME: I think rs->sr_type should be explicitly set to
1363          * REP_SEARCH here. That's what it was when we entered this
1364          * function. send_ldap_error may have changed it, but we
1365          * should set it back so that the cleanup functions know
1366          * what they're doing.
1367          */
1368         if ( op->o_tag == LDAP_REQ_SEARCH && rs->sr_type == REP_SEARCH 
1369                 && rs->sr_entry 
1370                 && ( rs->sr_flags & REP_ENTRY_MUSTBEFREED ) ) 
1371         {
1372                 entry_free( rs->sr_entry );
1373                 rs->sr_entry = NULL;
1374                 rs->sr_flags &= ~REP_ENTRY_MUSTBEFREED;
1375         }
1376
1377         return( rc );
1378 }
1379
1380 int
1381 slap_send_search_reference( Operation *op, SlapReply *rs )
1382 {
1383         BerElementBuffer berbuf;
1384         BerElement      *ber = (BerElement *) &berbuf;
1385         int rc = 0;
1386         int bytes;
1387
1388         AttributeDescription *ad_ref = slap_schema.si_ad_ref;
1389         AttributeDescription *ad_entry = slap_schema.si_ad_entry;
1390
1391         rs->sr_type = REP_SEARCHREF;
1392         if (op->o_callback) {
1393                 slap_callback *sc = op->o_callback;
1394                 rc = SLAP_CB_CONTINUE;
1395                 for ( ; op->o_callback; ) {
1396                         if ( op->o_callback->sc_response ) {
1397                                 rc = op->o_callback->sc_response( op, rs );
1398                                 if ( rc != SLAP_CB_CONTINUE ) break;
1399                         }
1400                         op->o_callback = op->o_callback->sc_next;
1401                 }
1402                 op->o_callback = sc;
1403                 if ( rc != SLAP_CB_CONTINUE ) goto rel;
1404         }
1405
1406 #ifdef NEW_LOGGING
1407         LDAP_LOG( OPERATION, ENTRY, 
1408                 "send_search_reference: conn %lu  dn=\"%s\"\n", 
1409                 op->o_connid,
1410                 rs->sr_entry ? rs->sr_entry->e_name.bv_val : "(null)", 0 );
1411 #else
1412         Debug( LDAP_DEBUG_TRACE,
1413                 "=> send_search_reference: dn=\"%s\"\n",
1414                 rs->sr_entry ? rs->sr_entry->e_name.bv_val : "(null)", 0, 0 );
1415 #endif
1416
1417         if (  rs->sr_entry && ! access_allowed( op, rs->sr_entry,
1418                 ad_entry, NULL, ACL_READ, NULL ) )
1419         {
1420 #ifdef NEW_LOGGING
1421                 LDAP_LOG( ACL, INFO, 
1422                         "send_search_reference: conn %lu        "
1423                         "access to entry %s not allowed\n",
1424                         op->o_connid, rs->sr_entry->e_dn, 0 );
1425 #else
1426                 Debug( LDAP_DEBUG_ACL,
1427                         "send_search_reference: access to entry not allowed\n",
1428                     0, 0, 0 );
1429 #endif
1430                 rc = 1;
1431                 goto rel;
1432         }
1433
1434         if ( rs->sr_entry && ! access_allowed( op, rs->sr_entry,
1435                 ad_ref, NULL, ACL_READ, NULL ) )
1436         {
1437 #ifdef NEW_LOGGING
1438                 LDAP_LOG( ACL, INFO, 
1439                         "send_search_reference: conn %lu access "
1440                         "to reference not allowed.\n", op->o_connid, 0, 0 );
1441 #else
1442                 Debug( LDAP_DEBUG_ACL,
1443                         "send_search_reference: access "
1444                         "to reference not allowed\n",
1445                     0, 0, 0 );
1446 #endif
1447                 rc = 1;
1448                 goto rel;
1449         }
1450
1451 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
1452         if( op->o_domain_scope ) {
1453 #ifdef NEW_LOGGING
1454                 LDAP_LOG( OPERATION, ERR, 
1455                         "send_search_reference: conn %lu domainScope control in (%s).\n",
1456                         op->o_connid, rs->sr_entry->e_dn, 0 );
1457 #else
1458                 Debug( LDAP_DEBUG_ANY,
1459                         "send_search_reference: domainScope control in (%s)\n", 
1460                         rs->sr_entry->e_dn, 0, 0 );
1461 #endif
1462                 rc = 0;
1463                 goto rel;
1464         }
1465 #endif
1466
1467         if( rs->sr_ref == NULL ) {
1468 #ifdef NEW_LOGGING
1469                 LDAP_LOG( OPERATION, ERR, 
1470                         "send_search_reference: conn %lu null ref in (%s).\n",
1471                         op->o_connid, rs->sr_entry ? rs->sr_entry->e_dn : "(null)", 0 );
1472 #else
1473                 Debug( LDAP_DEBUG_ANY,
1474                         "send_search_reference: null ref in (%s)\n", 
1475                         rs->sr_entry ? rs->sr_entry->e_dn : "(null)", 0, 0 );
1476 #endif
1477                 rc = 1;
1478                 goto rel;
1479         }
1480
1481         if( op->o_protocol < LDAP_VERSION3 ) {
1482                 rc = 0;
1483                 /* save the references for the result */
1484                 if( rs->sr_ref[0].bv_val != NULL ) {
1485                         if( value_add( &rs->sr_v2ref, rs->sr_ref ) )
1486                                 rc = LDAP_OTHER;
1487                 }
1488                 goto rel;
1489         }
1490
1491 #ifdef LDAP_CONNECTIONLESS
1492         if( op->o_conn && op->o_conn->c_is_udp ) {
1493                 ber = op->o_res_ber;
1494         } else
1495 #endif
1496         {
1497                 ber_init_w_nullc( ber, LBER_USE_DER );
1498                 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1499         }
1500
1501         rc = ber_printf( ber, "{it{W}" /*"}"*/ , op->o_msgid,
1502                 LDAP_RES_SEARCH_REFERENCE, rs->sr_ref );
1503
1504         if( rc != -1 ) {
1505                 rc = send_ldap_controls( op, ber, rs->sr_ctrls );
1506         }
1507
1508         if( rc != -1 ) {
1509                 rc = ber_printf( ber, /*"{"*/ "N}" );
1510         }
1511
1512         if ( rc == -1 ) {
1513 #ifdef NEW_LOGGING
1514                 LDAP_LOG( OPERATION, ERR, 
1515                         "send_search_reference: conn %lu        "
1516                         "ber_printf failed.\n", op->o_connid, 0, 0 );
1517 #else
1518                 Debug( LDAP_DEBUG_ANY,
1519                         "send_search_reference: ber_printf failed\n", 0, 0, 0 );
1520 #endif
1521
1522 #ifdef LDAP_CONNECTIONLESS
1523                 if (!op->o_conn || op->o_conn->c_is_udp == 0)
1524 #endif
1525                 ber_free_buf( ber );
1526                 send_ldap_error( op, rs, LDAP_OTHER, "encode DN error" );
1527                 goto rel;
1528         }
1529
1530 #ifdef LDAP_CONNECTIONLESS
1531         if (!op->o_conn || op->o_conn->c_is_udp == 0) {
1532 #endif
1533         bytes = send_ldap_ber( op->o_conn, ber );
1534         ber_free_buf( ber );
1535
1536         ldap_pvt_thread_mutex_lock( &num_sent_mutex );
1537         num_bytes_sent += bytes;
1538         num_refs_sent++;
1539         num_pdu_sent++;
1540         ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
1541 #ifdef LDAP_CONNECTIONLESS
1542         }
1543 #endif
1544
1545         Statslog( LDAP_DEBUG_STATS2, "conn=%lu op=%lu REF dn=\"%s\"\n",
1546                 op->o_connid, op->o_opid, rs->sr_entry ? rs->sr_entry->e_dn : "(null)", 0, 0 );
1547
1548 #ifdef NEW_LOGGING
1549         LDAP_LOG( OPERATION, ENTRY, 
1550                 "send_search_reference: conn %lu exit.\n", op->o_connid, 0, 0 );
1551 #else
1552         Debug( LDAP_DEBUG_TRACE, "<= send_search_reference\n", 0, 0, 0 );
1553 #endif
1554
1555 rel:
1556         if ( op->o_callback ) {
1557                 slap_callback *sc = op->o_callback;
1558                 for ( ; op->o_callback; op->o_callback = op->o_callback->sc_next ) {
1559                         if ( op->o_callback->sc_cleanup ) {
1560                                 (void)op->o_callback->sc_cleanup( op, rs );
1561                         }
1562                 }
1563                 op->o_callback = sc;
1564         }
1565
1566         return rc;
1567 }
1568
1569 int
1570 str2result(
1571     char        *s,
1572     int         *code,
1573     char        **matched,
1574     char        **info
1575 )
1576 {
1577         int     rc;
1578         char    *c;
1579
1580         *code = LDAP_SUCCESS;
1581         *matched = NULL;
1582         *info = NULL;
1583
1584         if ( strncasecmp( s, "RESULT", 6 ) != 0 ) {
1585 #ifdef NEW_LOGGING
1586                 LDAP_LOG( OPERATION, INFO, 
1587                         "str2result: (%s), expecting \"RESULT\"\n", s, 0, 0 );
1588 #else
1589                 Debug( LDAP_DEBUG_ANY, "str2result (%s) expecting \"RESULT\"\n",
1590                     s, 0, 0 );
1591 #endif
1592
1593                 return( -1 );
1594         }
1595
1596         rc = 0;
1597         while ( (s = strchr( s, '\n' )) != NULL ) {
1598                 *s++ = '\0';
1599                 if ( *s == '\0' ) {
1600                         break;
1601                 }
1602                 if ( (c = strchr( s, ':' )) != NULL ) {
1603                         c++;
1604                 }
1605
1606                 if ( strncasecmp( s, "code", 4 ) == 0 ) {
1607                         if ( c != NULL ) {
1608                                 *code = atoi( c );
1609                         }
1610                 } else if ( strncasecmp( s, "matched", 7 ) == 0 ) {
1611                         if ( c != NULL ) {
1612                                 *matched = c;
1613                         }
1614                 } else if ( strncasecmp( s, "info", 4 ) == 0 ) {
1615                         if ( c != NULL ) {
1616                                 *info = c;
1617                         }
1618                 } else {
1619 #ifdef NEW_LOGGING
1620                         LDAP_LOG( OPERATION, INFO, "str2result: (%s) unknown.\n", s, 0, 0 );
1621 #else
1622                         Debug( LDAP_DEBUG_ANY, "str2result (%s) unknown\n",
1623                             s, 0, 0 );
1624 #endif
1625
1626                         rc = -1;
1627                 }
1628         }
1629
1630         return( rc );
1631 }
1632
1633 int slap_read_controls(
1634         Operation *op,
1635         SlapReply *rs,
1636         Entry *e,
1637         const struct berval *oid,
1638         LDAPControl **ctrl )
1639 {
1640         int rc;
1641         struct berval bv;
1642         BerElementBuffer berbuf;
1643         BerElement *ber = (BerElement *) &berbuf;
1644         LDAPControl c;
1645         ber_len_t       siz, len;
1646         Operation myop;
1647
1648 #ifdef NEW_LOGGING
1649         LDAP_LOG( OPERATION, INFO, "slap_read_controls: (%s) %s\n",
1650                 oid->bv_val, e->e_dn, 0 );
1651 #else
1652         Debug( LDAP_DEBUG_ANY, "slap_read_controls: (%s) %s\n",
1653                 oid->bv_val, e->e_dn, 0 );
1654 #endif
1655
1656         rs->sr_entry = e;
1657         rs->sr_attrs = ( oid == &slap_pre_read_bv ) ?
1658                 op->o_preread_attrs : op->o_postread_attrs; 
1659
1660         entry_flatsize( rs->sr_entry, &siz, &len, 0 );
1661         bv.bv_len = siz + len;
1662         bv.bv_val = op->o_tmpalloc(bv.bv_len, op->o_tmpmemctx );
1663
1664         ber_init2( ber, &bv, LBER_USE_DER );
1665         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1666
1667         /* create new operation */
1668         myop = *op;
1669         myop.o_bd = NULL;
1670         myop.o_res_ber = ber;
1671
1672         rc = slap_send_search_entry( &myop, rs );
1673         if( rc ) return rc;
1674
1675         rc = ber_flatten2( ber, &c.ldctl_value, 0 );
1676
1677         if( rc == LBER_ERROR ) return LDAP_OTHER;
1678
1679         c.ldctl_oid = oid->bv_val;
1680         c.ldctl_iscritical = 0;
1681
1682         if ( ctrl == NULL ) {
1683                 /* first try */
1684                 *ctrl = (LDAPControl *) slap_sl_calloc( 1, sizeof(LDAPControl), NULL );
1685         } else {
1686                 /* retry: free previous try */
1687                 slap_sl_free( (*ctrl)->ldctl_value.bv_val, &op->o_tmpmemctx );
1688         }
1689
1690         **ctrl = c;
1691         return LDAP_SUCCESS;
1692 }
1693
1694 /* Map API errors to protocol errors... */
1695 int
1696 slap_map_api2result( SlapReply *rs )
1697 {
1698         switch(rs->sr_err) {
1699         case LDAP_SERVER_DOWN:
1700                 return LDAP_UNAVAILABLE;
1701         case LDAP_LOCAL_ERROR:
1702                 return LDAP_OTHER;
1703         case LDAP_ENCODING_ERROR:
1704         case LDAP_DECODING_ERROR:
1705                 return LDAP_PROTOCOL_ERROR;
1706         case LDAP_TIMEOUT:
1707                 return LDAP_UNAVAILABLE;
1708         case LDAP_AUTH_UNKNOWN:
1709                 return LDAP_AUTH_METHOD_NOT_SUPPORTED;
1710         case LDAP_FILTER_ERROR:
1711                 rs->sr_text = "Filter error";
1712                 return LDAP_OTHER;
1713         case LDAP_USER_CANCELLED:
1714                 rs->sr_text = "User cancelled";
1715                 return LDAP_OTHER;
1716         case LDAP_PARAM_ERROR:
1717                 return LDAP_PROTOCOL_ERROR;
1718         case LDAP_NO_MEMORY:
1719                 return LDAP_OTHER;
1720         case LDAP_CONNECT_ERROR:
1721                 return LDAP_UNAVAILABLE;
1722         case LDAP_NOT_SUPPORTED:
1723                 return LDAP_UNWILLING_TO_PERFORM;
1724         case LDAP_CONTROL_NOT_FOUND:
1725                 return LDAP_PROTOCOL_ERROR;
1726         case LDAP_NO_RESULTS_RETURNED:
1727                 return LDAP_NO_SUCH_OBJECT;
1728         case LDAP_MORE_RESULTS_TO_RETURN:
1729                 rs->sr_text = "More results to return";
1730                 return LDAP_OTHER;
1731         case LDAP_CLIENT_LOOP:
1732         case LDAP_REFERRAL_LIMIT_EXCEEDED:
1733                 return LDAP_LOOP_DETECT;
1734         default:
1735                 if ( LDAP_API_ERROR(rs->sr_err) ) return LDAP_OTHER;
1736                 return rs->sr_err;
1737         }
1738 }
1739