2001-07-15 01:34:24 +08:00
|
|
|
/* database.c - deals with database subsystem */
|
2003-11-27 10:35:20 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2001-2004 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
2003-11-27 10:35:20 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2003-05-15 05:36:34 +08:00
|
|
|
#include <ac/string.h>
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-monitor.h"
|
|
|
|
|
2002-12-14 23:04:37 +08:00
|
|
|
#if defined(LDAP_SLAPI)
|
2003-02-10 10:09:00 +08:00
|
|
|
#include "slapi.h"
|
2002-12-14 23:04:37 +08:00
|
|
|
static int monitor_back_add_plugin( Backend *be, Entry *e );
|
|
|
|
#endif /* defined(LDAP_SLAPI) */
|
|
|
|
|
2004-03-18 06:37:40 +08:00
|
|
|
#if defined(SLAPD_LDAP)
|
|
|
|
#include "../back-ldap/back-ldap.h"
|
|
|
|
#endif /* defined(SLAPD_LDAP) */
|
|
|
|
|
2001-07-15 01:34:24 +08:00
|
|
|
int
|
|
|
|
monitor_subsys_database_init(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct monitorinfo *mi;
|
|
|
|
Entry *e, *e_database, *e_tmp;
|
|
|
|
int i;
|
|
|
|
struct monitorentrypriv *mp;
|
2004-04-27 09:56:38 +08:00
|
|
|
struct berval *tf;
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
assert( be != NULL );
|
|
|
|
|
|
|
|
mi = ( struct monitorinfo * )be->be_private;
|
|
|
|
|
|
|
|
if ( monitor_cache_get( mi,
|
2002-01-03 02:14:29 +08:00
|
|
|
&monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn,
|
2001-07-15 01:34:24 +08:00
|
|
|
&e_database ) ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, CRIT,
|
2001-07-15 01:34:24 +08:00
|
|
|
"monitor_subsys_database_init: "
|
|
|
|
"unable to get entry '%s'\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 0, 0 );
|
2001-07-15 01:34:24 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_database_init: "
|
|
|
|
"unable to get entry '%s'\n%s%s",
|
2002-01-03 02:14:29 +08:00
|
|
|
monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val,
|
2001-07-15 01:34:24 +08:00
|
|
|
"", "" );
|
|
|
|
#endif
|
|
|
|
return( -1 );
|
|
|
|
}
|
2004-04-27 09:56:38 +08:00
|
|
|
tf = (global_restrictops & SLAP_RESTRICT_OP_WRITES) ?
|
|
|
|
(struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv ;
|
|
|
|
attr_merge_one( e_database, mi->mi_ad_readOnly, tf, tf );
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
e_tmp = NULL;
|
|
|
|
for ( i = nBackendDB; i--; ) {
|
2004-03-16 09:22:34 +08:00
|
|
|
char buf[ BACKMONITOR_BUFSIZE ];
|
|
|
|
int j;
|
|
|
|
slap_overinfo *oi = NULL;
|
2004-03-20 20:56:31 +08:00
|
|
|
BackendInfo *bi;
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
be = &backendDB[i];
|
|
|
|
|
2004-03-20 20:56:31 +08:00
|
|
|
bi = be->bd_info;
|
|
|
|
|
2004-03-16 09:22:34 +08:00
|
|
|
if ( strcmp( be->bd_info->bi_type, "over" ) == 0 ) {
|
|
|
|
oi = (slap_overinfo *)be->bd_info;
|
2004-03-20 20:56:31 +08:00
|
|
|
bi = oi->oi_orig;
|
2004-03-16 09:22:34 +08:00
|
|
|
}
|
|
|
|
|
2002-11-30 01:43:28 +08:00
|
|
|
/* Subordinates are not exposed as their own naming context */
|
2003-03-04 06:25:28 +08:00
|
|
|
if ( SLAP_GLUE_SUBORDINATE( be ) ) {
|
2002-11-30 01:43:28 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-07-15 01:34:24 +08:00
|
|
|
snprintf( buf, sizeof( buf ),
|
2002-01-29 01:21:52 +08:00
|
|
|
"dn: cn=Database %d,%s\n"
|
2003-04-13 01:41:49 +08:00
|
|
|
"objectClass: %s\n"
|
|
|
|
"structuralObjectClass: %s\n"
|
2002-01-29 01:21:52 +08:00
|
|
|
"cn: Database %d\n"
|
2003-04-13 01:41:49 +08:00
|
|
|
"description: This object contains the type of the database.\n"
|
2003-05-15 09:19:30 +08:00
|
|
|
"%s: %s\n"
|
|
|
|
"createTimestamp: %s\n"
|
|
|
|
"modifyTimestamp: %s\n",
|
2001-07-15 01:34:24 +08:00
|
|
|
i,
|
2002-01-03 02:14:29 +08:00
|
|
|
monitor_subsys[SLAPD_MONITOR_DATABASE].mss_dn.bv_val,
|
2003-05-18 01:19:16 +08:00
|
|
|
mi->mi_oc_monitoredObject->soc_cname.bv_val,
|
|
|
|
mi->mi_oc_monitoredObject->soc_cname.bv_val,
|
2002-01-29 01:21:52 +08:00
|
|
|
i,
|
2003-05-18 01:19:16 +08:00
|
|
|
mi->mi_ad_monitoredInfo->ad_cname.bv_val,
|
2004-03-20 20:56:31 +08:00
|
|
|
bi->bi_type,
|
2003-05-15 09:19:30 +08:00
|
|
|
mi->mi_startTime.bv_val,
|
|
|
|
mi->mi_startTime.bv_val );
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
e = str2entry( buf );
|
|
|
|
if ( e == NULL ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, CRIT,
|
2001-07-15 01:34:24 +08:00
|
|
|
"monitor_subsys_database_init: "
|
2002-01-29 01:21:52 +08:00
|
|
|
"unable to create entry 'cn=Database %d,%s'\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
i, monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 0 );
|
2001-07-15 01:34:24 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_database_init: "
|
2002-01-29 01:21:52 +08:00
|
|
|
"unable to create entry 'cn=Database %d,%s'\n%s",
|
2001-07-15 01:34:24 +08:00
|
|
|
i,
|
2002-01-03 02:14:29 +08:00
|
|
|
monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val,
|
2001-07-15 01:34:24 +08:00
|
|
|
"" );
|
|
|
|
#endif
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2004-04-06 04:24:18 +08:00
|
|
|
if ( SLAP_MONITOR(be) ) {
|
2003-04-13 01:41:49 +08:00
|
|
|
attr_merge( e, slap_schema.si_ad_monitorContext,
|
|
|
|
be->be_suffix, be->be_nsuffix );
|
|
|
|
attr_merge( e_database, slap_schema.si_ad_monitorContext,
|
|
|
|
be->be_suffix, be->be_nsuffix );
|
2002-06-19 15:57:01 +08:00
|
|
|
} else {
|
2003-04-13 01:41:49 +08:00
|
|
|
attr_merge( e, slap_schema.si_ad_namingContexts,
|
|
|
|
be->be_suffix, be->be_nsuffix );
|
|
|
|
attr_merge( e_database, slap_schema.si_ad_namingContexts,
|
|
|
|
be->be_suffix, be->be_nsuffix );
|
2002-06-19 15:57:01 +08:00
|
|
|
}
|
2004-04-27 09:56:38 +08:00
|
|
|
tf = (be->be_restrictops & SLAP_RESTRICT_OP_WRITES) ?
|
|
|
|
(struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv ;
|
|
|
|
attr_merge_one( e, mi->mi_ad_readOnly, tf, tf );
|
2002-01-29 01:21:52 +08:00
|
|
|
|
2004-03-16 09:22:34 +08:00
|
|
|
if ( oi != NULL ) {
|
|
|
|
slap_overinst *on = oi->oi_list;
|
|
|
|
|
|
|
|
for ( ; on; on = on->on_next ) {
|
|
|
|
struct berval bv;
|
2004-03-17 06:18:45 +08:00
|
|
|
slap_overinst *on2;
|
2004-03-16 09:22:34 +08:00
|
|
|
|
|
|
|
bv.bv_val = on->on_bi.bi_type;
|
|
|
|
bv.bv_len = strlen( bv.bv_val );
|
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitorOverlay,
|
|
|
|
&bv, NULL );
|
2004-03-17 06:18:45 +08:00
|
|
|
|
|
|
|
for ( on2 = overlay_next( NULL ), j = 0; on2; on2 = overlay_next( on2 ), j++ ) {
|
|
|
|
if ( on2->on_bi.bi_type == on->on_bi.bi_type ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert( on2 );
|
|
|
|
|
|
|
|
snprintf( buf, sizeof( buf ),
|
|
|
|
"cn=Overlay %d,%s",
|
|
|
|
j, monitor_subsys[SLAPD_MONITOR_OVERLAY].mss_dn.bv_val );
|
|
|
|
bv.bv_val = buf;
|
|
|
|
bv.bv_len = strlen( buf );
|
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_seeAlso,
|
|
|
|
&bv, NULL );
|
2004-03-16 09:22:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-18 06:37:40 +08:00
|
|
|
#if defined(SLAPD_LDAP)
|
2004-03-20 20:56:31 +08:00
|
|
|
if ( strcmp( bi->bi_type, "ldap" ) == 0 ) {
|
2004-03-18 06:37:40 +08:00
|
|
|
struct ldapinfo *li = (struct ldapinfo *)be->be_private;
|
|
|
|
struct berval bv;
|
|
|
|
|
|
|
|
bv.bv_val = li->url;
|
|
|
|
bv.bv_len = strlen( bv.bv_val );
|
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_labeledURI,
|
|
|
|
&bv, NULL );
|
|
|
|
}
|
|
|
|
#endif /* defined(SLAPD_LDAP) */
|
|
|
|
|
2002-01-29 01:21:52 +08:00
|
|
|
for ( j = nBackendInfo; j--; ) {
|
2004-03-20 20:56:31 +08:00
|
|
|
if ( backendInfo[ j ].bi_type == bi->bi_type ) {
|
2002-11-30 01:43:28 +08:00
|
|
|
struct berval bv;
|
2002-01-29 01:21:52 +08:00
|
|
|
|
|
|
|
snprintf( buf, sizeof( buf ),
|
|
|
|
"cn=Backend %d,%s",
|
|
|
|
j, monitor_subsys[SLAPD_MONITOR_BACKEND].mss_dn.bv_val );
|
2002-11-30 01:43:28 +08:00
|
|
|
bv.bv_val = buf;
|
|
|
|
bv.bv_len = strlen( buf );
|
2003-05-18 01:19:16 +08:00
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_seeAlso,
|
2003-04-13 01:41:49 +08:00
|
|
|
&bv, NULL );
|
2002-01-29 01:21:52 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* we must find it! */
|
|
|
|
assert( j >= 0 );
|
|
|
|
|
2001-07-15 01:34:24 +08:00
|
|
|
mp = ( struct monitorentrypriv * )ch_calloc( sizeof( struct monitorentrypriv ), 1 );
|
|
|
|
e->e_private = ( void * )mp;
|
|
|
|
mp->mp_next = e_tmp;
|
|
|
|
mp->mp_children = NULL;
|
|
|
|
mp->mp_info = &monitor_subsys[SLAPD_MONITOR_DATABASE];
|
|
|
|
mp->mp_flags = monitor_subsys[SLAPD_MONITOR_DATABASE].mss_flags
|
|
|
|
| MONITOR_F_SUB;
|
|
|
|
|
|
|
|
if ( monitor_cache_add( mi, e ) ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, CRIT,
|
2001-07-15 01:34:24 +08:00
|
|
|
"monitor_subsys_database_init: "
|
2002-01-29 01:21:52 +08:00
|
|
|
"unable to add entry 'cn=Database %d,%s'\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
i, monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 0 );
|
2001-07-15 01:34:24 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"monitor_subsys_database_init: "
|
2002-01-29 01:21:52 +08:00
|
|
|
"unable to add entry 'cn=Database %d,%s'\n",
|
2001-07-15 01:34:24 +08:00
|
|
|
i,
|
2002-01-03 02:14:29 +08:00
|
|
|
monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val,
|
2001-12-27 23:16:12 +08:00
|
|
|
0 );
|
2001-07-15 01:34:24 +08:00
|
|
|
#endif
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2002-12-14 23:04:37 +08:00
|
|
|
#if defined(LDAP_SLAPI)
|
|
|
|
monitor_back_add_plugin( be, e );
|
|
|
|
#endif /* defined(LDAP_SLAPI) */
|
|
|
|
|
2001-07-15 01:34:24 +08:00
|
|
|
e_tmp = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp = ( struct monitorentrypriv * )e_database->e_private;
|
|
|
|
mp->mp_children = e_tmp;
|
|
|
|
|
|
|
|
monitor_cache_release( mi, e_database );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2004-04-27 09:56:38 +08:00
|
|
|
int
|
|
|
|
monitor_subsys_database_modify(
|
|
|
|
Operation *op,
|
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
|
|
|
|
int rc = LDAP_OTHER;
|
|
|
|
Attribute *save_attrs;
|
|
|
|
Modifications *modlist = op->oq_modify.rs_modlist;
|
|
|
|
Modifications *ml;
|
|
|
|
Backend *be;
|
|
|
|
int gotval = 1, i, n, cur;
|
|
|
|
|
|
|
|
i = sscanf( e->e_nname.bv_val, "cn=database %d,", &n );
|
|
|
|
if ( i != 1 )
|
|
|
|
return LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
|
|
|
|
if ( n < 0 || n >= nBackendDB )
|
|
|
|
return LDAP_NO_SUCH_OBJECT;
|
|
|
|
|
|
|
|
be = &backendDB[n];
|
|
|
|
cur = (be->be_restrictops & SLAP_RESTRICT_OP_WRITES) ? 1 : 0;
|
|
|
|
|
|
|
|
save_attrs = e->e_attrs;
|
|
|
|
e->e_attrs = attrs_dup( e->e_attrs );
|
|
|
|
|
|
|
|
for ( ml=modlist; ml; ml=ml->sml_next ) {
|
|
|
|
Modification *mod = &ml->sml_mod;
|
|
|
|
|
|
|
|
if ( mod->sm_desc == mi->mi_ad_readOnly ) {
|
|
|
|
int val = -1;
|
|
|
|
|
|
|
|
if ( mod->sm_values ) {
|
|
|
|
/* single-valued */
|
|
|
|
if ( !BER_BVISNULL(&mod->sm_values[1]) ) {
|
|
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( bvmatch( &slap_true_bv, mod->sm_values )) {
|
|
|
|
val = 1;
|
|
|
|
} else if ( bvmatch( &slap_false_bv, mod->sm_values )) {
|
|
|
|
val = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch( mod->sm_op ) {
|
|
|
|
case LDAP_MOD_DELETE:
|
|
|
|
if ( val < 0 || val == cur ) {
|
|
|
|
gotval--;
|
|
|
|
cur = -1;
|
|
|
|
} else {
|
|
|
|
rc = LDAP_NO_SUCH_ATTRIBUTE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LDAP_MOD_REPLACE:
|
|
|
|
gotval--;
|
|
|
|
cur = -1;
|
|
|
|
/* FALLTHRU */
|
|
|
|
case LDAP_MOD_ADD:
|
|
|
|
if ( val < 0 ) {
|
|
|
|
rc = LDAP_INVALID_SYNTAX;
|
|
|
|
} else {
|
|
|
|
gotval++;
|
|
|
|
cur = val;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( rc ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if ( is_at_operational( mod->sm_desc->ad_type )) {
|
|
|
|
/* accept all operational attributes */
|
|
|
|
attr_delete( &e->e_attrs, mod->sm_desc );
|
|
|
|
rc = attr_merge( e, mod->sm_desc, mod->sm_values,
|
|
|
|
mod->sm_nvalues );
|
|
|
|
if ( rc ) {
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( gotval == 1 && cur >= 0 ) {
|
|
|
|
struct berval *tf;
|
|
|
|
tf = cur ? (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv;
|
|
|
|
attr_delete( &e->e_attrs, mi->mi_ad_readOnly );
|
|
|
|
rc = attr_merge_one( e, mi->mi_ad_readOnly, tf, tf );
|
|
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
|
|
if ( cur ) {
|
|
|
|
be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
|
|
|
|
} else {
|
|
|
|
be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
}
|
|
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
|
|
attrs_free( save_attrs );
|
|
|
|
} else {
|
|
|
|
Attribute *tmp = e->e_attrs;
|
|
|
|
e->e_attrs = save_attrs;
|
|
|
|
attrs_free( tmp );
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-12-14 23:04:37 +08:00
|
|
|
#if defined(LDAP_SLAPI)
|
|
|
|
static int
|
|
|
|
monitor_back_add_plugin( Backend *be, Entry *e_database )
|
|
|
|
{
|
|
|
|
Slapi_PBlock *pCurrentPB;
|
|
|
|
int i, rc = LDAP_SUCCESS;
|
2003-04-12 08:30:47 +08:00
|
|
|
struct monitorinfo *mi = ( struct monitorinfo * )be->be_private;
|
2002-12-14 23:04:37 +08:00
|
|
|
|
2003-12-16 23:49:31 +08:00
|
|
|
if ( slapi_int_pblock_get_first( be, &pCurrentPB ) != LDAP_SUCCESS ) {
|
2002-12-14 23:04:37 +08:00
|
|
|
/*
|
|
|
|
* LDAP_OTHER is returned if no plugins are installed
|
|
|
|
*/
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
do {
|
|
|
|
Slapi_PluginDesc *srchdesc;
|
2003-04-19 01:17:18 +08:00
|
|
|
char buf[ BACKMONITOR_BUFSIZE ];
|
2002-12-14 23:04:37 +08:00
|
|
|
struct berval bv;
|
|
|
|
|
|
|
|
rc = slapi_pblock_get( pCurrentPB, SLAPI_PLUGIN_DESCRIPTION,
|
|
|
|
&srchdesc );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf( buf, sizeof(buf),
|
|
|
|
"plugin %d name: %s; "
|
|
|
|
"vendor: %s; "
|
|
|
|
"version: %s; "
|
|
|
|
"description: %s",
|
|
|
|
i,
|
|
|
|
srchdesc->spd_id,
|
|
|
|
srchdesc->spd_vendor,
|
|
|
|
srchdesc->spd_version,
|
|
|
|
srchdesc->spd_description );
|
|
|
|
|
|
|
|
bv.bv_val = buf;
|
|
|
|
bv.bv_len = strlen( buf );
|
2003-04-12 08:30:47 +08:00
|
|
|
attr_merge_normalize_one( e_database,
|
2003-05-18 01:19:16 +08:00
|
|
|
mi->mi_ad_monitoredInfo, &bv, NULL );
|
2002-12-14 23:04:37 +08:00
|
|
|
|
|
|
|
i++;
|
|
|
|
|
2003-12-16 23:49:31 +08:00
|
|
|
} while ( ( slapi_int_pblock_get_next( &pCurrentPB ) == LDAP_SUCCESS )
|
2002-12-14 23:04:37 +08:00
|
|
|
&& ( pCurrentPB != NULL ) );
|
|
|
|
|
|
|
|
done:
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif /* defined(LDAP_SLAPI) */
|