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