X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Finit.c;h=a8a8e812ea6395eb670ac0fa24128dd1544d197a;hb=b94d5e17e22b58b990dac4d4af5319be915366a6;hp=94530f94377feb158b18d646db077e82928b9c68;hpb=8754c8f2a3ecde86613fdf024ebd830af1eade20;p=openldap diff --git a/servers/slapd/init.c b/servers/slapd/init.c index 94530f9437..a8a8e812ea 100644 --- a/servers/slapd/init.c +++ b/servers/slapd/init.c @@ -1,8 +1,27 @@ /* init.c - initialize various things */ /* $OpenLDAP$ */ -/* - * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2004 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ +/* Portions Copyright (c) 1995 Regents of the University of Michigan. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and that due credit is given + * to the University of Michigan at Ann Arbor. The name of the University + * may not be used to endorse or promote products derived from this + * software without specific prior written permission. This software + * is provided ``as is'' without express or implied warranty. */ #include "portable.h" @@ -15,6 +34,9 @@ #include "slap.h" #include "lber_pvt.h" +#ifdef LDAP_SLAPI +#include "slapi/slapi.h" +#endif /* * read-only global variables or variables only written by the listener @@ -43,7 +65,9 @@ struct berval NoAttrs = BER_BVC( LDAP_NO_ATTRS ); */ ldap_pvt_thread_pool_t connection_pool; int connection_pool_max = SLAP_MAX_WORKER_THREADS; +#ifndef HAVE_GMTIME_R ldap_pvt_thread_mutex_t gmtime_mutex; +#endif #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD ) ldap_pvt_thread_mutex_t passwd_mutex; #endif @@ -71,56 +95,6 @@ ldap_pvt_thread_mutex_t replog_mutex; static const char* slap_name = NULL; int slapMode = SLAP_UNDEFINED_MODE; -/* - * all known control OIDs should be added to this list - */ -char *slap_known_controls[] = { -#ifdef LDAP_CONTROL_REFERRALS - LDAP_CONTROL_REFERRALS, -#endif /* LDAP_CONTROL_REFERRALS */ - - LDAP_CONTROL_MANAGEDSAIT, - -#ifdef LDAP_CONTROL_SUBENTRIES - LDAP_CONTROL_SUBENTRIES, -#endif /* LDAP_CONTROL_SUBENTRIES */ - - LDAP_CONTROL_NOOP, - -#ifdef LDAP_CONTROL_DUPENT_REQUEST - LDAP_CONTROL_DUPENT_REQUEST, -#endif /* LDAP_CONTROL_DUPENT_REQUEST */ - -#ifdef LDAP_CONTROL_DUPENT_RESPONSE - LDAP_CONTROL_DUPENT_RESPONSE, -#endif /* LDAP_CONTROL_DUPENT_RESPONSE */ - -#ifdef LDAP_CONTROL_DUPENT_ENTRY - LDAP_CONTROL_DUPENT_ENTRY, -#endif /* LDAP_CONTROL_DUPENT_ENTRY */ - - LDAP_CONTROL_PAGEDRESULTS, - -#ifdef LDAP_CONTROL_SORTREQUEST - LDAP_CONTROL_SORTREQUEST, -#endif /* LDAP_CONTROL_SORTREQUEST */ - -#ifdef LDAP_CONTROL_SORTRESPONSE - LDAP_CONTROL_SORTRESPONSE, -#endif /* LDAP_CONTROL_SORTRESPONSE */ - -#ifdef LDAP_CONTROL_VLVREQUEST - LDAP_CONTROL_VLVREQUEST, -#endif /* LDAP_CONTROL_VLVREQUEST */ - -#ifdef LDAP_CONTROL_VLVRESPONSE - LDAP_CONTROL_VLVRESPONSE, -#endif /* LDAP_CONTROL_VLVRESPONSE */ - - LDAP_CONTROL_VALUESRETURNFILTER, - NULL -}; - int slap_init( int mode, const char *name ) { @@ -164,7 +138,8 @@ slap_init( int mode, const char *name ) (void) ldap_pvt_thread_initialize(); - ldap_pvt_thread_pool_init(&connection_pool, connection_pool_max, 0); + ldap_pvt_thread_pool_init( &connection_pool, + connection_pool_max, 0); ldap_pvt_thread_mutex_init( &entry2str_mutex ); ldap_pvt_thread_mutex_init( &replog_mutex ); @@ -181,7 +156,9 @@ slap_init( int mode, const char *name ) } #endif +#ifndef HAVE_GMTIME_R ldap_pvt_thread_mutex_init( &gmtime_mutex ); +#endif #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD ) ldap_pvt_thread_mutex_init( &passwd_mutex ); #endif @@ -191,6 +168,7 @@ slap_init( int mode, const char *name ) if( rc == 0 ) { rc = backend_init( ); } + break; default: @@ -224,12 +202,26 @@ int slap_startup( Backend *be ) rc = backend_startup( be ); +#ifdef LDAP_SLAPI + if( rc == 0 ) { + Slapi_PBlock *pb = slapi_pblock_new(); + + if ( slapi_int_call_plugins( NULL, SLAPI_PLUGIN_START_FN, pb ) < 0 ) { + rc = -1; + } + slapi_pblock_destroy( pb ); + } +#endif /* LDAP_SLAPI */ + return rc; } int slap_shutdown( Backend *be ) { int rc; +#ifdef LDAP_SLAPI + Slapi_PBlock *pb; +#endif #ifdef NEW_LOGGING LDAP_LOG( OPERATION, CRIT, @@ -240,12 +232,15 @@ int slap_shutdown( Backend *be ) slap_name, 0, 0 ); #endif - - slap_sasl_destroy(); - /* let backends do whatever cleanup they need to do */ rc = backend_shutdown( be ); +#ifdef LDAP_SLAPI + pb = slapi_pblock_new(); + (void) slapi_int_call_plugins( NULL, SLAPI_PLUGIN_CLOSE_FN, pb ); + slapi_pblock_destroy( pb ); +#endif /* LDAP_SLAPI */ + return rc; } @@ -265,6 +260,8 @@ int slap_destroy(void) rc = backend_destroy(); + slap_sasl_destroy(); + entry_destroy(); ldap_pvt_thread_destroy();