X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-ldbm%2Finit.c;h=953df87be9dea361b013f1e53916112c602252fc;hb=324431062bff39a1bd3969bd37d4913526dd583f;hp=466fc32e1118b22cbe857b14e761c5c29b5c2277;hpb=b29bf83e7ed28c7fc8ee5b327e8d9db35d95ac9a;p=openldap diff --git a/servers/slapd/back-ldbm/init.c b/servers/slapd/back-ldbm/init.c index 466fc32e11..953df87be9 100644 --- a/servers/slapd/back-ldbm/init.c +++ b/servers/slapd/back-ldbm/init.c @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2004 The OpenLDAP Foundation. + * Copyright 1998-2006 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -23,6 +23,7 @@ #include "slap.h" #include "back-ldbm.h" +#include int ldbm_back_initialize( @@ -31,7 +32,7 @@ ldbm_back_initialize( { static char *controls[] = { LDAP_CONTROL_MANAGEDSAIT, - LDAP_CONTROL_VALUESRETURNFILTER, + LDAP_CONTROL_X_PERMISSIVE_MODIFY, NULL }; @@ -39,9 +40,7 @@ ldbm_back_initialize( bi->bi_flags |= SLAP_BFLAG_INCREMENT | -#ifdef LDBM_SUBENTRIES SLAP_BFLAG_SUBENTRIES | -#endif SLAP_BFLAG_ALIASES | SLAP_BFLAG_REFERRALS; @@ -172,8 +171,8 @@ ldbm_back_db_init( /* delay interval */ li->li_dbsyncwaitinterval = 5; - /* flag to notify ldbm_cache_sync_daemon to shut down */ - li->li_dbshutdown = 0; + /* current wait counter */ + li->li_dbsyncwaitcount = 0; /* initialize various mutex locks & condition variables */ ldap_pvt_thread_rdwr_init( &li->li_giant_rwlock ); @@ -192,22 +191,41 @@ ldbm_back_db_open( ) { struct ldbminfo *li = (struct ldbminfo *) be->be_private; + int rc; + + rc = alock_open( &li->li_alock_info, "slapd", + li->li_directory, ALOCK_UNIQUE ); + if ( rc == ALOCK_BUSY ) { + Debug( LDAP_DEBUG_ANY, + "ldbm_back_db_open: database already in use\n", + 0, 0, 0 ); + return -1; + } else if ( rc == ALOCK_RECOVER ) { + Debug( LDAP_DEBUG_ANY, + "ldbm_back_db_open: unclean shutdown detected;" + " database may be inconsistent!\n", + 0, 0, 0 ); + rc = alock_recover( &li->li_alock_info ); + } + if ( rc != ALOCK_CLEAN ) { + Debug( LDAP_DEBUG_ANY, + "ldbm_back_db_open: alock package is unstable;" + " database may be inconsistent!\n", + 0, 0, 0 ); + } li->li_dbenv = ldbm_initialize_env( li->li_directory, li->li_dbcachesize, &li->li_envdirok ); - /* sync thread */ - if ( li->li_dbsyncfreq > 0 ) + /* If we're in server mode and a sync frequency was set, + * submit a task to perform periodic db syncs. + */ + if (( slapMode & SLAP_SERVER_MODE ) && li->li_dbsyncfreq > 0 ) { - int rc; - rc = ldap_pvt_thread_create( &li->li_dbsynctid, - 0, ldbm_cache_sync_daemon, (void*)be ); - - if ( rc != 0 ) - { - Debug( LDAP_DEBUG_ANY, - "sync ldap_pvt_thread_create failed (%d)\n", rc, 0, 0 ); - return 1; - } + ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex ); + ldap_pvt_runqueue_insert( &slapd_rq, li->li_dbsyncfreq, + ldbm_cache_sync_daemon, be, + "ldbm_cache_sync", be->be_suffix[0].bv_val ); + ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex ); } return 0;