1 /* root_dse.c - Provides the Root DSA-Specific Entry */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1999-2004 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
21 #include <ac/string.h>
28 #include "slapi/slapi.h"
31 static struct berval supportedFeatures[] = {
32 BER_BVC(LDAP_FEATURE_ALL_OP_ATTRS), /* All Op Attrs (+) */
33 BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attrs List (@class) */
34 BER_BVC(LDAP_FEATURE_ABSOLUTE_FILTERS), /* (&) and (|) search filters */
35 BER_BVC(LDAP_FEATURE_LANGUAGE_TAG_OPTIONS), /* Language Tag Options */
36 BER_BVC(LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS),/* Language Range Options */
39 BER_BVC(LDAP_FEATURE_SUBORDINATE_SCOPE), /* "children" search scope */
40 BER_BVC(LDAP_FEATURE_MODIFY_INCREMENT), /* Modify/increment */
45 static Entry *usr_attr = NULL;
54 struct berval vals[2], *bv;
55 struct berval nvals[2];
57 char ** supportedSASLMechanisms;
59 AttributeDescription *ad_structuralObjectClass
60 = slap_schema.si_ad_structuralObjectClass;
61 AttributeDescription *ad_objectClass
62 = slap_schema.si_ad_objectClass;
63 AttributeDescription *ad_namingContexts
64 = slap_schema.si_ad_namingContexts;
65 AttributeDescription *ad_supportedExtension
66 = slap_schema.si_ad_supportedExtension;
67 AttributeDescription *ad_supportedLDAPVersion
68 = slap_schema.si_ad_supportedLDAPVersion;
69 AttributeDescription *ad_supportedSASLMechanisms
70 = slap_schema.si_ad_supportedSASLMechanisms;
71 AttributeDescription *ad_supportedFeatures
72 = slap_schema.si_ad_supportedFeatures;
73 AttributeDescription *ad_monitorContext
74 = slap_schema.si_ad_monitorContext;
75 AttributeDescription *ad_ref
76 = slap_schema.si_ad_ref;
78 vals[1].bv_val = NULL;
79 nvals[1].bv_val = NULL;
81 e = (Entry *) SLAP_CALLOC( 1, sizeof(Entry) );
84 Debug( LDAP_DEBUG_ANY,
85 "root_dse_info: SLAP_CALLOC failed", 0, 0, 0 );
90 e->e_name.bv_val = ch_strdup( LDAP_ROOT_DSE );
91 e->e_name.bv_len = sizeof( LDAP_ROOT_DSE )-1;
92 e->e_nname.bv_val = ch_strdup( LDAP_ROOT_DSE );
93 e->e_nname.bv_len = sizeof( LDAP_ROOT_DSE )-1;
95 /* the DN is an empty string so no pretty/normalization is needed */
96 assert( !e->e_name.bv_len );
97 assert( !e->e_nname.bv_len );
101 vals[0].bv_val = "top";
102 vals[0].bv_len = sizeof("top")-1;
103 if( attr_merge( e, ad_objectClass, vals, NULL ) ) {
107 vals[0].bv_val = "OpenLDAProotDSE";
108 vals[0].bv_len = sizeof("OpenLDAProotDSE")-1;
109 if( attr_merge( e, ad_objectClass, vals, NULL ) ) {
112 if( attr_merge( e, ad_structuralObjectClass, vals, NULL ) ) {
116 for ( i = 0; i < nbackends; i++ ) {
117 if ( backends[i].be_suffix == NULL
118 || backends[i].be_nsuffix == NULL ) {
122 if ( SLAP_MONITOR( &backends[i] )) {
123 vals[0] = backends[i].be_suffix[0];
124 nvals[0] = backends[i].be_nsuffix[0];
125 if( attr_merge( e, ad_monitorContext, vals, nvals ) ) {
130 if ( SLAP_GLUE_SUBORDINATE( &backends[i] ) ) {
133 for ( j = 0; backends[i].be_suffix[j].bv_val != NULL; j++ ) {
134 vals[0] = backends[i].be_suffix[j];
135 nvals[0] = backends[i].be_nsuffix[0];
136 if( attr_merge( e, ad_namingContexts, vals, nvals ) ) {
142 /* altServer unsupported */
144 /* supportedControl */
145 if ( controls_root_dse_info( e ) != 0 ) {
149 /* supportedExtension */
150 if ( exop_root_dse_info( e ) != 0 ) {
155 /* netscape supportedExtension */
156 for ( i = 0; (bv = slapi_int_get_supported_extop(i)) != NULL; i++ ) {
158 if( attr_merge( e, ad_supportedExtension, vals, NULL )) {
162 #endif /* LDAP_SLAPI */
164 /* supportedFeatures */
165 if( attr_merge( e, ad_supportedFeatures, supportedFeatures, NULL ) ) {
169 /* supportedLDAPVersion */
170 for ( i=LDAP_VERSION_MIN; i<=LDAP_VERSION_MAX; i++ ) {
172 if (!( global_allows & SLAP_ALLOW_BIND_V2 ) &&
173 ( i < LDAP_VERSION3 ) )
175 /* version 2 and lower are disallowed */
178 snprintf(buf, sizeof buf, "%d", i);
179 vals[0].bv_val = buf;
180 vals[0].bv_len = strlen( vals[0].bv_val );
181 if( attr_merge( e, ad_supportedLDAPVersion, vals, NULL ) ) {
186 /* supportedSASLMechanism */
187 supportedSASLMechanisms = slap_sasl_mechs( conn );
189 if( supportedSASLMechanisms != NULL ) {
190 for ( i=0; supportedSASLMechanisms[i] != NULL; i++ ) {
191 vals[0].bv_val = supportedSASLMechanisms[i];
192 vals[0].bv_len = strlen( vals[0].bv_val );
193 if( attr_merge( e, ad_supportedSASLMechanisms, vals, NULL ) ) {
197 ldap_charray_free( supportedSASLMechanisms );
200 if ( default_referral != NULL ) {
201 if( attr_merge( e, ad_ref, default_referral, NULL /* FIXME */ ) ) {
206 if( usr_attr != NULL) {
208 for( a = usr_attr->e_attrs; a != NULL; a = a->a_next ) {
209 if( attr_merge( e, a->a_desc, a->a_vals,
210 (a->a_nvals == a->a_vals) ? NULL : a->a_nvals ) )
222 * Read the entries specified in fname and merge the attributes
223 * to the user defined rootDSE. Note thaat if we find any errors
224 * what so ever, we will discard the entire entries, print an
225 * error message and return.
227 int read_root_dse_file( const char *fname )
230 int rc = 0, lineno = 0, lmax = 0;
233 if ( (fp = fopen( fname, "r" )) == NULL ) {
234 Debug( LDAP_DEBUG_ANY,
235 "could not open rootdse attr file \"%s\" - absolute path?\n",
241 usr_attr = (Entry *) SLAP_CALLOC( 1, sizeof(Entry) );
242 if( usr_attr == NULL ) {
243 Debug( LDAP_DEBUG_ANY,
244 "read_root_dse_file: SLAP_CALLOC failed", 0, 0, 0 );
248 usr_attr->e_attrs = NULL;
250 while( ldif_read_record( fp, &lineno, &buf, &lmax ) ) {
251 Entry *e = str2entry( buf );
255 fprintf( stderr, "root_dse: could not parse entry (line=%d)\n",
261 /* make sure the DN is the empty DN */
262 if( e->e_nname.bv_len ) {
264 "root_dse: invalid rootDSE - dn=\"%s\" (line=%d)\n",
272 * we found a valid entry, so walk thru all the attributes in the
273 * entry, and add each attribute type and description to the
277 for(a = e->e_attrs; a != NULL; a = a->a_next) {
278 if( attr_merge( usr_attr, a->a_desc, a->a_vals,
279 (a->a_nvals == a->a_vals) ? NULL : a->a_nvals ) )
291 entry_free( usr_attr );
299 Debug(LDAP_DEBUG_CONFIG, "rootDSE file %s read.\n", fname, 0, 0);