1 /* init.c - initialize various things */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/init.c,v 1.97.2.9 2008/02/12 00:46:46 quanah Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2008 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17 * All rights reserved.
19 * Redistribution and use in source and binary forms are permitted
20 * provided that this notice is preserved and that due credit is given
21 * to the University of Michigan at Ann Arbor. The name of the University
22 * may not be used to endorse or promote products derived from this
23 * software without specific prior written permission. This software
24 * is provided ``as is'' without express or implied warranty.
31 #include <ac/socket.h>
32 #include <ac/string.h>
41 * read-only global variables or variables only written by the listener
42 * thread (after they are initialized) - no need to protect them with a mutex.
47 int ldap_syslog
= LDAP_DEBUG_STATS
;
53 int ldap_syslog_level
= LOG_DEBUG
;
56 BerVarray default_referral
= NULL
;
58 struct berval AllUser
= BER_BVC( LDAP_ALL_USER_ATTRIBUTES
);
59 struct berval AllOper
= BER_BVC( LDAP_ALL_OPERATIONAL_ATTRIBUTES
);
60 struct berval NoAttrs
= BER_BVC( LDAP_NO_ATTRS
);
63 * global variables that need mutex protection
65 ldap_pvt_thread_pool_t connection_pool
;
66 int connection_pool_max
= SLAP_MAX_WORKER_THREADS
;
67 int slap_tool_thread_max
= 1;
68 ldap_pvt_thread_mutex_t gmtime_mutex
;
70 slap_counters_t slap_counters
, *slap_counters_list
;
72 static const char* slap_name
= NULL
;
73 int slapMode
= SLAP_UNDEFINED_MODE
;
76 slap_init( int mode
, const char *name
)
82 if ( slapMode
!= SLAP_UNDEFINED_MODE
) {
83 /* Make sure we write something to stderr */
84 slap_debug
|= LDAP_DEBUG_NONE
;
85 Debug( LDAP_DEBUG_ANY
,
86 "%s init: init called twice (old=%d, new=%d)\n",
87 name
, slapMode
, mode
);
97 if ( module_init() != 0 ) {
98 slap_debug
|= LDAP_DEBUG_NONE
;
99 Debug( LDAP_DEBUG_ANY
,
100 "%s: module_init failed\n",
106 if ( slap_schema_init( ) != 0 ) {
107 slap_debug
|= LDAP_DEBUG_NONE
;
108 Debug( LDAP_DEBUG_ANY
,
109 "%s: slap_schema_init failed\n",
114 if ( filter_init() != 0 ) {
115 slap_debug
|= LDAP_DEBUG_NONE
;
116 Debug( LDAP_DEBUG_ANY
,
117 "%s: filter_init failed\n",
122 if ( entry_init() != 0 ) {
123 slap_debug
|= LDAP_DEBUG_NONE
;
124 Debug( LDAP_DEBUG_ANY
,
125 "%s: entry_init failed\n",
130 switch ( slapMode
& SLAP_MODE
) {
131 case SLAP_SERVER_MODE
:
136 Debug( LDAP_DEBUG_TRACE
,
137 "%s init: initiated %s.\n", name
,
138 (mode
& SLAP_MODE
) == SLAP_TOOL_MODE
? "tool" : "server",
143 ldap_pvt_thread_pool_init( &connection_pool
,
144 connection_pool_max
, 0);
146 slap_counters_init( &slap_counters
);
148 ldap_pvt_thread_mutex_init( &slapd_rq
.rq_mutex
);
149 LDAP_STAILQ_INIT( &slapd_rq
.task_list
);
150 LDAP_STAILQ_INIT( &slapd_rq
.run_list
);
152 ldap_pvt_thread_mutex_init( &gmtime_mutex
);
155 rc
= slap_sasl_init();
158 rc
= backend_init( );
166 slap_debug
|= LDAP_DEBUG_NONE
;
167 Debug( LDAP_DEBUG_ANY
,
168 "%s init: undefined mode (%d).\n", name
, mode
, 0 );
174 if ( slap_controls_init( ) != 0 ) {
175 slap_debug
|= LDAP_DEBUG_NONE
;
176 Debug( LDAP_DEBUG_ANY
,
177 "%s: slap_controls_init failed\n",
182 if ( frontend_init() ) {
183 slap_debug
|= LDAP_DEBUG_NONE
;
184 Debug( LDAP_DEBUG_ANY
,
185 "%s: frontend_init failed\n",
190 if ( overlay_init() ) {
191 slap_debug
|= LDAP_DEBUG_NONE
;
192 Debug( LDAP_DEBUG_ANY
,
193 "%s: overlay_init failed\n",
198 if ( glue_sub_init() ) {
199 slap_debug
|= LDAP_DEBUG_NONE
;
200 Debug( LDAP_DEBUG_ANY
,
201 "%s: glue/subordinate init failed\n",
208 slap_debug
|= LDAP_DEBUG_NONE
;
209 Debug( LDAP_DEBUG_ANY
,
210 "%s: acl_init failed\n",
218 int slap_startup( Backend
*be
)
220 Debug( LDAP_DEBUG_TRACE
,
221 "%s startup: initiated.\n",
225 return backend_startup( be
);
228 int slap_shutdown( Backend
*be
)
230 Debug( LDAP_DEBUG_TRACE
,
231 "%s shutdown: initiated\n",
234 /* let backends do whatever cleanup they need to do */
235 return backend_shutdown( be
);
238 int slap_destroy(void)
242 Debug( LDAP_DEBUG_TRACE
,
243 "%s destroy: freeing system resources.\n",
246 if ( default_referral
) {
247 ber_bvarray_free( default_referral
);
250 /* clear out any thread-keys for the main thread */
251 ldap_pvt_thread_pool_context_reset( ldap_pvt_thread_pool_context());
253 rc
= backend_destroy();
257 /* rootdse destroy goes before entry_destroy()
258 * because it may use entry_free() */
262 switch ( slapMode
& SLAP_MODE
) {
263 case SLAP_SERVER_MODE
:
265 slap_counters_destroy( &slap_counters
);
269 Debug( LDAP_DEBUG_ANY
,
270 "slap_destroy(): undefined mode (%d).\n", slapMode
, 0, 0 );
279 ldap_pvt_thread_destroy();
281 /* should destroy the above mutex */
285 void slap_counters_init( slap_counters_t
*sc
)
289 ldap_pvt_thread_mutex_init( &sc
->sc_mutex
);
290 ldap_pvt_mp_init( sc
->sc_bytes
);
291 ldap_pvt_mp_init( sc
->sc_pdu
);
292 ldap_pvt_mp_init( sc
->sc_entries
);
293 ldap_pvt_mp_init( sc
->sc_refs
);
295 ldap_pvt_mp_init( sc
->sc_ops_initiated
);
296 ldap_pvt_mp_init( sc
->sc_ops_completed
);
299 for ( i
= 0; i
< SLAP_OP_LAST
; i
++ ) {
300 ldap_pvt_mp_init( sc
->sc_ops_initiated_
[ i
] );
301 ldap_pvt_mp_init( sc
->sc_ops_completed_
[ i
] );
303 #endif /* SLAPD_MONITOR */
306 void slap_counters_destroy( slap_counters_t
*sc
)
310 ldap_pvt_thread_mutex_destroy( &sc
->sc_mutex
);
311 ldap_pvt_mp_clear( sc
->sc_bytes
);
312 ldap_pvt_mp_clear( sc
->sc_pdu
);
313 ldap_pvt_mp_clear( sc
->sc_entries
);
314 ldap_pvt_mp_clear( sc
->sc_refs
);
316 ldap_pvt_mp_clear( sc
->sc_ops_initiated
);
317 ldap_pvt_mp_clear( sc
->sc_ops_completed
);
320 for ( i
= 0; i
< SLAP_OP_LAST
; i
++ ) {
321 ldap_pvt_mp_clear( sc
->sc_ops_initiated_
[ i
] );
322 ldap_pvt_mp_clear( sc
->sc_ops_completed_
[ i
] );
324 #endif /* SLAPD_MONITOR */