]> git.sur5r.net Git - openldap/blob - servers/slapd/connection.c
In previous commit - change strerror() to STRERROR().
[openldap] / servers / slapd / connection.c
1 /*
2  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6 #include "portable.h"
7
8 #include <stdio.h>
9
10 #include <ac/socket.h>
11 #include <ac/errno.h>
12 #include <ac/signal.h>
13 #include <ac/string.h>
14 #include <ac/time.h>
15
16 #include "slap.h"
17
18 /* we need LBER internals */
19 #include "../../libraries/liblber/lber-int.h"
20
21 /* protected by connections_mutex */
22 static ldap_pvt_thread_mutex_t connections_mutex;
23 static Connection *connections = NULL;
24 static unsigned long conn_nextid = 0;
25
26 /* structure state (protected by connections_mutex) */
27 #define SLAP_C_UNINITIALIZED    0x00    /* MUST BE ZERO (0) */
28 #define SLAP_C_UNUSED                   0x01
29 #define SLAP_C_USED                             0x02
30
31 /* connection state (protected by c_mutex ) */
32 #define SLAP_C_INVALID                  0x00    /* MUST BE ZERO (0) */
33 #define SLAP_C_INACTIVE                 0x01    /* zero threads */
34 #define SLAP_C_ACTIVE                   0x02    /* one or more threads */
35 #define SLAP_C_BINDING                  0x03    /* binding */
36 #define SLAP_C_CLOSING                  0x04    /* closing */
37
38 char* connection_state2str( int state ) {
39         switch( state ) {
40         case SLAP_C_INVALID:    return "!";             
41         case SLAP_C_INACTIVE:   return "|";             
42         case SLAP_C_ACTIVE:             return "";                      
43         case SLAP_C_BINDING:    return "B";
44         case SLAP_C_CLOSING:    return "C";                     
45         }
46
47         return "?";
48 }
49
50 static Connection* connection_get( ber_socket_t s );
51
52 static int connection_input( Connection *c );
53 static void connection_close( Connection *c );
54
55 static int connection_op_activate( Connection *conn, Operation *op );
56 static int connection_resched( Connection *conn );
57 static void connection_abandon( Connection *conn );
58 static void connection_destroy( Connection *c );
59
60 struct co_arg {
61         Connection      *co_conn;
62         Operation       *co_op;
63 };
64
65 /*
66  * Initialize connection management infrastructure.
67  */
68 int connections_init(void)
69 {
70         assert( connections == NULL );
71
72         if( connections != NULL) {
73                 Debug( LDAP_DEBUG_ANY, "connections_init: already initialized.\n",
74                         0, 0, 0 );
75                 return -1;
76         }
77
78         /* should check return of every call */
79         ldap_pvt_thread_mutex_init( &connections_mutex );
80
81         connections = (Connection *) calloc( dtblsize, sizeof(Connection) );
82
83         if( connections == NULL ) {
84                 Debug( LDAP_DEBUG_ANY,
85                         "connections_init: allocation (%d*%ld) of connection array failed\n",
86                         dtblsize, (long) sizeof(Connection), 0 );
87                 return -1;
88         }
89
90     assert( connections[0].c_struct_state == SLAP_C_UNINITIALIZED );
91     assert( connections[dtblsize-1].c_struct_state == SLAP_C_UNINITIALIZED );
92
93         /*
94          * per entry initialization of the Connection array initialization
95          * will be done by connection_init()
96          */ 
97
98         return 0;
99 }
100
101 /*
102  * Destroy connection management infrastructure.
103  */
104 int connections_destroy(void)
105 {
106         ber_socket_t i;
107
108         /* should check return of every call */
109
110         if( connections == NULL) {
111                 Debug( LDAP_DEBUG_ANY, "connections_destroy: nothing to destroy.\n",
112                         0, 0, 0 );
113                 return -1;
114         }
115
116         for ( i = 0; i < dtblsize; i++ ) {
117                 if( connections[i].c_struct_state != SLAP_C_UNINITIALIZED ) {
118                         ber_sockbuf_free( connections[i].c_sb );
119                         ldap_pvt_thread_mutex_destroy( &connections[i].c_mutex );
120                         ldap_pvt_thread_mutex_destroy( &connections[i].c_write_mutex );
121                         ldap_pvt_thread_cond_destroy( &connections[i].c_write_cv );
122                 }
123         }
124
125         free( connections );
126         connections = NULL;
127
128         ldap_pvt_thread_mutex_destroy( &connections_mutex );
129         return 0;
130 }
131
132 /*
133  * shutdown all connections
134  */
135 int connections_shutdown(void)
136 {
137         ber_socket_t i;
138
139         ldap_pvt_thread_mutex_lock( &connections_mutex );
140
141         for ( i = 0; i < dtblsize; i++ ) {
142                 if( connections[i].c_struct_state != SLAP_C_USED ) {
143                         continue;
144                 }
145
146                 ldap_pvt_thread_mutex_lock( &connections[i].c_mutex );
147
148                 /* connections_mutex and c_mutex are locked */
149                 connection_closing( &connections[i] );
150                 connection_close( &connections[i] );
151
152                 ldap_pvt_thread_mutex_unlock( &connections[i].c_mutex );
153         }
154
155         ldap_pvt_thread_mutex_unlock( &connections_mutex );
156
157         return 0;
158 }
159
160 /*
161  * Timeout idle connections.
162  */
163 int connections_timeout_idle(time_t now)
164 {
165         int i = 0;
166         int connindex;
167         Connection* c;
168
169         ldap_pvt_thread_mutex_lock( &connections_mutex );
170
171         for( c = connection_first( &connindex );
172                 c != NULL;
173                 c = connection_next( c, &connindex ) )
174         {
175                 if( difftime( c->c_activitytime+global_idletimeout, now) < 0 ) {
176                         /* close it */
177                         connection_closing( c );
178                         connection_close( c );
179                         i++;
180                 }
181         }
182         connection_done( c );
183
184         ldap_pvt_thread_mutex_unlock( &connections_mutex );
185
186         return i;
187 }
188
189 static Connection* connection_get( ber_socket_t s )
190 {
191         /* connections_mutex should be locked by caller */
192
193         Connection *c;
194
195         Debug( LDAP_DEBUG_ARGS,
196                 "connection_get(%ld)\n",
197                 (long) s, 0, 0 );
198
199         assert( connections != NULL );
200
201         if(s == AC_SOCKET_INVALID) {
202                 return NULL;
203         }
204
205 #ifndef HAVE_WINSOCK
206         c = &connections[s];
207
208         assert( c->c_struct_state != SLAP_C_UNINITIALIZED );
209
210 #else
211         c = NULL;
212         {
213                 ber_socket_t i;
214
215                 for(i=0; i<dtblsize; i++) {
216                         if( connections[i].c_struct_state == SLAP_C_UNINITIALIZED ) {
217                                 assert( connections[i].c_conn_state == SLAP_C_INVALID );
218                                 assert( connections[i].c_sb == 0 );
219                                 break;
220                         }
221
222                         if( connections[i].c_struct_state == SLAP_C_UNUSED ) {
223                                 assert( connections[i].c_conn_state == SLAP_C_INVALID );
224                                 assert( !ber_pvt_sb_in_use( connections[i].c_sb ) );
225                                 continue;
226                         }
227
228                         /* state can actually change from used -> unused by resched,
229                          * so don't assert details here.
230                          */
231
232                         if( ber_pvt_sb_get_desc( connections[i].c_sb ) == s ) {
233                                 c = &connections[i];
234                                 break;
235                         }
236                 }
237         }
238 #endif
239
240         if( c != NULL ) {
241                 ldap_pvt_thread_mutex_lock( &c->c_mutex );
242
243                 if( c->c_struct_state != SLAP_C_USED ) {
244                         /* connection must have been closed due to resched */
245
246                         assert( c->c_conn_state == SLAP_C_INVALID );
247                         assert( !ber_pvt_sb_in_use( c->c_sb ) );
248
249                         Debug( LDAP_DEBUG_TRACE,
250                                 "connection_get(%d): connection not used\n",
251                                 s, 0, 0 );
252
253                         ldap_pvt_thread_mutex_unlock( &c->c_mutex );
254                         return NULL;
255                 }
256
257                 Debug( LDAP_DEBUG_TRACE,
258                         "connection_get(%d): got connid=%ld\n",
259                         s, c->c_connid, 0 );
260
261                 c->c_n_get++;
262
263                 assert( c->c_struct_state == SLAP_C_USED );
264                 assert( c->c_conn_state != SLAP_C_INVALID );
265                 assert( ber_pvt_sb_in_use( c->c_sb ) );
266
267         c->c_activitytime = slap_get_time();
268         }
269
270         return c;
271 }
272
273 static void connection_return( Connection *c )
274 {
275         ldap_pvt_thread_mutex_unlock( &c->c_mutex );
276 }
277
278 long connection_init(
279         ber_socket_t s,
280         const char* url,
281         const char* dnsname,
282         const char* peername,
283         const char* sockname,
284         int use_tls )
285 {
286         unsigned long id;
287         Connection *c;
288
289         assert( connections != NULL );
290
291         assert( dnsname != NULL );
292         assert( peername != NULL );
293         assert( sockname != NULL );
294
295 #ifndef HAVE_TLS
296         assert( !use_tls );
297 #endif
298
299         if( s == AC_SOCKET_INVALID ) {
300         Debug( LDAP_DEBUG_ANY,
301                         "connection_init(%ld): invalid.\n",
302                         (long) s, 0, 0 );
303                 return -1;
304         }
305
306         assert( s >= 0 );
307 #ifndef HAVE_WINSOCK
308         assert( s < dtblsize );
309 #endif
310
311         ldap_pvt_thread_mutex_lock( &connections_mutex );
312
313 #ifndef HAVE_WINSOCK
314         c = &connections[s];
315
316 #else
317         {
318                 unsigned int i;
319
320                 c = NULL;
321
322         for( i=0; i < dtblsize; i++) {
323             if( connections[i].c_struct_state == SLAP_C_UNINITIALIZED ) {
324                 assert( connections[i].c_sb == 0 );
325                 c = &connections[i];
326                 break;
327             }
328
329             if( connections[i].c_struct_state == SLAP_C_UNUSED ) {
330                 assert( !ber_pvt_sb_in_use( connections[i].c_sb ));
331                 c = &connections[i];
332                 break;
333             }
334
335             assert( connections[i].c_struct_state == SLAP_C_USED );
336             assert( connections[i].c_conn_state != SLAP_C_INVALID );
337             assert( ber_pvt_sb_in_use( connections[i].c_sb ));
338         }
339
340         if( c == NULL ) {
341                 Debug( LDAP_DEBUG_ANY,
342                                 "connection_init(%d): connection table full (%d/%d)\n",
343                                 s, i, dtblsize);
344             ldap_pvt_thread_mutex_unlock( &connections_mutex );
345             return -1;
346         }
347     }
348 #endif
349
350     assert( c != NULL );
351
352     if( c->c_struct_state == SLAP_C_UNINITIALIZED ) {
353         c->c_dn = NULL;
354         c->c_cdn = NULL;
355
356                 c->c_listener_url = NULL;
357                 c->c_peer_domain = NULL;
358         c->c_peer_name = NULL;
359         c->c_sock_name = NULL;
360
361         c->c_ops = NULL;
362         c->c_pending_ops = NULL;
363                 c->c_authmech = NULL;
364                 c->c_authstate = NULL;
365
366 #ifdef HAVE_CYRUS_SASL
367                 c->c_sasl_context = NULL;
368 #endif
369
370         c->c_sb = ber_sockbuf_alloc( );
371                 c->c_currentber = NULL;
372
373         /* should check status of thread calls */
374         ldap_pvt_thread_mutex_init( &c->c_mutex );
375         ldap_pvt_thread_mutex_init( &c->c_write_mutex );
376         ldap_pvt_thread_cond_init( &c->c_write_cv );
377
378         c->c_struct_state = SLAP_C_UNUSED;
379     }
380
381     ldap_pvt_thread_mutex_lock( &c->c_mutex );
382
383     assert( c->c_struct_state == SLAP_C_UNUSED );
384     assert(     c->c_dn == NULL );
385     assert(     c->c_cdn == NULL );
386     assert( c->c_listener_url == NULL );
387     assert( c->c_peer_domain == NULL );
388     assert( c->c_peer_name == NULL );
389     assert( c->c_sock_name == NULL );
390     assert( c->c_ops == NULL );
391     assert( c->c_pending_ops == NULL );
392         assert( c->c_authmech == NULL );
393         assert( c->c_authstate == NULL );
394 #ifdef HAVE_CYRUS_SASL
395         assert( c->c_sasl_context == NULL );
396 #endif
397         assert( c->c_currentber == NULL );
398
399         c->c_listener_url = ch_strdup( url  );
400         c->c_peer_domain = ch_strdup( dnsname  );
401     c->c_peer_name = ch_strdup( peername  );
402     c->c_sock_name = ch_strdup( sockname );
403
404     c->c_n_ops_received = 0;
405     c->c_n_ops_executing = 0;
406     c->c_n_ops_pending = 0;
407     c->c_n_ops_completed = 0;
408
409         c->c_n_get = 0;
410         c->c_n_read = 0;
411         c->c_n_write = 0;
412
413         /* assume LDAPv3 until bind */
414         c->c_protocol = LDAP_VERSION3;
415
416     c->c_activitytime = c->c_starttime = slap_get_time();
417
418     ber_pvt_sb_set_desc( c->c_sb, s );
419     ber_pvt_sb_set_io( c->c_sb, &ber_pvt_sb_io_tcp, NULL );
420
421     if( ber_pvt_sb_set_nonblock( c->c_sb, 1 ) < 0 ) {
422         Debug( LDAP_DEBUG_ANY,
423             "connection_init(%d, %s): set nonblocking failed\n",
424             s, c->c_peer_name,0 );
425     }
426
427     id = c->c_connid = conn_nextid++;
428
429     c->c_conn_state = SLAP_C_INACTIVE;
430     c->c_struct_state = SLAP_C_USED;
431
432 #ifdef HAVE_TLS
433     if ( use_tls ) {
434             c->c_is_tls = 1;
435             c->c_needs_tls_accept = 1;
436     }
437 #endif
438
439     ldap_pvt_thread_mutex_unlock( &c->c_mutex );
440     ldap_pvt_thread_mutex_unlock( &connections_mutex );
441
442     backend_connection_init(c);
443
444     return id;
445 }
446
447 static void
448 connection_destroy( Connection *c )
449 {
450         /* note: connections_mutex should be locked by caller */
451
452     assert( connections != NULL );
453     assert( c != NULL );
454     assert( c->c_struct_state != SLAP_C_UNUSED );
455     assert( c->c_conn_state != SLAP_C_INVALID );
456     assert( c->c_ops == NULL );
457
458     backend_connection_destroy(c);
459
460     c->c_protocol = 0;
461     c->c_connid = -1;
462
463     c->c_activitytime = c->c_starttime = 0;
464
465     if(c->c_dn != NULL) {
466         free(c->c_dn);
467         c->c_dn = NULL;
468     }
469         if(c->c_cdn != NULL) {
470                 free(c->c_cdn);
471                 c->c_cdn = NULL;
472         }
473         if(c->c_listener_url != NULL) {
474                 free(c->c_listener_url);
475                 c->c_listener_url = NULL;
476         }
477         if(c->c_peer_domain != NULL) {
478                 free(c->c_peer_domain);
479                 c->c_peer_domain = NULL;
480         }
481         if(c->c_peer_name != NULL) {
482                 free(c->c_peer_name);
483                 c->c_peer_name = NULL;
484         }
485         if(c->c_sock_name != NULL) {
486                 free(c->c_sock_name);
487                 c->c_sock_name = NULL;
488         }
489         if(c->c_authmech != NULL ) {
490                 free(c->c_authmech);
491                 c->c_authmech = NULL;
492         }
493         if(c->c_authstate != NULL ) {
494                 free(c->c_authstate);
495                 c->c_authstate = NULL;
496         }
497
498 #ifdef HAVE_CYRUS_SASL
499         if(c->c_sasl_context != NULL ) {
500                 sasl_dispose( &c->c_sasl_context );
501                 c->c_sasl_context = NULL;
502         }
503 #endif
504
505         if ( c->c_currentber != NULL ) {
506                 ber_free( c->c_currentber, 1 );
507                 c->c_currentber = NULL;
508         }
509
510         if ( ber_pvt_sb_in_use(c->c_sb) ) {
511                 int sd = ber_pvt_sb_get_desc(c->c_sb);
512
513                 slapd_remove( sd, 0 );
514                 ber_pvt_sb_close( c->c_sb );
515
516                 Statslog( LDAP_DEBUG_STATS,
517                     "conn=%ld fd=%d closed\n",
518                         c->c_connid, sd, 0, 0, 0 );
519         }
520
521         ber_pvt_sb_destroy( c->c_sb );
522
523     c->c_conn_state = SLAP_C_INVALID;
524     c->c_struct_state = SLAP_C_UNUSED;
525 }
526
527 int connection_state_closing( Connection *c )
528 {
529         /* c_mutex must be locked by caller */
530
531         int state;
532         assert( c != NULL );
533         assert( c->c_struct_state == SLAP_C_USED );
534
535         state = c->c_conn_state;
536
537         assert( state != SLAP_C_INVALID );
538
539         return state == SLAP_C_CLOSING;
540 }
541
542 static void connection_abandon( Connection *c )
543 {
544         /* c_mutex must be locked by caller */
545
546         Operation *o;
547
548         for( o = c->c_ops; o != NULL; o = o->o_next ) {
549                 ldap_pvt_thread_mutex_lock( &o->o_abandonmutex );
550                 o->o_abandon = 1;
551                 ldap_pvt_thread_mutex_unlock( &o->o_abandonmutex );
552         }
553
554         /* remove pending operations */
555         for( o = slap_op_pop( &c->c_pending_ops );
556                 o != NULL;
557                 o = slap_op_pop( &c->c_pending_ops ) )
558         {
559                 slap_op_free( o );
560         }
561 }
562
563 void connection_closing( Connection *c )
564 {
565         assert( connections != NULL );
566         assert( c != NULL );
567         assert( c->c_struct_state == SLAP_C_USED );
568         assert( c->c_conn_state != SLAP_C_INVALID );
569
570         /* c_mutex must be locked by caller */
571
572         if( c->c_conn_state != SLAP_C_CLOSING ) {
573
574                 Debug( LDAP_DEBUG_TRACE,
575                         "connection_closing: readying conn=%ld sd=%d for close\n",
576                         c->c_connid, ber_pvt_sb_get_desc( c->c_sb ), 0 );
577
578                 /* update state to closing */
579                 c->c_conn_state = SLAP_C_CLOSING;
580
581                 /* don't listen on this port anymore */
582                 slapd_clr_read( ber_pvt_sb_get_desc( c->c_sb ), 1 );
583
584                 /* shutdown I/O -- not yet implemented */
585
586                 /* abandon active operations */
587                 connection_abandon( c );
588
589                 /* wake write blocked operations */
590                 slapd_clr_write( ber_pvt_sb_get_desc(c->c_sb), 1 );
591                 ldap_pvt_thread_cond_signal( &c->c_write_cv );
592         }
593 }
594
595 static void connection_close( Connection *c )
596 {
597         assert( connections != NULL );
598         assert( c != NULL );
599         assert( c->c_struct_state == SLAP_C_USED );
600         assert( c->c_conn_state == SLAP_C_CLOSING );
601
602         /* note: connections_mutex and c_mutex should be locked by caller */
603
604         if( c->c_ops != NULL ) {
605                 Debug( LDAP_DEBUG_TRACE,
606                         "connection_close: deferring conn=%ld sd=%d\n",
607                         c->c_connid, ber_pvt_sb_get_desc( c->c_sb ), 0 );
608
609                 return;
610         }
611
612         Debug( LDAP_DEBUG_TRACE, "connection_close: conn=%ld sd=%d\n",
613                 c->c_connid, ber_pvt_sb_get_desc( c->c_sb ), 0 );
614
615         connection_destroy( c );
616 }
617
618 unsigned long connections_nextid(void)
619 {
620         unsigned long id;
621         assert( connections != NULL );
622
623         ldap_pvt_thread_mutex_lock( &connections_mutex );
624
625         id = conn_nextid;
626
627         ldap_pvt_thread_mutex_unlock( &connections_mutex );
628
629         return id;
630 }
631
632 Connection* connection_first( ber_socket_t *index )
633 {
634         assert( connections != NULL );
635         assert( index != NULL );
636
637         ldap_pvt_thread_mutex_lock( &connections_mutex );
638
639         *index = 0;
640
641         return connection_next(NULL, index);
642 }
643
644 Connection* connection_next( Connection *c, ber_socket_t *index )
645 {
646         assert( connections != NULL );
647         assert( index != NULL );
648         assert( *index <= dtblsize );
649
650         if( c != NULL ) {
651                 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
652         }
653
654         c = NULL;
655
656         for(; *index < dtblsize; (*index)++) {
657                 if( connections[*index].c_struct_state == SLAP_C_UNINITIALIZED ) {
658                         assert( connections[*index].c_conn_state == SLAP_C_INVALID );
659 #ifndef HAVE_WINSOCK
660                         continue;
661 #else
662                         break;
663 #endif
664                 }
665
666                 if( connections[*index].c_struct_state == SLAP_C_USED ) {
667                         assert( connections[*index].c_conn_state != SLAP_C_INVALID );
668                         c = &connections[(*index)++];
669                         break;
670                 }
671
672                 assert( connections[*index].c_struct_state == SLAP_C_UNUSED );
673                 assert( connections[*index].c_conn_state == SLAP_C_INVALID );
674         }
675
676         if( c != NULL ) {
677                 ldap_pvt_thread_mutex_lock( &c->c_mutex );
678         }
679
680         return c;
681 }
682
683 void connection_done( Connection *c )
684 {
685         assert( connections != NULL );
686
687         if( c != NULL ) {
688                 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
689         }
690
691         ldap_pvt_thread_mutex_unlock( &connections_mutex );
692 }
693
694 /*
695  * connection_activity - handle the request operation op on connection
696  * conn.  This routine figures out what kind of operation it is and
697  * calls the appropriate stub to handle it.
698  */
699
700 static void *
701 connection_operation( void *arg_v )
702 {
703         int rc;
704         struct co_arg   *arg = arg_v;
705         ber_tag_t tag = arg->co_op->o_tag;
706         Connection *conn = arg->co_conn;
707
708         ldap_pvt_thread_mutex_lock( &num_ops_mutex );
709         num_ops_initiated++;
710         ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
711
712         switch ( tag ) {
713         case LDAP_REQ_BIND:
714                 rc = do_bind( conn, arg->co_op );
715                 break;
716
717         case LDAP_REQ_UNBIND:
718                 rc = do_unbind( conn, arg->co_op );
719                 break;
720
721         case LDAP_REQ_ADD:
722                 rc = do_add( conn, arg->co_op );
723                 break;
724
725         case LDAP_REQ_DELETE:
726                 rc = do_delete( conn, arg->co_op );
727                 break;
728
729         case LDAP_REQ_MODRDN:
730                 rc = do_modrdn( conn, arg->co_op );
731                 break;
732
733         case LDAP_REQ_MODIFY:
734                 rc = do_modify( conn, arg->co_op );
735                 break;
736
737         case LDAP_REQ_COMPARE:
738                 rc = do_compare( conn, arg->co_op );
739                 break;
740
741         case LDAP_REQ_SEARCH:
742                 rc = do_search( conn, arg->co_op );
743                 break;
744
745         case LDAP_REQ_ABANDON:
746                 rc = do_abandon( conn, arg->co_op );
747                 break;
748
749         case LDAP_REQ_EXTENDED:
750                 rc = do_extended( conn, arg->co_op );
751                 break;
752
753         default:
754                 Debug( LDAP_DEBUG_ANY, "unknown LDAP request 0x%lx\n",
755                     tag, 0, 0 );
756                 arg->co_op->o_tag = LBER_ERROR;
757                 send_ldap_disconnect( conn, arg->co_op,
758                         LDAP_PROTOCOL_ERROR, "unknown LDAP request" );
759                 rc = -1;
760                 break;
761         }
762
763         if( rc == -1 ) tag = LBER_ERROR;
764
765         ldap_pvt_thread_mutex_lock( &num_ops_mutex );
766         num_ops_completed++;
767         ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
768
769         ldap_pvt_thread_mutex_lock( &conn->c_mutex );
770
771         conn->c_n_ops_executing--;
772         conn->c_n_ops_completed++;
773
774         slap_op_remove( &conn->c_ops, arg->co_op );
775         slap_op_free( arg->co_op );
776         arg->co_op = NULL;
777         arg->co_conn = NULL;
778         free( (char *) arg );
779         arg = NULL;
780
781         switch( tag ) {
782         case LBER_ERROR:
783         case LDAP_REQ_UNBIND:
784                 /* c_mutex is locked */
785                 connection_closing( conn );
786                 break;
787
788         case LDAP_REQ_BIND:
789                 if( conn->c_conn_state == SLAP_C_BINDING) {
790                         conn->c_conn_state = SLAP_C_ACTIVE;
791                 }
792                 conn->c_bind_in_progress = ( rc == LDAP_SASL_BIND_IN_PROGRESS );
793         }
794
795         ldap_pvt_thread_mutex_lock( &active_threads_mutex );
796         active_threads--;
797         if( active_threads < 1 ) {
798                 ldap_pvt_thread_cond_signal(&active_threads_cond);
799         }
800         ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
801
802         connection_resched( conn );
803
804         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
805
806         return NULL;
807 }
808
809 int connection_read(ber_socket_t s)
810 {
811         int rc = 0;
812         Connection *c;
813         assert( connections != NULL );
814
815         ldap_pvt_thread_mutex_lock( &connections_mutex );
816
817         /* get (locked) connection */
818         c = connection_get( s );
819
820         if( c == NULL ) {
821                 Debug( LDAP_DEBUG_ANY,
822                         "connection_read(%ld): no connection!\n",
823                         (long) s, 0, 0 );
824
825                 slapd_remove(s, 0);
826
827                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
828                 return -1;
829         }
830
831         c->c_n_read++;
832
833         if( c->c_conn_state == SLAP_C_CLOSING ) {
834                 Debug( LDAP_DEBUG_TRACE,
835                         "connection_read(%d): closing, ignoring input for id=%ld\n",
836                         s, c->c_connid, 0 );
837
838                 connection_return( c );
839                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
840                 return 0;
841         }
842
843         Debug( LDAP_DEBUG_TRACE,
844                 "connection_read(%d): checking for input on id=%ld\n",
845                 s, c->c_connid, 0 );
846
847 #ifdef HAVE_TLS
848         if ( c->c_is_tls && c->c_needs_tls_accept ) {
849                 rc = ldap_pvt_tls_accept( c->c_sb, NULL );
850                 if ( rc < 0 ) {
851                         Debug( LDAP_DEBUG_TRACE,
852                                "connection_read(%d): TLS accept error error=%d id=%ld, closing\n",
853                                s, rc, c->c_connid );
854
855                         c->c_needs_tls_accept = 0;
856                         /* connections_mutex and c_mutex are locked */
857                         connection_closing( c );
858                         connection_close( c );
859                 } else if ( rc == 0 ) {
860                         c->c_needs_tls_accept = 0;
861                 }
862                 connection_return( c );
863                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
864                 return 0;
865         }
866 #endif
867
868 #define CONNECTION_INPUT_LOOP 1
869
870 #ifdef DATA_READY_LOOP
871         while(!rc && ber_pvt_sb_data_ready(&c->c_sb))
872 #elif CONNECTION_INPUT_LOOP
873         while(!rc)
874 #endif
875         {
876                 /* How do we do this without getting into a busy loop ? */
877                 rc = connection_input( c );
878         }
879
880         if( rc < 0 ) {
881                 Debug( LDAP_DEBUG_TRACE,
882                         "connection_read(%d): input error=%d id=%ld, closing.\n",
883                         s, rc, c->c_connid );
884
885                 /* connections_mutex and c_mutex are locked */
886                 connection_closing( c );
887                 connection_close( c );
888         }
889
890         if ( ber_pvt_sb_needs_read( c->c_sb ) )
891                 slapd_set_read( s, 1 );
892         if ( ber_pvt_sb_needs_write( c->c_sb ) )
893                 slapd_set_write( s, 1 );
894         connection_return( c );
895         ldap_pvt_thread_mutex_unlock( &connections_mutex );
896         return 0;
897 }
898
899 static int
900 connection_input(
901     Connection *conn
902 )
903 {
904         Operation *op;
905         ber_tag_t       tag;
906         ber_len_t       len;
907         ber_int_t       msgid;
908         BerElement      *ber;
909
910         if ( conn->c_currentber == NULL && (conn->c_currentber = ber_alloc())
911             == NULL ) {
912                 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
913                 return -1;
914         }
915
916         errno = 0;
917         if ( (tag = ber_get_next( conn->c_sb, &len, conn->c_currentber ))
918             != LDAP_TAG_MESSAGE )
919         {
920                 int err = errno;
921
922                 Debug( LDAP_DEBUG_TRACE,
923                         "ber_get_next on fd %d failed errno=%d (%s)\n",
924                         ber_pvt_sb_get_desc( conn->c_sb ), err, STRERROR(err) );
925                 Debug( LDAP_DEBUG_TRACE,
926                         "\t*** got %ld of %lu so far\n",
927                         (long)(conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf),
928                         conn->c_currentber->ber_len, 0 );
929
930                 if ( err != EWOULDBLOCK && err != EAGAIN ) {
931                         /* log, close and send error */
932                         ber_free( conn->c_currentber, 1 );
933                         conn->c_currentber = NULL;
934
935                         return -2;
936                 }
937                 return 1;
938         }
939
940         ber = conn->c_currentber;
941         conn->c_currentber = NULL;
942
943         if ( (tag = ber_get_int( ber, &msgid )) != LDAP_TAG_MSGID ) {
944                 /* log, close and send error */
945                 Debug( LDAP_DEBUG_ANY, "ber_get_int returns 0x%lx\n", tag, 0,
946                     0 );
947                 ber_free( ber, 1 );
948                 return -1;
949         }
950
951         if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
952                 /* log, close and send error */
953                 Debug( LDAP_DEBUG_ANY, "ber_peek_tag returns 0x%lx\n", tag, 0,
954                     0 );
955                 ber_free( ber, 1 );
956
957                 return -1;
958         }
959
960         if(tag == LDAP_REQ_BIND) {
961                 /* immediately abandon all exiting operations upon BIND */
962                 connection_abandon( conn );
963         }
964
965         op = slap_op_alloc( ber, msgid, tag, conn->c_n_ops_received++ );
966
967         if ( conn->c_conn_state == SLAP_C_BINDING
968                 || conn->c_conn_state == SLAP_C_CLOSING )
969         {
970                 Debug( LDAP_DEBUG_ANY, "deferring operation\n", 0, 0, 0 );
971                 conn->c_n_ops_pending++;
972                 slap_op_add( &conn->c_pending_ops, op );
973
974         } else {
975                 conn->c_n_ops_executing++;
976                 connection_op_activate( conn, op );
977         }
978
979 #ifdef NO_THREADS
980         if ( conn->c_struct_state != SLAP_C_USED ) {
981                 /* connection must have got closed underneath us */
982                 return 1;
983         }
984 #endif
985         assert( conn->c_struct_state == SLAP_C_USED );
986
987         return 0;
988 }
989
990 static int
991 connection_resched( Connection *conn )
992 {
993         Operation *op;
994
995         if( conn->c_conn_state == SLAP_C_CLOSING ) {
996                 Debug( LDAP_DEBUG_TRACE,
997                         "connection_resched: attempting closing conn=%ld sd=%d\n",
998                         conn->c_connid, ber_pvt_sb_get_desc( conn->c_sb ), 0 );
999
1000                 connection_close( conn );
1001                 return 0;
1002         }
1003
1004         if( conn->c_conn_state != SLAP_C_ACTIVE ) {
1005                 /* other states need different handling */
1006                 return 0;
1007         }
1008
1009         for( op = slap_op_pop( &conn->c_pending_ops );
1010                 op != NULL;
1011                 op = slap_op_pop( &conn->c_pending_ops ) )
1012         {
1013                 /* pending operations should not be marked for abandonment */
1014                 assert(!op->o_abandon);
1015
1016                 conn->c_n_ops_pending--;
1017                 conn->c_n_ops_executing++;
1018
1019                 connection_op_activate( conn, op );
1020
1021                 if ( conn->c_conn_state == SLAP_C_BINDING ) {
1022                         break;
1023                 }
1024         }
1025         return 0;
1026 }
1027
1028 static int connection_op_activate( Connection *conn, Operation *op )
1029 {
1030         struct co_arg *arg;
1031         char *tmpdn;
1032         int status;
1033         ber_tag_t tag = op->o_tag;
1034
1035         if(tag == LDAP_REQ_BIND) {
1036                 conn->c_conn_state = SLAP_C_BINDING;
1037         }
1038
1039         if ( conn->c_dn != NULL ) {
1040                 tmpdn = ch_strdup( conn->c_dn );
1041         } else {
1042                 tmpdn = NULL;
1043         }
1044
1045         arg = (struct co_arg *) ch_malloc( sizeof(struct co_arg) );
1046         arg->co_conn = conn;
1047         arg->co_op = op;
1048
1049         arg->co_op->o_bind_in_progress = conn->c_bind_in_progress;
1050
1051         arg->co_op->o_dn = ch_strdup( tmpdn != NULL ? tmpdn : "" );
1052         arg->co_op->o_ndn = ch_strdup( arg->co_op->o_dn );
1053         (void) dn_normalize_case( arg->co_op->o_ndn );
1054
1055         arg->co_op->o_protocol = conn->c_protocol;
1056         arg->co_op->o_connid = conn->c_connid;
1057
1058         arg->co_op->o_authtype = conn->c_authtype;
1059         arg->co_op->o_authmech = conn->c_authmech != NULL
1060                 ?  ch_strdup( conn->c_authmech ) : NULL;
1061         
1062         slap_op_add( &conn->c_ops, arg->co_op );
1063
1064         if( tmpdn != NULL ) {
1065                 free( tmpdn );
1066         }
1067
1068         ldap_pvt_thread_mutex_lock( &active_threads_mutex );
1069         active_threads++;
1070         ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
1071
1072         status = ldap_pvt_thread_create( &arg->co_op->o_tid, 1,
1073                                          connection_operation, (void *) arg );
1074
1075         if ( status != 0 ) {
1076                 Debug( LDAP_DEBUG_ANY,
1077                 "ldap_pvt_thread_create failed (%d)\n", status, 0, 0 );
1078
1079                 /* should move op to pending list */
1080         }
1081
1082         return status;
1083 }
1084
1085 int connection_write(ber_socket_t s)
1086 {
1087         Connection *c;
1088         assert( connections != NULL );
1089
1090         ldap_pvt_thread_mutex_lock( &connections_mutex );
1091
1092         c = connection_get( s );
1093
1094         slapd_clr_write( s, 0);
1095
1096         if( c == NULL ) {
1097                 Debug( LDAP_DEBUG_ANY,
1098                         "connection_write(%ld): no connection!\n",
1099                         (long) s, 0, 0 );
1100                 slapd_remove(s, 0);
1101                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1102                 return -1;
1103         }
1104
1105         c->c_n_write++;
1106
1107         Debug( LDAP_DEBUG_TRACE,
1108                 "connection_write(%d): waking output for id=%ld\n",
1109                 s, c->c_connid, 0 );
1110
1111         ldap_pvt_thread_cond_signal( &c->c_write_cv );
1112
1113         if ( ber_pvt_sb_needs_read( c->c_sb ) )
1114                 slapd_set_read( s, 1 );
1115         if ( ber_pvt_sb_needs_write( c->c_sb ) )
1116                 slapd_set_write( s, 1 );
1117         connection_return( c );
1118         ldap_pvt_thread_mutex_unlock( &connections_mutex );
1119         return 0;
1120 }