1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
1999-04-19 14:21:53 -04:00
|
|
|
/* root_dse.c - Provides the ROOT DSA-Specific Entry
|
|
|
|
|
*
|
2000-05-12 22:47:56 -04:00
|
|
|
* Copyright 1999-2000 The OpenLDAP Foundation.
|
1999-04-19 14:21:53 -04:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-08-17 17:21:43 -04:00
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
1999-04-19 14:21:53 -04:00
|
|
|
#include "slap.h"
|
|
|
|
|
|
2000-05-16 12:22:52 -04:00
|
|
|
int
|
2000-07-13 18:54:38 -04:00
|
|
|
root_dse_info(
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Entry **entry,
|
|
|
|
|
const char **text )
|
1999-04-19 14:21:53 -04:00
|
|
|
{
|
1999-07-07 14:51:39 -04:00
|
|
|
char buf[BUFSIZ];
|
1999-04-19 14:21:53 -04:00
|
|
|
Entry *e;
|
|
|
|
|
struct berval val;
|
|
|
|
|
struct berval *vals[2];
|
|
|
|
|
int i, j;
|
2000-07-13 18:54:38 -04:00
|
|
|
char ** supportedSASLMechanisms;
|
1999-04-19 14:21:53 -04:00
|
|
|
|
2000-05-15 17:22:57 -04:00
|
|
|
AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass;
|
|
|
|
|
AttributeDescription *ad_namingContexts = slap_schema.si_ad_namingContexts;
|
|
|
|
|
AttributeDescription *ad_supportedControl = slap_schema.si_ad_supportedControl;
|
|
|
|
|
AttributeDescription *ad_supportedExtension = slap_schema.si_ad_supportedExtension;
|
|
|
|
|
AttributeDescription *ad_supportedLDAPVersion = slap_schema.si_ad_supportedLDAPVersion;
|
|
|
|
|
AttributeDescription *ad_supportedSASLMechanisms = slap_schema.si_ad_supportedSASLMechanisms;
|
|
|
|
|
AttributeDescription *ad_ref = slap_schema.si_ad_ref;
|
|
|
|
|
|
1999-04-19 14:21:53 -04:00
|
|
|
vals[0] = &val;
|
|
|
|
|
vals[1] = NULL;
|
|
|
|
|
|
|
|
|
|
e = (Entry *) ch_calloc( 1, sizeof(Entry) );
|
|
|
|
|
|
|
|
|
|
e->e_attrs = NULL;
|
|
|
|
|
e->e_dn = ch_strdup( LDAP_ROOT_DSE );
|
1999-07-22 13:14:42 -04:00
|
|
|
e->e_ndn = ch_strdup( LDAP_ROOT_DSE );
|
1999-09-23 21:46:37 -04:00
|
|
|
(void) dn_normalize( e->e_ndn );
|
1999-04-19 14:21:53 -04:00
|
|
|
e->e_private = NULL;
|
|
|
|
|
|
2000-05-15 17:22:57 -04:00
|
|
|
val.bv_val = "top";
|
|
|
|
|
val.bv_len = sizeof("top")-1;
|
|
|
|
|
attr_merge( e, ad_objectClass, vals );
|
|
|
|
|
|
2000-05-16 14:13:08 -04:00
|
|
|
val.bv_val = "OpenLDAProotDSE";
|
|
|
|
|
val.bv_len = sizeof("OpenLDAProotDSE")-1;
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_objectClass, vals );
|
|
|
|
|
|
1999-04-19 14:21:53 -04:00
|
|
|
for ( i = 0; i < nbackends; i++ ) {
|
|
|
|
|
for ( j = 0; backends[i].be_suffix[j] != NULL; j++ ) {
|
1999-07-07 14:51:39 -04:00
|
|
|
val.bv_val = backends[i].be_suffix[j];
|
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_namingContexts, vals );
|
1999-04-19 14:21:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* altServer unsupported */
|
|
|
|
|
|
1999-07-01 17:20:45 -04:00
|
|
|
/* supportedControl */
|
|
|
|
|
for ( i=0; supportedControls[i] != NULL; i++ ) {
|
1999-07-07 14:51:39 -04:00
|
|
|
val.bv_val = supportedControls[i];
|
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_supportedControl, vals );
|
1999-07-01 17:20:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* supportedExtension */
|
1999-12-07 23:37:59 -05:00
|
|
|
for ( i=0; (val.bv_val = get_supported_extop(i)) != NULL; i++ ) {
|
1999-07-07 14:51:39 -04:00
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_supportedExtension, vals );
|
1999-07-01 17:20:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* supportedLDAPVersion */
|
1999-04-19 14:21:53 -04:00
|
|
|
for ( i=LDAP_VERSION_MIN; i<=LDAP_VERSION_MAX; i++ ) {
|
2000-08-31 14:51:15 -04:00
|
|
|
if (( global_disallows & SLAP_DISALLOW_BIND_V2 ) &&
|
|
|
|
|
( i < LDAP_VERSION3 ) )
|
|
|
|
|
{
|
|
|
|
|
/* version 2 and lower are disallowed */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
1999-04-19 14:21:53 -04:00
|
|
|
sprintf(buf,"%d",i);
|
|
|
|
|
val.bv_val = buf;
|
1999-07-07 14:51:39 -04:00
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_supportedLDAPVersion, vals );
|
1999-04-19 14:21:53 -04:00
|
|
|
}
|
1999-07-01 17:20:45 -04:00
|
|
|
|
|
|
|
|
/* supportedSASLMechanism */
|
2000-07-13 18:54:38 -04:00
|
|
|
supportedSASLMechanisms = slap_sasl_mechs( conn );
|
|
|
|
|
|
1999-08-02 22:37:42 -04:00
|
|
|
if( supportedSASLMechanisms != NULL ) {
|
|
|
|
|
for ( i=0; supportedSASLMechanisms[i] != NULL; i++ ) {
|
|
|
|
|
val.bv_val = supportedSASLMechanisms[i];
|
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_supportedSASLMechanisms, vals );
|
1999-08-02 22:37:42 -04:00
|
|
|
}
|
1999-07-01 17:20:45 -04:00
|
|
|
}
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
if ( default_referral != NULL ) {
|
2000-05-15 17:22:57 -04:00
|
|
|
attr_merge( e, ad_ref, default_referral );
|
1999-07-15 22:45:46 -04:00
|
|
|
}
|
1999-07-01 17:20:45 -04:00
|
|
|
|
2000-05-16 12:22:52 -04:00
|
|
|
*entry = e;
|
|
|
|
|
return LDAP_SUCCESS;
|
1999-04-19 14:21:53 -04:00
|
|
|
}
|
|
|
|
|
|