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