version 1.61, 2002/02/15 15:33:44
|
version 1.61.2.3, 2002/06/20 20:12:31
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.60 2002/02/15 15:27:31 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.61.2.2 2002/05/22 14:25:50 kurt Exp $ */ |
/* root_dse.c - Provides the ROOT DSA-Specific Entry |
/* root_dse.c - Provides the ROOT DSA-Specific Entry |
* |
* |
* Copyright 1999-2002 The OpenLDAP Foundation. |
* Copyright 1999-2002 The OpenLDAP Foundation. |
Line 17
|
Line 17
|
|
|
#include "slap.h" |
#include "slap.h" |
#include <ldif.h> |
#include <ldif.h> |
|
#include "lber_pvt.h" |
#define BVC(x) {sizeof(x)-1, x} |
|
|
|
static struct berval supportedFeatures[] = { |
static struct berval supportedFeatures[] = { |
BVC("1.3.6.1.4.1.4203.1.5.1"), /* all Operational Attributes ("+") */ |
BER_BVC("1.3.6.1.4.1.4203.1.5.1"), /* all Operational Attributes ("+") */ |
BVC("1.3.6.1.4.1.4203.1.5.2"), /* OCs in Attributes List */ |
BER_BVC("1.3.6.1.4.1.4203.1.5.2"), /* OCs in Attributes List */ |
BVC("1.3.6.1.4.1.4203.1.5.3"), /* (&) and (|) search filters */ |
BER_BVC("1.3.6.1.4.1.4203.1.5.3"), /* (&) and (|) search filters */ |
BVC("1.3.6.1.4.1.4203.1.5.4"), /* Language Tag Options */ |
BER_BVC("1.3.6.1.4.1.4203.1.5.4"), /* Language Tag Options */ |
BVC("1.3.6.1.4.1.4203.1.5.5"), /* Language Range Options */ |
BER_BVC("1.3.6.1.4.1.4203.1.5.5"), /* Language Range Options */ |
{0,NULL} |
{0,NULL} |
}; |
}; |
|
|
Line 59 root_dse_info(
|
Line 58 root_dse_info(
|
= slap_schema.si_ad_supportedSASLMechanisms; |
= slap_schema.si_ad_supportedSASLMechanisms; |
AttributeDescription *ad_supportedFeatures |
AttributeDescription *ad_supportedFeatures |
= slap_schema.si_ad_supportedFeatures; |
= slap_schema.si_ad_supportedFeatures; |
|
AttributeDescription *ad_monitorContext |
|
= slap_schema.si_ad_monitorContext; |
AttributeDescription *ad_ref |
AttributeDescription *ad_ref |
= slap_schema.si_ad_ref; |
= slap_schema.si_ad_ref; |
|
|
Line 78 root_dse_info(
|
Line 79 root_dse_info(
|
|
|
e->e_private = NULL; |
e->e_private = NULL; |
|
|
vals[0].bv_val = "OpenLDAProotDSE"; |
|
vals[0].bv_len = sizeof("OpenLDAProotDSE")-1; |
|
attr_merge( e, ad_structuralObjectClass, vals ); |
|
|
|
vals[0].bv_val = "top"; |
vals[0].bv_val = "top"; |
vals[0].bv_len = sizeof("top")-1; |
vals[0].bv_len = sizeof("top")-1; |
attr_merge( e, ad_objectClass, vals ); |
attr_merge( e, ad_objectClass, vals ); |
Line 89 root_dse_info(
|
Line 86 root_dse_info(
|
vals[0].bv_val = "OpenLDAProotDSE"; |
vals[0].bv_val = "OpenLDAProotDSE"; |
vals[0].bv_len = sizeof("OpenLDAProotDSE")-1; |
vals[0].bv_len = sizeof("OpenLDAProotDSE")-1; |
attr_merge( e, ad_objectClass, vals ); |
attr_merge( e, ad_objectClass, vals ); |
|
attr_merge( e, ad_structuralObjectClass, vals ); |
|
|
for ( i = 0; i < nbackends; i++ ) { |
for ( i = 0; i < nbackends; i++ ) { |
|
if ( backends[i].be_flags & SLAP_BFLAG_MONITOR ) { |
|
vals[0] = backends[i].be_suffix[0]; |
|
attr_merge( e, ad_monitorContext, vals ); |
|
continue; |
|
} |
if ( backends[i].be_flags & SLAP_BFLAG_GLUE_SUBORDINATE ) { |
if ( backends[i].be_flags & SLAP_BFLAG_GLUE_SUBORDINATE ) { |
continue; |
continue; |
} |
} |
for ( j = 0; backends[i].be_suffix[j] != NULL; j++ ) { |
for ( j = 0; backends[i].be_suffix[j].bv_val != NULL; j++ ) { |
vals[0] = *backends[i].be_suffix[j]; |
vals[0] = backends[i].be_suffix[j]; |
attr_merge( e, ad_namingContexts, vals ); |
attr_merge( e, ad_namingContexts, vals ); |
} |
} |
} |
} |