2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2004 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16 * All rights reserved.
18 * Redistribution and use in source and binary forms are permitted
19 * provided that this notice is preserved and that due credit is given
20 * to the University of Michigan at Ann Arbor. The name of the University
21 * may not be used to endorse or promote products derived from this
22 * software without specific prior written permission. This software
23 * is provided ``as is'' without express or implied warranty.
31 #include <ac/socket.h>
33 #include <ac/string.h>
35 #include <ac/unistd.h>
42 #include "slapi/slapi.h"
45 /* protected by connections_mutex */
46 static ldap_pvt_thread_mutex_t connections_mutex;
47 static Connection *connections = NULL;
48 static unsigned long conn_nextid = 0;
50 /* structure state (protected by connections_mutex) */
51 #define SLAP_C_UNINITIALIZED 0x00 /* MUST BE ZERO (0) */
52 #define SLAP_C_UNUSED 0x01
53 #define SLAP_C_USED 0x02
55 /* connection state (protected by c_mutex ) */
56 #define SLAP_C_INVALID 0x00 /* MUST BE ZERO (0) */
57 #define SLAP_C_INACTIVE 0x01 /* zero threads */
58 #define SLAP_C_ACTIVE 0x02 /* one or more threads */
59 #define SLAP_C_BINDING 0x03 /* binding */
60 #define SLAP_C_CLOSING 0x04 /* closing */
61 #define SLAP_C_CLIENT 0x05 /* outbound client conn */
64 connection_state2str( int state )
67 case SLAP_C_INVALID: return "!";
68 case SLAP_C_INACTIVE: return "|";
69 case SLAP_C_ACTIVE: return "";
70 case SLAP_C_BINDING: return "B";
71 case SLAP_C_CLOSING: return "C";
72 case SLAP_C_CLIENT: return "L";
78 static Connection* connection_get( ber_socket_t s );
80 static int connection_input( Connection *c );
81 static void connection_close( Connection *c );
83 static int connection_op_activate( Operation *op );
84 static int connection_resched( Connection *conn );
85 static void connection_abandon( Connection *conn );
86 static void connection_destroy( Connection *c );
88 static ldap_pvt_thread_start_t connection_operation;
91 * Initialize connection management infrastructure.
93 int connections_init(void)
95 assert( connections == NULL );
97 if( connections != NULL) {
99 LDAP_LOG( CONNECTION, INFO,
100 "connections_init: already initialized.\n", 0, 0, 0 );
102 Debug( LDAP_DEBUG_ANY, "connections_init: already initialized.\n",
108 /* should check return of every call */
109 ldap_pvt_thread_mutex_init( &connections_mutex );
111 connections = (Connection *) ch_calloc( dtblsize, sizeof(Connection) );
113 if( connections == NULL ) {
115 LDAP_LOG( CONNECTION, ERR,
116 "connections_init: allocation (%d * %ld) of connection "
117 "array failed\n", dtblsize, (long) sizeof(Connection), 0 );
119 Debug( LDAP_DEBUG_ANY,
120 "connections_init: allocation (%d*%ld) of connection array failed\n",
121 dtblsize, (long) sizeof(Connection), 0 );
126 assert( connections[0].c_struct_state == SLAP_C_UNINITIALIZED );
127 assert( connections[dtblsize-1].c_struct_state == SLAP_C_UNINITIALIZED );
130 * per entry initialization of the Connection array initialization
131 * will be done by connection_init()
138 * Destroy connection management infrastructure.
140 int connections_destroy(void)
144 /* should check return of every call */
146 if( connections == NULL) {
148 LDAP_LOG( CONNECTION, INFO,
149 "connections_destroy: nothing to destroy.\n", 0, 0, 0 );
151 Debug( LDAP_DEBUG_ANY, "connections_destroy: nothing to destroy.\n",
157 for ( i = 0; i < dtblsize; i++ ) {
158 if( connections[i].c_struct_state != SLAP_C_UNINITIALIZED ) {
159 ber_sockbuf_free( connections[i].c_sb );
160 ldap_pvt_thread_mutex_destroy( &connections[i].c_mutex );
161 ldap_pvt_thread_mutex_destroy( &connections[i].c_write_mutex );
162 ldap_pvt_thread_cond_destroy( &connections[i].c_write_cv );
164 if ( slapi_plugins_used ) {
165 slapi_int_free_object_extensions( SLAPI_X_EXT_CONNECTION, &connections[i] );
174 ldap_pvt_thread_mutex_destroy( &connections_mutex );
179 * shutdown all connections
181 int connections_shutdown(void)
185 ldap_pvt_thread_mutex_lock( &connections_mutex );
187 for ( i = 0; i < dtblsize; i++ ) {
188 if( connections[i].c_struct_state != SLAP_C_USED ) {
191 /* give persistent clients a chance to cleanup */
192 if( connections[i].c_conn_state == SLAP_C_CLIENT ) {
193 ldap_pvt_thread_pool_submit( &connection_pool,
194 connections[i].c_clientfunc, connections[i].c_clientarg );
198 ldap_pvt_thread_mutex_lock( &connections[i].c_mutex );
200 /* connections_mutex and c_mutex are locked */
201 connection_closing( &connections[i] );
202 connection_close( &connections[i] );
204 ldap_pvt_thread_mutex_unlock( &connections[i].c_mutex );
207 ldap_pvt_thread_mutex_unlock( &connections_mutex );
213 * Timeout idle connections.
215 int connections_timeout_idle(time_t now)
221 for( c = connection_first( &connindex );
223 c = connection_next( c, &connindex ) )
225 /* Don't timeout a slow-running request or a persistent
226 * outbound connection */
227 if( c->c_n_ops_executing ||
228 c->c_conn_state == SLAP_C_CLIENT ) continue;
230 if( difftime( c->c_activitytime+global_idletimeout, now) < 0 ) {
232 connection_closing( c );
233 connection_close( c );
237 connection_done( c );
242 static Connection* connection_get( ber_socket_t s )
244 /* connections_mutex should be locked by caller */
249 LDAP_LOG( CONNECTION, ENTRY, "connection_get: socket %ld\n", (long)s, 0, 0 );
251 Debug( LDAP_DEBUG_ARGS,
252 "connection_get(%ld)\n",
256 assert( connections != NULL );
258 if(s == AC_SOCKET_INVALID) {
265 assert( c->c_struct_state != SLAP_C_UNINITIALIZED );
272 for(i=0; i<dtblsize; i++) {
273 if( connections[i].c_struct_state == SLAP_C_UNINITIALIZED ) {
274 assert( connections[i].c_conn_state == SLAP_C_INVALID );
275 assert( connections[i].c_sb == 0 );
279 ber_sockbuf_ctrl( connections[i].c_sb,
280 LBER_SB_OPT_GET_FD, &sd );
282 if( connections[i].c_struct_state == SLAP_C_UNUSED ) {
283 assert( connections[i].c_conn_state == SLAP_C_INVALID );
284 assert( sd == AC_SOCKET_INVALID );
288 /* state can actually change from used -> unused by resched,
289 * so don't assert details here.
303 ldap_pvt_thread_mutex_lock( &c->c_mutex );
305 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
306 if( c->c_struct_state != SLAP_C_USED ) {
307 /* connection must have been closed due to resched */
309 assert( c->c_conn_state == SLAP_C_INVALID );
310 assert( sd == AC_SOCKET_INVALID );
313 LDAP_LOG( CONNECTION, ARGS,
314 "connection_get: connection %d not used\n", s, 0, 0 );
316 Debug( LDAP_DEBUG_TRACE,
317 "connection_get(%d): connection not used\n",
321 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
326 LDAP_LOG( CONNECTION, RESULTS,
327 "connection_get: get for %d got connid %lu\n", s, c->c_connid, 0 );
329 Debug( LDAP_DEBUG_TRACE,
330 "connection_get(%d): got connid=%lu\n",
336 assert( c->c_struct_state == SLAP_C_USED );
337 assert( c->c_conn_state != SLAP_C_INVALID );
338 assert( sd != AC_SOCKET_INVALID );
341 c->c_activitytime = slap_get_time();
343 if( global_idletimeout > 0 ) {
344 c->c_activitytime = slap_get_time();
352 static void connection_return( Connection *c )
354 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
357 long connection_init(
361 const char* peername,
364 struct berval *authid )
369 assert( connections != NULL );
371 assert( listener != NULL );
372 assert( dnsname != NULL );
373 assert( peername != NULL );
376 assert( flags != CONN_IS_TLS );
379 if( s == AC_SOCKET_INVALID ) {
381 LDAP_LOG( CONNECTION, INFO,
382 "connection_init: init of socket %ld invalid.\n", (long)s, 0, 0 );
384 Debug( LDAP_DEBUG_ANY,
385 "connection_init: init of socket %ld invalid.\n", (long)s, 0, 0 );
392 assert( s < dtblsize );
395 ldap_pvt_thread_mutex_lock( &connections_mutex );
405 for( i=0; i < dtblsize; i++) {
408 if( connections[i].c_struct_state == SLAP_C_UNINITIALIZED ) {
409 assert( connections[i].c_sb == 0 );
414 sd = AC_SOCKET_INVALID;
415 if (connections[i].c_sb != NULL) {
416 ber_sockbuf_ctrl( connections[i].c_sb,
417 LBER_SB_OPT_GET_FD, &sd );
420 if( connections[i].c_struct_state == SLAP_C_UNUSED ) {
421 assert( sd == AC_SOCKET_INVALID );
426 if( connections[i].c_conn_state == SLAP_C_CLIENT ) {
430 assert( connections[i].c_struct_state == SLAP_C_USED );
431 assert( connections[i].c_conn_state != SLAP_C_INVALID );
432 assert( sd != AC_SOCKET_INVALID );
437 LDAP_LOG( CONNECTION, INFO,
438 "connection_init(%d): connection table full "
439 "(%d/%d)\n", s, i, dtblsize );
441 Debug( LDAP_DEBUG_ANY,
442 "connection_init(%d): connection table full "
443 "(%d/%d)\n", s, i, dtblsize);
445 ldap_pvt_thread_mutex_unlock( &connections_mutex );
453 if( c->c_struct_state == SLAP_C_UNINITIALIZED ) {
454 c->c_send_ldap_result = slap_send_ldap_result;
455 c->c_send_search_entry = slap_send_search_entry;
456 c->c_send_search_reference = slap_send_search_reference;
457 c->c_send_ldap_extended = slap_send_ldap_extended;
458 #ifdef LDAP_RES_INTERMEDIATE
459 c->c_send_ldap_intermediate = slap_send_ldap_intermediate;
462 c->c_authmech.bv_val = NULL;
463 c->c_authmech.bv_len = 0;
464 c->c_dn.bv_val = NULL;
466 c->c_ndn.bv_val = NULL;
469 c->c_listener = NULL;
470 c->c_peer_domain.bv_val = NULL;
471 c->c_peer_domain.bv_len = 0;
472 c->c_peer_name.bv_val = NULL;
473 c->c_peer_name.bv_len = 0;
475 LDAP_STAILQ_INIT(&c->c_ops);
476 LDAP_STAILQ_INIT(&c->c_pending_ops);
478 c->c_sasl_bind_mech.bv_val = NULL;
479 c->c_sasl_bind_mech.bv_len = 0;
481 c->c_sasl_authctx = NULL;
482 c->c_sasl_sockctx = NULL;
483 c->c_sasl_extra = NULL;
484 c->c_sasl_bindop = NULL;
486 c->c_sb = ber_sockbuf_alloc( );
489 ber_len_t max = sockbuf_max_incoming;
490 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
493 c->c_currentber = NULL;
495 /* should check status of thread calls */
496 ldap_pvt_thread_mutex_init( &c->c_mutex );
497 ldap_pvt_thread_mutex_init( &c->c_write_mutex );
498 ldap_pvt_thread_cond_init( &c->c_write_cv );
501 if ( slapi_plugins_used ) {
502 slapi_int_create_object_extensions( SLAPI_X_EXT_CONNECTION, c );
506 c->c_struct_state = SLAP_C_UNUSED;
509 ldap_pvt_thread_mutex_lock( &c->c_mutex );
511 assert( c->c_struct_state == SLAP_C_UNUSED );
512 assert( c->c_authmech.bv_val == NULL );
513 assert( c->c_dn.bv_val == NULL );
514 assert( c->c_ndn.bv_val == NULL );
515 assert( c->c_listener == NULL );
516 assert( c->c_peer_domain.bv_val == NULL );
517 assert( c->c_peer_name.bv_val == NULL );
518 assert( LDAP_STAILQ_EMPTY(&c->c_ops) );
519 assert( LDAP_STAILQ_EMPTY(&c->c_pending_ops) );
520 assert( c->c_sasl_bind_mech.bv_val == NULL );
521 assert( c->c_sasl_done == 0 );
522 assert( c->c_sasl_authctx == NULL );
523 assert( c->c_sasl_sockctx == NULL );
524 assert( c->c_sasl_extra == NULL );
525 assert( c->c_sasl_bindop == NULL );
526 assert( c->c_currentber == NULL );
527 assert( c->c_writewaiter == 0);
529 c->c_listener = listener;
531 if ( flags == CONN_IS_CLIENT ) {
532 c->c_conn_state = SLAP_C_CLIENT;
533 c->c_struct_state = SLAP_C_USED;
534 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_FD, &s );
535 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
536 ldap_pvt_thread_mutex_unlock( &connections_mutex );
541 ber_str2bv( dnsname, 0, 1, &c->c_peer_domain );
542 ber_str2bv( peername, 0, 1, &c->c_peer_name );
544 c->c_n_ops_received = 0;
545 c->c_n_ops_executing = 0;
546 c->c_n_ops_pending = 0;
547 c->c_n_ops_completed = 0;
553 /* set to zero until bind, implies LDAP_VERSION3 */
557 c->c_activitytime = c->c_starttime = slap_get_time();
559 if( global_idletimeout > 0 ) {
560 c->c_activitytime = c->c_starttime = slap_get_time();
564 #ifdef LDAP_CONNECTIONLESS
566 if( flags == CONN_IS_UDP ) {
569 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
570 LBER_SBIOD_LEVEL_PROVIDER, (void*)"udp_" );
572 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_udp,
573 LBER_SBIOD_LEVEL_PROVIDER, (void *)&s );
574 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_readahead,
575 LBER_SBIOD_LEVEL_PROVIDER, NULL );
580 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
581 LBER_SBIOD_LEVEL_PROVIDER, (void*)"tcp_" );
583 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_tcp,
584 LBER_SBIOD_LEVEL_PROVIDER, (void *)&s );
588 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
589 INT_MAX, (void*)"ldap_" );
592 if( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_NONBLOCK,
593 c /* non-NULL */ ) < 0 )
596 LDAP_LOG( CONNECTION, INFO,
597 "connection_init: conn %lu set nonblocking failed\n",
600 Debug( LDAP_DEBUG_ANY,
601 "connection_init(%d, %s): set nonblocking failed\n",
602 s, c->c_peer_name.bv_val, 0 );
606 id = c->c_connid = conn_nextid++;
608 c->c_conn_state = SLAP_C_INACTIVE;
609 c->c_struct_state = SLAP_C_USED;
611 c->c_ssf = c->c_transport_ssf = ssf;
615 if ( flags == CONN_IS_TLS ) {
617 c->c_needs_tls_accept = 1;
620 c->c_needs_tls_accept = 0;
624 slap_sasl_open( c, 0 );
625 slap_sasl_external( c, ssf, authid );
627 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
628 ldap_pvt_thread_mutex_unlock( &connections_mutex );
630 backend_connection_init(c);
635 void connection2anonymous( Connection *c )
637 assert( connections != NULL );
641 ber_len_t max = sockbuf_max_incoming;
642 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
645 if(c->c_authmech.bv_val != NULL ) {
646 free(c->c_authmech.bv_val);
647 c->c_authmech.bv_val = NULL;
649 c->c_authmech.bv_len = 0;
651 if(c->c_dn.bv_val != NULL) {
652 free(c->c_dn.bv_val);
653 c->c_dn.bv_val = NULL;
656 if(c->c_ndn.bv_val != NULL) {
657 free(c->c_ndn.bv_val);
658 c->c_ndn.bv_val = NULL;
662 c->c_authz_backend = NULL;
666 connection_destroy( Connection *c )
668 /* note: connections_mutex should be locked by caller */
670 unsigned long connid;
672 assert( connections != NULL );
674 assert( c->c_struct_state != SLAP_C_UNUSED );
675 assert( c->c_conn_state != SLAP_C_INVALID );
676 assert( LDAP_STAILQ_EMPTY(&c->c_ops) );
677 assert( c->c_writewaiter == 0);
679 /* only for stats (print -1 as "%lu" may give unexpected results ;) */
680 connid = c->c_connid;
682 backend_connection_destroy(c);
687 c->c_activitytime = c->c_starttime = 0;
689 connection2anonymous( c );
690 c->c_listener = NULL;
692 if(c->c_peer_domain.bv_val != NULL) {
693 free(c->c_peer_domain.bv_val);
694 c->c_peer_domain.bv_val = NULL;
696 c->c_peer_domain.bv_len = 0;
697 if(c->c_peer_name.bv_val != NULL) {
698 free(c->c_peer_name.bv_val);
699 c->c_peer_name.bv_val = NULL;
701 c->c_peer_name.bv_len = 0;
703 c->c_sasl_bind_in_progress = 0;
704 if(c->c_sasl_bind_mech.bv_val != NULL) {
705 free(c->c_sasl_bind_mech.bv_val);
706 c->c_sasl_bind_mech.bv_val = NULL;
708 c->c_sasl_bind_mech.bv_len = 0;
710 slap_sasl_close( c );
712 if ( c->c_currentber != NULL ) {
713 ber_free( c->c_currentber, 1 );
714 c->c_currentber = NULL;
717 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
718 if ( sd != AC_SOCKET_INVALID ) {
719 slapd_remove( sd, 1, 0 );
721 Statslog( LDAP_DEBUG_STATS,
722 "conn=%lu fd=%ld closed\n",
723 connid, (long) sd, 0, 0, 0 );
726 ber_sockbuf_free( c->c_sb );
728 c->c_sb = ber_sockbuf_alloc( );
731 ber_len_t max = sockbuf_max_incoming;
732 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
735 c->c_conn_state = SLAP_C_INVALID;
736 c->c_struct_state = SLAP_C_UNUSED;
739 /* call destructors, then constructors; avoids unnecessary allocation */
740 if ( slapi_plugins_used ) {
741 slapi_int_clear_object_extensions( SLAPI_X_EXT_CONNECTION, c );
746 int connection_state_closing( Connection *c )
748 /* c_mutex must be locked by caller */
752 assert( c->c_struct_state == SLAP_C_USED );
754 state = c->c_conn_state;
756 assert( state != SLAP_C_INVALID );
758 return state == SLAP_C_CLOSING;
761 static void connection_abandon( Connection *c )
763 /* c_mutex must be locked by caller */
767 LDAP_STAILQ_FOREACH(o, &c->c_ops, o_next) {
771 /* remove pending operations */
772 while ( (o = LDAP_STAILQ_FIRST( &c->c_pending_ops )) != NULL) {
773 LDAP_STAILQ_REMOVE_HEAD( &c->c_pending_ops, o_next );
774 LDAP_STAILQ_NEXT(o, o_next) = NULL;
779 void connection_closing( Connection *c )
781 assert( connections != NULL );
783 assert( c->c_struct_state == SLAP_C_USED );
784 assert( c->c_conn_state != SLAP_C_INVALID );
786 /* c_mutex must be locked by caller */
788 if( c->c_conn_state != SLAP_C_CLOSING ) {
791 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
793 LDAP_LOG( CONNECTION, DETAIL1,
794 "connection_closing: conn %lu readying socket %d for close.\n",
795 c->c_connid, sd, 0 );
797 Debug( LDAP_DEBUG_TRACE,
798 "connection_closing: readying conn=%lu sd=%d for close\n",
799 c->c_connid, sd, 0 );
801 /* update state to closing */
802 c->c_conn_state = SLAP_C_CLOSING;
804 /* don't listen on this port anymore */
805 slapd_clr_read( sd, 1 );
807 /* abandon active operations */
808 connection_abandon( c );
810 /* wake write blocked operations */
811 slapd_clr_write( sd, 1 );
812 ldap_pvt_thread_cond_signal( &c->c_write_cv );
816 static void connection_close( Connection *c )
820 assert( connections != NULL );
822 assert( c->c_struct_state == SLAP_C_USED );
823 assert( c->c_conn_state == SLAP_C_CLOSING );
825 /* note: connections_mutex and c_mutex should be locked by caller */
827 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
828 if( !LDAP_STAILQ_EMPTY(&c->c_ops) ) {
830 LDAP_LOG( CONNECTION, DETAIL1,
831 "connection_close: conn %lu deferring sd %d\n",
832 c->c_connid, sd, 0 );
834 Debug( LDAP_DEBUG_TRACE,
835 "connection_close: deferring conn=%lu sd=%d\n",
836 c->c_connid, sd, 0 );
842 LDAP_LOG( CONNECTION, RESULTS,
843 "connection_close: conn %lu sd %d\n", c->c_connid, sd, 0 );
845 Debug( LDAP_DEBUG_TRACE, "connection_close: conn=%lu sd=%d\n",
846 c->c_connid, sd, 0 );
848 connection_destroy( c );
851 unsigned long connections_nextid(void)
854 assert( connections != NULL );
856 ldap_pvt_thread_mutex_lock( &connections_mutex );
860 ldap_pvt_thread_mutex_unlock( &connections_mutex );
865 Connection* connection_first( ber_socket_t *index )
867 assert( connections != NULL );
868 assert( index != NULL );
870 ldap_pvt_thread_mutex_lock( &connections_mutex );
874 return connection_next(NULL, index);
877 Connection* connection_next( Connection *c, ber_socket_t *index )
879 assert( connections != NULL );
880 assert( index != NULL );
881 assert( *index <= dtblsize );
884 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
889 for(; *index < dtblsize; (*index)++) {
890 if( connections[*index].c_struct_state == SLAP_C_UNINITIALIZED ) {
891 assert( connections[*index].c_conn_state == SLAP_C_INVALID );
899 if( connections[*index].c_struct_state == SLAP_C_USED ) {
900 assert( connections[*index].c_conn_state != SLAP_C_INVALID );
901 c = &connections[(*index)++];
905 assert( connections[*index].c_struct_state == SLAP_C_UNUSED );
906 assert( connections[*index].c_conn_state == SLAP_C_INVALID );
910 ldap_pvt_thread_mutex_lock( &c->c_mutex );
916 void connection_done( Connection *c )
918 assert( connections != NULL );
921 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
924 ldap_pvt_thread_mutex_unlock( &connections_mutex );
928 * connection_activity - handle the request operation op on connection
929 * conn. This routine figures out what kind of operation it is and
930 * calls the appropriate stub to handle it.
934 #define INCR_OP(var,index) \
936 ldap_pvt_thread_mutex_lock( &num_ops_mutex ); \
938 ldap_pvt_thread_mutex_unlock( &num_ops_mutex ); \
940 #else /* !SLAPD_MONITOR */
941 #define INCR_OP(var,index)
942 #endif /* !SLAPD_MONITOR */
945 connection_operation( void *ctx, void *arg_v )
947 int rc = SLAPD_DISCONNECT;
948 Operation *op = arg_v;
949 SlapReply rs = {REP_RESULT};
950 ber_tag_t tag = op->o_tag;
952 ber_tag_t oldtag = tag;
953 #endif /* SLAPD_MONITOR */
954 Connection *conn = op->o_conn;
956 void *memctx_null = NULL;
959 ldap_pvt_thread_mutex_lock( &num_ops_mutex );
961 ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
963 op->o_threadctx = ctx;
965 if( conn->c_sasl_bind_in_progress && tag != LDAP_REQ_BIND ) {
967 LDAP_LOG( CONNECTION, ERR,
968 "connection_operation: conn %lu SASL bind in progress (tag=%ld).\n",
969 conn->c_connid, (long)tag, 0 );
971 Debug( LDAP_DEBUG_ANY, "connection_operation: "
972 "error: SASL bind in progress (tag=%ld).\n",
975 send_ldap_error( op, &rs, LDAP_OPERATIONS_ERROR,
976 "SASL bind in progress" );
977 goto operations_error;
980 /* We can use Thread-Local storage for most mallocs. We can
981 * also use TL for ber parsing, but not on Add or Modify.
984 memsiz = ber_len( op->o_ber ) * 64;
985 if ( SLMALLOC_SLAB_SIZE > memsiz ) memsiz = SLMALLOC_SLAB_SIZE;
987 memsiz = SLMALLOC_SLAB_SIZE;
989 memctx = sl_mem_create( memsiz, ctx );
990 op->o_tmpmemctx = memctx;
991 op->o_tmpmfuncs = &sl_mfuncs;
992 if ( tag != LDAP_REQ_ADD && tag != LDAP_REQ_MODIFY ) {
993 /* Note - the ber and its buffer are already allocated from
994 * regular memory; this only affects subsequent mallocs that
995 * ber_scanf may invoke.
997 ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, &memctx );
1002 INCR_OP(num_ops_initiated_, SLAP_OP_BIND);
1003 rc = do_bind( op, &rs );
1006 case LDAP_REQ_UNBIND:
1007 INCR_OP(num_ops_initiated_, SLAP_OP_UNBIND);
1008 rc = do_unbind( op, &rs );
1012 INCR_OP(num_ops_initiated_, SLAP_OP_ADD);
1013 rc = do_add( op, &rs );
1016 case LDAP_REQ_DELETE:
1017 INCR_OP(num_ops_initiated_, SLAP_OP_DELETE);
1018 rc = do_delete( op, &rs );
1021 case LDAP_REQ_MODRDN:
1022 INCR_OP(num_ops_initiated_, SLAP_OP_MODRDN);
1023 rc = do_modrdn( op, &rs );
1026 case LDAP_REQ_MODIFY:
1027 INCR_OP(num_ops_initiated_, SLAP_OP_MODIFY);
1028 rc = do_modify( op, &rs );
1031 case LDAP_REQ_COMPARE:
1032 INCR_OP(num_ops_initiated_, SLAP_OP_COMPARE);
1033 rc = do_compare( op, &rs );
1036 case LDAP_REQ_SEARCH:
1037 INCR_OP(num_ops_initiated_, SLAP_OP_SEARCH);
1038 rc = do_search( op, &rs );
1041 case LDAP_REQ_ABANDON:
1042 INCR_OP(num_ops_initiated_, SLAP_OP_ABANDON);
1043 rc = do_abandon( op, &rs );
1046 case LDAP_REQ_EXTENDED:
1047 INCR_OP(num_ops_initiated_, SLAP_OP_EXTENDED);
1048 rc = do_extended( op, &rs );
1053 LDAP_LOG( CONNECTION, INFO,
1054 "connection_operation: conn %lu unknown LDAP request 0x%lx\n",
1055 conn->c_connid, tag, 0 );
1057 Debug( LDAP_DEBUG_ANY, "unknown LDAP request 0x%lx\n",
1060 op->o_tag = LBER_ERROR;
1061 rs.sr_err = LDAP_PROTOCOL_ERROR;
1062 rs.sr_text = "unknown LDAP request";
1063 send_ldap_disconnect( op, &rs );
1068 #ifdef SLAPD_MONITOR
1070 #endif /* SLAPD_MONITOR */
1071 if( rc == SLAPD_DISCONNECT ) tag = LBER_ERROR;
1074 ldap_pvt_thread_mutex_lock( &num_ops_mutex );
1075 num_ops_completed++;
1076 #ifdef SLAPD_MONITOR
1079 num_ops_completed_[SLAP_OP_BIND]++;
1081 case LDAP_REQ_UNBIND:
1082 num_ops_completed_[SLAP_OP_UNBIND]++;
1085 num_ops_completed_[SLAP_OP_ADD]++;
1087 case LDAP_REQ_DELETE:
1088 num_ops_completed_[SLAP_OP_DELETE]++;
1090 case LDAP_REQ_MODRDN:
1091 num_ops_completed_[SLAP_OP_MODRDN]++;
1093 case LDAP_REQ_MODIFY:
1094 num_ops_completed_[SLAP_OP_MODIFY]++;
1096 case LDAP_REQ_COMPARE:
1097 num_ops_completed_[SLAP_OP_COMPARE]++;
1099 case LDAP_REQ_SEARCH:
1100 num_ops_completed_[SLAP_OP_SEARCH]++;
1102 case LDAP_REQ_ABANDON:
1103 num_ops_completed_[SLAP_OP_ABANDON]++;
1105 case LDAP_REQ_EXTENDED:
1106 num_ops_completed_[SLAP_OP_EXTENDED]++;
1109 #endif /* SLAPD_MONITOR */
1110 ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
1112 if ( op->o_cancel == SLAP_CANCEL_REQ ) {
1113 op->o_cancel = LDAP_TOO_LATE;
1116 while ( op->o_cancel != SLAP_CANCEL_NONE &&
1117 op->o_cancel != SLAP_CANCEL_DONE )
1119 ldap_pvt_thread_yield();
1122 ldap_pvt_thread_mutex_lock( &conn->c_mutex );
1124 ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, &memctx_null );
1126 if ( op->o_cancel != SLAP_CANCEL_ACK &&
1127 ( op->o_sync_mode & SLAP_SYNC_PERSIST ) ) {
1128 sl_mem_detach( ctx, memctx );
1129 } else if (( op->o_sync_slog_size != -1 )) {
1130 sl_mem_detach( ctx, memctx );
1131 LDAP_STAILQ_REMOVE( &conn->c_ops, op, slap_op, o_next);
1132 LDAP_STAILQ_NEXT(op, o_next) = NULL;
1133 conn->c_n_ops_executing--;
1134 conn->c_n_ops_completed++;
1136 LDAP_STAILQ_REMOVE( &conn->c_ops, op, slap_op, o_next);
1137 LDAP_STAILQ_NEXT(op, o_next) = NULL;
1139 conn->c_n_ops_executing--;
1140 conn->c_n_ops_completed++;
1145 case LDAP_REQ_UNBIND:
1146 /* c_mutex is locked */
1147 connection_closing( conn );
1151 conn->c_sasl_bind_in_progress =
1152 rc == LDAP_SASL_BIND_IN_PROGRESS ? 1 : 0;
1154 if( conn->c_conn_state == SLAP_C_BINDING) {
1155 conn->c_conn_state = SLAP_C_ACTIVE;
1159 connection_resched( conn );
1161 ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
1166 int connection_client_setup(
1169 ldap_pvt_thread_start_t *func,
1174 if ( connection_init( s, l, "", "", CONN_IS_CLIENT, 0, NULL ) < 0 ) {
1178 c = connection_get( s );
1179 c->c_clientfunc = func;
1180 c->c_clientarg = arg;
1181 connection_return( c );
1182 slapd_add_internal( s, 0 );
1183 slapd_set_read( s, 1 );
1187 void connection_client_enable(
1191 slapd_set_read( s, 1 );
1194 void connection_client_stop(
1200 /* get (locked) connection */
1201 c = connection_get( s );
1203 assert( c->c_conn_state == SLAP_C_CLIENT );
1205 c->c_listener = NULL;
1206 c->c_conn_state = SLAP_C_INVALID;
1207 c->c_struct_state = SLAP_C_UNUSED;
1208 connection_return( c );
1209 slapd_remove( s, 0, 1 );
1212 int connection_read(ber_socket_t s)
1217 assert( connections != NULL );
1219 ldap_pvt_thread_mutex_lock( &connections_mutex );
1221 /* get (locked) connection */
1222 c = connection_get( s );
1226 LDAP_LOG( CONNECTION, INFO,
1227 "connection_read: sock %ld no connection\n", (long)s, 0, 0 );
1229 Debug( LDAP_DEBUG_ANY,
1230 "connection_read(%ld): no connection!\n",
1233 slapd_remove(s, 1, 0);
1235 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1241 if( c->c_conn_state == SLAP_C_CLOSING ) {
1243 LDAP_LOG( CONNECTION, INFO,
1244 "connection_read: conn %lu connection closing, ignoring input\n",
1245 c->c_connid, 0, 0 );
1247 Debug( LDAP_DEBUG_TRACE,
1248 "connection_read(%d): closing, ignoring input for id=%lu\n",
1249 s, c->c_connid, 0 );
1251 connection_return( c );
1252 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1256 if ( c->c_conn_state == SLAP_C_CLIENT ) {
1257 slapd_clr_read( s, 0 );
1258 ldap_pvt_thread_pool_submit( &connection_pool,
1259 c->c_clientfunc, c->c_clientarg );
1260 connection_return( c );
1261 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1266 LDAP_LOG( CONNECTION, DETAIL1,
1267 "connection_read: conn %lu checking for input.\n",
1268 c->c_connid, 0, 0 );
1270 Debug( LDAP_DEBUG_TRACE,
1271 "connection_read(%d): checking for input on id=%lu\n",
1272 s, c->c_connid, 0 );
1276 if ( c->c_is_tls && c->c_needs_tls_accept ) {
1277 rc = ldap_pvt_tls_accept( c->c_sb, NULL );
1279 #if 0 /* required by next #if 0 */
1285 LDAP_LOG( CONNECTION, ERR,
1286 "connection_read: conn %lu TLS accept error, error %d\n",
1287 c->c_connid, rc, 0 );
1289 Debug( LDAP_DEBUG_TRACE,
1290 "connection_read(%d): TLS accept error "
1291 "error=%d id=%lu, closing\n",
1292 s, rc, c->c_connid );
1294 c->c_needs_tls_accept = 0;
1295 /* connections_mutex and c_mutex are locked */
1296 connection_closing( c );
1299 /* Drain input before close, to allow SSL error codes
1300 * to propagate to client. */
1306 rc = select(s+1, &rfd, NULL, NULL, &tv);
1308 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_DRAIN, NULL);
1312 connection_close( c );
1314 } else if ( rc == 0 ) {
1316 struct berval authid = { 0, NULL };
1318 c->c_needs_tls_accept = 0;
1320 /* we need to let SASL know */
1321 ssl = ldap_pvt_tls_sb_ctx( c->c_sb );
1323 c->c_tls_ssf = (slap_ssf_t) ldap_pvt_tls_get_strength( ssl );
1324 if( c->c_tls_ssf > c->c_ssf ) {
1325 c->c_ssf = c->c_tls_ssf;
1328 rc = dnX509peerNormalize( ssl, &authid );
1329 if ( rc != LDAP_SUCCESS ) {
1331 LDAP_LOG( CONNECTION, INFO,
1332 "connection_read: conn %lu unable to get TLS client DN, "
1333 "error %d\n", c->c_connid, rc, 0 );
1335 Debug( LDAP_DEBUG_TRACE,
1336 "connection_read(%d): unable to get TLS client DN "
1337 "error=%d id=%lu\n",
1338 s, rc, c->c_connid );
1341 slap_sasl_external( c, c->c_tls_ssf, &authid );
1342 if ( authid.bv_val ) free( authid.bv_val );
1345 /* if success and data is ready, fall thru to data input loop */
1347 !ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_DATA_READY, NULL ) )
1349 connection_return( c );
1350 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1356 #ifdef HAVE_CYRUS_SASL
1357 if ( c->c_sasl_layers ) {
1358 /* If previous layer is not removed yet, give up for now */
1359 if ( !c->c_sasl_sockctx ) {
1360 connection_return( c );
1361 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1365 c->c_sasl_layers = 0;
1367 rc = ldap_pvt_sasl_install( c->c_sb, c->c_sasl_sockctx );
1369 if( rc != LDAP_SUCCESS ) {
1371 LDAP_LOG( CONNECTION, ERR,
1372 "connection_read: conn %lu SASL install error %d, closing\n",
1373 c->c_connid, rc, 0 );
1375 Debug( LDAP_DEBUG_TRACE,
1376 "connection_read(%d): SASL install error "
1377 "error=%d id=%lu, closing\n",
1378 s, rc, c->c_connid );
1380 /* connections_mutex and c_mutex are locked */
1381 connection_closing( c );
1382 connection_close( c );
1383 connection_return( c );
1384 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1390 #define CONNECTION_INPUT_LOOP 1
1391 /* #define DATA_READY_LOOP 1 */
1394 /* How do we do this without getting into a busy loop ? */
1395 rc = connection_input( c );
1397 #ifdef DATA_READY_LOOP
1398 while( !rc && ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_DATA_READY, NULL ));
1399 #elif CONNECTION_INPUT_LOOP
1407 LDAP_LOG( CONNECTION, ERR,
1408 "connection_read: conn %lu input error %d, closing.\n",
1409 c->c_connid, rc, 0 );
1411 Debug( LDAP_DEBUG_TRACE,
1412 "connection_read(%d): input error=%d id=%lu, closing.\n",
1413 s, rc, c->c_connid );
1415 /* connections_mutex and c_mutex are locked */
1416 connection_closing( c );
1417 connection_close( c );
1418 connection_return( c );
1419 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1423 if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_READ, NULL ) ) {
1424 slapd_set_read( s, 1 );
1427 if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_WRITE, NULL ) ) {
1428 slapd_set_write( s, 1 );
1431 connection_return( c );
1432 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1447 #ifdef LDAP_CONNECTIONLESS
1452 if ( conn->c_currentber == NULL &&
1453 ( conn->c_currentber = ber_alloc()) == NULL )
1456 LDAP_LOG( CONNECTION, ERR,
1457 "connection_input: conn %lu ber_alloc failed.\n",
1458 conn->c_connid, 0, 0 );
1460 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
1467 #ifdef LDAP_CONNECTIONLESS
1468 if ( conn->c_is_udp ) {
1469 char peername[sizeof("IP=255.255.255.255:65336")];
1470 len = ber_int_sb_read(conn->c_sb, &peeraddr,
1471 sizeof(struct sockaddr));
1472 if (len != sizeof(struct sockaddr))
1474 sprintf( peername, "IP=%s:%d",
1475 inet_ntoa( peeraddr.sa_in_addr.sin_addr ),
1476 (unsigned) ntohs( peeraddr.sa_in_addr.sin_port ) );
1477 Statslog( LDAP_DEBUG_STATS,
1478 "conn=%lu UDP request from %s (%s) accepted.\n",
1479 conn->c_connid, peername, conn->c_sock_name.bv_val, 0, 0 );
1482 tag = ber_get_next( conn->c_sb, &len, conn->c_currentber );
1483 if ( tag != LDAP_TAG_MESSAGE ) {
1487 ber_sockbuf_ctrl( conn->c_sb, LBER_SB_OPT_GET_FD, &sd );
1490 LDAP_LOG( CONNECTION, ERR,
1491 "connection_input: conn %lu ber_get_next failed, errno %d (%s).\n",
1492 conn->c_connid, err, sock_errstr(err) );
1494 Debug( LDAP_DEBUG_TRACE,
1495 "ber_get_next on fd %d failed errno=%d (%s)\n",
1496 sd, err, sock_errstr(err) );
1498 if ( err != EWOULDBLOCK && err != EAGAIN ) {
1499 /* log, close and send error */
1500 ber_free( conn->c_currentber, 1 );
1501 conn->c_currentber = NULL;
1508 ber = conn->c_currentber;
1509 conn->c_currentber = NULL;
1511 if ( (tag = ber_get_int( ber, &msgid )) != LDAP_TAG_MSGID ) {
1512 /* log, close and send error */
1514 LDAP_LOG( CONNECTION, ERR,
1515 "connection_input: conn %lu ber_get_int returns 0x%lx.\n",
1516 conn->c_connid, tag, 0 );
1518 Debug( LDAP_DEBUG_ANY, "ber_get_int returns 0x%lx\n",
1525 if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
1526 /* log, close and send error */
1528 LDAP_LOG( CONNECTION, ERR,
1529 "connection_input: conn %lu ber_peek_tag returns 0x%lx.\n",
1530 conn->c_connid, tag, 0 );
1532 Debug( LDAP_DEBUG_ANY, "ber_peek_tag returns 0x%lx\n",
1540 #ifdef LDAP_CONNECTIONLESS
1541 if( conn->c_is_udp ) {
1542 if( tag == LBER_OCTETSTRING ) {
1543 ber_get_stringa( ber, &cdn );
1544 tag = ber_peek_tag(ber, &len);
1546 if( tag != LDAP_REQ_ABANDON && tag != LDAP_REQ_SEARCH ) {
1548 LDAP_LOG( CONNECTION, ERR,
1549 "connection_input: conn %lu invalid req for UDP 0x%lx.\n",
1550 conn->c_connid, tag, 0 );
1552 Debug( LDAP_DEBUG_ANY, "invalid req for UDP 0x%lx\n", tag, 0, 0 );
1559 if(tag == LDAP_REQ_BIND) {
1560 /* immediately abandon all exiting operations upon BIND */
1561 connection_abandon( conn );
1564 op = slap_op_alloc( ber, msgid, tag, conn->c_n_ops_received++ );
1567 op->o_assertion = NULL;
1568 op->o_preread_attrs = NULL;
1569 op->o_postread_attrs = NULL;
1570 op->o_vrFilter = NULL;
1571 op->o_pagedresults_state = conn->c_pagedresults_state;
1573 op->o_res_ber = NULL;
1575 #ifdef LDAP_CONNECTIONLESS
1576 if (conn->c_is_udp) {
1578 ber_str2bv( cdn, 0, 1, &op->o_dn );
1579 op->o_protocol = LDAP_VERSION2;
1581 op->o_res_ber = ber_alloc_t( LBER_USE_DER );
1582 if (op->o_res_ber == NULL) return 1;
1584 rc = ber_write( op->o_res_ber, (char *)&peeraddr,
1585 sizeof(struct sockaddr), 0 );
1587 if (rc != sizeof(struct sockaddr)) {
1589 LDAP_LOG( CONNECTION, INFO,
1590 "connection_input: conn %lu ber_write failed\n",
1591 conn->c_connid, 0, 0 );
1593 Debug( LDAP_DEBUG_ANY, "ber_write failed\n", 0, 0, 0 );
1598 if (op->o_protocol == LDAP_VERSION2) {
1599 rc = ber_printf(op->o_res_ber, "{is{" /*}}*/, op->o_msgid, "");
1602 LDAP_LOG( CONNECTION, INFO,
1603 "connection_input: conn %lu put outer sequence failed\n",
1604 conn->c_connid, 0, 0 );
1606 Debug( LDAP_DEBUG_ANY, "ber_write failed\n", 0, 0, 0 );
1612 #endif /* LDAP_CONNECTIONLESS */
1616 /* Don't process requests when the conn is in the middle of a
1617 * Bind, or if it's closing. Also, don't let any single conn
1618 * use up all the available threads, and don't execute if we're
1619 * currently blocked on output. And don't execute if there are
1620 * already pending ops, let them go first.
1622 * But always allow Abandon through; it won't cost much.
1624 if ( tag != LDAP_REQ_ABANDON && (conn->c_conn_state == SLAP_C_BINDING
1625 || conn->c_conn_state == SLAP_C_CLOSING
1626 || conn->c_n_ops_executing >= connection_pool_max/2
1627 || conn->c_n_ops_pending
1628 || conn->c_writewaiter))
1630 int max = conn->c_dn.bv_len
1631 ? slap_conn_max_pending_auth
1632 : slap_conn_max_pending;
1635 LDAP_LOG( CONNECTION, INFO,
1636 "connection_input: conn %lu deferring operation\n",
1637 conn->c_connid, 0, 0 );
1639 Debug( LDAP_DEBUG_ANY,
1640 "connection_input: conn=%lu deferring operation\n",
1641 conn->c_connid, 0, 0 );
1643 conn->c_n_ops_pending++;
1644 LDAP_STAILQ_INSERT_TAIL( &conn->c_pending_ops, op, o_next );
1645 if ( conn->c_n_ops_pending > max ) {
1651 conn->c_n_ops_executing++;
1652 connection_op_activate( op );
1656 if ( conn->c_struct_state != SLAP_C_USED ) {
1657 /* connection must have got closed underneath us */
1661 assert( conn->c_struct_state == SLAP_C_USED );
1667 connection_resched( Connection *conn )
1671 if( conn->c_conn_state == SLAP_C_CLOSING ) {
1674 ber_sockbuf_ctrl( conn->c_sb, LBER_SB_OPT_GET_FD, &sd );
1676 /* us trylock to avoid possible deadlock */
1677 rc = ldap_pvt_thread_mutex_trylock( &connections_mutex );
1681 LDAP_LOG( CONNECTION, DETAIL1,
1682 "connection_resched: conn %lu reaquiring locks.\n",
1683 conn->c_connid, 0, 0 );
1685 Debug( LDAP_DEBUG_TRACE,
1686 "connection_resched: reaquiring locks conn=%lu sd=%d\n",
1687 conn->c_connid, sd, 0 );
1690 * reaquire locks in the right order...
1691 * this may allow another thread to close this connection,
1692 * so recheck state below.
1694 ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
1695 ldap_pvt_thread_mutex_lock( &connections_mutex );
1696 ldap_pvt_thread_mutex_lock( &conn->c_mutex );
1699 if( conn->c_conn_state != SLAP_C_CLOSING ) {
1701 LDAP_LOG( CONNECTION, INFO,
1702 "connection_resched: conn %lu closed by other thread.\n",
1703 conn->c_connid, 0, 0 );
1705 Debug( LDAP_DEBUG_TRACE, "connection_resched: "
1706 "closed by other thread conn=%lu sd=%d\n",
1707 conn->c_connid, sd, 0 );
1711 LDAP_LOG( CONNECTION, DETAIL1,
1712 "connection_resched: conn %lu attempting closing.\n",
1713 conn->c_connid, 0, 0 );
1715 Debug( LDAP_DEBUG_TRACE, "connection_resched: "
1716 "attempting closing conn=%lu sd=%d\n",
1717 conn->c_connid, sd, 0 );
1719 connection_close( conn );
1722 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1726 if( conn->c_conn_state != SLAP_C_ACTIVE || conn->c_writewaiter ) {
1727 /* other states need different handling */
1731 while ((op = LDAP_STAILQ_FIRST( &conn->c_pending_ops )) != NULL) {
1732 if ( conn->c_n_ops_executing > connection_pool_max/2 ) {
1735 LDAP_STAILQ_REMOVE_HEAD( &conn->c_pending_ops, o_next );
1736 LDAP_STAILQ_NEXT(op, o_next) = NULL;
1737 /* pending operations should not be marked for abandonment */
1738 assert(!op->o_abandon);
1740 conn->c_n_ops_pending--;
1741 conn->c_n_ops_executing++;
1743 connection_op_activate( op );
1745 if ( conn->c_conn_state == SLAP_C_BINDING ) {
1752 static int connection_op_activate( Operation *op )
1755 ber_tag_t tag = op->o_tag;
1757 if(tag == LDAP_REQ_BIND) {
1758 op->o_conn->c_conn_state = SLAP_C_BINDING;
1761 if (!op->o_dn.bv_len) {
1762 op->o_authz = op->o_conn->c_authz;
1763 ber_dupbv( &op->o_dn, &op->o_conn->c_dn );
1764 ber_dupbv( &op->o_ndn, &op->o_conn->c_ndn );
1766 op->o_authtype = op->o_conn->c_authtype;
1767 ber_dupbv( &op->o_authmech, &op->o_conn->c_authmech );
1769 if (!op->o_protocol) {
1770 op->o_protocol = op->o_conn->c_protocol
1771 ? op->o_conn->c_protocol : LDAP_VERSION3;
1773 if (op->o_conn->c_conn_state == SLAP_C_INACTIVE
1774 && op->o_protocol > LDAP_VERSION2)
1776 op->o_conn->c_conn_state = SLAP_C_ACTIVE;
1779 op->o_connid = op->o_conn->c_connid;
1781 LDAP_STAILQ_INSERT_TAIL( &op->o_conn->c_ops, op, o_next );
1783 status = ldap_pvt_thread_pool_submit( &connection_pool,
1784 connection_operation, (void *) op );
1786 if ( status != 0 ) {
1788 LDAP_LOG( CONNECTION, ERR,
1789 "connection_op_activate: conn %lu thread pool submit failed.\n",
1790 op->o_connid, 0, 0 );
1792 Debug( LDAP_DEBUG_ANY,
1793 "ldap_pvt_thread_pool_submit: failed (%d) for conn=%lu\n",
1794 status, op->o_connid, 0 );
1796 /* should move op to pending list */
1802 int connection_write(ber_socket_t s)
1806 assert( connections != NULL );
1808 ldap_pvt_thread_mutex_lock( &connections_mutex );
1810 c = connection_get( s );
1812 slapd_clr_write( s, 0);
1816 LDAP_LOG( CONNECTION, ERR,
1817 "connection_write: sock %ld no connection!\n", (long)s, 0, 0);
1819 Debug( LDAP_DEBUG_ANY,
1820 "connection_write(%ld): no connection!\n",
1823 slapd_remove(s, 1, 0);
1824 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1831 LDAP_LOG( CONNECTION, DETAIL1,
1832 "connection_write conn %lu waking output.\n", c->c_connid, 0, 0 );
1834 Debug( LDAP_DEBUG_TRACE,
1835 "connection_write(%d): waking output for id=%lu\n",
1836 s, c->c_connid, 0 );
1838 ldap_pvt_thread_cond_signal( &c->c_write_cv );
1840 if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_READ, NULL ) ) {
1841 slapd_set_read( s, 1 );
1843 if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_WRITE, NULL ) ) {
1844 slapd_set_write( s, 1 );
1846 connection_return( c );
1847 ldap_pvt_thread_mutex_unlock( &connections_mutex );