1 /* result.c - routines to send ldap results, errors, and referrals */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2004 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17 * All rights reserved.
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.
31 #include <ac/socket.h>
33 #include <ac/string.h>
36 #include <ac/unistd.h>
41 #include "slapi/slapi.h"
44 int slap_null_cb( Operation *op, SlapReply *rs )
49 int slap_replog_cb( Operation *op, SlapReply *rs )
51 if ( rs->sr_err == LDAP_SUCCESS ) {
54 return SLAP_CB_CONTINUE;
57 static char *v2ref( BerVarray ref, const char *text )
59 size_t len = 0, i = 0;
64 return ch_strdup(text);
72 if (text[len-1] != '\n') {
77 v2 = SLAP_MALLOC( len+i+sizeof("Referral:") );
80 LDAP_LOG( OPERATION, ERR, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
82 Debug( LDAP_DEBUG_ANY, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
93 strcpy( v2+len, "Referral:" );
94 len += sizeof("Referral:");
96 for( i=0; ref[i].bv_val != NULL; i++ ) {
97 v2 = SLAP_REALLOC( v2, len + ref[i].bv_len + 1 );
100 LDAP_LOG( OPERATION, ERR, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
102 Debug( LDAP_DEBUG_ANY, "v2ref: SLAP_MALLOC failed", 0, 0, 0 );
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] != '/') {
118 static ber_tag_t req2res( ber_tag_t tag )
123 case LDAP_REQ_COMPARE:
124 case LDAP_REQ_EXTENDED:
125 case LDAP_REQ_MODIFY:
126 case LDAP_REQ_MODRDN:
130 case LDAP_REQ_DELETE:
131 tag = LDAP_RES_DELETE;
134 case LDAP_REQ_ABANDON:
135 case LDAP_REQ_UNBIND:
139 case LDAP_REQ_SEARCH:
140 tag = LDAP_RES_SEARCH_RESULT;
150 static long send_ldap_ber(
156 ber_get_option( ber, LBER_OPT_BER_BYTES_TO_WRITE, &bytes );
158 /* write only one pdu at a time - wait til it's our turn */
159 ldap_pvt_thread_mutex_lock( &conn->c_write_mutex );
161 /* lock the connection */
162 ldap_pvt_thread_mutex_lock( &conn->c_mutex );
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 );
176 if ( ber_flush( conn->c_sb, ber, 0 ) == 0 ) {
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.
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) );
193 Debug( LDAP_DEBUG_CONNS, "ber_flush failed errno=%d reason=\"%s\"\n",
194 err, sock_errstr(err), 0 );
197 if ( err != EWOULDBLOCK && err != EAGAIN ) {
198 connection_closing( conn );
200 ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
201 ldap_pvt_thread_mutex_unlock( &conn->c_write_mutex );
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 );
211 ldap_pvt_thread_cond_wait( &conn->c_write_cv, &conn->c_mutex );
212 conn->c_writewaiter = 0;
215 ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
216 ldap_pvt_thread_mutex_unlock( &conn->c_write_mutex );
222 send_ldap_control( BerElement *ber, LDAPControl *c )
228 rc = ber_printf( ber, "{s" /*}*/, c->ldctl_oid );
230 if( c->ldctl_iscritical ) {
231 rc = ber_printf( ber, "b",
232 (ber_int_t) c->ldctl_iscritical ) ;
233 if( rc == -1 ) return rc;
236 if( c->ldctl_value.bv_val != NULL ) {
237 rc = ber_printf( ber, "O", &c->ldctl_value );
238 if( rc == -1 ) return rc;
241 rc = ber_printf( ber, /*{*/"N}" );
242 if( rc == -1 ) return rc;
248 send_ldap_controls( Operation *o, BerElement *ber, LDAPControl **c )
252 LDAPControl **sctrls = NULL;
255 * Retrieve any additional controls that may be set by the
259 if ( o->o_pb && slapi_pblock_get( o->o_pb, SLAPI_RESCONTROLS, &sctrls ) != 0 ) {
263 if ( c == NULL && sctrls == NULL ) return 0;
265 if( c == NULL ) return 0;
266 #endif /* LDAP_SLAPI */
268 rc = ber_printf( ber, "t{"/*}*/, LDAP_TAG_CONTROLS );
269 if( rc == -1 ) return rc;
273 #endif /* LDAP_SLAPI */
274 for( ; *c != NULL; c++) {
275 rc = send_ldap_control( ber, *c );
276 if( rc == -1 ) return rc;
280 if ( sctrls != NULL ) {
281 for ( c = sctrls; *c != NULL; c++ ) {
282 rc = send_ldap_control( ber, *c );
283 if( rc == -1 ) return rc;
286 #endif /* LDAP_SLAPI */
288 rc = ber_printf( ber, /*{*/"N}" );
298 BerElementBuffer berbuf;
299 BerElement *ber = (BerElement *) &berbuf;
300 int rc = LDAP_SUCCESS;
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;
311 op->o_callback = op->o_callback->sc_next;
314 if ( rc != SLAP_CB_CONTINUE ) goto cleanup;
317 #ifdef LDAP_CONNECTIONLESS
318 if (op->o_conn && op->o_conn->c_is_udp)
323 ber_init_w_nullc( ber, LBER_USE_DER );
324 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
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 );
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 );
339 LDAP_LOG( OPERATION, ARGS,
340 "send_ldap_response: conn %lu ref=\"%s\"\n",
342 rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL" , 0 );
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",
350 #ifdef LDAP_CONNECTIONLESS
351 if (op->o_conn && op->o_conn->c_is_udp &&
352 op->o_protocol == LDAP_VERSION2 )
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 );
360 if ( rs->sr_type == REP_INTERMEDIATE ) {
361 rc = ber_printf( ber, "{it{" /*"}}"*/,
362 rs->sr_msgid, rs->sr_tag );
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 );
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 );
377 assert( rs->sr_err != LDAP_REFERRAL );
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 );
387 ( rs->sr_type == REP_EXTENDED || rs->sr_type == REP_INTERMEDIATE ))
389 if ( rs->sr_rspoid != NULL ) {
390 rc = ber_printf( ber, "ts",
391 LDAP_TAG_EXOP_RES_OID, rs->sr_rspoid );
393 if( rc != -1 && rs->sr_rspdata != NULL ) {
394 rc = ber_printf( ber, "tO",
395 LDAP_TAG_EXOP_RES_VALUE, rs->sr_rspdata );
400 rc = ber_printf( ber, /*"{"*/ "N}" );
404 rc = send_ldap_controls( op, ber, rs->sr_ctrls );
408 rc = ber_printf( ber, /*"{"*/ "N}" );
411 #ifdef LDAP_CONNECTIONLESS
412 if( op->o_conn && op->o_conn->c_is_udp && op->o_protocol == LDAP_VERSION2 && rc != -1 ) {
413 rc = ber_printf( ber, /*"{"*/ "N}" );
419 LDAP_LOG( OPERATION, ERR,
420 "send_ldap_response: conn %lu ber_printf failed\n",
421 op->o_connid, 0, 0 );
423 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
426 #ifdef LDAP_CONNECTIONLESS
427 if (!op->o_conn || op->o_conn->c_is_udp == 0)
434 bytes = send_ldap_ber( op->o_conn, ber );
435 #ifdef LDAP_CONNECTIONLESS
436 if (!op->o_conn || op->o_conn->c_is_udp == 0)
442 LDAP_LOG( OPERATION, ERR,
443 "send_ldap_response: conn %lu ber write failed\n",
444 op->o_connid ? op->o_connid : 0, 0, 0 );
446 Debug( LDAP_DEBUG_ANY,
447 "send_ldap_response: ber write failed\n",
456 slapi_pblock_set( op->o_pb, SLAPI_RESULT_CODE, (void *)rs->sr_err );
457 slapi_pblock_set( op->o_pb, SLAPI_RESULT_MATCHED, (void *)rs->sr_matched );
458 slapi_pblock_set( op->o_pb, SLAPI_RESULT_TEXT, (void *)rs->sr_text );
460 #endif /* LDAP_SLAPI */
462 ldap_pvt_thread_mutex_lock( &num_sent_mutex );
463 num_bytes_sent += bytes;
465 ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
468 if ( rs->sr_matched && rs->sr_flags & REP_MATCHED_MUSTBEFREED ) {
469 free( (char *)rs->sr_matched );
470 rs->sr_matched = NULL;
473 if (op->o_callback) {
474 slap_callback *sc = op->o_callback;
475 for ( ; op->o_callback; op->o_callback = op->o_callback->sc_next ) {
476 if ( op->o_callback->sc_cleanup ) {
477 op->o_callback->sc_cleanup( op, rs );
488 send_ldap_disconnect( Operation *op, SlapReply *rs )
490 #define LDAP_UNSOLICITED_ERROR(e) \
491 ( (e) == LDAP_PROTOCOL_ERROR \
492 || (e) == LDAP_STRONG_AUTH_REQUIRED \
493 || (e) == LDAP_UNAVAILABLE )
495 assert( LDAP_UNSOLICITED_ERROR( rs->sr_err ) );
497 rs->sr_type = REP_EXTENDED;
500 LDAP_LOG( OPERATION, ENTRY,
501 "send_ldap_disconnect: conn %lu %d:%s\n",
502 op->o_connid, rs->sr_err, rs->sr_text ? rs->sr_text : "" );
504 Debug( LDAP_DEBUG_TRACE,
505 "send_ldap_disconnect %d:%s\n",
506 rs->sr_err, rs->sr_text ? rs->sr_text : "", NULL );
510 if ( op->o_protocol < LDAP_VERSION3 ) {
511 rs->sr_rspoid = NULL;
512 rs->sr_tag = req2res( op->o_tag );
513 rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
516 rs->sr_rspoid = LDAP_NOTICE_DISCONNECT;
517 rs->sr_tag = LDAP_RES_EXTENDED;
521 send_ldap_response( op, rs );
523 Statslog( LDAP_DEBUG_STATS,
524 "conn=%lu op=%lu DISCONNECT tag=%lu err=%d text=%s\n",
525 op->o_connid, op->o_opid, rs->sr_tag, rs->sr_err, rs->sr_text ? rs->sr_text : "" );
529 slap_send_ldap_result( Operation *op, SlapReply *rs )
532 const char *otext = rs->sr_text;
533 BerVarray oref = rs->sr_ref;
535 rs->sr_type = REP_RESULT;
537 assert( !LDAP_API_ERROR( rs->sr_err ) && ( rs->sr_err >= 0 ));
540 LDAP_LOG( OPERATION, ENTRY,
541 "send_ldap_result: conn %lu op=%lu p=%d\n",
542 op->o_connid, op->o_opid, op->o_protocol );
544 Debug( LDAP_DEBUG_TRACE,
545 "send_ldap_result: conn=%lu op=%lu p=%d\n",
546 op->o_connid, op->o_opid, op->o_protocol );
550 LDAP_LOG( OPERATION, ARGS,
551 "send_ldap_result: err=%d matched=\"%s\" text=\"%s\"\n",
552 rs->sr_err, rs->sr_matched ? rs->sr_matched : "",
553 rs->sr_text ? rs->sr_text : "" );
555 Debug( LDAP_DEBUG_ARGS,
556 "send_ldap_result: err=%d matched=\"%s\" text=\"%s\"\n",
557 rs->sr_err, rs->sr_matched ? rs->sr_matched : "",
558 rs->sr_text ? rs->sr_text : "" );
564 LDAP_LOG( OPERATION, ARGS,
565 "send_ldap_result: referral=\"%s\"\n",
566 rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL", 0, 0 );
568 Debug( LDAP_DEBUG_ARGS,
569 "send_ldap_result: referral=\"%s\"\n",
570 rs->sr_ref[0].bv_val ? rs->sr_ref[0].bv_val : "NULL",
575 assert( rs->sr_err != LDAP_PARTIAL_RESULTS );
577 if ( rs->sr_err == LDAP_REFERRAL ) {
578 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
579 if( op->o_domain_scope ) {
583 if( rs->sr_ref == NULL ) {
584 rs->sr_err = LDAP_NO_SUCH_OBJECT;
585 } else if ( op->o_protocol < LDAP_VERSION3 ) {
586 rs->sr_err = LDAP_PARTIAL_RESULTS;
592 * Call pre-result plugins. To avoid infinite recursion plugins
593 * should just set SLAPI_RESULT_CODE rather than sending a
594 * result if they wish to change the result.
596 if ( op->o_pb != NULL ) {
597 slapi_int_pblock_set_operation( op->o_pb, op );
598 slapi_pblock_set( op->o_pb, SLAPI_RESULT_CODE, (void *)rs->sr_err );
599 slapi_pblock_set( op->o_pb, SLAPI_RESULT_TEXT, (void *)rs->sr_text );
600 slapi_pblock_set( op->o_pb, SLAPI_RESULT_MATCHED, (void *)rs->sr_matched );
602 (void) slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_PRE_RESULT_FN, op->o_pb );
604 #endif /* LDAP_SLAPI */
606 if ( op->o_protocol < LDAP_VERSION3 ) {
607 tmp = v2ref( rs->sr_ref, rs->sr_text );
612 rs->sr_tag = req2res( op->o_tag );
613 rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
615 send_ldap_response( op, rs );
617 if ( op->o_tag == LDAP_REQ_SEARCH ) {
619 snprintf( nbuf, sizeof nbuf, "%d nentries=%d",
620 rs->sr_err, rs->sr_nentries );
622 Statslog( LDAP_DEBUG_STATS,
623 "conn=%lu op=%lu SEARCH RESULT tag=%lu err=%s text=%s\n",
624 op->o_connid, op->o_opid, rs->sr_tag, nbuf,
625 rs->sr_text ? rs->sr_text : "" );
627 Statslog( LDAP_DEBUG_STATS,
628 "conn=%lu op=%lu RESULT tag=%lu err=%d text=%s\n",
629 op->o_connid, op->o_opid, rs->sr_tag, rs->sr_err,
630 rs->sr_text ? rs->sr_text : "" );
633 if( tmp != NULL ) ch_free(tmp);
639 send_ldap_sasl( Operation *op, SlapReply *rs )
641 rs->sr_type = REP_SASL;
643 LDAP_LOG( OPERATION, ENTRY,
644 "send_ldap_sasl: conn %lu err=%d len=%lu\n",
645 op->o_connid, rs->sr_err,
646 rs->sr_sasldata ? rs->sr_sasldata->bv_len : -1 );
648 Debug( LDAP_DEBUG_TRACE, "send_ldap_sasl: err=%d len=%ld\n",
650 rs->sr_sasldata ? (long) rs->sr_sasldata->bv_len : -1, NULL );
653 rs->sr_tag = req2res( op->o_tag );
654 rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
656 send_ldap_response( op, rs );
660 slap_send_ldap_extended( Operation *op, SlapReply *rs )
662 rs->sr_type = REP_EXTENDED;
665 LDAP_LOG( OPERATION, ENTRY,
666 "send_ldap_extended: err=%d oid=%s len=%ld\n",
667 rs->sr_err, rs->sr_rspoid ? rs->sr_rspoid : "",
668 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
670 Debug( LDAP_DEBUG_TRACE,
671 "send_ldap_extended: err=%d oid=%s len=%ld\n",
673 rs->sr_rspoid ? rs->sr_rspoid : "",
674 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
677 rs->sr_tag = req2res( op->o_tag );
678 rs->sr_msgid = (rs->sr_tag != LBER_SEQUENCE) ? op->o_msgid : 0;
680 send_ldap_response( op, rs );
684 slap_send_ldap_intermediate( Operation *op, SlapReply *rs )
686 rs->sr_type = REP_INTERMEDIATE;
688 LDAP_LOG( OPERATION, ENTRY,
689 "send_ldap_intermediate: 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 );
693 Debug( LDAP_DEBUG_TRACE,
694 "send_ldap_intermediate: err=%d oid=%s len=%ld\n",
696 rs->sr_rspoid ? rs->sr_rspoid : "",
697 rs->sr_rspdata != NULL ? rs->sr_rspdata->bv_len : 0 );
699 rs->sr_tag = LDAP_RES_INTERMEDIATE;
700 rs->sr_msgid = op->o_msgid;
701 send_ldap_response( op, rs );
705 slap_send_search_entry( Operation *op, SlapReply *rs )
707 BerElementBuffer berbuf;
708 BerElement *ber = (BerElement *) &berbuf;
710 int i, j, rc=-1, bytes;
714 AccessControlState acl_state = ACL_STATE_INIT;
716 /* Support for computed attribute plugins */
717 computed_attr_context ctx;
720 AttributeDescription *ad_entry = slap_schema.si_ad_entry;
722 /* a_flags: array of flags telling if the i-th element will be
723 * returned or filtered out
724 * e_flags: array of a_flags
726 char **e_flags = NULL;
728 rs->sr_type = REP_SEARCH;
729 if (op->o_callback) {
730 slap_callback *sc = op->o_callback;
731 rc = SLAP_CB_CONTINUE;
732 for ( ; op->o_callback; ) {
733 if ( op->o_callback->sc_response ) {
734 rc = op->o_callback->sc_response( op, rs );
735 if ( rc != SLAP_CB_CONTINUE ) break;
737 op->o_callback = op->o_callback->sc_next;
740 if ( rc != SLAP_CB_CONTINUE ) goto error_return;
744 LDAP_LOG( OPERATION, ENTRY, "send_search_entry: conn %lu dn=\"%s\"%s\n",
745 op->o_connid, rs->sr_entry->e_name.bv_val,
746 op->ors_attrsonly ? " (attrsOnly)" : "" );
748 Debug( LDAP_DEBUG_TRACE, "=> send_search_entry: dn=\"%s\"%s\n",
749 rs->sr_entry->e_name.bv_val,
750 op->ors_attrsonly ? " (attrsOnly)" : "", 0 );
753 if ( !access_allowed( op, rs->sr_entry, ad_entry, NULL, ACL_READ, NULL )) {
756 "send_search_entry: conn %lu access to entry (%s) not allowed\n",
757 op->o_connid, rs->sr_entry->e_name.bv_val, 0 );
759 Debug( LDAP_DEBUG_ACL,
760 "send_search_entry: access to entry not allowed\n",
768 edn = rs->sr_entry->e_nname.bv_val;
770 if ( op->o_res_ber ) {
771 /* read back control or LDAP_CONNECTIONLESS */
777 entry_flatsize( rs->sr_entry, &siz, &len, 0 );
778 bv.bv_len = siz + len;
779 bv.bv_val = op->o_tmpalloc(bv.bv_len, op->o_tmpmemctx );
781 ber_init2( ber, &bv, LBER_USE_DER );
782 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
785 #ifdef LDAP_CONNECTIONLESS
786 if ( op->o_conn && op->o_conn->c_is_udp ) {
788 if ( op->o_protocol == LDAP_VERSION2 ) {
789 rc = ber_printf(ber, "t{O{" /*}}*/,
790 LDAP_RES_SEARCH_ENTRY, &rs->sr_entry->e_name );
792 rc = ber_printf( ber, "{it{O{" /*}}}*/, op->o_msgid,
793 LDAP_RES_SEARCH_ENTRY, &rs->sr_entry->e_name );
797 if ( op->o_res_ber ) {
798 /* read back control */
799 rc = ber_printf( ber, "{O{" /*}}*/, &rs->sr_entry->e_name );
801 rc = ber_printf( ber, "{it{O{" /*}}}*/, op->o_msgid,
802 LDAP_RES_SEARCH_ENTRY, &rs->sr_entry->e_name );
807 LDAP_LOG( OPERATION, ERR,
808 "send_search_entry: conn %lu ber_printf failed\n",
809 op->o_connid, 0, 0 );
811 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
814 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
815 send_ldap_error( op, rs, LDAP_OTHER, "encoding DN error" );
819 /* check for special all user attributes ("*") type */
820 userattrs = ( rs->sr_attrs == NULL ) ? 1
821 : an_find( rs->sr_attrs, &AllUser );
823 /* check for special all operational attributes ("+") type */
824 opattrs = ( rs->sr_attrs == NULL ) ? 0
825 : an_find( rs->sr_attrs, &AllOper );
827 /* create an array of arrays of flags. Each flag corresponds
828 * to particular value of attribute and equals 1 if value matches
829 * to ValuesReturnFilter or 0 if not
831 if ( op->o_vrFilter != NULL ) {
835 for ( a = rs->sr_entry->e_attrs, i=0; a != NULL; a = a->a_next, i++ ) {
836 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) k++;
839 size = i * sizeof(char *) + k;
842 e_flags = sl_calloc ( 1, i * sizeof(char *) + k, op->o_tmpmemctx );
843 if( e_flags == NULL ) {
845 LDAP_LOG( OPERATION, ERR,
846 "send_search_entry: conn %lu sl_calloc failed\n",
847 op->o_connid ? op->o_connid : 0, 0, 0 );
849 Debug( LDAP_DEBUG_ANY,
850 "send_search_entry: sl_calloc failed\n", 0, 0, 0 );
854 send_ldap_error( op, rs, LDAP_OTHER, "out of memory" );
857 a_flags = (char *)(e_flags + i);
858 memset( a_flags, 0, k );
859 for ( a=rs->sr_entry->e_attrs, i=0; a != NULL; a=a->a_next, i++ ) {
860 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ );
861 e_flags[i] = a_flags;
865 rc = filter_matched_values(op, rs->sr_entry->e_attrs, &e_flags) ;
868 LDAP_LOG( OPERATION, ERR, "send_search_entry: "
869 "conn %lu matched values filtering failed\n",
870 op->o_connid ? op->o_connid : 0, 0, 0 );
872 Debug( LDAP_DEBUG_ANY,
873 "matched values filtering failed\n", 0, 0, 0 );
875 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
876 send_ldap_error( op, rs, LDAP_OTHER,
877 "matched values filtering error" );
883 for ( a = rs->sr_entry->e_attrs, j = 0; a != NULL; a = a->a_next, j++ ) {
884 AttributeDescription *desc = a->a_desc;
886 if ( rs->sr_attrs == NULL ) {
887 /* all attrs request, skip operational attributes */
888 if( is_at_operational( desc->ad_type ) ) {
893 /* specific attrs requested */
894 if ( is_at_operational( desc->ad_type ) ) {
895 if( !opattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
900 if (!userattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
906 if ( ! access_allowed( op, rs->sr_entry, desc, NULL,
907 ACL_READ, &acl_state ) )
911 "send_search_entry: conn %lu access to attribute %s not "
912 "allowed\n", op->o_connid, desc->ad_cname.bv_val, 0 );
914 Debug( LDAP_DEBUG_ACL, "acl: "
915 "access to attribute %s not allowed\n",
916 desc->ad_cname.bv_val, 0, 0 );
921 if (( rc = ber_printf( ber, "{O[" /*]}*/ , &desc->ad_cname )) == -1 ) {
923 LDAP_LOG( OPERATION, ERR,
924 "send_search_entry: conn %lu ber_printf failed\n",
925 op->o_connid, 0, 0 );
927 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
930 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
931 send_ldap_error( op, rs, LDAP_OTHER, "encoding description error");
935 if ( ! op->ors_attrsonly ) {
936 for ( i = 0; a->a_vals[i].bv_val != NULL; i++ ) {
937 if ( ! access_allowed( op, rs->sr_entry,
938 desc, &a->a_vals[i], ACL_READ, &acl_state ) )
942 "send_search_entry: conn %lu "
943 "access to attribute %s, value %d not allowed\n",
944 op->o_connid, desc->ad_cname.bv_val, i );
946 Debug( LDAP_DEBUG_ACL,
947 "acl: access to attribute %s, "
948 "value %d not allowed\n",
949 desc->ad_cname.bv_val, i, 0 );
955 if ( op->o_vrFilter && e_flags[j][i] == 0 ){
959 if (( rc = ber_printf( ber, "O", &a->a_vals[i] )) == -1 ) {
961 LDAP_LOG( OPERATION, ERR,
962 "send_search_entry: conn %lu "
963 "ber_printf failed.\n", op->o_connid, 0, 0 );
965 Debug( LDAP_DEBUG_ANY,
966 "ber_printf failed\n", 0, 0, 0 );
969 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
970 send_ldap_error( op, rs, LDAP_OTHER,
971 "encoding values error" );
977 if (( rc = ber_printf( ber, /*{[*/ "]N}" )) == -1 ) {
979 LDAP_LOG( OPERATION, ERR,
980 "send_search_entry: conn %lu ber_printf failed\n",
981 op->o_connid, 0, 0 );
983 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
986 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
987 send_ldap_error( op, rs, LDAP_OTHER, "encode end error" );
992 /* eventually will loop through generated operational attributes */
993 /* only have subschemaSubentry and numSubordinates are implemented */
994 aa = backend_operational( op, rs, opattrs );
996 if ( aa != NULL && op->o_vrFilter != NULL ) {
1000 for ( a = aa, i=0; a != NULL; a = a->a_next, i++ ) {
1001 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) k++;
1004 size = i * sizeof(char *) + k;
1006 char *a_flags, **tmp;
1009 * Reuse previous memory - we likely need less space
1010 * for operational attributes
1012 tmp = sl_realloc( e_flags, i * sizeof(char *) + k,
1014 if ( tmp == NULL ) {
1016 LDAP_LOG( OPERATION, ERR,
1017 "send_search_entry: conn %lu "
1018 "not enough memory "
1019 "for matched values filtering\n",
1020 op->o_connid, 0, 0);
1022 Debug( LDAP_DEBUG_ANY,
1023 "send_search_entry: conn %lu "
1024 "not enough memory "
1025 "for matched values filtering\n",
1026 op->o_connid, 0, 0 );
1028 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1029 send_ldap_error( op, rs, LDAP_OTHER,
1030 "not enough memory for matched values filtering" );
1034 a_flags = (char *)(e_flags + i);
1035 memset( a_flags, 0, k );
1036 for ( a = aa, i=0; a != NULL; a = a->a_next, i++ ) {
1037 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ );
1038 e_flags[i] = a_flags;
1041 rc = filter_matched_values(op, aa, &e_flags) ;
1045 LDAP_LOG( OPERATION, ERR,
1046 "send_search_entry: conn %lu "
1047 "matched values filtering failed\n",
1048 op->o_connid ? op->o_connid : 0, 0, 0);
1050 Debug( LDAP_DEBUG_ANY,
1051 "matched values filtering failed\n", 0, 0, 0 );
1053 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1054 send_ldap_error( op, rs, LDAP_OTHER,
1055 "matched values filtering error" );
1061 for (a = aa, j=0; a != NULL; a = a->a_next, j++ ) {
1062 AttributeDescription *desc = a->a_desc;
1064 if ( rs->sr_attrs == NULL ) {
1065 /* all attrs request, skip operational attributes */
1066 if( is_at_operational( desc->ad_type ) ) {
1071 /* specific attrs requested */
1072 if( is_at_operational( desc->ad_type ) ) {
1073 if( !opattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
1077 if (!userattrs && !ad_inlist( desc, rs->sr_attrs ) ) {
1083 if ( ! access_allowed( op, rs->sr_entry, desc, NULL,
1084 ACL_READ, &acl_state ) )
1087 LDAP_LOG( ACL, INFO,
1088 "send_search_entry: conn %lu "
1089 "access to attribute %s not allowed\n",
1090 op->o_connid, desc->ad_cname.bv_val, 0 );
1092 Debug( LDAP_DEBUG_ACL, "send_search_entry: access to attribute %s "
1093 "not allowed\n", desc->ad_cname.bv_val, 0, 0 );
1099 rc = ber_printf( ber, "{O[" /*]}*/ , &desc->ad_cname );
1102 LDAP_LOG( OPERATION, ERR,
1103 "send_search_entry: conn %lu "
1104 "ber_printf failed\n", op->o_connid, 0, 0 );
1106 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1109 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1110 send_ldap_error( op, rs, LDAP_OTHER, "encoding description error" );
1115 if ( ! op->ors_attrsonly ) {
1116 for ( i = 0; a->a_vals[i].bv_val != NULL; i++ ) {
1117 if ( ! access_allowed( op, rs->sr_entry,
1118 desc, &a->a_vals[i], ACL_READ, &acl_state ) )
1121 LDAP_LOG( ACL, INFO,
1122 "send_search_entry: conn %lu "
1123 "access to %s, value %d not allowed\n",
1124 op->o_connid, desc->ad_cname.bv_val, i );
1126 Debug( LDAP_DEBUG_ACL,
1127 "send_search_entry: access to attribute %s, "
1128 "value %d not allowed\n",
1129 desc->ad_cname.bv_val, i, 0 );
1135 if ( op->o_vrFilter && e_flags[j][i] == 0 ){
1139 if (( rc = ber_printf( ber, "O", &a->a_vals[i] )) == -1 ) {
1141 LDAP_LOG( OPERATION, ERR,
1142 "send_search_entry: conn %lu ber_printf failed\n",
1143 op->o_connid, 0, 0 );
1145 Debug( LDAP_DEBUG_ANY,
1146 "ber_printf failed\n", 0, 0, 0 );
1149 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1150 send_ldap_error( op, rs, LDAP_OTHER,
1151 "encoding values error" );
1158 if (( rc = ber_printf( ber, /*{[*/ "]N}" )) == -1 ) {
1160 LDAP_LOG( OPERATION, ERR,
1161 "send_search_entry: conn %lu ber_printf failed\n",
1162 op->o_connid, 0, 0 );
1164 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1167 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1168 send_ldap_error( op, rs, LDAP_OTHER, "encode end error" );
1176 * First, setup the computed attribute context that is
1177 * passed to all plugins.
1180 ctx.cac_pb = op->o_pb;
1181 ctx.cac_attrs = rs->sr_attrs;
1182 ctx.cac_attrsonly = op->ors_attrsonly;
1183 ctx.cac_userattrs = userattrs;
1184 ctx.cac_opattrs = opattrs;
1185 ctx.cac_acl_state = acl_state;
1186 ctx.cac_private = (void *)ber;
1189 * For each client requested attribute, call the plugins.
1191 if ( rs->sr_attrs != NULL ) {
1192 for ( anp = rs->sr_attrs; anp->an_name.bv_val != NULL; anp++ ) {
1193 rc = compute_evaluator( &ctx, anp->an_name.bv_val,
1194 rs->sr_entry, slapi_int_compute_output_ber );
1201 * Technically we shouldn't be returning operational attributes
1202 * when the user requested only user attributes. We'll let the
1203 * plugin decide whether to be naughty or not.
1205 rc = compute_evaluator( &ctx, "*",
1206 rs->sr_entry, slapi_int_compute_output_ber );
1209 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1210 send_ldap_error( op, rs, LDAP_OTHER, "computed attribute error" );
1214 #endif /* LDAP_SLAPI */
1218 sl_free( e_flags, op->o_tmpmemctx );
1223 rc = ber_printf( ber, /*{{*/ "}N}" );
1226 rc = send_ldap_controls( op, ber, rs->sr_ctrls );
1230 #ifdef LDAP_CONNECTIONLESS
1231 if( op->o_conn && op->o_conn->c_is_udp ) {
1232 if ( op->o_protocol != LDAP_VERSION2 ) {
1233 rc = ber_printf( ber, /*{*/ "N}" );
1237 if ( op->o_res_ber == NULL ) {
1238 rc = ber_printf( ber, /*{*/ "N}" );
1244 LDAP_LOG( OPERATION, ERR,
1245 "send_search_entry: conn %lu ber_printf failed\n",
1246 op->o_connid, 0, 0 );
1248 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
1251 if ( op->o_res_ber == NULL ) ber_free_buf( ber );
1252 send_ldap_error( op, rs, LDAP_OTHER, "encode entry end error" );
1257 if ( op->o_res_ber == NULL ) {
1258 bytes = send_ldap_ber( op->o_conn, ber );
1259 ber_free_buf( ber );
1263 LDAP_LOG( OPERATION, ERR,
1264 "send_search_entry: conn %lu ber write failed.\n",
1265 op->o_connid, 0, 0 );
1267 Debug( LDAP_DEBUG_ANY,
1268 "send_search_entry: ber write failed\n",
1277 ldap_pvt_thread_mutex_lock( &num_sent_mutex );
1278 num_bytes_sent += bytes;
1281 ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
1284 Statslog( LDAP_DEBUG_STATS2, "conn=%lu op=%lu ENTRY dn=\"%s\"\n",
1285 op->o_connid, op->o_opid, rs->sr_entry->e_dn, 0, 0 );
1288 LDAP_LOG( OPERATION, ENTRY,
1289 "send_search_entry: conn %lu exit.\n", op->o_connid, 0, 0 );
1291 Debug( LDAP_DEBUG_TRACE, "<= send_search_entry\n", 0, 0, 0 );
1297 /* FIXME: I think rs->sr_type should be explicitly set to
1298 * REP_SEARCH here. That's what it was when we entered this
1299 * function. send_ldap_error may have changed it, but we
1300 * should set it back so that the cleanup functions know
1301 * what they're doing.
1303 if ( op->o_tag == LDAP_REQ_SEARCH && rs->sr_type == REP_SEARCH
1305 && (rs->sr_flags & REP_ENTRY_MUSTBEFREED) )
1307 entry_free( rs->sr_entry );
1308 rs->sr_entry = NULL;
1309 rs->sr_flags &= ~REP_ENTRY_MUSTBEFREED;
1312 if ( e_flags ) sl_free( e_flags, op->o_tmpmemctx );
1314 if (op->o_callback) {
1315 slap_callback *sc = op->o_callback;
1316 for ( ; op->o_callback; op->o_callback = op->o_callback->sc_next ) {
1317 if ( op->o_callback->sc_cleanup ) {
1318 op->o_callback->sc_cleanup( op, rs );
1321 op->o_callback = sc;
1327 slap_send_search_reference( Operation *op, SlapReply *rs )
1329 BerElementBuffer berbuf;
1330 BerElement *ber = (BerElement *) &berbuf;
1334 AttributeDescription *ad_ref = slap_schema.si_ad_ref;
1335 AttributeDescription *ad_entry = slap_schema.si_ad_entry;
1337 rs->sr_type = REP_SEARCHREF;
1338 if (op->o_callback) {
1339 slap_callback *sc = op->o_callback;
1340 rc = SLAP_CB_CONTINUE;
1341 for ( ; op->o_callback; ) {
1342 if ( op->o_callback->sc_response ) {
1343 rc = op->o_callback->sc_response( op, rs );
1344 if ( rc != SLAP_CB_CONTINUE ) break;
1346 op->o_callback = op->o_callback->sc_next;
1348 op->o_callback = sc;
1349 if ( rc != SLAP_CB_CONTINUE ) goto rel;
1353 LDAP_LOG( OPERATION, ENTRY,
1354 "send_search_reference: conn %lu dn=\"%s\"\n",
1356 rs->sr_entry ? rs->sr_entry->e_name.bv_val : "(null)", 0 );
1358 Debug( LDAP_DEBUG_TRACE,
1359 "=> send_search_reference: dn=\"%s\"\n",
1360 rs->sr_entry ? rs->sr_entry->e_name.bv_val : "(null)", 0, 0 );
1363 if ( rs->sr_entry && ! access_allowed( op, rs->sr_entry,
1364 ad_entry, NULL, ACL_READ, NULL ) )
1367 LDAP_LOG( ACL, INFO,
1368 "send_search_reference: conn %lu "
1369 "access to entry %s not allowed\n",
1370 op->o_connid, rs->sr_entry->e_dn, 0 );
1372 Debug( LDAP_DEBUG_ACL,
1373 "send_search_reference: access to entry not allowed\n",
1380 if ( rs->sr_entry && ! access_allowed( op, rs->sr_entry,
1381 ad_ref, NULL, ACL_READ, NULL ) )
1384 LDAP_LOG( ACL, INFO,
1385 "send_search_reference: conn %lu access "
1386 "to reference not allowed.\n", op->o_connid, 0, 0 );
1388 Debug( LDAP_DEBUG_ACL,
1389 "send_search_reference: access "
1390 "to reference not allowed\n",
1397 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
1398 if( op->o_domain_scope ) {
1400 LDAP_LOG( OPERATION, ERR,
1401 "send_search_reference: conn %lu domainScope control in (%s).\n",
1402 op->o_connid, rs->sr_entry->e_dn, 0 );
1404 Debug( LDAP_DEBUG_ANY,
1405 "send_search_reference: domainScope control in (%s)\n",
1406 rs->sr_entry->e_dn, 0, 0 );
1413 if( rs->sr_ref == NULL ) {
1415 LDAP_LOG( OPERATION, ERR,
1416 "send_search_reference: conn %lu null ref in (%s).\n",
1417 op->o_connid, rs->sr_entry ? rs->sr_entry->e_dn : "(null)", 0 );
1419 Debug( LDAP_DEBUG_ANY,
1420 "send_search_reference: null ref in (%s)\n",
1421 rs->sr_entry ? rs->sr_entry->e_dn : "(null)", 0, 0 );
1427 if( op->o_protocol < LDAP_VERSION3 ) {
1429 /* save the references for the result */
1430 if( rs->sr_ref[0].bv_val != NULL ) {
1431 if( value_add( &rs->sr_v2ref, rs->sr_ref ) )
1437 #ifdef LDAP_CONNECTIONLESS
1438 if( op->o_conn && op->o_conn->c_is_udp ) {
1439 ber = op->o_res_ber;
1443 ber_init_w_nullc( ber, LBER_USE_DER );
1444 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1447 rc = ber_printf( ber, "{it{W}" /*"}"*/ , op->o_msgid,
1448 LDAP_RES_SEARCH_REFERENCE, rs->sr_ref );
1451 rc = send_ldap_controls( op, ber, rs->sr_ctrls );
1455 rc = ber_printf( ber, /*"{"*/ "N}" );
1460 LDAP_LOG( OPERATION, ERR,
1461 "send_search_reference: conn %lu "
1462 "ber_printf failed.\n", op->o_connid, 0, 0 );
1464 Debug( LDAP_DEBUG_ANY,
1465 "send_search_reference: ber_printf failed\n", 0, 0, 0 );
1468 #ifdef LDAP_CONNECTIONLESS
1469 if (!op->o_conn || op->o_conn->c_is_udp == 0)
1471 ber_free_buf( ber );
1472 send_ldap_error( op, rs, LDAP_OTHER, "encode DN error" );
1476 #ifdef LDAP_CONNECTIONLESS
1477 if (!op->o_conn || op->o_conn->c_is_udp == 0) {
1479 bytes = send_ldap_ber( op->o_conn, ber );
1480 ber_free_buf( ber );
1482 ldap_pvt_thread_mutex_lock( &num_sent_mutex );
1483 num_bytes_sent += bytes;
1486 ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
1487 #ifdef LDAP_CONNECTIONLESS
1491 Statslog( LDAP_DEBUG_STATS2, "conn=%lu op=%lu REF dn=\"%s\"\n",
1492 op->o_connid, op->o_opid, rs->sr_entry ? rs->sr_entry->e_dn : "(null)", 0, 0 );
1495 LDAP_LOG( OPERATION, ENTRY,
1496 "send_search_reference: conn %lu exit.\n", op->o_connid, 0, 0 );
1498 Debug( LDAP_DEBUG_TRACE, "<= send_search_reference\n", 0, 0, 0 );
1502 if (op->o_callback) {
1503 slap_callback *sc = op->o_callback;
1504 for ( ; op->o_callback; op->o_callback = op->o_callback->sc_next ) {
1505 if ( op->o_callback->sc_cleanup ) {
1506 op->o_callback->sc_cleanup( op, rs );
1509 op->o_callback = sc;
1525 *code = LDAP_SUCCESS;
1529 if ( strncasecmp( s, "RESULT", 6 ) != 0 ) {
1531 LDAP_LOG( OPERATION, INFO,
1532 "str2result: (%s), expecting \"RESULT\"\n", s, 0, 0 );
1534 Debug( LDAP_DEBUG_ANY, "str2result (%s) expecting \"RESULT\"\n",
1542 while ( (s = strchr( s, '\n' )) != NULL ) {
1547 if ( (c = strchr( s, ':' )) != NULL ) {
1551 if ( strncasecmp( s, "code", 4 ) == 0 ) {
1555 } else if ( strncasecmp( s, "matched", 7 ) == 0 ) {
1559 } else if ( strncasecmp( s, "info", 4 ) == 0 ) {
1565 LDAP_LOG( OPERATION, INFO, "str2result: (%s) unknown.\n", s, 0, 0 );
1567 Debug( LDAP_DEBUG_ANY, "str2result (%s) unknown\n",
1578 int slap_read_controls(
1582 const struct berval *oid,
1583 LDAPControl **ctrl )
1587 BerElementBuffer berbuf;
1588 BerElement *ber = (BerElement *) &berbuf;
1594 LDAP_LOG( OPERATION, INFO, "slap_read_controls: (%s) %s\n",
1595 oid->bv_val, e->e_dn, 0 );
1597 Debug( LDAP_DEBUG_ANY, "slap_read_controls: (%s) %s\n",
1598 oid->bv_val, e->e_dn, 0 );
1602 rs->sr_attrs = ( oid == &slap_pre_read_bv ) ?
1603 op->o_preread_attrs : op->o_postread_attrs;
1605 entry_flatsize( rs->sr_entry, &siz, &len, 0 );
1606 bv.bv_len = siz + len;
1607 bv.bv_val = op->o_tmpalloc(bv.bv_len, op->o_tmpmemctx );
1609 ber_init2( ber, &bv, LBER_USE_DER );
1610 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1612 /* create new operation */
1615 myop.o_res_ber = ber;
1617 rc = slap_send_search_entry( &myop, rs );
1620 rc = ber_flatten2( ber, &c.ldctl_value, 0 );
1622 if( rc == LBER_ERROR ) return LDAP_OTHER;
1624 c.ldctl_oid = oid->bv_val;
1625 c.ldctl_iscritical = 0;
1627 *ctrl = sl_calloc( 1, sizeof(LDAPControl), NULL );
1629 return LDAP_SUCCESS;