X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fschema_check.c;h=19bed5b3bbcf03133ed0b5bc94de560842d0f4a2;hb=3c5068bc1fa84fc5daf1e50d4f1a929cec91b7e9;hp=5634962c2737e56184717a98151850e761192a1e;hpb=b1a1f46d64acfd32e9681d5acda61ba5822b86e9;p=openldap diff --git a/servers/slapd/schema_check.c b/servers/slapd/schema_check.c index 5634962c27..19bed5b3bb 100644 --- a/servers/slapd/schema_check.c +++ b/servers/slapd/schema_check.c @@ -1,8 +1,17 @@ /* schema_check.c - routines to enforce schema definitions */ /* $OpenLDAP$ */ -/* - * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2007 The OpenLDAP Foundation. + * All rights reserved. + * + * 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" @@ -14,7 +23,6 @@ #include #include "slap.h" -#include "ldap_pvt.h" static char * oc_check_required( Entry *e, @@ -23,6 +31,7 @@ static char * oc_check_required( static int entry_naming_check( Entry *e, + int manage, const char** text, char *textbuf, size_t textlen ); /* @@ -34,18 +43,19 @@ static int entry_naming_check( int entry_schema_check( - Backend *be, + Operation *op, Entry *e, Attribute *oldattrs, + int manage, + int add_soc, const char** text, char *textbuf, size_t textlen ) { - Attribute *a, *asc, *aoc; - ObjectClass *sc, *oc; + Attribute *a, *asc = NULL, *aoc = NULL; + ObjectClass *sc, *oc, **socs = NULL; AttributeType *at; ContentRule *cr; int rc, i; - struct berval nsc; AttributeDescription *ad_structuralObjectClass = slap_schema.si_ad_structuralObjectClass; AttributeDescription *ad_objectClass @@ -54,7 +64,11 @@ entry_schema_check( int subentry = is_entry_subentry( e ); int collectiveSubentry = 0; - if ( SLAP_NO_SCHEMA_CHECK( be )) { + if ( SLAP_NO_SCHEMA_CHECK( op->o_bd )) { + return LDAP_SUCCESS; + } + + if ( get_no_schema_check( op ) ) { return LDAP_SUCCESS; } @@ -69,17 +83,22 @@ entry_schema_check( const char *type = a->a_desc->ad_cname.bv_val; /* there should be at least one value */ - assert( a->a_vals ); + assert( a->a_vals != NULL ); assert( a->a_vals[0].bv_val != NULL ); if( a->a_desc->ad_type->sat_check ) { - int rc = (a->a_desc->ad_type->sat_check)( - be, e, a, text, textbuf, textlen ); + rc = (a->a_desc->ad_type->sat_check)( + op->o_bd, e, a, text, textbuf, textlen ); if( rc != LDAP_SUCCESS ) { return rc; } } + if( a->a_desc == ad_structuralObjectClass ) + asc = a; + else if ( a->a_desc == ad_objectClass ) + aoc = a; + if( !collectiveSubentry && is_at_collective( a->a_desc->ad_type ) ) { snprintf( textbuf, textlen, "'%s' can only appear in collectiveAttributeSubentry", @@ -95,39 +114,49 @@ entry_schema_check( "attribute '%s' cannot have multiple values", type ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s\n", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s), %s\n", e->e_dn, textbuf, 0 ); -#endif return LDAP_CONSTRAINT_VIOLATION; } } - /* it's a REALLY bad idea to disable schema checks */ - if( !global_schemacheck ) return LDAP_SUCCESS; + /* check the object class attribute */ + if ( aoc == NULL ) { + Debug( LDAP_DEBUG_ANY, "No objectClass for entry (%s)\n", + e->e_dn, 0, 0 ); + + *text = "no objectClass attribute"; + return LDAP_OBJECT_CLASS_VIOLATION; + } + + assert( aoc->a_vals != NULL ); + assert( aoc->a_vals[0].bv_val != NULL ); - /* find the structural object class attribute */ - asc = attr_find( e->e_attrs, ad_structuralObjectClass ); - if ( asc == NULL ) { -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: No structuralObjectClass for entry (%s)\n", - e->e_dn, 0, 0 ); -#else + /* check the structural object class attribute */ + if ( asc == NULL && !add_soc ) { Debug( LDAP_DEBUG_ANY, "No structuralObjectClass for entry (%s)\n", e->e_dn, 0, 0 ); -#endif *text = "no structuralObjectClass operational attribute"; return LDAP_OTHER; } + rc = structural_class( aoc->a_vals, &oc, &socs, text, textbuf, textlen, + op->o_tmpmemctx ); + if( rc != LDAP_SUCCESS ) { + return rc; + } + + if ( asc == NULL && add_soc ) { + attr_merge_one( e, ad_structuralObjectClass, &oc->soc_cname, NULL ); + asc = attr_find( e->e_attrs, ad_structuralObjectClass ); + sc = oc; + goto got_soc; + } + assert( asc->a_vals != NULL ); assert( asc->a_vals[0].bv_val != NULL ); assert( asc->a_vals[1].bv_val == NULL ); @@ -138,16 +167,12 @@ entry_schema_check( "unrecognized structuralObjectClass '%s'", asc->a_vals[0].bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "entry_check_schema(%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } if( sc->soc_kind != LDAP_SCHEMA_STRUCTURAL ) { @@ -155,57 +180,26 @@ entry_schema_check( "structuralObjectClass '%s' is not STRUCTURAL", asc->a_vals[0].bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "entry_check_schema(%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OTHER; + rc = LDAP_OTHER; + goto leave; } - if( sc->soc_obsolete ) { +got_soc: + if( !manage && sc->soc_obsolete ) { snprintf( textbuf, textlen, "structuralObjectClass '%s' is OBSOLETE", asc->a_vals[0].bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "entry_check_schema(%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - - return LDAP_OBJECT_CLASS_VIOLATION; - } - - /* find the object class attribute */ - aoc = attr_find( e->e_attrs, ad_objectClass ); - if ( aoc == NULL ) { -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: No objectClass for entry (%s).\n", - e->e_dn, 0, 0 ); -#else - Debug( LDAP_DEBUG_ANY, "No objectClass for entry (%s)\n", - e->e_dn, 0, 0 ); -#endif - - *text = "no objectClass attribute"; - return LDAP_OBJECT_CLASS_VIOLATION; - } - - assert( aoc->a_vals != NULL ); - assert( aoc->a_vals[0].bv_val != NULL ); - rc = structural_class( aoc->a_vals, &nsc, &oc, text, textbuf, textlen ); - if( rc != LDAP_SUCCESS ) { - return rc; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } *text = textbuf; @@ -214,23 +208,25 @@ entry_schema_check( snprintf( textbuf, textlen, "unrecognized objectClass '%s'", aoc->a_vals[0].bv_val ); - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } else if ( sc != slap_schema.si_oc_glue && sc != oc ) { snprintf( textbuf, textlen, "structural object class modification " "from '%s' to '%s' not allowed", - asc->a_vals[0].bv_val, nsc.bv_val ); - return LDAP_NO_OBJECT_CLASS_MODS; + asc->a_vals[0].bv_val, oc->soc_cname.bv_val ); + rc = LDAP_NO_OBJECT_CLASS_MODS; + goto leave; } else if ( sc == slap_schema.si_oc_glue ) { sc = oc; } /* naming check */ - if ( !is_entry_objectclass ( e, slap_schema.si_oc_glue, 0 ) ) { - rc = entry_naming_check( e, text, textbuf, textlen ); + if ( !is_entry_glue ( e ) ) { + rc = entry_naming_check( e, manage, text, textbuf, textlen ); if( rc != LDAP_SUCCESS ) { - return rc; + goto leave; } } else { /* Glue Entry */ @@ -244,21 +240,17 @@ entry_schema_check( /* check that the entry has required attrs of the content rule */ if( cr ) { - if( cr->scr_obsolete ) { + if( !manage && cr->scr_obsolete ) { snprintf( textbuf, textlen, "content rule '%s' is obsolete", ldap_contentrule2name( &cr->scr_crule )); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } if( cr->scr_required ) for( i=0; cr->scr_required[i]; i++ ) { @@ -277,16 +269,12 @@ entry_schema_check( ldap_contentrule2name( &cr->scr_crule ), at->sat_cname.bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } } @@ -306,62 +294,38 @@ entry_schema_check( ldap_contentrule2name( &cr->scr_crule ), at->sat_cname.bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } } } /* check that the entry has required attrs for each oc */ - for ( i = 0; aoc->a_vals[i].bv_val != NULL; i++ ) { - if ( (oc = oc_bvfind( &aoc->a_vals[i] )) == NULL ) { - snprintf( textbuf, textlen, - "unrecognized objectClass '%s'", - aoc->a_vals[i].bv_val ); - -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 ); -#else - Debug( LDAP_DEBUG_ANY, - "entry_check_schema(%s): %s\n", - e->e_dn, textbuf, 0 ); -#endif - - return LDAP_OBJECT_CLASS_VIOLATION; - } - - if ( oc->soc_obsolete ) { + for ( i = 0; socs[i]; i++ ) { + oc = socs[i]; + if ( !manage && oc->soc_obsolete ) { /* disallow obsolete classes */ snprintf( textbuf, textlen, "objectClass '%s' is OBSOLETE", aoc->a_vals[i].bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "entry_check_schema(%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } if ( oc->soc_check ) { - int rc = (oc->soc_check)( be, e, oc, + rc = (oc->soc_check)( op->o_bd, e, oc, text, textbuf, textlen ); if( rc != LDAP_SUCCESS ) { - return rc; + goto leave; } } @@ -372,26 +336,9 @@ entry_schema_check( { int j; ObjectClass *xc = NULL; - for( j=0; aoc->a_vals[j].bv_val; j++ ) { + for( j=0; socs[j]; j++ ) { if( i != j ) { - xc = oc_bvfind( &aoc->a_vals[i] ); - if( xc == NULL ) { - snprintf( textbuf, textlen, - "unrecognized objectClass '%s'", - aoc->a_vals[i].bv_val ); - -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", - e->e_dn, textbuf, 0 ); -#else - Debug( LDAP_DEBUG_ANY, - "entry_check_schema(%s): %s\n", - e->e_dn, textbuf, 0 ); -#endif - - return LDAP_OBJECT_CLASS_VIOLATION; - } + xc = socs[j]; /* since we previous check against the * structural object of this entry, the @@ -413,17 +360,12 @@ entry_schema_check( "abstract objectClass '%s' not allowed", aoc->a_vals[i].bv_val ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn (%s), %s\n", - e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "entry_check_schema(%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } } @@ -445,29 +387,28 @@ entry_schema_check( } } } + if ( k ) { + snprintf( textbuf, textlen, + "class '%s' not allowed by content rule '%s'", + oc->soc_cname.bv_val, + ldap_contentrule2name( &cr->scr_crule ) ); + } } else if ( global_disallows & SLAP_DISALLOW_AUX_WO_CR ) { k = -1; + snprintf( textbuf, textlen, + "class '%s' not allowed by any content rule", + oc->soc_cname.bv_val ); } else { k = 0; } if( k == -1 ) { - snprintf( textbuf, textlen, - "content rule '%s' does not allow class '%s'", - ldap_contentrule2name( &cr->scr_crule ), - oc->soc_cname.bv_val ); - -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s", - e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } } @@ -477,16 +418,12 @@ entry_schema_check( "object class '%s' requires attribute '%s'", aoc->a_vals[i].bv_val, s ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s", e->e_dn, textbuf, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s): %s\n", e->e_dn, textbuf, 0 ); -#endif - return LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; + goto leave; } if( oc == slap_schema.si_oc_extensibleObject ) { @@ -496,59 +433,57 @@ entry_schema_check( } if( extensible ) { - return LDAP_SUCCESS; + *text = NULL; + rc = LDAP_SUCCESS; + goto leave; } /* check that each attr in the entry is allowed by some oc */ for ( a = e->e_attrs; a != NULL; a = a->a_next ) { - int ret; - - ret = LDAP_OBJECT_CLASS_VIOLATION; + rc = LDAP_OBJECT_CLASS_VIOLATION; if( cr && cr->scr_required ) { for( i=0; cr->scr_required[i]; i++ ) { if( cr->scr_required[i] == a->a_desc->ad_type ) { - ret = LDAP_SUCCESS; + rc = LDAP_SUCCESS; break; } } } - if( ret != LDAP_SUCCESS && cr && cr->scr_allowed ) { + if( rc != LDAP_SUCCESS && cr && cr->scr_allowed ) { for( i=0; cr->scr_allowed[i]; i++ ) { if( cr->scr_allowed[i] == a->a_desc->ad_type ) { - ret = LDAP_SUCCESS; + rc = LDAP_SUCCESS; break; } } } - if( ret != LDAP_SUCCESS ) + if( rc != LDAP_SUCCESS ) { - ret = oc_check_allowed( a->a_desc->ad_type, aoc->a_vals, sc ); + rc = oc_check_allowed( a->a_desc->ad_type, socs, sc ); } - if ( ret != LDAP_SUCCESS ) { + if ( rc != LDAP_SUCCESS ) { char *type = a->a_desc->ad_cname.bv_val; snprintf( textbuf, textlen, "attribute '%s' not allowed", type ); -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, INFO, - "entry_schema_check: dn=\"%s\" %s\n", e->e_dn, textbuf, 0); -#else Debug( LDAP_DEBUG_ANY, "Entry (%s), %s\n", e->e_dn, textbuf, 0 ); -#endif - return ret; + goto leave; } } - return LDAP_SUCCESS; + *text = NULL; +leave: + slap_sl_free( socs, op->o_tmpmemctx ); + return rc; } static char * @@ -561,15 +496,9 @@ oc_check_required( int i; Attribute *a; -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, ENTRY, - "oc_check_required: dn (%s), objectClass \"%s\"\n", - e->e_dn, ocname->bv_val, 0 ); -#else Debug( LDAP_DEBUG_TRACE, "oc_check_required entry (%s), objectClass \"%s\"\n", e->e_dn, ocname->bv_val, 0 ); -#endif /* check for empty oc_required */ @@ -597,19 +526,14 @@ oc_check_required( int oc_check_allowed( AttributeType *at, - BerVarray ocl, + ObjectClass **socs, ObjectClass *sc ) { int i, j; -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, ENTRY, - "oc_check_allowed: type \"%s\"\n", at->sat_cname.bv_val, 0, 0 ); -#else Debug( LDAP_DEBUG_TRACE, "oc_check_allowed type \"%s\"\n", at->sat_cname.bv_val, 0, 0 ); -#endif /* always allow objectClass attribute */ if ( strcasecmp( at->sat_cname.bv_val, "objectClass" ) == 0 ) { @@ -645,9 +569,9 @@ int oc_check_allowed( } /* check that the type appears as req or opt in at least one oc */ - for ( i = 0; ocl[i].bv_val != NULL; i++ ) { + for ( i = 0; socs[i]; i++ ) { /* if we know about the oc */ - ObjectClass *oc = oc_bvfind( &ocl[i] ); + ObjectClass *oc = socs[i]; if ( oc != NULL && oc->soc_kind != LDAP_SCHEMA_ABSTRACT && ( sc == NULL || oc->soc_kind == LDAP_SCHEMA_AUXILIARY )) { @@ -679,30 +603,40 @@ int oc_check_allowed( */ int structural_class( BerVarray ocs, - struct berval *scbv, ObjectClass **scp, + ObjectClass ***socsp, const char **text, - char *textbuf, size_t textlen ) + char *textbuf, size_t textlen, + void *ctx ) { - int i; - ObjectClass *oc; + int i, nocs; + ObjectClass *oc, **socs; ObjectClass *sc = NULL; int scn = -1; *text = "structural_class: internal error"; - scbv->bv_len = 0; + + /* count them */ + for( i=0; ocs[i].bv_val; i++ ) ; + nocs = i; + + socs = slap_sl_malloc( (nocs+1) * sizeof(ObjectClass *), ctx ); for( i=0; ocs[i].bv_val; i++ ) { - oc = oc_bvfind( &ocs[i] ); + socs[i] = oc_bvfind( &ocs[i] ); - if( oc == NULL ) { + if( socs[i] == NULL ) { snprintf( textbuf, textlen, "unrecognized objectClass '%s'", ocs[i].bv_val ); *text = textbuf; - return LDAP_OBJECT_CLASS_VIOLATION; + goto fail; } + } + socs[i] = NULL; + for( i=0; ocs[i].bv_val; i++ ) { + oc = socs[i]; if( oc->soc_kind == LDAP_SCHEMA_STRUCTURAL ) { if( sc == NULL || is_object_subclass( sc, oc ) ) { sc = oc; @@ -714,14 +648,14 @@ int structural_class( /* find common superior */ for( j=i+1; ocs[j].bv_val; j++ ) { - xc = oc_bvfind( &ocs[j] ); + xc = socs[j]; if( xc == NULL ) { snprintf( textbuf, textlen, "unrecognized objectClass '%s'", ocs[j].bv_val ); *text = textbuf; - return LDAP_OBJECT_CLASS_VIOLATION; + goto fail; } if( xc->soc_kind != LDAP_SCHEMA_STRUCTURAL ) { @@ -745,7 +679,7 @@ int structural_class( "invalid structural object class chain (%s/%s)", ocs[scn].bv_val, ocs[i].bv_val ); *text = textbuf; - return LDAP_OBJECT_CLASS_VIOLATION; + goto fail; } } } @@ -757,22 +691,26 @@ int structural_class( if( sc == NULL ) { *text = "no structural object class provided"; - return LDAP_OBJECT_CLASS_VIOLATION; + goto fail; } if( scn < 0 ) { *text = "invalid structural object class"; - return LDAP_OBJECT_CLASS_VIOLATION; + goto fail; } - *scbv = ocs[scn]; - - if( scbv->bv_len == 0 ) { - *text = "invalid structural object class"; - return LDAP_OBJECT_CLASS_VIOLATION; + if ( socsp ) { + *socsp = socs; + } else { + slap_sl_free( socs, ctx ); } + *text = NULL; return LDAP_SUCCESS; + +fail: + slap_sl_free( socs, ctx ); + return LDAP_OBJECT_CLASS_VIOLATION; } /* @@ -782,9 +720,11 @@ int mods_structural_class( Modifications *mods, struct berval *sc, const char **text, - char *textbuf, size_t textlen ) + char *textbuf, size_t textlen, void *ctx ) { Modifications *ocmod = NULL; + ObjectClass *ssc; + int rc; for( ; mods != NULL; mods = mods->sml_next ) { if( mods->sml_desc == slap_schema.si_ad_objectClass ) { @@ -801,19 +741,23 @@ int mods_structural_class( return LDAP_OBJECT_CLASS_VIOLATION; } - if( ocmod->sml_bvalues == NULL || ocmod->sml_bvalues[0].bv_val == NULL ) { + if( ocmod->sml_values == NULL || ocmod->sml_values[0].bv_val == NULL ) { *text = "objectClass attribute has no values"; return LDAP_OBJECT_CLASS_VIOLATION; } - return structural_class( ocmod->sml_bvalues, sc, NULL, - text, textbuf, textlen ); + rc = structural_class( ocmod->sml_values, &ssc, NULL, + text, textbuf, textlen, ctx ); + if ( rc == LDAP_SUCCESS ) + *sc = ssc->soc_cname; + return rc; } static int entry_naming_check( Entry *e, + int manage, const char** text, char *textbuf, size_t textlen ) { @@ -823,6 +767,10 @@ entry_naming_check( ber_len_t cnt; int rc = LDAP_SUCCESS; + if ( BER_BVISEMPTY( &e->e_name )) { + return LDAP_SUCCESS; + } + /* * Get attribute type(s) and attribute value(s) of our RDN */ @@ -870,9 +818,9 @@ entry_naming_check( break; } - if( desc->ad_type->sat_obsolete ) { + if( !manage && desc->ad_type->sat_obsolete ) { snprintf( textbuf, textlen, - "naming attribute '%s' is collective", + "naming attribute '%s' is obsolete", ava->la_attr.bv_val ); rc = LDAP_NAMING_VIOLATION; break;