X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Froot_dse.c;h=4038dfb7cf02a60419729d18c8110e93ba6c747e;hb=7fd21ada0706629379885d9cd30770ce8b63098b;hp=e8a3971c402e3bd9612edc380f584b7b9cd1eab4;hpb=5ad51b6150311e38fb8fe872880e1b20dd0425a1;p=openldap diff --git a/servers/slapd/root_dse.c b/servers/slapd/root_dse.c index e8a3971c40..4038dfb7cf 100644 --- a/servers/slapd/root_dse.c +++ b/servers/slapd/root_dse.c @@ -1,13 +1,17 @@ +/* root_dse.c - Provides the Root DSA-Specific Entry */ /* $OpenLDAP$ */ -/* root_dse.c - Provides the ROOT DSA-Specific Entry +/* This work is part of OpenLDAP Software . * * Copyright 1999-2003 The OpenLDAP Foundation. * 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. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ #include "portable.h" @@ -25,11 +29,14 @@ #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 */ + BER_BVC(LDAP_FEATURE_ALL_OPERATIONAL_ATTRS), /* All Op Attrs (+) */ + BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attrs List (+person) */ BER_BVC(LDAP_FEATURE_ABSOLUTE_FILTERS), /* (&) and (|) search filters */ BER_BVC(LDAP_FEATURE_LANGUAGE_TAG_OPTIONS), /* Language Tag Options */ BER_BVC(LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS), /* Language Range Options */ +#ifdef LDAP_DEVEL + BER_BVC(LDAP_FEATURE_MODIFY_INCREMENT), /* Modify/increment */ +#endif {0,NULL} }; @@ -43,9 +50,7 @@ root_dse_info( { Entry *e; struct berval vals[2], *bv; -#ifdef SLAP_NVALUES struct berval nvals[2]; -#endif int i, j; char ** supportedSASLMechanisms; @@ -69,9 +74,7 @@ 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) ); @@ -100,40 +103,24 @@ 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, NULL ) ) -#else - if( attr_merge( e, ad_objectClass, vals ) ) -#endif - { + if( attr_merge( e, ad_objectClass, vals, NULL ) ) { 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, NULL ) ) -#else - if( attr_merge( e, ad_objectClass, vals ) ) -#endif + if( attr_merge( e, ad_objectClass, vals, NULL ) ) { return LDAP_OTHER; -#ifdef SLAP_NVALUES - if( attr_merge( e, ad_structuralObjectClass, vals, NULL ) ) -#else - if( attr_merge( e, ad_structuralObjectClass, vals ) ) -#endif + } + if( attr_merge( e, ad_structuralObjectClass, vals, NULL ) ) { 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 nvals[0] = backends[i].be_nsuffix[0]; - if( attr_merge( e, ad_monitorContext, vals, nvals ) ) -#else - if( attr_merge( e, ad_monitorContext, vals ) ) -#endif - { + if( attr_merge( e, ad_monitorContext, vals, nvals ) ) { return LDAP_OTHER; } continue; @@ -143,13 +130,8 @@ root_dse_info( } for ( j = 0; backends[i].be_suffix[j].bv_val != NULL; j++ ) { vals[0] = backends[i].be_suffix[j]; -#ifdef SLAP_NVALUES nvals[0] = backends[i].be_nsuffix[0]; - if( attr_merge( e, ad_namingContexts, vals, nvals ) ) -#else - if( attr_merge( e, ad_namingContexts, vals ) ) -#endif - { + if( attr_merge( e, ad_namingContexts, vals, nvals ) ) { return LDAP_OTHER; } } @@ -163,41 +145,22 @@ root_dse_info( } /* 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; - } + if ( exop_root_dse_info( e ) != 0 ) { + return LDAP_OTHER; } #ifdef LDAP_SLAPI /* netscape supportedExtension */ for ( i = 0; (bv = ns_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 - { + if( attr_merge( e, ad_supportedExtension, vals, NULL )) { return LDAP_OTHER; } } #endif /* LDAP_SLAPI */ /* supportedFeatures */ -#ifdef SLAP_NVALUES - if( attr_merge( e, ad_supportedFeatures, - supportedFeatures, NULL ) ) -#else - if( attr_merge( e, ad_supportedFeatures, supportedFeatures ) ) -#endif - { + if( attr_merge( e, ad_supportedFeatures, supportedFeatures, NULL ) ) { return LDAP_OTHER; } @@ -213,12 +176,7 @@ 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 - { + if( attr_merge( e, ad_supportedLDAPVersion, vals, NULL ) ) { return LDAP_OTHER; } } @@ -230,12 +188,7 @@ 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 - { + if( attr_merge( e, ad_supportedSASLMechanisms, vals, NULL ) ) { return LDAP_OTHER; } } @@ -243,12 +196,7 @@ root_dse_info( } 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 - { + if( attr_merge( e, ad_ref, default_referral, NULL /* FIXME */ ) ) { return LDAP_OTHER; } } @@ -256,12 +204,8 @@ root_dse_info( 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 == a->a_vals) ? NULL : a->a_nvals ) ) -#else - if( attr_merge( e, a->a_desc, a->a_vals ) ) -#endif + (a->a_nvals == a->a_vals) ? NULL : a->a_nvals ) ) { return LDAP_OTHER; } @@ -334,12 +278,8 @@ 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 == a->a_vals) ? NULL : a->a_nvals ) ) -#else - if( attr_merge( usr_attr, a->a_desc, a->a_vals ) ) -#endif + (a->a_nvals == a->a_vals) ? NULL : a->a_nvals ) ) { rc = LDAP_OTHER; break;