1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-04-20 02:21:53 +08:00
|
|
|
/* root_dse.c - Provides the ROOT DSA-Specific Entry
|
|
|
|
*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1999-2000 The OpenLDAP Foundation.
|
1999-04-20 02:21:53 +08: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-18 05:21:43 +08:00
|
|
|
#include <ac/string.h>
|
|
|
|
|
1999-04-20 02:21:53 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
int
|
2000-05-22 11:46:57 +08:00
|
|
|
root_dse_info( Entry **entry, const char **text )
|
1999-04-20 02:21:53 +08:00
|
|
|
{
|
1999-07-08 02:51:39 +08:00
|
|
|
char buf[BUFSIZ];
|
1999-04-20 02:21:53 +08:00
|
|
|
Entry *e;
|
|
|
|
struct berval val;
|
|
|
|
struct berval *vals[2];
|
|
|
|
int i, j;
|
|
|
|
|
2000-05-16 05:22:57 +08:00
|
|
|
#ifdef SLAPD_SCHEMA_NOT_COMPAT
|
|
|
|
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;
|
2000-05-22 06:46:51 +08:00
|
|
|
# ifdef SLAPD_ACI_ENABLED
|
2000-05-16 05:22:57 +08:00
|
|
|
AttributeDescription *ad_supportedACIMechanisms = slap_schema.si_ad_supportedACIMechanisms;
|
2000-05-22 06:46:51 +08:00
|
|
|
# endif
|
2000-05-16 05:22:57 +08:00
|
|
|
AttributeDescription *ad_ref = slap_schema.si_ad_ref;
|
|
|
|
#else
|
|
|
|
char *ad_objectClass = "objectClass";
|
|
|
|
char *ad_namingContexts = "namingContexts";
|
|
|
|
char *ad_supportedControl = "supportedControl";
|
|
|
|
char *ad_supportedExtension = "supportedExtension";
|
|
|
|
char *ad_supportedLDAPVersion = "supportedLDAPVersion";
|
|
|
|
char *ad_supportedSASLMechanisms = "supportedSASLMechanisms";
|
2000-05-22 06:46:51 +08:00
|
|
|
# ifdef SLAPD_ACI_ENABLED
|
2000-05-16 05:22:57 +08:00
|
|
|
char *ad_supportedACIMechanisms = "supportedACIMechanisms";
|
2000-05-22 06:46:51 +08:00
|
|
|
# endif
|
2000-05-16 05:22:57 +08:00
|
|
|
char *ad_ref = "ref";
|
|
|
|
#endif
|
|
|
|
|
1999-04-20 02:21:53 +08: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-23 01:14:42 +08:00
|
|
|
e->e_ndn = ch_strdup( LDAP_ROOT_DSE );
|
1999-09-24 09:46:37 +08:00
|
|
|
(void) dn_normalize( e->e_ndn );
|
1999-04-20 02:21:53 +08:00
|
|
|
e->e_private = NULL;
|
|
|
|
|
2000-05-16 05:22:57 +08:00
|
|
|
val.bv_val = "top";
|
|
|
|
val.bv_len = sizeof("top")-1;
|
|
|
|
attr_merge( e, ad_objectClass, vals );
|
|
|
|
|
2000-05-17 02:13:08 +08:00
|
|
|
val.bv_val = "OpenLDAProotDSE";
|
|
|
|
val.bv_len = sizeof("OpenLDAProotDSE")-1;
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_objectClass, vals );
|
|
|
|
|
1999-04-20 02:21:53 +08:00
|
|
|
for ( i = 0; i < nbackends; i++ ) {
|
|
|
|
for ( j = 0; backends[i].be_suffix[j] != NULL; j++ ) {
|
1999-07-08 02:51:39 +08:00
|
|
|
val.bv_val = backends[i].be_suffix[j];
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_namingContexts, vals );
|
1999-04-20 02:21:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* altServer unsupported */
|
|
|
|
|
1999-07-02 05:20:45 +08:00
|
|
|
/* supportedControl */
|
|
|
|
for ( i=0; supportedControls[i] != NULL; i++ ) {
|
1999-07-08 02:51:39 +08:00
|
|
|
val.bv_val = supportedControls[i];
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_supportedControl, vals );
|
1999-07-02 05:20:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* supportedExtension */
|
1999-12-08 12:37:59 +08:00
|
|
|
for ( i=0; (val.bv_val = get_supported_extop(i)) != NULL; i++ ) {
|
1999-07-08 02:51:39 +08:00
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_supportedExtension, vals );
|
1999-07-02 05:20:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* supportedLDAPVersion */
|
1999-04-20 02:21:53 +08:00
|
|
|
for ( i=LDAP_VERSION_MIN; i<=LDAP_VERSION_MAX; i++ ) {
|
|
|
|
sprintf(buf,"%d",i);
|
|
|
|
val.bv_val = buf;
|
1999-07-08 02:51:39 +08:00
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_supportedLDAPVersion, vals );
|
1999-04-20 02:21:53 +08:00
|
|
|
}
|
1999-07-02 05:20:45 +08:00
|
|
|
|
|
|
|
/* supportedSASLMechanism */
|
1999-08-03 10:37:42 +08: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-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_supportedSASLMechanisms, vals );
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
1999-07-02 05:20:45 +08:00
|
|
|
}
|
|
|
|
|
1999-11-23 02:44:07 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
|
|
|
/* supportedACIMechanisms */
|
|
|
|
for ( i=0; (val.bv_val = get_supported_acimech(i)) != NULL; i++ ) {
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_supportedACIMechanisms, vals );
|
1999-11-23 02:44:07 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
if ( default_referral != NULL ) {
|
2000-05-16 05:22:57 +08:00
|
|
|
attr_merge( e, ad_ref, default_referral );
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
1999-07-02 05:20:45 +08:00
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
*entry = e;
|
|
|
|
return LDAP_SUCCESS;
|
1999-04-20 02:21:53 +08:00
|
|
|
}
|
|
|
|
|