]> git.sur5r.net Git - openldap/blob - servers/slapd/connection.c
d83be471d8b434afb830505442092f51c7303f91
[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     assert( c->c_struct_state != SLAP_C_USED );
352     assert( c->c_conn_state == SLAP_C_INVALID );
353
354     if( c->c_struct_state == SLAP_C_UNINITIALIZED ) {
355         c->c_dn = NULL;
356         c->c_cdn = NULL;
357
358                 c->c_listener_url = NULL;
359                 c->c_peer_domain = NULL;
360         c->c_peer_name = NULL;
361         c->c_sock_name = NULL;
362
363         c->c_ops = NULL;
364         c->c_pending_ops = NULL;
365                 c->c_authmech = NULL;
366                 c->c_authstate = NULL;
367
368 #ifdef HAVE_CYRUS_SASL
369                 c->c_sasl_context = NULL;
370 #endif
371
372         c->c_sb = ber_sockbuf_alloc( );
373                 c->c_currentber = NULL;
374
375         /* should check status of thread calls */
376         ldap_pvt_thread_mutex_init( &c->c_mutex );
377         ldap_pvt_thread_mutex_init( &c->c_write_mutex );
378         ldap_pvt_thread_cond_init( &c->c_write_cv );
379
380         c->c_struct_state = SLAP_C_UNUSED;
381     }
382
383     ldap_pvt_thread_mutex_lock( &c->c_mutex );
384
385     assert( c->c_struct_state == SLAP_C_UNUSED );
386     assert(     c->c_dn == NULL );
387     assert(     c->c_cdn == NULL );
388     assert( c->c_listener_url == NULL );
389     assert( c->c_peer_domain == NULL );
390     assert( c->c_peer_name == NULL );
391     assert( c->c_sock_name == NULL );
392     assert( c->c_ops == NULL );
393     assert( c->c_pending_ops == NULL );
394         assert( c->c_authmech == NULL );
395         assert( c->c_authstate == NULL );
396 #ifdef HAVE_CYRUS_SASL
397         assert( c->c_sasl_context == NULL );
398 #endif
399         assert( c->c_currentber == NULL );
400
401         c->c_listener_url = ch_strdup( url  );
402         c->c_peer_domain = ch_strdup( dnsname  );
403     c->c_peer_name = ch_strdup( peername  );
404     c->c_sock_name = ch_strdup( sockname );
405
406     c->c_n_ops_received = 0;
407     c->c_n_ops_executing = 0;
408     c->c_n_ops_pending = 0;
409     c->c_n_ops_completed = 0;
410
411         c->c_n_get = 0;
412         c->c_n_read = 0;
413         c->c_n_write = 0;
414
415         /* assume LDAPv3 until bind */
416         c->c_protocol = LDAP_VERSION3;
417
418     c->c_activitytime = c->c_starttime = slap_get_time();
419
420     ber_pvt_sb_set_desc( c->c_sb, s );
421     ber_pvt_sb_set_io( c->c_sb, &ber_pvt_sb_io_tcp, NULL );
422
423     if( ber_pvt_sb_set_nonblock( c->c_sb, 1 ) < 0 ) {
424         Debug( LDAP_DEBUG_ANY,
425             "connection_init(%d, %s): set nonblocking failed\n",
426             s, c->c_peer_name,0 );
427     }
428
429     id = c->c_connid = conn_nextid++;
430
431     c->c_conn_state = SLAP_C_INACTIVE;
432     c->c_struct_state = SLAP_C_USED;
433
434 #ifdef HAVE_TLS
435     if ( use_tls ) {
436             c->c_is_tls = 1;
437             c->c_needs_tls_accept = 1;
438     }
439 #endif
440
441     ldap_pvt_thread_mutex_unlock( &c->c_mutex );
442     ldap_pvt_thread_mutex_unlock( &connections_mutex );
443
444     backend_connection_init(c);
445
446     return id;
447 }
448
449 static void
450 connection_destroy( Connection *c )
451 {
452         /* note: connections_mutex should be locked by caller */
453
454     assert( connections != NULL );
455     assert( c != NULL );
456     assert( c->c_struct_state != SLAP_C_UNUSED );
457     assert( c->c_conn_state != SLAP_C_INVALID );
458     assert( c->c_ops == NULL );
459
460     backend_connection_destroy(c);
461
462     c->c_protocol = 0;
463     c->c_connid = -1;
464
465     c->c_activitytime = c->c_starttime = 0;
466
467     if(c->c_dn != NULL) {
468         free(c->c_dn);
469         c->c_dn = NULL;
470     }
471         if(c->c_cdn != NULL) {
472                 free(c->c_cdn);
473                 c->c_cdn = NULL;
474         }
475         if(c->c_listener_url != NULL) {
476                 free(c->c_listener_url);
477                 c->c_listener_url = NULL;
478         }
479         if(c->c_peer_domain != NULL) {
480                 free(c->c_peer_domain);
481                 c->c_peer_domain = NULL;
482         }
483         if(c->c_peer_name != NULL) {
484                 free(c->c_peer_name);
485                 c->c_peer_name = NULL;
486         }
487         if(c->c_sock_name != NULL) {
488                 free(c->c_sock_name);
489                 c->c_sock_name = NULL;
490         }
491         if(c->c_authmech != NULL ) {
492                 free(c->c_authmech);
493                 c->c_authmech = NULL;
494         }
495         if(c->c_authstate != NULL ) {
496                 free(c->c_authstate);
497                 c->c_authstate = NULL;
498         }
499
500 #ifdef HAVE_CYRUS_SASL
501         if(c->c_sasl_context != NULL ) {
502                 sasl_dispose( &c->c_sasl_context );
503                 c->c_sasl_context = NULL;
504         }
505 #endif
506
507         if ( c->c_currentber != NULL ) {
508                 ber_free( c->c_currentber, 1 );
509                 c->c_currentber = NULL;
510         }
511
512         if ( ber_pvt_sb_in_use(c->c_sb) ) {
513                 int sd = ber_pvt_sb_get_desc(c->c_sb);
514
515                 slapd_remove( sd, 0 );
516                 ber_pvt_sb_close( c->c_sb );
517
518                 Statslog( LDAP_DEBUG_STATS,
519                     "conn=%ld fd=%d closed\n",
520                         c->c_connid, sd, 0, 0, 0 );
521         }
522
523         ber_pvt_sb_destroy( c->c_sb );
524
525     c->c_conn_state = SLAP_C_INVALID;
526     c->c_struct_state = SLAP_C_UNUSED;
527 }
528
529 int connection_state_closing( Connection *c )
530 {
531         /* c_mutex must be locked by caller */
532
533         int state;
534         assert( c != NULL );
535         assert( c->c_struct_state == SLAP_C_USED );
536
537         state = c->c_conn_state;
538
539         assert( state != SLAP_C_INVALID );
540
541         return state == SLAP_C_CLOSING;
542 }
543
544 static void connection_abandon( Connection *c )
545 {
546         /* c_mutex must be locked by caller */
547
548         Operation *o;
549
550         for( o = c->c_ops; o != NULL; o = o->o_next ) {
551                 ldap_pvt_thread_mutex_lock( &o->o_abandonmutex );
552                 o->o_abandon = 1;
553                 ldap_pvt_thread_mutex_unlock( &o->o_abandonmutex );
554         }
555
556         /* remove pending operations */
557         for( o = slap_op_pop( &c->c_pending_ops );
558                 o != NULL;
559                 o = slap_op_pop( &c->c_pending_ops ) )
560         {
561                 slap_op_free( o );
562         }
563 }
564
565 void connection_closing( Connection *c )
566 {
567         assert( connections != NULL );
568         assert( c != NULL );
569         assert( c->c_struct_state == SLAP_C_USED );
570         assert( c->c_conn_state != SLAP_C_INVALID );
571
572         /* c_mutex must be locked by caller */
573
574         if( c->c_conn_state != SLAP_C_CLOSING ) {
575
576                 Debug( LDAP_DEBUG_TRACE,
577                         "connection_closing: readying conn=%ld sd=%d for close\n",
578                         c->c_connid, ber_pvt_sb_get_desc( c->c_sb ), 0 );
579
580                 /* update state to closing */
581                 c->c_conn_state = SLAP_C_CLOSING;
582
583                 /* don't listen on this port anymore */
584                 slapd_clr_read( ber_pvt_sb_get_desc( c->c_sb ), 1 );
585
586                 /* shutdown I/O -- not yet implemented */
587
588                 /* abandon active operations */
589                 connection_abandon( c );
590
591                 /* wake write blocked operations */
592                 slapd_clr_write( ber_pvt_sb_get_desc(c->c_sb), 1 );
593                 ldap_pvt_thread_cond_signal( &c->c_write_cv );
594         }
595 }
596
597 static void connection_close( Connection *c )
598 {
599         assert( connections != NULL );
600         assert( c != NULL );
601         assert( c->c_struct_state == SLAP_C_USED );
602         assert( c->c_conn_state == SLAP_C_CLOSING );
603
604         /* note: connections_mutex and c_mutex should be locked by caller */
605
606         if( c->c_ops != NULL ) {
607                 Debug( LDAP_DEBUG_TRACE,
608                         "connection_close: deferring conn=%ld sd=%d\n",
609                         c->c_connid, ber_pvt_sb_get_desc( c->c_sb ), 0 );
610
611                 return;
612         }
613
614         Debug( LDAP_DEBUG_TRACE, "connection_close: conn=%ld sd=%d\n",
615                 c->c_connid, ber_pvt_sb_get_desc( c->c_sb ), 0 );
616
617         connection_destroy( c );
618 }
619
620 unsigned long connections_nextid(void)
621 {
622         unsigned long id;
623         assert( connections != NULL );
624
625         ldap_pvt_thread_mutex_lock( &connections_mutex );
626
627         id = conn_nextid;
628
629         ldap_pvt_thread_mutex_unlock( &connections_mutex );
630
631         return id;
632 }
633
634 Connection* connection_first( ber_socket_t *index )
635 {
636         assert( connections != NULL );
637         assert( index != NULL );
638
639         ldap_pvt_thread_mutex_lock( &connections_mutex );
640
641         *index = 0;
642
643         return connection_next(NULL, index);
644 }
645
646 Connection* connection_next( Connection *c, ber_socket_t *index )
647 {
648         assert( connections != NULL );
649         assert( index != NULL );
650         assert( *index <= dtblsize );
651
652         if( c != NULL ) {
653                 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
654         }
655
656         c = NULL;
657
658         for(; *index < dtblsize; (*index)++) {
659                 if( connections[*index].c_struct_state == SLAP_C_UNINITIALIZED ) {
660                         assert( connections[*index].c_conn_state == SLAP_C_INVALID );
661 #ifndef HAVE_WINSOCK
662                         continue;
663 #else
664                         break;
665 #endif
666                 }
667
668                 if( connections[*index].c_struct_state == SLAP_C_USED ) {
669                         assert( connections[*index].c_conn_state != SLAP_C_INVALID );
670                         c = &connections[(*index)++];
671                         break;
672                 }
673
674                 assert( connections[*index].c_struct_state == SLAP_C_UNUSED );
675                 assert( connections[*index].c_conn_state == SLAP_C_INVALID );
676         }
677
678         if( c != NULL ) {
679                 ldap_pvt_thread_mutex_lock( &c->c_mutex );
680         }
681
682         return c;
683 }
684
685 void connection_done( Connection *c )
686 {
687         assert( connections != NULL );
688
689         if( c != NULL ) {
690                 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
691         }
692
693         ldap_pvt_thread_mutex_unlock( &connections_mutex );
694 }
695
696 /*
697  * connection_activity - handle the request operation op on connection
698  * conn.  This routine figures out what kind of operation it is and
699  * calls the appropriate stub to handle it.
700  */
701
702 static void *
703 connection_operation( void *arg_v )
704 {
705         int rc;
706         struct co_arg   *arg = arg_v;
707         ber_tag_t tag = arg->co_op->o_tag;
708         Connection *conn = arg->co_conn;
709
710         ldap_pvt_thread_mutex_lock( &num_ops_mutex );
711         num_ops_initiated++;
712         ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
713
714         switch ( tag ) {
715         case LDAP_REQ_BIND:
716                 rc = do_bind( conn, arg->co_op );
717                 break;
718
719         case LDAP_REQ_UNBIND:
720                 rc = do_unbind( conn, arg->co_op );
721                 break;
722
723         case LDAP_REQ_ADD:
724                 rc = do_add( conn, arg->co_op );
725                 break;
726
727         case LDAP_REQ_DELETE:
728                 rc = do_delete( conn, arg->co_op );
729                 break;
730
731         case LDAP_REQ_MODRDN:
732                 rc = do_modrdn( conn, arg->co_op );
733                 break;
734
735         case LDAP_REQ_MODIFY:
736                 rc = do_modify( conn, arg->co_op );
737                 break;
738
739         case LDAP_REQ_COMPARE:
740                 rc = do_compare( conn, arg->co_op );
741                 break;
742
743         case LDAP_REQ_SEARCH:
744                 rc = do_search( conn, arg->co_op );
745                 break;
746
747         case LDAP_REQ_ABANDON:
748                 rc = do_abandon( conn, arg->co_op );
749                 break;
750
751         case LDAP_REQ_EXTENDED:
752                 rc = do_extended( conn, arg->co_op );
753                 break;
754
755         default:
756                 Debug( LDAP_DEBUG_ANY, "unknown LDAP request 0x%lx\n",
757                     tag, 0, 0 );
758                 arg->co_op->o_tag = LBER_ERROR;
759                 send_ldap_disconnect( conn, arg->co_op,
760                         LDAP_PROTOCOL_ERROR, "unknown LDAP request" );
761                 rc = -1;
762                 break;
763         }
764
765         if( rc == -1 ) tag = LBER_ERROR;
766
767         ldap_pvt_thread_mutex_lock( &num_ops_mutex );
768         num_ops_completed++;
769         ldap_pvt_thread_mutex_unlock( &num_ops_mutex );
770
771         ldap_pvt_thread_mutex_lock( &conn->c_mutex );
772
773         conn->c_n_ops_executing--;
774         conn->c_n_ops_completed++;
775
776         slap_op_remove( &conn->c_ops, arg->co_op );
777         slap_op_free( arg->co_op );
778         arg->co_op = NULL;
779         arg->co_conn = NULL;
780         free( (char *) arg );
781         arg = NULL;
782
783         switch( tag ) {
784         case LBER_ERROR:
785         case LDAP_REQ_UNBIND:
786                 /* c_mutex is locked */
787                 connection_closing( conn );
788                 break;
789
790         case LDAP_REQ_BIND:
791                 if( conn->c_conn_state == SLAP_C_BINDING) {
792                         conn->c_conn_state = SLAP_C_ACTIVE;
793                 }
794                 conn->c_bind_in_progress = ( rc == LDAP_SASL_BIND_IN_PROGRESS );
795         }
796
797         ldap_pvt_thread_mutex_lock( &active_threads_mutex );
798         active_threads--;
799         if( active_threads < 1 ) {
800                 ldap_pvt_thread_cond_signal(&active_threads_cond);
801         }
802         ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
803
804         connection_resched( conn );
805
806         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
807
808         return NULL;
809 }
810
811 int connection_read(ber_socket_t s)
812 {
813         int rc = 0;
814         Connection *c;
815         assert( connections != NULL );
816
817         ldap_pvt_thread_mutex_lock( &connections_mutex );
818
819         /* get (locked) connection */
820         c = connection_get( s );
821
822         if( c == NULL ) {
823                 Debug( LDAP_DEBUG_ANY,
824                         "connection_read(%ld): no connection!\n",
825                         (long) s, 0, 0 );
826
827                 slapd_remove(s, 0);
828
829                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
830                 return -1;
831         }
832
833         c->c_n_read++;
834
835         if( c->c_conn_state == SLAP_C_CLOSING ) {
836                 Debug( LDAP_DEBUG_TRACE,
837                         "connection_read(%d): closing, ignoring input for id=%ld\n",
838                         s, c->c_connid, 0 );
839
840                 connection_return( c );
841                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
842                 return 0;
843         }
844
845         Debug( LDAP_DEBUG_TRACE,
846                 "connection_read(%d): checking for input on id=%ld\n",
847                 s, c->c_connid, 0 );
848
849 #ifdef HAVE_TLS
850         if ( c->c_is_tls && c->c_needs_tls_accept ) {
851                 rc = ldap_pvt_tls_accept( c->c_sb, NULL );
852                 if ( rc < 0 ) {
853                         Debug( LDAP_DEBUG_TRACE,
854                                "connection_read(%d): TLS accept error error=%d id=%ld, closing\n",
855                                s, rc, c->c_connid );
856
857                         c->c_needs_tls_accept = 0;
858                         /* connections_mutex and c_mutex are locked */
859                         connection_closing( c );
860                         connection_close( c );
861                 } else if ( rc == 0 ) {
862                         c->c_needs_tls_accept = 0;
863                 }
864                 connection_return( c );
865                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
866                 return 0;
867         }
868 #endif
869
870 #define CONNECTION_INPUT_LOOP 1
871
872 #ifdef DATA_READY_LOOP
873         while(!rc && ber_pvt_sb_data_ready(&c->c_sb))
874 #elif CONNECTION_INPUT_LOOP
875         while(!rc)
876 #endif
877         {
878                 /* How do we do this without getting into a busy loop ? */
879                 rc = connection_input( c );
880         }
881
882         if( rc < 0 ) {
883                 Debug( LDAP_DEBUG_TRACE,
884                         "connection_read(%d): input error=%d id=%ld, closing.\n",
885                         s, rc, c->c_connid );
886
887                 /* connections_mutex and c_mutex are locked */
888                 connection_closing( c );
889                 connection_close( c );
890         }
891
892         if ( ber_pvt_sb_needs_read( c->c_sb ) )
893                 slapd_set_read( s, 1 );
894         if ( ber_pvt_sb_needs_write( c->c_sb ) )
895                 slapd_set_write( s, 1 );
896         connection_return( c );
897         ldap_pvt_thread_mutex_unlock( &connections_mutex );
898         return 0;
899 }
900
901 static int
902 connection_input(
903     Connection *conn
904 )
905 {
906         Operation *op;
907         ber_tag_t       tag;
908         ber_len_t       len;
909         ber_int_t       msgid;
910         BerElement      *ber;
911
912         if ( conn->c_currentber == NULL && (conn->c_currentber = ber_alloc())
913             == NULL ) {
914                 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
915                 return -1;
916         }
917
918         errno = 0;
919         if ( (tag = ber_get_next( conn->c_sb, &len, conn->c_currentber ))
920             != LDAP_TAG_MESSAGE )
921         {
922                 int err = errno;
923
924                 Debug( LDAP_DEBUG_TRACE,
925                         "ber_get_next on fd %d failed errno=%d (%s)\n",
926                         ber_pvt_sb_get_desc( conn->c_sb ), err,
927                         err > -1 && err < sys_nerr ?  sys_errlist[err] : "unknown" );
928                 Debug( LDAP_DEBUG_TRACE,
929                         "\t*** got %ld of %lu so far\n",
930                         (long)(conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf),
931                         conn->c_currentber->ber_len, 0 );
932
933                 if ( err != EWOULDBLOCK && err != EAGAIN ) {
934                         /* log, close and send error */
935                         ber_free( conn->c_currentber, 1 );
936                         conn->c_currentber = NULL;
937
938                         return -2;
939                 }
940                 return 1;
941         }
942
943         ber = conn->c_currentber;
944         conn->c_currentber = NULL;
945
946         if ( (tag = ber_get_int( ber, &msgid )) != LDAP_TAG_MSGID ) {
947                 /* log, close and send error */
948                 Debug( LDAP_DEBUG_ANY, "ber_get_int returns 0x%lx\n", tag, 0,
949                     0 );
950                 ber_free( ber, 1 );
951                 return -1;
952         }
953
954         if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
955                 /* log, close and send error */
956                 Debug( LDAP_DEBUG_ANY, "ber_peek_tag returns 0x%lx\n", tag, 0,
957                     0 );
958                 ber_free( ber, 1 );
959
960                 return -1;
961         }
962
963         if(tag == LDAP_REQ_BIND) {
964                 /* immediately abandon all exiting operations upon BIND */
965                 connection_abandon( conn );
966         }
967
968         op = slap_op_alloc( ber, msgid, tag, conn->c_n_ops_received++ );
969
970         if ( conn->c_conn_state == SLAP_C_BINDING
971                 || conn->c_conn_state == SLAP_C_CLOSING )
972         {
973                 Debug( LDAP_DEBUG_ANY, "deferring operation\n", 0, 0, 0 );
974                 conn->c_n_ops_pending++;
975                 slap_op_add( &conn->c_pending_ops, op );
976
977         } else {
978                 conn->c_n_ops_executing++;
979                 connection_op_activate( conn, op );
980         }
981
982 #ifdef NO_THREADS
983         if ( conn->c_struct_state != SLAP_C_USED ) {
984                 /* connection must have got closed underneath us */
985                 return 1;
986         }
987 #endif
988         assert( conn->c_struct_state == SLAP_C_USED );
989
990         return 0;
991 }
992
993 static int
994 connection_resched( Connection *conn )
995 {
996         Operation *op;
997
998         if( conn->c_conn_state == SLAP_C_CLOSING ) {
999                 Debug( LDAP_DEBUG_TRACE,
1000                         "connection_resched: attempting closing conn=%ld sd=%d\n",
1001                         conn->c_connid, ber_pvt_sb_get_desc( conn->c_sb ), 0 );
1002
1003                 connection_close( conn );
1004                 return 0;
1005         }
1006
1007         if( conn->c_conn_state != SLAP_C_ACTIVE ) {
1008                 /* other states need different handling */
1009                 return 0;
1010         }
1011
1012         for( op = slap_op_pop( &conn->c_pending_ops );
1013                 op != NULL;
1014                 op = slap_op_pop( &conn->c_pending_ops ) )
1015         {
1016                 /* pending operations should not be marked for abandonment */
1017                 assert(!op->o_abandon);
1018
1019                 conn->c_n_ops_pending--;
1020                 conn->c_n_ops_executing++;
1021
1022                 connection_op_activate( conn, op );
1023
1024                 if ( conn->c_conn_state == SLAP_C_BINDING ) {
1025                         break;
1026                 }
1027         }
1028         return 0;
1029 }
1030
1031 static int connection_op_activate( Connection *conn, Operation *op )
1032 {
1033         struct co_arg *arg;
1034         char *tmpdn;
1035         int status;
1036         ber_tag_t tag = op->o_tag;
1037
1038         if(tag == LDAP_REQ_BIND) {
1039                 conn->c_conn_state = SLAP_C_BINDING;
1040         }
1041
1042         if ( conn->c_dn != NULL ) {
1043                 tmpdn = ch_strdup( conn->c_dn );
1044         } else {
1045                 tmpdn = NULL;
1046         }
1047
1048         arg = (struct co_arg *) ch_malloc( sizeof(struct co_arg) );
1049         arg->co_conn = conn;
1050         arg->co_op = op;
1051
1052         arg->co_op->o_bind_in_progress = conn->c_bind_in_progress;
1053
1054         arg->co_op->o_dn = ch_strdup( tmpdn != NULL ? tmpdn : "" );
1055         arg->co_op->o_ndn = ch_strdup( arg->co_op->o_dn );
1056         (void) dn_normalize_case( arg->co_op->o_ndn );
1057
1058         arg->co_op->o_protocol = conn->c_protocol;
1059         arg->co_op->o_connid = conn->c_connid;
1060
1061         arg->co_op->o_authtype = conn->c_authtype;
1062         arg->co_op->o_authmech = conn->c_authmech != NULL
1063                 ?  ch_strdup( conn->c_authmech ) : NULL;
1064         
1065         slap_op_add( &conn->c_ops, arg->co_op );
1066
1067         if( tmpdn != NULL ) {
1068                 free( tmpdn );
1069         }
1070
1071         ldap_pvt_thread_mutex_lock( &active_threads_mutex );
1072         active_threads++;
1073         ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
1074
1075         status = ldap_pvt_thread_create( &arg->co_op->o_tid, 1,
1076                                          connection_operation, (void *) arg );
1077
1078         if ( status != 0 ) {
1079                 Debug( LDAP_DEBUG_ANY,
1080                 "ldap_pvt_thread_create failed (%d)\n", status, 0, 0 );
1081
1082                 /* should move op to pending list */
1083         }
1084
1085         return status;
1086 }
1087
1088 int connection_write(ber_socket_t s)
1089 {
1090         Connection *c;
1091         assert( connections != NULL );
1092
1093         ldap_pvt_thread_mutex_lock( &connections_mutex );
1094
1095         c = connection_get( s );
1096
1097         slapd_clr_write( s, 0);
1098
1099         if( c == NULL ) {
1100                 Debug( LDAP_DEBUG_ANY,
1101                         "connection_write(%ld): no connection!\n",
1102                         (long) s, 0, 0 );
1103                 slapd_remove(s, 0);
1104                 ldap_pvt_thread_mutex_unlock( &connections_mutex );
1105                 return -1;
1106         }
1107
1108         c->c_n_write++;
1109
1110         Debug( LDAP_DEBUG_TRACE,
1111                 "connection_write(%d): waking output for id=%ld\n",
1112                 s, c->c_connid, 0 );
1113
1114         ldap_pvt_thread_cond_signal( &c->c_write_cv );
1115
1116         if ( ber_pvt_sb_needs_read( c->c_sb ) )
1117                 slapd_set_read( s, 1 );
1118         if ( ber_pvt_sb_needs_write( c->c_sb ) )
1119                 slapd_set_write( s, 1 );
1120         connection_return( c );
1121         ldap_pvt_thread_mutex_unlock( &connections_mutex );
1122         return 0;
1123 }