]> git.sur5r.net Git - openldap/blob - servers/slapd/connection.c
718744b95c635976ad4f8bf5aeddbebbc87529f1
[openldap] / servers / slapd / connection.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2005 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25
26 #include "portable.h"
27
28 #include <stdio.h>
29 #ifdef HAVE_LIMITS_H
30 #include <limits.h>
31 #endif
32
33 #include <ac/socket.h>
34 #include <ac/errno.h>
35 #include <ac/string.h>
36 #include <ac/time.h>
37 #include <ac/unistd.h>
38
39 #include "lutil.h"
40 #include "slap.h"
41
42 #ifdef LDAP_SLAPI
43 #include "slapi/slapi.h"
44 #endif
45
46
47 #ifdef SLAP_MULTI_CONN_ARRAY
48 /* for Multiple Connection Arrary (MCA) Support */
49 static ldap_pvt_thread_mutex_t* connections_mutex;
50 static Connection **connections = NULL;
51
52 /* set to the number of processors (round up to a power of 2) */
53 #       define NUM_CONNECTION_ARRAY 4
54
55 /* partition the array in a modulo manner */
56 #       define MCA_conn_array_id(fd)            ((int)(fd)%NUM_CONNECTION_ARRAY)
57 #       define MCA_conn_array_element_id(fd)    ((int)(fd)/NUM_CONNECTION_ARRAY)
58 #       define MCA_GET_CONNECTION(fd) (&(connections[MCA_conn_array_id(fd)]) \
59                 [MCA_conn_array_element_id(fd)])
60 #       define MCA_GET_CONN_MUTEX(fd) (&connections_mutex[MCA_conn_array_id(fd)])
61
62 #else
63 /* protected by connections_mutex */
64 static ldap_pvt_thread_mutex_t connections_mutex;
65 static Connection *connections = NULL;
66
67 #       define MCA_GET_CONNECTION(fd) (&connections[s])
68 #       define MCA_GET_CONN_MUTEX(fd) (&connections_mutex)
69 #endif
70
71 static ldap_pvt_thread_mutex_t conn_nextid_mutex;
72 static unsigned long conn_nextid = 0;
73
74 static const char conn_lost_str[] = "connection lost";
75
76 /* structure state (protected by connections_mutex) */
77 #define SLAP_C_UNINITIALIZED    0x00    /* MUST BE ZERO (0) */
78 #define SLAP_C_UNUSED                   0x01
79 #define SLAP_C_USED                             0x02
80
81 /* connection state (protected by c_mutex ) */
82 #define SLAP_C_INVALID                  0x00    /* MUST BE ZERO (0) */
83 #define SLAP_C_INACTIVE                 0x01    /* zero threads */
84 #define SLAP_C_ACTIVE                   0x02    /* one or more threads */
85 #define SLAP_C_BINDING                  0x03    /* binding */
86 #define SLAP_C_CLOSING                  0x04    /* closing */
87 #define SLAP_C_CLIENT                   0x05    /* outbound client conn */
88
89 const char *
90 connection_state2str( int state )
91 {
92         switch( state ) {
93         case SLAP_C_INVALID:    return "!";
94         case SLAP_C_INACTIVE:   return "|";
95         case SLAP_C_ACTIVE:             return "";
96         case SLAP_C_BINDING:    return "B";
97         case SLAP_C_CLOSING:    return "C";
98         case SLAP_C_CLIENT:             return "L";
99         }
100
101         return "?";
102 }
103
104 static Connection* connection_get( ber_socket_t s );
105
106 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
107 static int connection_input( Connection *c, Operation** op );
108 #else
109 static int connection_input( Connection *c );
110 #endif
111 static void connection_close( Connection *c );
112
113 static int connection_op_activate( Operation *op );
114 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
115 static void connection_op_queue( Operation *op );
116 #endif
117 static int connection_resched( Connection *conn );
118 static void connection_abandon( Connection *conn );
119 static void connection_destroy( Connection *c );
120
121 static ldap_pvt_thread_start_t connection_operation;
122
123 /*
124  * Initialize connection management infrastructure.
125  */
126 int connections_init(void)
127 #ifdef SLAP_MULTI_CONN_ARRAY
128 {
129         int i, j;
130         Connection* conn;
131
132         assert( connections == NULL );
133
134         if( connections != NULL) {
135                 Debug( LDAP_DEBUG_ANY, "connections_init: already initialized.\n",
136                         0, 0, 0 );
137                 return -1;
138         }
139
140         connections_mutex = (ldap_pvt_thread_mutex_t*) ch_calloc(
141                 NUM_CONNECTION_ARRAY, sizeof(ldap_pvt_thread_mutex_t) );
142         if( connections_mutex == NULL ) {
143                 Debug( LDAP_DEBUG_ANY, "connections_init: "
144                         "allocation of connection mutex[%d] failed\n", i, 0, 0 );
145                 return -1;
146         }
147
148         connections = (Connection**) ch_calloc(
149                 NUM_CONNECTION_ARRAY, sizeof(Connection*));
150         if( connections == NULL ) {
151                 Debug( LDAP_DEBUG_ANY, "connections_init: "
152                         "allocation of connection[%d] failed\n", 0, 0, 0 );
153                 return -1;
154         }
155
156         for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) {
157                 ldap_pvt_thread_mutex_init( connections_mutex+i );
158                 connections[i] = (Connection*) ch_calloc(
159                         dtblsize/NUM_CONNECTION_ARRAY, sizeof(Connection) );
160                 if( connections[i] == NULL ) {
161                         Debug( LDAP_DEBUG_ANY, "connections_init: "
162                                 "allocation (%d*%ld) of connection array[%d] failed\n",
163                                 dtblsize, (long) sizeof(Connection), i );
164                         return -1;
165                 }
166         }
167
168         /* should check return of every call */
169         ldap_pvt_thread_mutex_init( &conn_nextid_mutex );
170
171         assert( connections[0]->c_struct_state == SLAP_C_UNINITIALIZED );
172         assert( connections[NUM_CONNECTION_ARRAY-1]->c_struct_state ==
173                 SLAP_C_UNINITIALIZED );
174
175         for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) {
176                 conn = connections[i];
177                 for ( j = 0; j < (dtblsize/NUM_CONNECTION_ARRAY); j++ ) {
178                         conn[j].c_conn_idx = j;
179                 }
180         }
181
182         /*
183          * per entry initialization of the Connection array initialization
184          * will be done by connection_init()
185          */ 
186
187         return 0;
188 }
189 #else
190 {
191         int i;
192
193         assert( connections == NULL );
194
195         if( connections != NULL) {
196                 Debug( LDAP_DEBUG_ANY, "connections_init: already initialized.\n",
197                         0, 0, 0 );
198                 return -1;
199         }
200
201         /* should check return of every call */
202         ldap_pvt_thread_mutex_init( &connections_mutex );
203         ldap_pvt_thread_mutex_init( &conn_nextid_mutex );
204
205         connections = (Connection *) ch_calloc( dtblsize, sizeof(Connection) );
206
207         if( connections == NULL ) {
208                 Debug( LDAP_DEBUG_ANY, "connections_init: "
209                         "allocation (%d*%ld) of connection array failed\n",
210                         dtblsize, (long) sizeof(Connection), 0 );
211                 return -1;
212         }
213
214         assert( connections[0].c_struct_state == SLAP_C_UNINITIALIZED );
215         assert( connections[dtblsize-1].c_struct_state == SLAP_C_UNINITIALIZED );
216
217         for (i=0; i<dtblsize; i++) connections[i].c_conn_idx = i;
218
219         /*
220          * per entry initialization of the Connection array initialization
221          * will be done by connection_init()
222          */ 
223
224         return 0;
225 }
226 #endif
227
228 /*
229  * Destroy connection management infrastructure.
230  */
231
232 int connections_destroy(void)
233 #ifdef SLAP_MULTI_CONN_ARRAY
234 {
235         int i;
236         ber_socket_t j;
237
238         if( connections == NULL) {
239                 Debug( LDAP_DEBUG_ANY, "connections_destroy: nothing to destroy.\n",
240                         0, 0, 0 );
241                 return -1;
242         }
243
244     for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) {
245                 Connection* conn = connections[i];
246                 for ( j = 0; j < (dtblsize/NUM_CONNECTION_ARRAY); j++ ) {
247                         if( conn[j].c_struct_state != SLAP_C_UNINITIALIZED ) {
248                                 ber_sockbuf_free( conn[j].c_sb );
249                                 ldap_pvt_thread_mutex_destroy( &conn[j].c_mutex );
250                                 ldap_pvt_thread_mutex_destroy( &conn[j].c_write_mutex );
251                                 ldap_pvt_thread_cond_destroy( &conn[j].c_write_cv );
252 #ifdef LDAP_SLAPI
253                                 /* FIX ME!! */
254                                 if ( slapi_plugins_used ) {
255                                         slapi_int_free_object_extensions( SLAPI_X_EXT_CONNECTION,
256                                                 &connections[i] );
257                                 }
258 #endif
259                         }
260                 }
261         }
262
263         for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) {
264                 free( connections[i] );
265                 connections[i] = NULL;
266                 ldap_pvt_thread_mutex_destroy( &connections_mutex[i] );
267         }
268
269         ldap_pvt_thread_mutex_destroy( &conn_nextid_mutex );
270
271         return 0;
272
273 }
274 #else
275 {
276         ber_socket_t i;
277
278         /* should check return of every call */
279
280         if( connections == NULL) {
281                 Debug( LDAP_DEBUG_ANY, "connections_destroy: nothing to destroy.\n",
282                         0, 0, 0 );
283                 return -1;
284         }
285
286         for ( i = 0; i < dtblsize; i++ ) {
287                 if( connections[i].c_struct_state != SLAP_C_UNINITIALIZED ) {
288                         ber_sockbuf_free( connections[i].c_sb );
289                         ldap_pvt_thread_mutex_destroy( &connections[i].c_mutex );
290                         ldap_pvt_thread_mutex_destroy( &connections[i].c_write_mutex );
291                         ldap_pvt_thread_cond_destroy( &connections[i].c_write_cv );
292 #ifdef LDAP_SLAPI
293                         if ( slapi_plugins_used ) {
294                                 slapi_int_free_object_extensions( SLAPI_X_EXT_CONNECTION,
295                                         &connections[i] );
296                         }
297 #endif
298                 }
299         }
300
301         free( connections );
302         connections = NULL;
303
304         ldap_pvt_thread_mutex_destroy( &connections_mutex );
305         ldap_pvt_thread_mutex_destroy( &conn_nextid_mutex );
306         return 0;
307 }
308 #endif
309
310 /*
311  * shutdown all connections
312  */
313 int connections_shutdown(void)
314 #ifdef SLAP_MULTI_CONN_ARRAY
315 {
316         int i;
317         ber_socket_t j;
318
319         for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) {
320                 Connection* conn = connections[i];
321                 ldap_pvt_thread_mutex_lock( &connections_mutex[i] );
322                 for ( j = 0; j < (dtblsize/NUM_CONNECTION_ARRAY); j++ ) {
323                         if( conn[j].c_struct_state != SLAP_C_USED ) {
324                                 continue;
325                         }
326                         /* give persistent clients a chance to cleanup */
327                         if( conn[j].c_conn_state == SLAP_C_CLIENT ) {
328                                 ldap_pvt_thread_pool_submit( &connection_pool,
329                                 conn[j].c_clientfunc, conn[j].c_clientarg );
330                                 continue;
331                         }
332
333                         ldap_pvt_thread_mutex_lock( &conn[j].c_mutex );
334                         /* connections_mutex and c_mutex are locked */
335                         connection_closing( &conn[j], "connection shutdown" );
336                         connection_close( &conn[j] );
337                         ldap_pvt_thread_mutex_unlock( &conn[j].c_mutex );
338                 }
339
340                 ldap_pvt_thread_mutex_unlock( &connections_mutex[i] );
341         }
342
343         return 0;
344
345 }
346 #else
347 {
348         ber_socket_t i;
349
350         ldap_pvt_thread_mutex_lock( &connections_mutex );
351
352         for ( i = 0; i < dtblsize; i++ ) {
353                 if( connections[i].c_struct_state != SLAP_C_USED ) {
354                         continue;
355                 }
356                 /* give persistent clients a chance to cleanup */
357                 if( connections[i].c_conn_state == SLAP_C_CLIENT ) {
358                         ldap_pvt_thread_pool_submit( &connection_pool,
359                         connections[i].c_clientfunc, connections[i].c_clientarg );
360                         continue;
361                 }
362
363                 ldap_pvt_thread_mutex_lock( &connections[i].c_mutex );
364
365                 /* connections_mutex and c_mutex are locked */
366                 connection_closing( &connections[i], "slapd shutdown" );
367                 connection_close( &connections[i] );
368
369                 ldap_pvt_thread_mutex_unlock( &connections[i].c_mutex );
370         }
371
372         ldap_pvt_thread_mutex_unlock( &connections_mutex );
373
374         return 0;
375 }
376 #endif
377
378 /*
379  * Timeout idle connections.
380  */
381 int connections_timeout_idle(time_t now)
382 {
383         int i = 0;
384         int connindex;
385         Connection* c;
386
387         for( c = connection_first( &connindex );
388                 c != NULL;
389                 c = connection_next( c, &connindex ) )
390         {
391                 /* Don't timeout a slow-running request or a persistent
392                  * outbound connection */
393                 if( c->c_n_ops_executing || c->c_conn_state == SLAP_C_CLIENT ) {
394                         continue;
395                 }
396
397                 if( difftime( c->c_activitytime+global_idletimeout, now) < 0 ) {
398                         /* close it */
399                         connection_closing( c, "idletimeout" );
400                         connection_close( c );
401                         i++;
402                 }
403         }
404         connection_done( c );
405
406         return i;
407 }
408
409 static Connection* connection_get( ber_socket_t s )
410 {
411         /* connections_mutex should be locked by caller */
412
413         Connection *c;
414
415         Debug( LDAP_DEBUG_ARGS,
416                 "connection_get(%ld)\n",
417                 (long) s, 0, 0 );
418
419         assert( connections != NULL );
420
421         if(s == AC_SOCKET_INVALID) return NULL;
422
423 #ifndef HAVE_WINSOCK
424         c = MCA_GET_CONNECTION(s);
425
426         assert( c->c_struct_state != SLAP_C_UNINITIALIZED );
427
428 #else
429         c = NULL;
430         {
431                 ber_socket_t i, sd;
432
433                 for(i=0; i<dtblsize; i++) {
434                         if( connections[i].c_struct_state == SLAP_C_UNINITIALIZED ) {
435                                 assert( connections[i].c_conn_state == SLAP_C_INVALID );
436                                 assert( connections[i].c_sb == 0 );
437                                 break;
438                         }
439
440                         ber_sockbuf_ctrl( connections[i].c_sb,
441                                 LBER_SB_OPT_GET_FD, &sd );
442
443                         if( connections[i].c_struct_state == SLAP_C_UNUSED ) {
444                                 assert( connections[i].c_conn_state == SLAP_C_INVALID );
445                                 assert( sd == AC_SOCKET_INVALID );
446                                 continue;
447                         }
448
449                         /* state can actually change from used -> unused by resched,
450                          * so don't assert details here.
451                          */
452
453                         if( sd == s ) {
454                                 c = &connections[i];
455                                 break;
456                         }
457                 }
458         }
459 #endif
460
461         if( c != NULL ) {
462                 ber_socket_t    sd;
463
464                 ldap_pvt_thread_mutex_lock( &c->c_mutex );
465
466                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
467                 if( c->c_struct_state != SLAP_C_USED ) {
468                         /* connection must have been closed due to resched */
469
470                         assert( c->c_conn_state == SLAP_C_INVALID );
471                         assert( sd == AC_SOCKET_INVALID );
472
473                         Debug( LDAP_DEBUG_TRACE,
474                                 "connection_get(%d): connection not used\n",
475                                 s, 0, 0 );
476
477                         ldap_pvt_thread_mutex_unlock( &c->c_mutex );
478                         return NULL;
479                 }
480
481                 Debug( LDAP_DEBUG_TRACE,
482                         "connection_get(%d): got connid=%lu\n",
483                         s, c->c_connid, 0 );
484
485                 c->c_n_get++;
486
487                 assert( c->c_struct_state == SLAP_C_USED );
488                 assert( c->c_conn_state != SLAP_C_INVALID );
489                 assert( sd != AC_SOCKET_INVALID );
490
491 #ifndef SLAPD_MONITOR
492                 if ( global_idletimeout > 0 )
493 #endif /* ! SLAPD_MONITOR */
494                 {
495                         c->c_activitytime = slap_get_time();
496                 }
497         }
498
499         return c;
500 }
501
502 static void connection_return( Connection *c )
503 {
504         ldap_pvt_thread_mutex_unlock( &c->c_mutex );
505 }
506
507 long connection_init(
508         ber_socket_t s,
509         Listener *listener,
510         const char* dnsname,
511         const char* peername,
512         int flags,
513         slap_ssf_t ssf,
514         struct berval *authid )
515 {
516         unsigned long id;
517         Connection *c;
518
519         assert( connections != NULL );
520
521         assert( listener != NULL );
522         assert( dnsname != NULL );
523         assert( peername != NULL );
524
525 #ifndef HAVE_TLS
526         assert( flags != CONN_IS_TLS );
527 #endif
528
529         if( s == AC_SOCKET_INVALID ) {
530                 Debug( LDAP_DEBUG_ANY,
531                         "connection_init: init of socket %ld invalid.\n", (long)s, 0, 0 );
532                 return -1;
533         }
534
535         assert( s >= 0 );
536 #ifndef HAVE_WINSOCK
537         assert( s < dtblsize );
538 #endif
539
540         ldap_pvt_thread_mutex_lock( MCA_GET_CONN_MUTEX(s) );
541
542 #ifndef HAVE_WINSOCK
543         c = MCA_GET_CONNECTION(s);
544 #else
545         {
546                 ber_socket_t i;
547                 c = NULL;
548
549                 for( i=0; i < dtblsize; i++) {
550                         ber_socket_t    sd;
551
552                         if( connections[i].c_struct_state == SLAP_C_UNINITIALIZED ) {
553                                 assert( connections[i].c_sb == 0 );
554                                 c = &connections[i];
555                                 break;
556                         }
557
558                         sd = AC_SOCKET_INVALID;
559                         if (connections[i].c_sb != NULL) {
560                                 ber_sockbuf_ctrl( connections[i].c_sb,
561                                         LBER_SB_OPT_GET_FD, &sd );
562                         }
563
564                         if( connections[i].c_struct_state == SLAP_C_UNUSED ) {
565                                 assert( sd == AC_SOCKET_INVALID );
566                                 c = &connections[i];
567                                 break;
568                         }
569
570                         if( connections[i].c_conn_state == SLAP_C_CLIENT ) continue;
571
572                         assert( connections[i].c_struct_state == SLAP_C_USED );
573                         assert( connections[i].c_conn_state != SLAP_C_INVALID );
574                         assert( sd != AC_SOCKET_INVALID );
575                 }
576
577                 if( c == NULL ) {
578                         Debug( LDAP_DEBUG_ANY,
579                                 "connection_init(%d): connection table full "
580                                 "(%d/%d)\n", s, i, dtblsize);
581                         ldap_pvt_thread_mutex_unlock( &connections_mutex );
582                         return -1;
583                 }
584         }
585 #endif
586
587         assert( c != NULL );
588
589         if( c->c_struct_state == SLAP_C_UNINITIALIZED ) {
590                 c->c_send_ldap_result = slap_send_ldap_result;
591                 c->c_send_search_entry = slap_send_search_entry;
592                 c->c_send_search_reference = slap_send_search_reference;
593                 c->c_send_ldap_extended = slap_send_ldap_extended;
594 #ifdef LDAP_RES_INTERMEDIATE
595                 c->c_send_ldap_intermediate = slap_send_ldap_intermediate;
596 #endif
597
598                 BER_BVZERO( &c->c_authmech );
599                 BER_BVZERO( &c->c_dn );
600                 BER_BVZERO( &c->c_ndn );
601
602                 c->c_listener = NULL;
603                 BER_BVZERO( &c->c_peer_domain );
604                 BER_BVZERO( &c->c_peer_name );
605
606                 LDAP_STAILQ_INIT(&c->c_ops);
607                 LDAP_STAILQ_INIT(&c->c_pending_ops);
608
609                 BER_BVZERO( &c->c_sasl_bind_mech );
610                 c->c_sasl_done = 0;
611                 c->c_sasl_authctx = NULL;
612                 c->c_sasl_sockctx = NULL;
613                 c->c_sasl_extra = NULL;
614                 c->c_sasl_bindop = NULL;
615
616                 c->c_sb = ber_sockbuf_alloc( );
617
618                 {
619                         ber_len_t max = sockbuf_max_incoming;
620                         ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
621                 }
622
623                 c->c_currentber = NULL;
624
625                 /* should check status of thread calls */
626                 ldap_pvt_thread_mutex_init( &c->c_mutex );
627                 ldap_pvt_thread_mutex_init( &c->c_write_mutex );
628                 ldap_pvt_thread_cond_init( &c->c_write_cv );
629
630 #ifdef LDAP_SLAPI
631                 if ( slapi_plugins_used ) {
632                         slapi_int_create_object_extensions( SLAPI_X_EXT_CONNECTION, c );
633                 }
634 #endif
635
636                 c->c_struct_state = SLAP_C_UNUSED;
637         }
638
639         ldap_pvt_thread_mutex_lock( &c->c_mutex );
640
641         assert( c->c_struct_state == SLAP_C_UNUSED );
642         assert( BER_BVISNULL( &c->c_authmech ) );
643         assert( BER_BVISNULL( &c->c_dn ) );
644         assert( BER_BVISNULL( &c->c_ndn ) );
645         assert( c->c_listener == NULL );
646         assert( BER_BVISNULL( &c->c_peer_domain ) );
647         assert( BER_BVISNULL( &c->c_peer_name ) );
648         assert( LDAP_STAILQ_EMPTY(&c->c_ops) );
649         assert( LDAP_STAILQ_EMPTY(&c->c_pending_ops) );
650         assert( BER_BVISNULL( &c->c_sasl_bind_mech ) );
651         assert( c->c_sasl_done == 0 );
652         assert( c->c_sasl_authctx == NULL );
653         assert( c->c_sasl_sockctx == NULL );
654         assert( c->c_sasl_extra == NULL );
655         assert( c->c_sasl_bindop == NULL );
656         assert( c->c_currentber == NULL );
657         assert( c->c_writewaiter == 0);
658
659         c->c_listener = listener;
660
661         if ( flags == CONN_IS_CLIENT ) {
662                 c->c_conn_state = SLAP_C_CLIENT;
663                 c->c_struct_state = SLAP_C_USED;
664                 c->c_close_reason = "?";                        /* should never be needed */
665                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_FD, &s );
666                 ldap_pvt_thread_mutex_unlock( &c->c_mutex );
667                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
668
669                 return 0;
670         }
671
672         ber_str2bv( dnsname, 0, 1, &c->c_peer_domain );
673         ber_str2bv( peername, 0, 1, &c->c_peer_name );
674
675         c->c_n_ops_received = 0;
676         c->c_n_ops_executing = 0;
677         c->c_n_ops_pending = 0;
678         c->c_n_ops_completed = 0;
679
680         c->c_n_get = 0;
681         c->c_n_read = 0;
682         c->c_n_write = 0;
683
684         /* set to zero until bind, implies LDAP_VERSION3 */
685         c->c_protocol = 0;
686
687 #ifndef SLAPD_MONITOR
688         if ( global_idletimeout > 0 )
689 #endif /* ! SLAPD_MONITOR */
690         {
691                 c->c_activitytime = c->c_starttime = slap_get_time();
692         }
693
694 #ifdef LDAP_CONNECTIONLESS
695         c->c_is_udp = 0;
696         if( flags == CONN_IS_UDP ) {
697                 c->c_is_udp = 1;
698 #ifdef LDAP_DEBUG
699                 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
700                         LBER_SBIOD_LEVEL_PROVIDER, (void*)"udp_" );
701 #endif
702                 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_udp,
703                         LBER_SBIOD_LEVEL_PROVIDER, (void *)&s );
704                 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_readahead,
705                         LBER_SBIOD_LEVEL_PROVIDER, NULL );
706         } else
707 #endif
708         {
709 #ifdef LDAP_DEBUG
710                 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
711                         LBER_SBIOD_LEVEL_PROVIDER, (void*)"tcp_" );
712 #endif
713                 ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_tcp,
714                         LBER_SBIOD_LEVEL_PROVIDER, (void *)&s );
715         }
716
717 #ifdef LDAP_DEBUG
718         ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
719                 INT_MAX, (void*)"ldap_" );
720 #endif
721
722         if( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_NONBLOCK,
723                 c /* non-NULL */ ) < 0 )
724         {
725                 Debug( LDAP_DEBUG_ANY,
726                         "connection_init(%d, %s): set nonblocking failed\n",
727                         s, c->c_peer_name.bv_val, 0 );
728         }
729
730         ldap_pvt_thread_mutex_lock( &conn_nextid_mutex );
731         id = c->c_connid = conn_nextid++;
732         ldap_pvt_thread_mutex_unlock( &conn_nextid_mutex );
733
734         c->c_conn_state = SLAP_C_INACTIVE;
735         c->c_struct_state = SLAP_C_USED;
736         c->c_close_reason = "?";                        /* should never be needed */
737
738         c->c_ssf = c->c_transport_ssf = ssf;
739         c->c_tls_ssf = 0;
740
741 #ifdef HAVE_TLS
742         if ( flags == CONN_IS_TLS ) {
743                 c->c_is_tls = 1;
744                 c->c_needs_tls_accept = 1;
745         } else {
746                 c->c_is_tls = 0;
747                 c->c_needs_tls_accept = 0;
748         }
749 #endif
750
751         slap_sasl_open( c, 0 );
752         slap_sasl_external( c, ssf, authid );
753
754         ldap_pvt_thread_mutex_unlock( &c->c_mutex );
755         ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
756
757         backend_connection_init(c);
758
759         return id;
760 }
761
762 void connection2anonymous( Connection *c )
763 {
764         assert( connections != NULL );
765         assert( c != NULL );
766
767         {
768                 ber_len_t max = sockbuf_max_incoming;
769                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
770         }
771
772         if ( !BER_BVISNULL( &c->c_authmech ) ) {
773                 ch_free(c->c_authmech.bv_val);
774         }
775         BER_BVZERO( &c->c_authmech );
776
777         if ( !BER_BVISNULL( &c->c_dn ) ) {
778                 ch_free(c->c_dn.bv_val);
779         }
780         BER_BVZERO( &c->c_dn );
781
782         if ( !BER_BVISNULL( &c->c_ndn ) ) {
783                 ch_free(c->c_ndn.bv_val);
784         }
785         BER_BVZERO( &c->c_ndn );
786
787         if ( !BER_BVISNULL( &c->c_sasl_authz_dn ) ) {
788                 ber_memfree_x( c->c_sasl_authz_dn.bv_val, NULL );
789         }
790         BER_BVZERO( &c->c_sasl_authz_dn );
791
792         c->c_authz_backend = NULL;
793 }
794
795 static void
796 connection_destroy( Connection *c )
797 {
798         /* note: connections_mutex should be locked by caller */
799         ber_socket_t    sd;
800         unsigned long   connid;
801         const char              *close_reason;
802
803         assert( connections != NULL );
804         assert( c != NULL );
805         assert( c->c_struct_state != SLAP_C_UNUSED );
806         assert( c->c_conn_state != SLAP_C_INVALID );
807         assert( LDAP_STAILQ_EMPTY(&c->c_ops) );
808         assert( c->c_writewaiter == 0);
809
810         /* only for stats (print -1 as "%lu" may give unexpected results ;) */
811         connid = c->c_connid;
812         close_reason = c->c_close_reason;
813
814         backend_connection_destroy(c);
815
816         c->c_protocol = 0;
817         c->c_connid = -1;
818
819         c->c_activitytime = c->c_starttime = 0;
820
821         connection2anonymous( c );
822         c->c_listener = NULL;
823
824         if(c->c_peer_domain.bv_val != NULL) {
825                 free(c->c_peer_domain.bv_val);
826         }
827         BER_BVZERO( &c->c_peer_domain );
828         if(c->c_peer_name.bv_val != NULL) {
829                 free(c->c_peer_name.bv_val);
830         }
831         BER_BVZERO( &c->c_peer_name );
832
833         c->c_sasl_bind_in_progress = 0;
834         if(c->c_sasl_bind_mech.bv_val != NULL) {
835                 free(c->c_sasl_bind_mech.bv_val);
836         }
837         BER_BVZERO( &c->c_sasl_bind_mech );
838
839         slap_sasl_close( c );
840
841         if ( c->c_currentber != NULL ) {
842                 ber_free( c->c_currentber, 1 );
843                 c->c_currentber = NULL;
844         }
845
846         ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
847         if ( sd != AC_SOCKET_INVALID ) {
848                 slapd_remove( sd, 1, 0 );
849
850                 Statslog( LDAP_DEBUG_STATS, (close_reason
851                                                                          ? "conn=%lu fd=%ld closed (%s)\n"
852                                                                          : "conn=%lu fd=%ld closed\n"),
853                         connid, (long) sd, close_reason, 0, 0 );
854         }
855
856         ber_sockbuf_free( c->c_sb );
857
858         c->c_sb = ber_sockbuf_alloc( );
859
860         {
861                 ber_len_t max = sockbuf_max_incoming;
862                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
863         }
864
865         c->c_conn_state = SLAP_C_INVALID;
866         c->c_struct_state = SLAP_C_UNUSED;
867         c->c_close_reason = "?";                        /* should never be needed */
868
869 #ifdef LDAP_SLAPI
870         /* call destructors, then constructors; avoids unnecessary allocation */
871         if ( slapi_plugins_used ) {
872                 slapi_int_clear_object_extensions( SLAPI_X_EXT_CONNECTION, c );
873         }
874 #endif
875 }
876
877 int connection_state_closing( Connection *c )
878 {
879         /* c_mutex must be locked by caller */
880
881         int state;
882         assert( c != NULL );
883         assert( c->c_struct_state == SLAP_C_USED );
884
885         state = c->c_conn_state;
886
887         assert( state != SLAP_C_INVALID );
888
889         return state == SLAP_C_CLOSING;
890 }
891
892 static void connection_abandon( Connection *c )
893 {
894         /* c_mutex must be locked by caller */
895
896         Operation *o, *next, op = {0};
897         Opheader ohdr = {0};
898         SlapReply rs = {0};
899
900         op.o_hdr = &ohdr;
901         op.o_conn = c;
902         op.o_connid = c->c_connid;
903         op.o_tag = LDAP_REQ_ABANDON;
904         for ( o = LDAP_STAILQ_FIRST( &c->c_ops ); o; o=next ) {
905                 next = LDAP_STAILQ_NEXT( o, o_next );
906                 op.orn_msgid = o->o_msgid;
907                 o->o_abandon = 1;
908                 op.o_bd = frontendDB;
909                 frontendDB->be_abandon( &op, &rs );
910         }
911
912         /* remove pending operations */
913         while ( (o = LDAP_STAILQ_FIRST( &c->c_pending_ops )) != NULL) {
914                 LDAP_STAILQ_REMOVE_HEAD( &c->c_pending_ops, o_next );
915                 LDAP_STAILQ_NEXT(o, o_next) = NULL;
916                 slap_op_free( o );
917         }
918 }
919
920 void connection_closing( Connection *c, const char *why )
921 {
922         assert( connections != NULL );
923         assert( c != NULL );
924         assert( c->c_struct_state == SLAP_C_USED );
925         assert( c->c_conn_state != SLAP_C_INVALID );
926
927         /* c_mutex must be locked by caller */
928
929         if( c->c_conn_state != SLAP_C_CLOSING ) {
930                 ber_socket_t    sd;
931
932                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
933                 Debug( LDAP_DEBUG_TRACE,
934                         "connection_closing: readying conn=%lu sd=%d for close\n",
935                         c->c_connid, sd, 0 );
936                 /* update state to closing */
937                 c->c_conn_state = SLAP_C_CLOSING;
938                 c->c_close_reason = why;
939
940                 /* don't listen on this port anymore */
941                 slapd_clr_read( sd, 1 );
942
943                 /* abandon active operations */
944                 connection_abandon( c );
945
946                 /* wake write blocked operations */
947                 slapd_clr_write( sd, 1 );
948                 if ( c->c_writewaiter ) {
949                         ldap_pvt_thread_cond_signal( &c->c_write_cv );
950                         ldap_pvt_thread_mutex_unlock( &c->c_mutex );
951                         ldap_pvt_thread_yield();
952                         ldap_pvt_thread_mutex_lock( &c->c_mutex );
953                 }
954         } else if( why == NULL && c->c_close_reason == conn_lost_str ) {
955                 /* Client closed connection after doing Unbind. */
956                 c->c_close_reason = NULL;
957         }
958 }
959
960 static void connection_close( Connection *c )
961 {
962         ber_socket_t    sd;
963
964         assert( connections != NULL );
965         assert( c != NULL );
966         assert( c->c_struct_state == SLAP_C_USED );
967         assert( c->c_conn_state == SLAP_C_CLOSING );
968
969         /* note: connections_mutex and c_mutex should be locked by caller */
970
971         ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd );
972         if( !LDAP_STAILQ_EMPTY(&c->c_ops) ) {
973                 Debug( LDAP_DEBUG_TRACE,
974                         "connection_close: deferring conn=%lu sd=%d\n",
975                         c->c_connid, sd, 0 );
976                 return;
977         }
978
979         Debug( LDAP_DEBUG_TRACE, "connection_close: conn=%lu sd=%d\n",
980                 c->c_connid, sd, 0 );
981         connection_destroy( c );
982 }
983
984 unsigned long connections_nextid(void)
985 {
986         unsigned long id;
987         assert( connections != NULL );
988
989         ldap_pvt_thread_mutex_lock( &conn_nextid_mutex );
990
991         id = conn_nextid;
992
993         ldap_pvt_thread_mutex_unlock( &conn_nextid_mutex );
994
995         return id;
996 }
997
998 Connection* connection_first( ber_socket_t *index )
999 {
1000 #ifdef SLAP_MULTI_CONN_ARRAY
1001         int conn_array_id;
1002 #endif
1003
1004         assert( connections != NULL );
1005         assert( index != NULL );
1006
1007 #ifdef SLAP_MULTI_CONN_ARRAY
1008         for ( conn_array_id = 0;
1009                 conn_array_id < NUM_CONNECTION_ARRAY;
1010                 conn_array_id++ )
1011         {
1012                 ldap_pvt_thread_mutex_lock( &connections_mutex[ conn_array_id ] );
1013         }
1014 #else
1015         ldap_pvt_thread_mutex_lock( &connections_mutex );
1016 #endif
1017
1018         *index = 0;
1019
1020         return connection_next(NULL, index);
1021 }
1022
1023 Connection* connection_next( Connection *c, ber_socket_t *index )
1024 #ifdef SLAP_MULTI_CONN_ARRAY
1025 {
1026         Connection* conn;
1027
1028         assert( connections != NULL );
1029         assert( index != NULL );
1030         assert( *index <= (dtblsize/NUM_CONNECTION_ARRAY) );
1031
1032         if( c != NULL ) ldap_pvt_thread_mutex_unlock( &c->c_mutex );
1033
1034         c = NULL;
1035
1036         for(; *index < dtblsize; (*index)++) {
1037                 conn = MCA_GET_CONNECTION(*index);
1038                 if( conn->c_struct_state == SLAP_C_UNINITIALIZED ) {
1039                         assert( conn->c_conn_state == SLAP_C_INVALID );
1040 #ifndef HAVE_WINSOCK
1041                         continue;
1042 #else
1043                         break;
1044 #endif
1045                 }
1046
1047                 if( conn->c_struct_state == SLAP_C_USED ) {
1048                         assert( conn->c_conn_state != SLAP_C_INVALID );
1049                         c = conn;
1050                         (*index)++;
1051                         break;
1052                 }
1053
1054                 assert( conn->c_struct_state == SLAP_C_UNUSED );
1055                 assert( conn->c_conn_state == SLAP_C_INVALID );
1056         }
1057
1058         if( c != NULL ) ldap_pvt_thread_mutex_lock( &c->c_mutex );
1059
1060         return c;
1061
1062 }
1063 #else
1064 {
1065         assert( connections != NULL );
1066         assert( index != NULL );
1067         assert( *index <= dtblsize );
1068
1069         if( c != NULL ) ldap_pvt_thread_mutex_unlock( &c->c_mutex );
1070
1071         c = NULL;
1072
1073         for(; *index < dtblsize; (*index)++) {
1074                 if( connections[*index].c_struct_state == SLAP_C_UNINITIALIZED ) {
1075                         assert( connections[*index].c_conn_state == SLAP_C_INVALID );
1076 #ifndef HAVE_WINSOCK
1077                         continue;
1078 #else
1079                         break;
1080 #endif
1081                 }
1082
1083                 if( connections[*index].c_struct_state == SLAP_C_USED ) {
1084                         assert( connections[*index].c_conn_state != SLAP_C_INVALID );
1085                         c = &connections[(*index)++];
1086                         break;
1087                 }
1088
1089                 assert( connections[*index].c_struct_state == SLAP_C_UNUSED );
1090                 assert( connections[*index].c_conn_state == SLAP_C_INVALID );
1091         }
1092
1093         if( c != NULL ) ldap_pvt_thread_mutex_lock( &c->c_mutex );
1094         return c;
1095 }
1096 #endif
1097
1098 void connection_done( Connection *c )
1099 {
1100 #ifdef SLAP_MULTI_CONN_ARRAY
1101         int conn_array_id;
1102 #endif
1103
1104         assert( connections != NULL );
1105
1106         if( c != NULL ) ldap_pvt_thread_mutex_unlock( &c->c_mutex );
1107
1108 #ifdef SLAP_MULTI_CONN_ARRAY
1109         for ( conn_array_id = 0;
1110                 conn_array_id < NUM_CONNECTION_ARRAY;
1111                 conn_array_id++ )
1112         {
1113                 ldap_pvt_thread_mutex_unlock( &connections_mutex[ conn_array_id ] );
1114         }
1115 #else
1116         ldap_pvt_thread_mutex_unlock( &connections_mutex );
1117 #endif
1118 }
1119
1120 /*
1121  * connection_activity - handle the request operation op on connection
1122  * conn.  This routine figures out what kind of operation it is and
1123  * calls the appropriate stub to handle it.
1124  */
1125
1126 #ifdef SLAPD_MONITOR
1127 /* FIXME: returns 0 in case of failure */
1128 #define INCR_OP_INITIATED(index) \
1129         do { \
1130                 ldap_pvt_thread_mutex_lock( &slap_counters.sc_ops_mutex ); \
1131                 ldap_pvt_mp_add_ulong(slap_counters.sc_ops_initiated_[(index)], 1); \
1132                 ldap_pvt_thread_mutex_unlock( &slap_counters.sc_ops_mutex ); \
1133         } while (0)
1134 #define INCR_OP_COMPLETED(index) \
1135         do { \
1136                 ldap_pvt_thread_mutex_lock( &slap_counters.sc_ops_mutex ); \
1137                 ldap_pvt_mp_add_ulong(slap_counters.sc_ops_completed, 1); \
1138                 ldap_pvt_mp_add_ulong(slap_counters.sc_ops_completed_[(index)], 1); \
1139                 ldap_pvt_thread_mutex_unlock( &slap_counters.sc_ops_mutex ); \
1140         } while (0)
1141 #else /* !SLAPD_MONITOR */
1142 #define INCR_OP_INITIATED(index) do { } while (0)
1143 #define INCR_OP_COMPLETED(index) \
1144         do { \
1145                 ldap_pvt_thread_mutex_lock( &slap_counters.sc_ops_mutex ); \
1146                 ldap_pvt_mp_add_ulong(slap_counters.sc_ops_completed, 1); \
1147                 ldap_pvt_thread_mutex_unlock( &slap_counters.sc_ops_mutex ); \
1148         } while (0)
1149 #endif /* !SLAPD_MONITOR */
1150
1151 /*
1152  * NOTE: keep in sync with enum in slapd.h
1153  */
1154 static int (*opfun[])( Operation *op, SlapReply *rs ) = {
1155         do_bind,
1156         do_unbind,
1157         do_add,
1158         do_delete,
1159         do_modrdn,
1160         do_modify,
1161         do_compare,
1162         do_search,
1163         do_abandon,
1164         do_extended,
1165         NULL
1166 };
1167
1168 static void *
1169 connection_operation( void *ctx, void *arg_v )
1170 {
1171         int rc = LDAP_OTHER;
1172         Operation *op = arg_v;
1173         SlapReply rs = {REP_RESULT};
1174         ber_tag_t tag = op->o_tag;
1175         int opidx = -1;
1176         Connection *conn = op->o_conn;
1177         void *memctx = NULL;
1178         void *memctx_null = NULL;
1179         ber_len_t memsiz;
1180
1181         ldap_pvt_thread_mutex_lock( &slap_counters.sc_ops_mutex );
1182         /* FIXME: returns 0 in case of failure */
1183         ldap_pvt_mp_add_ulong(slap_counters.sc_ops_initiated, 1);
1184         ldap_pvt_thread_mutex_unlock( &slap_counters.sc_ops_mutex );
1185
1186         op->o_threadctx = ctx;
1187
1188         switch ( tag ) {
1189         case LDAP_REQ_BIND:
1190         case LDAP_REQ_UNBIND:
1191         case LDAP_REQ_ADD:
1192         case LDAP_REQ_DELETE:
1193         case LDAP_REQ_MODDN:
1194         case LDAP_REQ_MODIFY:
1195         case LDAP_REQ_COMPARE:
1196         case LDAP_REQ_SEARCH:
1197         case LDAP_REQ_ABANDON:
1198         case LDAP_REQ_EXTENDED:
1199                 break;
1200         default:
1201                 Debug( LDAP_DEBUG_ANY, "connection_operation: "
1202                         "conn %lu unknown LDAP request 0x%lx\n",
1203                         conn->c_connid, tag, 0 );
1204                 op->o_tag = LBER_ERROR;
1205                 rs.sr_err = LDAP_PROTOCOL_ERROR;
1206                 rs.sr_text = "unknown LDAP request";
1207                 send_ldap_disconnect( op, &rs );
1208                 rc = SLAPD_DISCONNECT;
1209                 goto operations_error;
1210         }
1211
1212         if( conn->c_sasl_bind_in_progress && tag != LDAP_REQ_BIND ) {
1213                 Debug( LDAP_DEBUG_ANY, "connection_operation: "
1214                         "error: SASL bind in progress (tag=%ld).\n",
1215                         (long) tag, 0, 0 );
1216                 send_ldap_error( op, &rs, LDAP_OPERATIONS_ERROR,
1217                         "SASL bind in progress" );
1218                 rc = LDAP_OPERATIONS_ERROR;
1219                 goto operations_error;
1220         }
1221
1222         /* We can use Thread-Local storage for most mallocs. We can
1223          * also use TL for ber parsing, but not on Add or Modify.
1224          */
1225 #if 0
1226         memsiz = ber_len( op->o_ber ) * 64;
1227         if ( SLAP_SLAB_SIZE > memsiz ) memsiz = SLAP_SLAB_SIZE;
1228 #endif
1229         memsiz = SLAP_SLAB_SIZE;
1230
1231         memctx = slap_sl_mem_create( memsiz, SLAP_SLAB_STACK, ctx );
1232         op->o_tmpmemctx = memctx;
1233         op->o_tmpmfuncs = &slap_sl_mfuncs;
1234         if ( tag != LDAP_REQ_ADD && tag != LDAP_REQ_MODIFY ) {
1235                 /* Note - the ber and its buffer are already allocated from
1236                  * regular memory; this only affects subsequent mallocs that
1237                  * ber_scanf may invoke.
1238                  */
1239                 ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, &memctx );
1240         }
1241
1242         switch ( tag ) {
1243         case LDAP_REQ_BIND:
1244                 opidx = SLAP_OP_BIND;
1245                 break;
1246
1247         case LDAP_REQ_UNBIND:
1248                 opidx = SLAP_OP_UNBIND;
1249                 break;
1250
1251         case LDAP_REQ_ADD:
1252                 opidx = SLAP_OP_ADD;
1253                 break;
1254
1255         case LDAP_REQ_DELETE:
1256                 opidx = SLAP_OP_DELETE;
1257                 break;
1258
1259         case LDAP_REQ_MODRDN:
1260                 opidx = SLAP_OP_MODRDN;
1261                 break;
1262
1263         case LDAP_REQ_MODIFY:
1264                 opidx = SLAP_OP_MODIFY;
1265                 break;
1266
1267         case LDAP_REQ_COMPARE:
1268                 opidx = SLAP_OP_COMPARE;
1269                 break;
1270
1271         case LDAP_REQ_SEARCH:
1272                 opidx = SLAP_OP_SEARCH;
1273                 break;
1274
1275         case LDAP_REQ_ABANDON:
1276                 opidx = SLAP_OP_ABANDON;
1277                 break;
1278
1279         case LDAP_REQ_EXTENDED:
1280                 opidx = SLAP_OP_EXTENDED;
1281                 break;
1282
1283         default:
1284                 /* not reachable */
1285                 assert( 0 );
1286         }
1287
1288         assert( opidx > -1 );
1289         INCR_OP_INITIATED( opidx );
1290         rc = (*(opfun[opidx]))( op, &rs );
1291
1292 operations_error:
1293         if ( rc == SLAPD_DISCONNECT ) {
1294                 tag = LBER_ERROR;
1295
1296         } else if ( opidx > -1 ) {
1297                 /* increment completed operations count 
1298                  * only if operation was initiated
1299                  * and rc != SLAPD_DISCONNECT */
1300                 INCR_OP_COMPLETED( opidx );
1301         }
1302
1303         if ( op->o_cancel == SLAP_CANCEL_REQ ) {
1304                 if ( rc == SLAPD_ABANDON ) {
1305                         op->o_cancel = SLAP_CANCEL_ACK;
1306                 } else {
1307                         op->o_cancel = LDAP_TOO_LATE;
1308                 }
1309         }
1310         while ( op->o_cancel != SLAP_CANCEL_NONE &&
1311                 op->o_cancel != SLAP_CANCEL_DONE )
1312         {
1313                 ldap_pvt_thread_yield();
1314         }
1315
1316         ldap_pvt_thread_mutex_lock( &conn->c_mutex );
1317
1318         ber_set_option( op->o_ber, LBER_OPT_BER_MEMCTX, &memctx_null );
1319
1320         LDAP_STAILQ_REMOVE( &conn->c_ops, op, slap_op, o_next);
1321         LDAP_STAILQ_NEXT(op, o_next) = NULL;
1322         slap_op_free( op );
1323         conn->c_n_ops_executing--;
1324         conn->c_n_ops_completed++;
1325
1326         switch( tag ) {
1327         case LBER_ERROR:
1328         case LDAP_REQ_UNBIND:
1329                 /* c_mutex is locked */
1330                 connection_closing( conn,
1331                         tag == LDAP_REQ_UNBIND ? NULL : "operations error" );
1332                 break;
1333
1334         case LDAP_REQ_BIND:
1335                 conn->c_sasl_bind_in_progress =
1336                         rc == LDAP_SASL_BIND_IN_PROGRESS ? 1 : 0;
1337
1338                 if( conn->c_conn_state == SLAP_C_BINDING) {
1339                         conn->c_conn_state = SLAP_C_ACTIVE;
1340                 }
1341         }
1342
1343         connection_resched( conn );
1344         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
1345         return NULL;
1346 }
1347
1348 static const Listener dummy_list = { BER_BVC(""), BER_BVC("") };
1349
1350 int connection_client_setup(
1351         ber_socket_t s,
1352         ldap_pvt_thread_start_t *func,
1353         void *arg )
1354 {
1355         int rc;
1356         Connection *c;
1357
1358         rc = connection_init( s, (Listener *)&dummy_list, "", "",
1359                 CONN_IS_CLIENT, 0, NULL );
1360         if ( rc < 0 ) return -1;
1361
1362         c = connection_get( s );
1363         c->c_clientfunc = func;
1364         c->c_clientarg = arg;
1365         connection_return( c );
1366         slapd_add_internal( s, 0 );
1367         slapd_set_read( s, 1 );
1368         return 0;
1369 }
1370
1371 void connection_client_enable(
1372         ber_socket_t s )
1373 {
1374         slapd_set_read( s, 1 );
1375 }
1376
1377 void connection_client_stop(
1378         ber_socket_t s )
1379 {
1380         Connection *c;
1381
1382         /* get (locked) connection */
1383         c = connection_get( s );
1384         
1385         assert( c->c_conn_state == SLAP_C_CLIENT );
1386
1387         c->c_listener = NULL;
1388         c->c_conn_state = SLAP_C_INVALID;
1389         c->c_struct_state = SLAP_C_UNUSED;
1390         c->c_close_reason = "?";                        /* should never be needed */
1391         ber_sockbuf_free( c->c_sb );
1392         c->c_sb = ber_sockbuf_alloc( );
1393         {
1394                 ber_len_t max = sockbuf_max_incoming;
1395                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
1396         }
1397
1398         connection_return( c );
1399         slapd_remove( s, 0, 1 );
1400 }
1401
1402 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1403 static int connection_read( ber_socket_t s, Operation** op );
1404
1405 static void* connection_read_thread( void* ctx, void* argv )
1406 {
1407         int rc ;
1408         Operation* new_op = NULL;
1409         ber_socket_t s = (ber_socket_t)argv;
1410
1411         /*
1412          * read incoming LDAP requests. If there is more than one,
1413          * the first one is returned with new_op
1414          */
1415         if( ( rc = connection_read( s, &new_op ) ) < 0 ) {
1416                 Debug( LDAP_DEBUG_TRACE, "connection_read(%d) error\n", s, 0, 0 );
1417                 tcp_close( s );
1418                 return (void*)rc;
1419         }
1420
1421         /* execute the queued request in the same thread */
1422         if( new_op ) {
1423                 rc = (int)connection_operation(
1424                         ldap_pvt_thread_pool_context(), new_op );
1425         }
1426
1427         return (void*)rc;
1428 }
1429
1430 int connection_read_activate( ber_socket_t s )
1431 {
1432         int rc;
1433
1434         /*
1435          * suspend reading on this file descriptor until a connection processing
1436          * thread reads data on it. Otherwise the listener thread will repeatedly
1437          * submit the same event on it to the pool.
1438          */
1439         slapd_clr_read( s, 0 );
1440
1441         rc = ldap_pvt_thread_pool_submit( &connection_pool,
1442                 connection_read_thread, (void *) s );
1443
1444         if( rc != 0 ) {
1445                 Debug( LDAP_DEBUG_ANY,
1446                         "connection_read_activiate(%d): submit failed (%d)\n",
1447                         s, rc, 0 );
1448         }
1449
1450         return rc;
1451 }
1452 #endif
1453
1454 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1455 static int
1456 connection_read( ber_socket_t s, Operation** op )
1457 #else
1458 int connection_read(ber_socket_t s)
1459 #endif
1460 {
1461         int rc = 0;
1462         Connection *c;
1463
1464         assert( connections != NULL );
1465
1466         ldap_pvt_thread_mutex_lock( MCA_GET_CONN_MUTEX(s) );
1467
1468         /* get (locked) connection */
1469         c = connection_get( s );
1470
1471         if( c == NULL ) {
1472                 Debug( LDAP_DEBUG_ANY,
1473                         "connection_read(%ld): no connection!\n",
1474                         (long) s, 0, 0 );
1475                 slapd_remove(s, 1, 0);
1476
1477                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1478                 return -1;
1479         }
1480
1481         c->c_n_read++;
1482
1483         if( c->c_conn_state == SLAP_C_CLOSING ) {
1484                 Debug( LDAP_DEBUG_TRACE,
1485                         "connection_read(%d): closing, ignoring input for id=%lu\n",
1486                         s, c->c_connid, 0 );
1487                 connection_return( c );
1488                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1489
1490 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1491                 slapd_set_read( s, 1);
1492 #endif
1493                 return 0;
1494         }
1495
1496         if ( c->c_conn_state == SLAP_C_CLIENT ) {
1497 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1498                 /* read should already be cleared */
1499 #else
1500                 slapd_clr_read( s, 0 );
1501 #endif
1502                 ldap_pvt_thread_pool_submit( &connection_pool,
1503                         c->c_clientfunc, c->c_clientarg );
1504
1505                 connection_return( c );
1506                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1507                 return 0;
1508         }
1509
1510         Debug( LDAP_DEBUG_TRACE,
1511                 "connection_read(%d): checking for input on id=%lu\n",
1512                 s, c->c_connid, 0 );
1513
1514 #ifdef HAVE_TLS
1515         if ( c->c_is_tls && c->c_needs_tls_accept ) {
1516                 rc = ldap_pvt_tls_accept( c->c_sb, slap_tls_ctx );
1517                 if ( rc < 0 ) {
1518                         Debug( LDAP_DEBUG_TRACE,
1519                                 "connection_read(%d): TLS accept error "
1520                                 "error=%d id=%lu, closing\n",
1521                                 s, rc, c->c_connid );
1522
1523                         c->c_needs_tls_accept = 0;
1524                         /* connections_mutex and c_mutex are locked */
1525                         connection_closing( c, "TLS negotiation failure" );
1526
1527 #if 0
1528                         {
1529                                 struct timeval tv;
1530                                 fd_set rfd;
1531                                 /* Drain input before close, to allow SSL error codes
1532                                  * to propagate to client. */
1533                                 FD_ZERO(&rfd);
1534                                 FD_SET(s, &rfd);
1535                                 for (rc=1; rc>0;) {
1536                                         tv.tv_sec = 1;
1537                                         tv.tv_usec = 0;
1538                                         rc = select(s+1, &rfd, NULL, NULL, &tv);
1539                                         if (rc == 1) {
1540                                                 ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_DRAIN, NULL);
1541                                         }
1542                                 }
1543                         }
1544 #endif
1545
1546                         connection_close( c );
1547
1548                 } else if ( rc == 0 ) {
1549                         void *ssl;
1550                         struct berval authid = BER_BVNULL;
1551
1552                         c->c_needs_tls_accept = 0;
1553
1554                         /* we need to let SASL know */
1555                         ssl = ldap_pvt_tls_sb_ctx( c->c_sb );
1556
1557                         c->c_tls_ssf = (slap_ssf_t) ldap_pvt_tls_get_strength( ssl );
1558                         if( c->c_tls_ssf > c->c_ssf ) {
1559                                 c->c_ssf = c->c_tls_ssf;
1560                         }
1561
1562                         rc = dnX509peerNormalize( ssl, &authid );
1563                         if ( rc != LDAP_SUCCESS ) {
1564                                 Debug( LDAP_DEBUG_TRACE, "connection_read(%d): "
1565                                         "unable to get TLS client DN, error=%d id=%lu\n",
1566                                         s, rc, c->c_connid );
1567                         }
1568                         Statslog( LDAP_DEBUG_STATS,
1569                                 "conn=%lu fd=%d TLS established tls_ssf=%u ssf=%u\n",
1570                             c->c_connid, (int) s, c->c_tls_ssf, c->c_ssf, 0 );
1571                         slap_sasl_external( c, c->c_tls_ssf, &authid );
1572                         if ( authid.bv_val ) free( authid.bv_val );
1573                 }
1574
1575                 /* if success and data is ready, fall thru to data input loop */
1576                 if( rc != 0 ||
1577                         !ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_DATA_READY, NULL ) )
1578                 {
1579                         connection_return( c );
1580                         ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1581
1582 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1583                         slapd_set_read( s, 1 );
1584 #endif
1585                         return 0;
1586                 }
1587         }
1588 #endif
1589
1590 #ifdef HAVE_CYRUS_SASL
1591         if ( c->c_sasl_layers ) {
1592                 /* If previous layer is not removed yet, give up for now */
1593                 if ( !c->c_sasl_sockctx ) {
1594                         connection_return( c );
1595                         ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1596
1597 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1598                         slapd_set_read( s, 1 );
1599 #endif
1600                         return 0;
1601                 }
1602
1603                 c->c_sasl_layers = 0;
1604
1605                 rc = ldap_pvt_sasl_install( c->c_sb, c->c_sasl_sockctx );
1606                 if( rc != LDAP_SUCCESS ) {
1607                         Debug( LDAP_DEBUG_TRACE,
1608                                 "connection_read(%d): SASL install error "
1609                                 "error=%d id=%lu, closing\n",
1610                                 s, rc, c->c_connid );
1611
1612                         /* connections_mutex and c_mutex are locked */
1613
1614 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1615                         slapd_set_read( s, 1 );
1616 #endif
1617
1618                         connection_closing( c, "SASL layer install failure" );
1619                         connection_close( c );
1620                         connection_return( c );
1621                         ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1622                         return 0;
1623                 }
1624         }
1625 #endif
1626
1627 #define CONNECTION_INPUT_LOOP 1
1628 /* #define      DATA_READY_LOOP 1 */
1629
1630         do {
1631                 /* How do we do this without getting into a busy loop ? */
1632 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1633                 rc = connection_input( c, op );
1634 #else
1635                 rc = connection_input( c );
1636 #endif
1637         }
1638 #ifdef DATA_READY_LOOP
1639         while( !rc && ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_DATA_READY, NULL ));
1640 #elif CONNECTION_INPUT_LOOP
1641         while(!rc);
1642 #else
1643         while(0);
1644 #endif
1645
1646         if( rc < 0 ) {
1647                 Debug( LDAP_DEBUG_TRACE,
1648                         "connection_read(%d): input error=%d id=%lu, closing.\n",
1649                         s, rc, c->c_connid );
1650
1651                 /* connections_mutex and c_mutex are locked */
1652                 connection_closing( c, conn_lost_str );
1653                 connection_close( c );
1654                 connection_return( c );
1655                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1656                 return 0;
1657         }
1658
1659 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1660         if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_WRITE, NULL ) ) {
1661                 slapd_set_write( s, 0 );
1662         }
1663
1664         slapd_set_read( s, 1 );
1665 #else
1666         if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_READ, NULL ) ) {
1667                 slapd_set_read( s, 1 );
1668         }
1669
1670         if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_WRITE, NULL ) ) {
1671                 slapd_set_write( s, 1 );
1672         }
1673 #endif
1674
1675         connection_return( c );
1676         ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
1677
1678         return 0;
1679 }
1680
1681 static int
1682 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
1683 connection_input( Connection *conn , Operation** c_op )
1684 #else
1685 connection_input( Connection *conn )
1686 #endif
1687 {
1688         Operation *op;
1689         ber_tag_t       tag;
1690         ber_len_t       len;
1691         ber_int_t       msgid;
1692         BerElement      *ber;
1693         int             rc;
1694 #ifdef LDAP_CONNECTIONLESS
1695         Sockaddr        peeraddr;
1696         char            *cdn = NULL;
1697 #endif
1698         char *defer = NULL;
1699
1700         if ( conn->c_currentber == NULL &&
1701                 ( conn->c_currentber = ber_alloc()) == NULL )
1702         {
1703                 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
1704                 return -1;
1705         }
1706
1707         errno = 0;
1708
1709 #ifdef LDAP_CONNECTIONLESS
1710         if ( conn->c_is_udp ) {
1711                 char peername[sizeof("IP=255.255.255.255:65336")];
1712
1713                 len = ber_int_sb_read(conn->c_sb, &peeraddr, sizeof(struct sockaddr));
1714                 if (len != sizeof(struct sockaddr)) return 1;
1715
1716                 sprintf( peername, "IP=%s:%d",
1717                         inet_ntoa( peeraddr.sa_in_addr.sin_addr ),
1718                         (unsigned) ntohs( peeraddr.sa_in_addr.sin_port ) );
1719                 Statslog( LDAP_DEBUG_STATS,
1720                         "conn=%lu UDP request from %s (%s) accepted.\n",
1721                         conn->c_connid, peername, conn->c_sock_name.bv_val, 0, 0 );
1722         }
1723 #endif
1724
1725         tag = ber_get_next( conn->c_sb, &len, conn->c_currentber );
1726         if ( tag != LDAP_TAG_MESSAGE ) {
1727                 int err = errno;
1728                 ber_socket_t    sd;
1729
1730                 ber_sockbuf_ctrl( conn->c_sb, LBER_SB_OPT_GET_FD, &sd );
1731
1732                 Debug( LDAP_DEBUG_TRACE,
1733                         "ber_get_next on fd %d failed errno=%d (%s)\n",
1734                         sd, err, sock_errstr(err) );
1735                 if ( err != EWOULDBLOCK && err != EAGAIN ) {
1736                         /* log, close and send error */
1737                         ber_free( conn->c_currentber, 1 );
1738                         conn->c_currentber = NULL;
1739
1740                         return -2;
1741                 }
1742                 return 1;
1743         }
1744
1745         ber = conn->c_currentber;
1746         conn->c_currentber = NULL;
1747
1748         if ( (tag = ber_get_int( ber, &msgid )) != LDAP_TAG_MSGID ) {
1749                 /* log, close and send error */
1750                 Debug( LDAP_DEBUG_ANY, "ber_get_int returns 0x%lx\n", tag, 0, 0 );
1751                 ber_free( ber, 1 );
1752                 return -1;
1753         }
1754
1755         if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
1756                 /* log, close and send error */
1757                 Debug( LDAP_DEBUG_ANY, "ber_peek_tag returns 0x%lx\n", tag, 0, 0 );
1758                 ber_free( ber, 1 );
1759
1760                 return -1;
1761         }
1762
1763 #ifdef LDAP_CONNECTIONLESS
1764         if( conn->c_is_udp ) {
1765                 if( tag == LBER_OCTETSTRING ) {
1766                         ber_get_stringa( ber, &cdn );
1767                         tag = ber_peek_tag(ber, &len);
1768                 }
1769                 if( tag != LDAP_REQ_ABANDON && tag != LDAP_REQ_SEARCH ) {
1770                         Debug( LDAP_DEBUG_ANY, "invalid req for UDP 0x%lx\n", tag, 0, 0 );
1771                         ber_free( ber, 1 );
1772                         return 0;
1773                 }
1774         }
1775 #endif
1776
1777         if(tag == LDAP_REQ_BIND) {
1778                 /* immediately abandon all existing operations upon BIND */
1779                 connection_abandon( conn );
1780         }
1781
1782         op = slap_op_alloc( ber, msgid, tag, conn->c_n_ops_received++ );
1783
1784         op->o_conn = conn;
1785         /* clear state if the connection is being reused from inactive */
1786         if ( conn->c_conn_state == SLAP_C_INACTIVE ) {
1787                 memset( &conn->c_pagedresults_state, 0,
1788                         sizeof( conn->c_pagedresults_state ) );
1789         }
1790
1791         op->o_res_ber = NULL;
1792
1793 #ifdef LDAP_CONNECTIONLESS
1794         if (conn->c_is_udp) {
1795                 if ( cdn ) {
1796                         ber_str2bv( cdn, 0, 1, &op->o_dn );
1797                         op->o_protocol = LDAP_VERSION2;
1798                 }
1799                 op->o_res_ber = ber_alloc_t( LBER_USE_DER );
1800                 if (op->o_res_ber == NULL) return 1;
1801
1802                 rc = ber_write( op->o_res_ber, (char *)&peeraddr,
1803                         sizeof(struct sockaddr), 0 );
1804
1805                 if (rc != sizeof(struct sockaddr)) {
1806                         Debug( LDAP_DEBUG_ANY, "ber_write failed\n", 0, 0, 0 );
1807                         return 1;
1808                 }
1809
1810                 if (op->o_protocol == LDAP_VERSION2) {
1811                         rc = ber_printf(op->o_res_ber, "{is{" /*}}*/, op->o_msgid, "");
1812                         if (rc == -1) {
1813                                 Debug( LDAP_DEBUG_ANY, "ber_write failed\n", 0, 0, 0 );
1814                                 return rc;
1815                         }
1816                 }
1817         }
1818 #endif /* LDAP_CONNECTIONLESS */
1819
1820         rc = 0;
1821
1822         /* Don't process requests when the conn is in the middle of a
1823          * Bind, or if it's closing. Also, don't let any single conn
1824          * use up all the available threads, and don't execute if we're
1825          * currently blocked on output. And don't execute if there are
1826          * already pending ops, let them go first.  Abandon operations
1827          * get exceptions to some, but not all, cases.
1828          */
1829         switch( tag ){
1830         default:
1831                 /* Abandon and Unbind are exempt from these checks */
1832                 if (conn->c_conn_state == SLAP_C_CLOSING) {
1833                         defer = "closing";
1834                         break;
1835                 } else if (conn->c_writewaiter) {
1836                         defer = "awaiting write";
1837                         break;
1838                 } else if (conn->c_n_ops_pending) {
1839                         defer = "pending operations";
1840                         break;
1841                 }
1842                 /* FALLTHRU */
1843         case LDAP_REQ_ABANDON:
1844                 /* Unbind is exempt from these checks */
1845                 if (conn->c_n_ops_executing >= connection_pool_max/2) {
1846                         defer = "too many executing";
1847                         break;
1848                 } else if (conn->c_conn_state == SLAP_C_BINDING) {
1849                         defer = "binding";
1850                         break;
1851                 }
1852                 /* FALLTHRU */
1853         case LDAP_REQ_UNBIND:
1854                 break;
1855         }
1856
1857         if( defer ) {
1858                 int max = conn->c_dn.bv_len
1859                         ? slap_conn_max_pending_auth
1860                         : slap_conn_max_pending;
1861
1862                 Debug( LDAP_DEBUG_ANY,
1863                         "connection_input: conn=%lu deferring operation: %s\n",
1864                         conn->c_connid, defer, 0 );
1865                 conn->c_n_ops_pending++;
1866                 LDAP_STAILQ_INSERT_TAIL( &conn->c_pending_ops, op, o_next );
1867                 rc = ( conn->c_n_ops_pending > max ) ? -1 : 0;
1868
1869         } else {
1870                 conn->c_n_ops_executing++;
1871
1872 #if 0
1873                 /*
1874                  * The first op will be processed in the same thread context,
1875                  * Subsequent ops will be submitted to the pool by
1876                  * calling connection_op_activate()
1877                  */
1878                 if ( *c_op == NULL ) {
1879                         /* the first incoming request */
1880                         connection_op_queue( op );
1881                         *c_op = op;
1882                 } else
1883 #endif
1884                 {
1885                         connection_op_activate( op );
1886                 }
1887         }
1888
1889 #ifdef NO_THREADS
1890         if ( conn->c_struct_state != SLAP_C_USED ) {
1891                 /* connection must have got closed underneath us */
1892                 return 1;
1893         }
1894 #endif
1895
1896         assert( conn->c_struct_state == SLAP_C_USED );
1897         return rc;
1898 }
1899
1900 static int
1901 connection_resched( Connection *conn )
1902 {
1903         Operation *op;
1904
1905         if( conn->c_conn_state == SLAP_C_CLOSING ) {
1906                 int rc;
1907                 ber_socket_t    sd;
1908                 ber_sockbuf_ctrl( conn->c_sb, LBER_SB_OPT_GET_FD, &sd );
1909
1910                 /* use trylock to avoid possible deadlock */
1911                 rc = ldap_pvt_thread_mutex_trylock( MCA_GET_CONN_MUTEX( sd ) );
1912
1913                 if( rc ) {
1914                         Debug( LDAP_DEBUG_TRACE,
1915                                 "connection_resched: reaquiring locks conn=%lu sd=%d\n",
1916                                 conn->c_connid, sd, 0 );
1917                         /*
1918                          * reaquire locks in the right order...
1919                          * this may allow another thread to close this connection,
1920                          * so recheck state below.
1921                          */
1922                         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
1923                         ldap_pvt_thread_mutex_lock( MCA_GET_CONN_MUTEX ( sd ) );
1924                         ldap_pvt_thread_mutex_lock( &conn->c_mutex );
1925                 }
1926
1927                 if( conn->c_conn_state != SLAP_C_CLOSING ) {
1928                         Debug( LDAP_DEBUG_TRACE, "connection_resched: "
1929                                 "closed by other thread conn=%lu sd=%d\n",
1930                                 conn->c_connid, sd, 0 );
1931                 } else {
1932                         Debug( LDAP_DEBUG_TRACE, "connection_resched: "
1933                                 "attempting closing conn=%lu sd=%d\n",
1934                                 conn->c_connid, sd, 0 );
1935                         connection_close( conn );
1936                 }
1937
1938                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX( sd ) );
1939                 return 0;
1940         }
1941
1942         if( conn->c_conn_state != SLAP_C_ACTIVE || conn->c_writewaiter ) {
1943                 /* other states need different handling */
1944                 return 0;
1945         }
1946
1947         while ((op = LDAP_STAILQ_FIRST( &conn->c_pending_ops )) != NULL) {
1948                 if ( conn->c_n_ops_executing > connection_pool_max/2 ) break;
1949
1950                 LDAP_STAILQ_REMOVE_HEAD( &conn->c_pending_ops, o_next );
1951                 LDAP_STAILQ_NEXT(op, o_next) = NULL;
1952
1953                 /* pending operations should not be marked for abandonment */
1954                 assert(!op->o_abandon);
1955
1956                 conn->c_n_ops_pending--;
1957                 conn->c_n_ops_executing++;
1958
1959                 connection_op_activate( op );
1960
1961                 if ( conn->c_conn_state == SLAP_C_BINDING ) break;
1962         }
1963         return 0;
1964 }
1965
1966 static void
1967 connection_init_log_prefix( Operation *op )
1968 {
1969         if ( op->o_connid == (unsigned long)(-1) ) {
1970                 snprintf( op->o_log_prefix, sizeof( op->o_log_prefix ),
1971                         "conn=-1 op=%lu", op->o_opid );
1972
1973         } else {
1974                 snprintf( op->o_log_prefix, sizeof( op->o_log_prefix ),
1975                         "conn=%lu op=%lu", op->o_connid, op->o_opid );
1976         }
1977 }
1978
1979 static void connection_op_queue( Operation *op )
1980 {
1981         int status;
1982         ber_tag_t tag = op->o_tag;
1983
1984         if (tag == LDAP_REQ_BIND) {
1985                 op->o_conn->c_conn_state = SLAP_C_BINDING;
1986         }
1987
1988         if (!op->o_dn.bv_len) {
1989                 op->o_authz = op->o_conn->c_authz;
1990                 if ( BER_BVISNULL( &op->o_conn->c_sasl_authz_dn )) {
1991                         ber_dupbv( &op->o_dn, &op->o_conn->c_dn );
1992                         ber_dupbv( &op->o_ndn, &op->o_conn->c_ndn );
1993                 } else {
1994                         ber_dupbv( &op->o_dn, &op->o_conn->c_sasl_authz_dn );
1995                         ber_dupbv( &op->o_ndn, &op->o_conn->c_sasl_authz_dn );
1996                 }
1997         }
1998
1999         op->o_authtype = op->o_conn->c_authtype;
2000         ber_dupbv( &op->o_authmech, &op->o_conn->c_authmech );
2001         
2002         if (!op->o_protocol) {
2003                 op->o_protocol = op->o_conn->c_protocol
2004                         ? op->o_conn->c_protocol : LDAP_VERSION3;
2005         }
2006
2007         if (op->o_conn->c_conn_state == SLAP_C_INACTIVE &&
2008                 op->o_protocol > LDAP_VERSION2)
2009         {
2010                 op->o_conn->c_conn_state = SLAP_C_ACTIVE;
2011         }
2012
2013         op->o_connid = op->o_conn->c_connid;
2014         connection_init_log_prefix( op );
2015
2016         LDAP_STAILQ_INSERT_TAIL( &op->o_conn->c_ops, op, o_next );
2017 }
2018
2019 static int connection_op_activate( Operation *op )
2020 {
2021         int rc;
2022         ber_tag_t tag = op->o_tag;
2023
2024         connection_op_queue( op );
2025
2026         rc = ldap_pvt_thread_pool_submit( &connection_pool,
2027                 connection_operation, (void *) op );
2028
2029         if ( rc != 0 ) {
2030                 Debug( LDAP_DEBUG_ANY,
2031                         "connection_op_activate: submit failed (%d) for conn=%lu\n",
2032                         rc, op->o_connid, 0 );
2033                 /* should move op to pending list */
2034         }
2035
2036         return rc;
2037 }
2038
2039 #ifdef SLAP_LIGHTWEIGHT_DISPATCHER
2040 int connection_write_activate( ber_socket_t s )
2041 {
2042         int rc;
2043
2044         /*
2045          * suspend reading on this file descriptor until a connection processing
2046          * thread write data on it. Otherwise the listener thread will repeatedly
2047          * submit the same event on it to the pool.
2048          */
2049
2050 #ifndef SLAP_LIGHTWEIGHT_DISPATCHER
2051         slapd_clr_write( s, 0);
2052         c->c_n_write++;
2053 #endif
2054
2055         rc = ldap_pvt_thread_pool_submit( &connection_pool,
2056                 connection_read_thread, (void *) s );
2057
2058         if( rc != 0 ) {
2059                 Debug( LDAP_DEBUG_ANY,
2060                         "connection_write_activiate(%d): submit failed (%d)\n",
2061                         (int) s, rc, 0 );
2062         }
2063         return rc;
2064 }
2065
2066 static
2067 #endif
2068 int connection_write(ber_socket_t s)
2069 {
2070         Connection *c;
2071         Operation *op;
2072
2073         assert( connections != NULL );
2074
2075         ldap_pvt_thread_mutex_lock( MCA_GET_CONN_MUTEX( s ) );
2076
2077         c = connection_get( s );
2078         if( c == NULL ) {
2079                 Debug( LDAP_DEBUG_ANY,
2080                         "connection_write(%ld): no connection!\n",
2081                         (long)s, 0, 0 );
2082                 slapd_remove(s, 1, 0);
2083                 ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX( s ) );
2084                 return -1;
2085         }
2086
2087 #ifndef SLAP_LIGHTWEIGHT_DISPATCHER
2088         slapd_clr_write( s, 0);
2089         c->c_n_write++;
2090 #endif
2091
2092         Debug( LDAP_DEBUG_TRACE,
2093                 "connection_write(%d): waking output for id=%lu\n",
2094                 s, c->c_connid, 0 );
2095         ldap_pvt_thread_cond_signal( &c->c_write_cv );
2096
2097         if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_READ, NULL ) ) {
2098                 slapd_set_read( s, 1 );
2099         }
2100         if ( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_NEEDS_WRITE, NULL ) ) {
2101                 slapd_set_write( s, 1 );
2102         }
2103
2104         /* If there are ops pending because of a writewaiter,
2105          * start one up.
2106          */
2107         while ((op = LDAP_STAILQ_FIRST( &c->c_pending_ops )) != NULL) {
2108                 if ( !c->c_writewaiter ) break;
2109                 if ( c->c_n_ops_executing > connection_pool_max/2 ) break;
2110
2111                 LDAP_STAILQ_REMOVE_HEAD( &c->c_pending_ops, o_next );
2112                 LDAP_STAILQ_NEXT(op, o_next) = NULL;
2113
2114                 /* pending operations should not be marked for abandonment */
2115                 assert(!op->o_abandon);
2116
2117                 c->c_n_ops_pending--;
2118                 c->c_n_ops_executing++;
2119
2120                 connection_op_activate( op );
2121
2122                 break;
2123         }
2124         connection_return( c );
2125
2126         ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) );
2127
2128         return 0;
2129 }
2130
2131 void
2132 connection_fake_init(
2133         Connection *conn,
2134         Operation *op,
2135         void *ctx )
2136 {
2137         conn->c_connid = -1;
2138         conn->c_send_ldap_result = slap_send_ldap_result;
2139         conn->c_send_search_entry = slap_send_search_entry;
2140         conn->c_send_search_reference = slap_send_search_reference;
2141         conn->c_listener = (Listener *)&dummy_list;
2142         conn->c_peer_domain = slap_empty_bv;
2143         conn->c_peer_name = slap_empty_bv;
2144
2145         memset(op, 0, OPERATION_BUFFER_SIZE);
2146         op->o_hdr = (Opheader *)(op+1);
2147         op->o_controls = (void **)(op->o_hdr+1);
2148         /* set memory context */
2149         op->o_tmpmemctx = slap_sl_mem_create(SLAP_SLAB_SIZE, SLAP_SLAB_STACK, ctx);
2150         op->o_tmpmfuncs = &slap_sl_mfuncs;
2151         op->o_threadctx = ctx;
2152
2153         op->o_conn = conn;
2154         op->o_connid = op->o_conn->c_connid;
2155         connection_init_log_prefix( op );
2156
2157         slap_op_time( &op->o_time, &op->o_tincr );
2158 }
2159
2160 void
2161 connection_assign_nextid( Connection *conn )
2162 {
2163         ldap_pvt_thread_mutex_lock( &conn_nextid_mutex );
2164         conn->c_connid = conn_nextid++;
2165         ldap_pvt_thread_mutex_unlock( &conn_nextid_mutex );
2166 }