]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-monitor/init.c
Referrals should not (except in special cases) be
[openldap] / servers / slapd / back-monitor / init.c
index 4173c99536f69f23e62bac491e64f252ad36a878..6a68be5401009ac6a438dc61857ac1ad1d8e9f4c 100644 (file)
@@ -1,34 +1,22 @@
 /* init.c - initialize monitor backend */
-/*
- * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+/* $OpenLDAP$ */
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 2001-2004 The OpenLDAP Foundation.
+ * Portions Copyright 2001-2003 Pierangelo Masarati.
+ * 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 file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
  */
-/*
- * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
- * 
- * This work has beed deveolped for the OpenLDAP Foundation 
- * in the hope that it may be useful to the Open Source community, 
- * but WITHOUT ANY WARRANTY.
- * 
- * Permission is granted to anyone to use this software for any purpose
- * on any computer system, and to alter it and redistribute it, subject
- * to the following restrictions:
- * 
- * 1. The author and SysNet s.n.c. are not responsible for the consequences
- *    of use of this software, no matter how awful, even if they arise from
- *    flaws in it.
- * 
- * 2. The origin of this software must not be misrepresented, either by
- *    explicit claim or by omission.  Since few users ever read sources,
- *    credits should appear in the documentation.
- * 
- * 3. Altered versions must be plainly marked as such, and must not be
- *    misrepresented as being the original software.  Since few users
- *    ever read sources, credits should appear in the documentation.
- *    SysNet s.n.c. cannot be responsible for the consequences of the
- *    alterations.
- * 
- * 4. This notice may not be removed or altered.
+/* ACKNOWLEDGEMENTS:
+ * This work was initially developed by Pierangelo Masarati for inclusion
+ * in OpenLDAP Software.
  */
 
 #include "portable.h"
@@ -41,7 +29,7 @@
 #include "lber_pvt.h"
 #include "back-monitor.h"
 
-#define INTEGRATE_CORE_SCHEMA
+#undef INTEGRATE_CORE_SCHEMA
 
 /*
  * used by many functions to add description to entries
@@ -67,7 +55,7 @@ struct monitorsubsys monitor_subsys[] = {
                monitor_subsys_database_init,
                NULL,   /* update */
                NULL,   /* create */
-               NULL    /* modify */
+               monitor_subsys_database_modify
                }, { 
                SLAPD_MONITOR_BACKEND, SLAPD_MONITOR_BACKEND_NAME, 
                BER_BVNULL, BER_BVNULL, BER_BVNULL,
@@ -148,13 +136,21 @@ struct monitorsubsys monitor_subsys[] = {
                monitor_subsys_time_update,
                NULL,   /* create */
                NULL,   /* modify */
+               }, { 
+               SLAPD_MONITOR_OVERLAY, SLAPD_MONITOR_OVERLAY_NAME,
+               BER_BVNULL, BER_BVNULL, BER_BVNULL,
+               MONITOR_F_PERSISTENT_CH,
+               monitor_subsys_overlay_init,
+               NULL,   /* update */
+               NULL,   /* create */
+               NULL,   /* modify */
        }, { -1, NULL }
 };
 
-#ifdef SLAPD_MONITOR_DYNAMIC
+#if SLAPD_MONITOR == SLAPD_MOD_DYNAMIC
 
 int
-back_monitor_LTX_init_module( int argc, char *argv[] )
+init_module( int argc, char *argv[] )
 {
        BackendInfo bi;
 
@@ -165,7 +161,7 @@ back_monitor_LTX_init_module( int argc, char *argv[] )
        return 0;
 }
 
-#endif /* SLAPD_MONITOR_DYNAMIC */
+#endif /* SLAPD_MONITOR */
 
 int
 monitor_back_initialize(
@@ -219,6 +215,9 @@ monitor_back_initialize(
        bi->bi_tool_entry_put = 0;
        bi->bi_tool_entry_reindex = 0;
        bi->bi_tool_sync = 0;
+       bi->bi_tool_dn2id_get = 0;
+       bi->bi_tool_id2entry_get = 0;
+       bi->bi_tool_entry_modify = 0;
 
        bi->bi_connection_init = 0;
        bi->bi_connection_destroy = 0;
@@ -232,86 +231,15 @@ monitor_back_db_init(
 )
 {
        struct monitorinfo      *mi;
-       int                     rc;
+       int                     i, rc;
        struct berval           dn, ndn;
        struct berval           bv;
+       const char              *text;
 
-       /*
-        * database monitor can be defined once only
-        */
-       if ( be_monitor ) {
-#ifdef NEW_LOGGING
-               LDAP_LOG( OPERATION, CRIT,
-                       "only one monitor backend is allowed\n", 0, 0, 0);
-#else
-               Debug( LDAP_DEBUG_ANY,
-                       "only one monitor backend is allowed\n", 0, 0, 0 );
-#endif
-               return( -1 );
-       }
-       be_monitor = be;
-
-       /* indicate system schema supported */
-       be->be_flags |= SLAP_BFLAG_MONITOR;
-
-       dn.bv_val = SLAPD_MONITOR_DN;
-       dn.bv_len = sizeof( SLAPD_MONITOR_DN ) - 1;
-
-       rc = dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL );
-       if( rc != LDAP_SUCCESS ) {
-#ifdef NEW_LOGGING
-               LDAP_LOG( OPERATION, CRIT,
-                       "unable to normalize monitor DN \"" SLAPD_MONITOR_DN
-                       "\"\n" , 0, 0, 0 );
-#else
-               Debug( LDAP_DEBUG_ANY,
-                       "unable to normalize monitor DN \"" SLAPD_MONITOR_DN
-                       "\"\n", 0, 0, 0 );
-#endif
-               return -1;
-       }
-
-       ber_dupbv( &bv, &dn );
-       ber_bvarray_add( &be->be_suffix, &bv );
-       ber_bvarray_add( &be->be_nsuffix, &ndn );
-
-       mi = ( struct monitorinfo * )ch_calloc( sizeof( struct monitorinfo ), 1 );
-       if ( mi == NULL ) {
-#ifdef NEW_LOGGING
-               LDAP_LOG( OPERATION, CRIT,
-                       "unable to initialize monitor backend\n", 0, 0, 0 );
-#else
-               Debug( LDAP_DEBUG_ANY,
-                       "unable to initialize monitor backend\n", 0, 0, 0 );
-#endif
-               return -1;
-       }
-
-       memset( mi, 0, sizeof( struct monitorinfo ) );
-
-       ldap_pvt_thread_mutex_init( &mi->mi_cache_mutex );
-
-       be->be_private = mi;
-       
-       return 0;
-}
-
-int
-monitor_back_db_open(
-       BackendDB       *be
-)
-{
-       struct monitorinfo      *mi = (struct monitorinfo *)be->be_private;
-       struct monitorsubsys    *ms;
-       Entry                   *e, *e_tmp;
-       struct monitorentrypriv *mp;
-       int                     i, k;
-       char                    buf[ BACKMONITOR_BUFSIZE ], *end_of_line;
-       const char              *text;
-       struct berval           bv;
        struct m_s {
                char    *name;
                char    *schema;
+               slap_mask_t flags;
                int     offset;
        } moc[] = {
                { "monitor", "( 1.3.6.1.4.1.4203.666.3.2 "
@@ -329,46 +257,48 @@ monitor_back_db_open(
                                "$ postalCode "
 #endif
                                "$ seeAlso "
+                               "$ labeledURI "
                                "$ monitoredInfo "
                                "$ managedInfo "
-                       ") )",
+                               "$ monitorOverlay "
+                       ") )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitor) },
                { "monitorServer", "( 1.3.6.1.4.1.4203.666.3.7 "
                        "NAME 'monitorServer' "
                        "DESC 'Server monitoring root entry' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitorServer) },
                { "monitorContainer", "( 1.3.6.1.4.1.4203.666.3.8 "
                        "NAME 'monitorContainer' "
                        "DESC 'monitor container class' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitorContainer) },
                { "monitorCounterObject", "( 1.3.6.1.4.1.4203.666.3.9 "
                        "NAME 'monitorCounterObject' "
                        "DESC 'monitor counter class' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitorCounterObject) },
                { "monitorOperation", "( 1.3.6.1.4.1.4203.666.3.10 "
                        "NAME 'monitorOperation' "
                        "DESC 'monitor operation class' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitorOperation) },
                { "monitorConnection", "( 1.3.6.1.4.1.4203.666.3.11 "
                        "NAME 'monitorConnection' "
                        "DESC 'monitor connection class' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitorConnection) },
                { "managedObject", "( 1.3.6.1.4.1.4203.666.3.12 "
                        "NAME 'managedObject' "
                        "DESC 'monitor managed entity class' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_managedObject) },
                { "monitoredObject", "( 1.3.6.1.4.1.4203.666.3.13 "
                        "NAME 'monitoredObject' "
                        "DESC 'monitor monitored entity class' "
-                       "SUP monitor STRUCTURAL )",
+                       "SUP monitor STRUCTURAL )", SLAP_OC_OPERATIONAL|SLAP_OC_HIDE,
                        offsetof(struct monitorinfo, mi_oc_monitoredObject) },
-               { NULL, NULL, -1 }
+               { NULL, NULL, 0, -1 }
        }, mat[] = {
                { "monitoredInfo", "( 1.3.6.1.4.1.4203.666.1.14 "
                        "NAME 'monitoredInfo' "
@@ -378,12 +308,12 @@ monitor_back_db_open(
                        "SUBSTR caseIgnoreSubstringsMatch "
                        "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitoredInfo) },
                { "managedInfo", "( 1.3.6.1.4.1.4203.666.1.15 "
                        "NAME 'managedInfo' "
                        "DESC 'monitor managed info' "
-                       "SUP name )",
+                       "SUP name )", SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_managedInfo) },
                { "monitorCounter", "( 1.3.6.1.4.1.4203.666.1.16 "
                        "NAME 'monitorCounter' "
@@ -392,28 +322,28 @@ monitor_back_db_open(
                        "ORDERING integerOrderingMatch "
                        "SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorCounter) },
                { "monitorOpCompleted", "( 1.3.6.1.4.1.4203.666.1.17 "
                        "NAME 'monitorOpCompleted' "
                        "DESC 'monitor completed operations' "
                        "SUP monitorCounter "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorOpCompleted) },
                { "monitorOpInitiated", "( 1.3.6.1.4.1.4203.666.1.18 "
                        "NAME 'monitorOpInitiated' "
                        "DESC 'monitor initiated operations' "
                        "SUP monitorCounter "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorOpInitiated) },
                { "monitorConnectionNumber", "( 1.3.6.1.4.1.4203.666.1.19 "
                        "NAME 'monitorConnectionNumber' "
                        "DESC 'monitor connection number' "
                        "SUP monitorCounter "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorConnectionNumber) },
                { "monitorConnectionAuthzDN", "( 1.3.6.1.4.1.4203.666.1.20 "
                        "NAME 'monitorConnectionAuthzDN' "
@@ -422,21 +352,21 @@ monitor_back_db_open(
                        "EQUALITY distinguishedNameMatch "
                        "SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorConnectionAuthzDN) },
                { "monitorConnectionLocalAddress", "( 1.3.6.1.4.1.4203.666.1.21 "
                        "NAME 'monitorConnectionLocalAddress' "
                        "DESC 'monitor connection local address' "
                        "SUP monitoredInfo "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorConnectionLocalAddress) },
                { "monitorConnectionPeerAddress", "( 1.3.6.1.4.1.4203.666.1.22 "
                        "NAME 'monitorConnectionPeerAddress' "
                        "DESC 'monitor connection peer address' "
                        "SUP monitoredInfo "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorConnectionPeerAddress) },
                { "monitorTimestamp", "( 1.3.6.1.4.1.4203.666.1.24 "
                        "NAME 'monitorTimestamp' "
@@ -444,60 +374,125 @@ monitor_back_db_open(
                        "EQUALITY generalizedTimeMatch "
                        "ORDERING generalizedTimeOrderingMatch "
                        "SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
-                       "SINGLE-VALUE"
+                       "SINGLE-VALUE "
                        "NO-USER-MODIFICATION "
-                       "USAGE directoryOperation )",
+                       "USAGE directoryOperation )", SLAP_AT_FINAL|SLAP_AT_HIDE,
                        offsetof(struct monitorinfo, mi_ad_monitorTimestamp) },
+               { "monitorOverlay", "( 1.3.6.1.4.1.4203.666.1.27 "
+                       "NAME 'monitorOverlay' "
+                       "DESC 'name of overlays defined for a give database' "
+                       "SUP monitoredInfo "
+                       "NO-USER-MODIFICATION "
+                       "USAGE directoryOperation )", SLAP_AT_HIDE,
+                       offsetof(struct monitorinfo, mi_ad_monitorOverlay) },
+               { "readOnly", "( 1.3.6.1.4.1.4203.666.1.31 "
+                       "NAME 'readOnly' "
+                       "DESC 'read/write status of a given database' "
+                       "EQUALITY booleanMatch "
+                       "SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
+                       "SINGLE-VALUE "
+                       "USAGE directoryOperation )", SLAP_AT_HIDE,
+                       offsetof(struct monitorinfo, mi_ad_readOnly) },
+               { "restrictedOperation", "( 1.3.6.1.4.1.4203.666.1.32 "
+                       "NAME 'restrictedOperation' "
+                       "DESC 'name of restricted operation for a given database' "
+                       "SUP managedInfo )", SLAP_AT_HIDE,
+                       offsetof(struct monitorinfo, mi_ad_restrictedOperation ) },
 #ifdef INTEGRATE_CORE_SCHEMA
-               { NULL, NULL, -1 },     /* description */
-               { NULL, NULL, -1 },     /* seeAlso */
-               { NULL, NULL, -1 },     /* l */
+               { NULL, NULL, 0, -1 },  /* description */
+               { NULL, NULL, 0, -1 },  /* seeAlso */
+               { NULL, NULL, 0, -1 },  /* l */
+               { NULL, NULL, 0, -1 },  /* labeledURI */
 #endif /* INTEGRATE_CORE_SCHEMA */
-               { NULL, NULL, -1 }
-#ifdef INTEGRATE_CORE_SCHEMA
+               { NULL, NULL, 0, -1 }
        }, mat_core[] = {
                { "description", "( 2.5.4.13 "
                        "NAME 'description' "
                        "DESC 'RFC2256: descriptive information' "
                        "EQUALITY caseIgnoreMatch "
                        "SUBSTR caseIgnoreSubstringsMatch "
-                       "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1024} )",
+                       "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1024} )", 0,
                        offsetof(struct monitorinfo, mi_ad_description) },
                { "seeAlso", "( 2.5.4.34 "
                        "NAME 'seeAlso' "
                        "DESC 'RFC2256: DN of related object' "
-                       "SUP distinguishedName )",
+                       "SUP distinguishedName )", 0,
                        offsetof(struct monitorinfo, mi_ad_seeAlso) },
                { "l", "( 2.5.4.7 "
                        "NAME ( 'l' 'localityName' ) "
                        "DESC 'RFC2256: locality which this object resides in' "
-                       "SUP name )",
+                       "SUP name )", 0,
                        offsetof(struct monitorinfo, mi_ad_l) },
-               { NULL, NULL, -1 }
-#endif /* INTEGRATE_CORE_SCHEMA */
+               { "labeledURI", "( 1.3.6.1.4.1.250.1.57 "
+                       "NAME 'labeledURI' "
+                       "DESC 'RFC2079: Uniform Resource Identifier with optional label' "
+                       "EQUALITY caseExactMatch "
+                       "SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )", 0,
+                       offsetof(struct monitorinfo, mi_ad_labeledURI) },
+               { NULL, NULL, 0, -1 }
        };
        
-       struct tm               *tms;
-       static char             tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
-
        /*
-        * Start
+        * database monitor can be defined once only
         */
-       ldap_pvt_thread_mutex_lock( &gmtime_mutex );
-#ifdef HACK_LOCAL_TIME
-       tms = localtime( &starttime );
-       lutil_localtime( tmbuf, sizeof(tmbuf), tms, -timezone );
-#else /* !HACK_LOCAL_TIME */
-       tms = gmtime( &starttime );
-       lutil_gentime( tmbuf, sizeof(tmbuf), tms );
-#endif /* !HACK_LOCAL_TIME */
-       ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
+       if ( be_monitor ) {
+#ifdef NEW_LOGGING
+               LDAP_LOG( OPERATION, CRIT,
+                       "only one monitor backend is allowed\n", 0, 0, 0);
+#else
+               Debug( LDAP_DEBUG_ANY,
+                       "only one monitor backend is allowed\n", 0, 0, 0 );
+#endif
+               return( -1 );
+       }
+       be_monitor = be;
 
-       mi->mi_startTime.bv_val = tmbuf;
-       mi->mi_startTime.bv_len = strlen( tmbuf );
+       /* indicate system schema supported */
+       SLAP_BFLAGS(be) |= SLAP_BFLAG_MONITOR;
+
+       dn.bv_val = SLAPD_MONITOR_DN;
+       dn.bv_len = sizeof( SLAPD_MONITOR_DN ) - 1;
+
+       rc = dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL );
+       if( rc != LDAP_SUCCESS ) {
+#ifdef NEW_LOGGING
+               LDAP_LOG( OPERATION, CRIT,
+                       "unable to normalize monitor DN \"%s\"\n",
+                       SLAPD_MONITOR_DN, 0, 0 );
+#else
+               Debug( LDAP_DEBUG_ANY,
+                       "unable to normalize monitor DN \"%s\"\n",
+                       SLAPD_MONITOR_DN, 0, 0 );
+#endif
+               return -1;
+       }
+
+       ber_dupbv( &bv, &dn );
+       ber_bvarray_add( &be->be_suffix, &bv );
+       ber_bvarray_add( &be->be_nsuffix, &ndn );
+
+       mi = ( struct monitorinfo * )ch_calloc( sizeof( struct monitorinfo ), 1 );
+       if ( mi == NULL ) {
+#ifdef NEW_LOGGING
+               LDAP_LOG( OPERATION, CRIT,
+                       "unable to initialize monitor backend\n", 0, 0, 0 );
+#else
+               Debug( LDAP_DEBUG_ANY,
+                       "unable to initialize monitor backend\n", 0, 0, 0 );
+#endif
+               return -1;
+       }
 
+       memset( mi, 0, sizeof( struct monitorinfo ) );
+
+       ldap_pvt_thread_mutex_init( &mi->mi_cache_mutex );
+
+       be->be_private = mi;
+       
+#ifdef INTEGRATE_CORE_SCHEMA
        /* prepare for schema integration */
        for ( k = 0; mat[k].name != NULL; k++ );
+#endif /* INTEGRATE_CORE_SCHEMA */
 
        for ( i = 0; mat_core[i].name != NULL; i++ ) {
                AttributeDescription    **ad;
@@ -539,7 +534,7 @@ monitor_back_db_open(
                AttributeDescription    **ad;
 
                at = ldap_str2attributetype( mat[i].schema, &code,
-                               &err, LDAP_SCHEMA_ALLOW_ALL );
+                       &err, LDAP_SCHEMA_ALLOW_ALL );
                if ( !at ) {
 #ifdef NEW_LOGGING
                        LDAP_LOG( OPERATION, CRIT, "monitor_back_db_init: "
@@ -593,6 +588,8 @@ monitor_back_db_open(
 #endif
                        return -1;
                }
+
+               (*ad)->ad_type->sat_flags |= mat[i].flags;
        }
 
        for ( i = 0; moc[i].name; i++ ) {
@@ -661,9 +658,66 @@ monitor_back_db_open(
                        return -1;
                }
 
+               Oc->soc_flags |= moc[i].flags;
+
                ((ObjectClass **)&(((char *)mi)[moc[i].offset]))[0] = Oc;
        }
 
+       return 0;
+}
+
+int
+monitor_back_db_open(
+       BackendDB       *be
+)
+{
+       struct monitorinfo      *mi = (struct monitorinfo *)be->be_private;
+       struct monitorsubsys    *ms;
+       Entry                   *e, *e_tmp;
+       struct monitorentrypriv *mp;
+       int                     i;
+       char                    buf[ BACKMONITOR_BUFSIZE ], *end_of_line;
+       struct berval           bv;
+       struct tm               *tms;
+#ifdef HAVE_GMTIME_R
+       struct tm               tm_buf;
+#endif
+       static char             tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
+
+       /*
+        * Start
+        */
+#ifndef HAVE_GMTIME_R
+       ldap_pvt_thread_mutex_lock( &gmtime_mutex );
+#endif
+#ifdef HACK_LOCAL_TIME
+# ifdef HAVE_LOCALTIME_R
+       tms = localtime_r( &starttime, &tm_buf );
+# else
+       tms = localtime( &starttime );
+# endif /* HAVE_LOCALTIME_R */
+       lutil_localtime( tmbuf, sizeof(tmbuf), tms, -timezone );
+#else /* !HACK_LOCAL_TIME */
+# ifdef HAVE_GMTIME_R
+       tms = gmtime_r( &starttime, &tm_buf );
+# else
+       tms = gmtime( &starttime );
+# endif /* HAVE_GMTIME_R */
+       lutil_gentime( tmbuf, sizeof(tmbuf), tms );
+#endif /* !HACK_LOCAL_TIME */
+#ifndef HAVE_GMTIME_R
+       ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
+#endif
+
+       mi->mi_startTime.bv_val = tmbuf;
+       mi->mi_startTime.bv_len = strlen( tmbuf );
+
+       if ( BER_BVISEMPTY( &be->be_rootdn ) ) {
+               BER_BVSTR( &mi->mi_creatorsName, SLAPD_ANONYMOUS );
+       } else {
+               mi->mi_creatorsName = be->be_rootdn;
+       }
+
        /*      
         * Create all the subsystem specific entries
         */
@@ -717,12 +771,16 @@ monitor_back_db_open(
                                "objectClass: %s\n"
                                "structuralObjectClass: %s\n"
                                "cn: %s\n"
+                               "creatorsName: %s\n"
+                               "modifiersName: %s\n"
                                "createTimestamp: %s\n"
                                "modifyTimestamp: %s\n",
                                monitor_subsys[ i ].mss_dn.bv_val,
                                mi->mi_oc_monitorContainer->soc_cname.bv_val,
                                mi->mi_oc_monitorContainer->soc_cname.bv_val,
                                monitor_subsys[ i ].mss_name,
+                               mi->mi_creatorsName.bv_val,
+                               mi->mi_creatorsName.bv_val,
                                mi->mi_startTime.bv_val,
                                mi->mi_startTime.bv_val );
                
@@ -768,7 +826,7 @@ monitor_back_db_open(
         * creates the "cn=Monitor" entry 
         */
        snprintf( buf, sizeof( buf ), 
-               "dn: " SLAPD_MONITOR_DN "\n"
+               "dn: %s\n"
                "objectClass: %s\n"
                "structuralObjectClass: %s\n"
                "cn: Monitor\n"
@@ -778,8 +836,11 @@ monitor_back_db_open(
                "%s: createTimestamp reflects the time this server instance was created.\n"
                "%s: modifyTimestamp reflects the time this server instance was last accessed.\n"
 #endif
+               "creatorsName: %s\n"
+               "modifiersName: %s\n"
                "createTimestamp: %s\n"
                "modifyTimestamp: %s\n",
+               SLAPD_MONITOR_DN,
                mi->mi_oc_monitorServer->soc_cname.bv_val,
                mi->mi_oc_monitorServer->soc_cname.bv_val,
                mi->mi_ad_description->ad_cname.bv_val,
@@ -788,6 +849,8 @@ monitor_back_db_open(
                mi->mi_ad_description->ad_cname.bv_val,
                mi->mi_ad_description->ad_cname.bv_val,
 #endif
+               mi->mi_creatorsName.bv_val,
+               mi->mi_creatorsName.bv_val,
                mi->mi_startTime.bv_val,
                mi->mi_startTime.bv_val );
 
@@ -890,7 +953,7 @@ monitor_back_config(
        /*
         * eventually, will hold backend specific configuration parameters
         */
-       return 0;
+       return SLAP_CONF_UNKNOWN;
 }
 
 int
@@ -915,15 +978,7 @@ monitor_back_db_config(
                ber_str2bv( argv[ 1 ], 0, 1, &mi->mi_l );
 
        } else {
-#ifdef NEW_LOGGING
-               LDAP_LOG( CONFIG, INFO,
-                       "line %d of file '%s' will be ignored\n",
-                       lineno, fname, 0 );
-#else
-               Debug( LDAP_DEBUG_CONFIG, 
-                       "line %d of file '%s' will be ignored\n",
-                       lineno, fname, 0 );
-#endif
+               return SLAP_CONF_UNKNOWN;
        }
 
        return( 0 );