2004-03-17 05:58:29 +08:00
|
|
|
/* overlay.c - deals with overlay subsystem */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2018-03-22 23:35:24 +08:00
|
|
|
* Copyright 2001-2018 The OpenLDAP Foundation.
|
2004-03-17 05:58:29 +08:00
|
|
|
* 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>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Pierangelo Masarati for inclusion
|
|
|
|
* in OpenLDAP Software.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-monitor.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initializes overlay subentries
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
monitor_subsys_overlay_init(
|
2004-11-09 02:52:27 +08:00
|
|
|
BackendDB *be,
|
|
|
|
monitor_subsys_t *ms
|
2004-03-17 05:58:29 +08:00
|
|
|
)
|
|
|
|
{
|
2004-11-09 02:52:27 +08:00
|
|
|
monitor_info_t *mi;
|
2004-09-13 06:12:58 +08:00
|
|
|
Entry *e_overlay, **ep;
|
2004-03-17 05:58:29 +08:00
|
|
|
int i;
|
2004-11-09 02:52:27 +08:00
|
|
|
monitor_entry_t *mp;
|
2004-03-17 05:58:29 +08:00
|
|
|
slap_overinst *on;
|
2004-11-09 02:52:27 +08:00
|
|
|
monitor_subsys_t *ms_database;
|
2004-03-17 05:58:29 +08:00
|
|
|
|
2004-11-09 02:52:27 +08:00
|
|
|
mi = ( monitor_info_t * )be->be_private;
|
2004-03-17 05:58:29 +08:00
|
|
|
|
2004-11-08 18:10:15 +08:00
|
|
|
ms_database = monitor_back_get_subsys( SLAPD_MONITOR_DATABASE_NAME );
|
|
|
|
if ( ms_database == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_backend_init: "
|
|
|
|
"unable to get "
|
|
|
|
"\"" SLAPD_MONITOR_DATABASE_NAME "\" "
|
|
|
|
"subsystem\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-11-09 02:52:27 +08:00
|
|
|
if ( monitor_cache_get( mi, &ms->mss_ndn, &e_overlay ) ) {
|
2004-03-17 05:58:29 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_overlay_init: "
|
2004-09-13 06:12:58 +08:00
|
|
|
"unable to get entry \"%s\"\n",
|
2004-11-08 18:10:15 +08:00
|
|
|
ms->mss_ndn.bv_val, 0, 0 );
|
2004-03-17 05:58:29 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2004-11-09 02:52:27 +08:00
|
|
|
mp = ( monitor_entry_t * )e_overlay->e_private;
|
2004-09-13 06:12:58 +08:00
|
|
|
mp->mp_children = NULL;
|
|
|
|
ep = &mp->mp_children;
|
|
|
|
|
2004-05-06 22:51:14 +08:00
|
|
|
for ( on = overlay_next( NULL ), i = 0; on; on = overlay_next( on ), i++ ) {
|
2004-03-17 05:58:29 +08:00
|
|
|
char buf[ BACKMONITOR_BUFSIZE ];
|
|
|
|
struct berval bv;
|
|
|
|
int j;
|
2004-09-13 06:12:58 +08:00
|
|
|
Entry *e;
|
2005-03-24 13:13:31 +08:00
|
|
|
BackendDB *be;
|
2004-03-17 05:58:29 +08:00
|
|
|
|
2006-01-12 16:40:09 +08:00
|
|
|
bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Overlay %d", i );
|
|
|
|
bv.bv_val = buf;
|
|
|
|
e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, &bv,
|
2012-04-12 15:44:21 +08:00
|
|
|
mi->mi_oc_monitoredObject, NULL, NULL );
|
2004-03-17 05:58:29 +08:00
|
|
|
if ( e == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_overlay_init: "
|
2004-09-13 06:12:58 +08:00
|
|
|
"unable to create entry \"cn=Overlay %d,%s\"\n",
|
2004-11-08 18:10:15 +08:00
|
|
|
i, ms->mss_ndn.bv_val, 0 );
|
2004-03-17 05:58:29 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
2005-04-22 05:05:38 +08:00
|
|
|
ber_str2bv( on->on_bi.bi_type, 0, 0, &bv );
|
2006-01-12 16:40:09 +08:00
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
|
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitorRuntimeConfig,
|
|
|
|
on->on_bi.bi_cf_ocs ? (struct berval *)&slap_true_bv :
|
|
|
|
(struct berval *)&slap_false_bv, NULL );
|
|
|
|
|
2004-03-17 05:58:29 +08:00
|
|
|
attr_merge_normalize_one( e_overlay, mi->mi_ad_monitoredInfo,
|
|
|
|
&bv, NULL );
|
|
|
|
|
2005-03-24 13:13:31 +08:00
|
|
|
j = -1;
|
|
|
|
LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
|
2004-03-17 05:58:29 +08:00
|
|
|
char buf[ SLAP_LDAPDN_MAXLEN ];
|
|
|
|
struct berval dn;
|
|
|
|
|
2005-03-24 13:13:31 +08:00
|
|
|
j++;
|
2004-11-14 01:20:24 +08:00
|
|
|
if ( !overlay_is_inst( be, on->on_bi.bi_type ) ) {
|
2004-03-17 05:58:29 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf( buf, sizeof( buf ), "cn=Database %d,%s",
|
2004-11-08 18:10:15 +08:00
|
|
|
j, ms_database->mss_dn.bv_val );
|
2004-03-17 05:58:29 +08:00
|
|
|
|
2005-04-22 05:05:38 +08:00
|
|
|
ber_str2bv( buf, 0, 0, &dn );
|
2005-04-30 04:29:59 +08:00
|
|
|
attr_merge_normalize_one( e, slap_schema.si_ad_seeAlso,
|
2004-03-17 05:58:29 +08:00
|
|
|
&dn, NULL );
|
|
|
|
}
|
|
|
|
|
2004-11-08 18:55:33 +08:00
|
|
|
mp = monitor_entrypriv_create();
|
|
|
|
if ( mp == NULL ) {
|
|
|
|
return -1;
|
|
|
|
}
|
2004-03-17 05:58:29 +08:00
|
|
|
e->e_private = ( void * )mp;
|
2004-11-08 18:10:15 +08:00
|
|
|
mp->mp_info = ms;
|
|
|
|
mp->mp_flags = ms->mss_flags
|
2004-03-17 05:58:29 +08:00
|
|
|
| MONITOR_F_SUB;
|
|
|
|
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_overlay_init: "
|
2004-09-13 06:12:58 +08:00
|
|
|
"unable to add entry \"cn=Overlay %d,%s\"\n",
|
2004-11-08 18:10:15 +08:00
|
|
|
i, ms->mss_ndn.bv_val, 0 );
|
2004-03-17 05:58:29 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2004-09-13 06:12:58 +08:00
|
|
|
*ep = e;
|
|
|
|
ep = &mp->mp_next;
|
2004-03-17 05:58:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
monitor_cache_release( mi, e_overlay );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|