]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/root_dse.c
Added proposed request parameters to Operation. #ifdef'd, not active.
[openldap] / servers / slapd / root_dse.c
index b9c7f35e8029208703aa7e90bc503c3ee41e49c3..5ab1467bc147da11f34c90817f2750edd2a32121 100644 (file)
 #include <ac/string.h>
 
 #include "slap.h"
-#include "slapi.h"
 #include <ldif.h>
 #include "lber_pvt.h"
 
+#ifdef LDAP_SLAPI
+#include "slapi.h"
+#endif
+
 static struct berval supportedFeatures[] = {
        BER_BVC(LDAP_FEATURE_ALL_OPERATIONAL_ATTRS), /* all Operational Attributes ("+") */
        BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attributes List */
@@ -39,7 +42,10 @@ root_dse_info(
        const char **text )
 {
        Entry           *e;
-       struct berval   vals[2], *bv;
+       struct berval vals[2], *bv;
+#ifdef SLAP_NVALUES
+       struct berval nvals[2];
+#endif
        int             i, j;
        char ** supportedSASLMechanisms;
 
@@ -49,8 +55,6 @@ root_dse_info(
                = 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
@@ -65,6 +69,9 @@ root_dse_info(
                = slap_schema.si_ad_ref;
 
        vals[1].bv_val = NULL;
+#ifdef SLAP_NVALUES
+       nvals[1].bv_val = NULL;
+#endif
 
        e = (Entry *) SLAP_CALLOC( 1, sizeof(Entry) );
 
@@ -93,60 +100,104 @@ root_dse_info(
 
        vals[0].bv_val = "top";
        vals[0].bv_len = sizeof("top")-1;
+#ifdef SLAP_NVALUES
+       if( attr_merge( e, ad_objectClass, vals, vals ) )
+#else
        if( attr_merge( e, ad_objectClass, vals ) )
+#endif
+       {
                return LDAP_OTHER;
+       }
 
        vals[0].bv_val = "OpenLDAProotDSE";
        vals[0].bv_len = sizeof("OpenLDAProotDSE")-1;
+#ifdef SLAP_NVALUES
+       if( attr_merge( e, ad_objectClass, vals, vals ) )
+#else
        if( attr_merge( e, ad_objectClass, vals ) )
+#endif
                return LDAP_OTHER;
+#ifdef SLAP_NVALUES
+       if( attr_merge( e, ad_structuralObjectClass, vals, vals ) )
+#else
        if( attr_merge( e, ad_structuralObjectClass, vals ) )
+#endif
                return LDAP_OTHER;
 
        for ( i = 0; i < nbackends; i++ ) {
                if ( backends[i].be_flags & SLAP_BFLAG_MONITOR ) {
                        vals[0] = backends[i].be_suffix[0];
+#ifdef SLAP_NVALUES
+                       if( attr_merge( e, ad_monitorContext, vals, nvals ) )
+#else
                        if( attr_merge( e, ad_monitorContext, vals ) )
+#endif
+                       {
                                return LDAP_OTHER;
+                       }
                        continue;
                }
-               if ( backends[i].be_flags & SLAP_BFLAG_GLUE_SUBORDINATE ) {
+               if ( SLAP_GLUE_SUBORDINATE( &backends[i] ) ) {
                        continue;
                }
                for ( j = 0; backends[i].be_suffix[j].bv_val != NULL; j++ ) {
                        vals[0] = backends[i].be_suffix[j];
+#ifdef SLAP_NVALUES
+                       if( attr_merge( e, ad_namingContexts, vals, NULL ) )
+#else
                        if( attr_merge( e, ad_namingContexts, vals ) )
+#endif
+                       {
                                return LDAP_OTHER;
+                       }
                }
        }
 
        /* altServer unsupported */
 
        /* supportedControl */
-       for ( i=0; (vals[0].bv_val = get_supported_ctrl(i)) != NULL; i++ ) {
-               vals[0].bv_len = strlen( vals[0].bv_val );
-               if( attr_merge( e, ad_supportedControl, vals ) )
-                       return LDAP_OTHER;
+       if ( controls_root_dse_info( e ) != 0 ) {
+               return LDAP_OTHER;
        }
 
        /* supportedExtension */
        for ( i=0; (bv = get_supported_extop(i)) != NULL; i++ ) {
                vals[0] = *bv;
+#ifdef SLAP_NVALUES
+               if( attr_merge( e, ad_supportedExtension, vals, NULL ) )
+#else
                if( attr_merge( e, ad_supportedExtension, vals ) )
+#endif
+               {
                        return LDAP_OTHER;
+               }
        }
 
 #ifdef LDAP_SLAPI
        /* netscape supportedExtension */
        for ( i = 0; (bv = ns_get_supported_extop(i)) != NULL; i++ ) {
                vals[0] = *bv;
-               attr_merge( e, ad_supportedExtension, vals );
+#ifdef SLAP_NVALUES
+               if( attr_merge( e, ad_supportedExtension, vals, NULL ))
+#else
+               if( attr_merge( e, ad_supportedExtension, vals ))
+#endif
+               {
+                       return LDAP_OTHER;
+               }
        }
 #endif /* LDAP_SLAPI */
 
        /* supportedFeatures */
+#ifdef SLAP_NVALUES
+       if( attr_merge( e, ad_supportedFeatures,
+               supportedFeatures, supportedFeatures ) )
+#else
        if( attr_merge( e, ad_supportedFeatures, supportedFeatures ) )
+#endif
+       {
                return LDAP_OTHER;
+       }
 
        /* supportedLDAPVersion */
        for ( i=LDAP_VERSION_MIN; i<=LDAP_VERSION_MAX; i++ ) {
@@ -160,8 +211,14 @@ root_dse_info(
                snprintf(buf, sizeof buf, "%d", i);
                vals[0].bv_val = buf;
                vals[0].bv_len = strlen( vals[0].bv_val );
+#ifdef SLAP_NVALUES
+               if( attr_merge( e, ad_supportedLDAPVersion, vals, NULL ) )
+#else
                if( attr_merge( e, ad_supportedLDAPVersion, vals ) )
+#endif
+               {
                        return LDAP_OTHER;
+               }
        }
 
        /* supportedSASLMechanism */
@@ -171,22 +228,40 @@ root_dse_info(
                for ( i=0; supportedSASLMechanisms[i] != NULL; i++ ) {
                        vals[0].bv_val = supportedSASLMechanisms[i];
                        vals[0].bv_len = strlen( vals[0].bv_val );
+#ifdef SLAP_NVALUES
+                       if( attr_merge( e, ad_supportedSASLMechanisms, vals, NULL ) )
+#else
                        if( attr_merge( e, ad_supportedSASLMechanisms, vals ) )
+#endif
+                       {
                                return LDAP_OTHER;
+                       }
                }
                ldap_charray_free( supportedSASLMechanisms );
        }
 
        if ( default_referral != NULL ) {
+#ifdef SLAP_NVALUES
+               if( attr_merge( e, ad_ref, default_referral, NULL /* FIXME */ ) )
+#else
                if( attr_merge( e, ad_ref, default_referral ) )
+#endif
+               {
                        return LDAP_OTHER;
+               }
        }
 
        if( usr_attr != NULL) {
                Attribute *a;
                for( a = usr_attr->e_attrs; a != NULL; a = a->a_next ) {
+#ifdef SLAP_NVALUES
+                       if( attr_merge( e, a->a_desc, a->a_vals, a->a_nvals ) )
+#else
                        if( attr_merge( e, a->a_desc, a->a_vals ) )
+#endif
+                       {
                                return LDAP_OTHER;
+                       }
                }
        }
 
@@ -257,8 +332,14 @@ int read_root_dse_file( const char *fname )
                 */
 
                for(a = e->e_attrs; a != NULL; a = a->a_next) {
+#ifdef SLAP_NVALUES
+                       if( attr_merge( usr_attr, a->a_desc, a->a_vals, a->a_nvals ) )
+#else
                        if( attr_merge( usr_attr, a->a_desc, a->a_vals ) )
+#endif
+                       {
                                return LDAP_OTHER;
+                       }
                }
 
                entry_free( e );