X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Foc.c;h=b7ac0ba4e0e6b1c0b2e127e1a21be9127e2dd08a;hb=d520cd607d452fe4809d86f37b299ee7665d0f12;hp=4ce2b8b66abf4a76aefe072a2a3da248a9e0928f;hpb=2d98b19bf76b0ac01abf5df0dc2d05ae3c01e967;p=openldap diff --git a/servers/slapd/oc.c b/servers/slapd/oc.c index 4ce2b8b66a..b7ac0ba4e0 100644 --- a/servers/slapd/oc.c +++ b/servers/slapd/oc.c @@ -1,8 +1,17 @@ /* oc.c - object class routines */ /* $OpenLDAP$ */ -/* - * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2005 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" int is_object_subclass( ObjectClass *sup, @@ -24,15 +32,9 @@ int is_object_subclass( if( sub == NULL || sup == NULL ) return 0; -#if 1 -#ifdef NEW_LOGGING - LDAP_LOG ( OPERATION, ARGS, - "is_object_subclass(%s,%s) %d\n", - sup->soc_oid, sub->soc_oid, sup == sub ); -#else +#if 0 Debug( LDAP_DEBUG_TRACE, "is_object_subclass(%s,%s) %d\n", sup->soc_oid, sub->soc_oid, sup == sub ); -#endif #endif if( sup == sub ) { @@ -57,9 +59,16 @@ int is_entry_objectclass( ObjectClass *oc, int set_flags ) { + /* + * set_flags should only be true if oc is one of operational + * object classes which we support objectClass flags for + * (e.g., referral, alias, ...). See . + */ + Attribute *attr; struct berval *bv; AttributeDescription *objectClass = slap_schema.si_ad_objectClass; + assert(!( e == NULL || oc == NULL )); if( e == NULL || oc == NULL ) { @@ -67,27 +76,20 @@ int is_entry_objectclass( } if( set_flags && ( e->e_ocflags & SLAP_OC__END )) { - return (e->e_ocflags & oc->soc_flags) ? 1 : 0; + /* flags are set, use them */ + return (e->e_ocflags & oc->soc_flags & SLAP_OC__MASK) != 0; } /* * find objectClass attribute */ attr = attr_find(e->e_attrs, objectClass); - if( attr == NULL ) { /* no objectClass attribute */ -#ifdef NEW_LOGGING - LDAP_LOG( OPERATION, ERR, - "is_entry_objectclass: dn(%s), oid (%s), no objectClass " - "attribute.\n", e->e_dn == NULL ? "" : e->e_dn, - oc->soc_oclass.oc_oid, 0 ); -#else Debug( LDAP_DEBUG_ANY, "is_entry_objectclass(\"%s\", \"%s\") " "no objectClass attribute\n", e->e_dn == NULL ? "" : e->e_dn, oc->soc_oclass.oc_oid, 0 ); -#endif return 0; } @@ -95,7 +97,7 @@ int is_entry_objectclass( for( bv=attr->a_vals; bv->bv_val; bv++ ) { ObjectClass *objectClass = oc_bvfind( bv ); - if ( objectClass == oc && !set_flags ) { + if ( !set_flags && objectClass == oc ) { return 1; } @@ -103,39 +105,43 @@ int is_entry_objectclass( e->e_ocflags |= objectClass->soc_flags; } } - e->e_ocflags |= SLAP_OC__END; /* We've finished this */ - return (e->e_ocflags & oc->soc_flags); + /* mark flags as set */ + e->e_ocflags |= SLAP_OC__END; + + return (e->e_ocflags & oc->soc_flags & SLAP_OC__MASK) != 0; } struct oindexrec { - struct berval oir_name; + struct berval oir_name; ObjectClass *oir_oc; }; static Avlnode *oc_index = NULL; -static ObjectClass *oc_list = NULL; +static LDAP_SLIST_HEAD(OCList, slap_object_class) oc_list + = LDAP_SLIST_HEAD_INITIALIZER(&oc_list); static int oc_index_cmp( - struct oindexrec *oir1, - struct oindexrec *oir2 ) + const void *v_oir1, + const void *v_oir2 ) { + const struct oindexrec *oir1 = v_oir1, *oir2 = v_oir2; int i = oir1->oir_name.bv_len - oir2->oir_name.bv_len; - if (i) - return i; + if (i) return i; return strcasecmp( oir1->oir_name.bv_val, oir2->oir_name.bv_val ); } static int oc_index_name_cmp( - struct berval *name, - struct oindexrec *oir ) + const void *v_name, + const void *v_oir ) { + const struct berval *name = v_name; + const struct oindexrec *oir = v_oir; int i = name->bv_len - oir->oir_name.bv_len; - if (i) - return i; + if (i) return i; return strncasecmp( name->bv_val, oir->oir_name.bv_val, name->bv_len ); } @@ -155,8 +161,7 @@ oc_bvfind( struct berval *ocname ) { struct oindexrec *oir; - oir = (struct oindexrec *) avl_find( oc_index, ocname, - (AVL_CMP) oc_index_name_cmp ); + oir = avl_find( oc_index, ocname, oc_index_name_cmp ); if ( oir != NULL ) { return( oir->oir_oc ); @@ -165,6 +170,47 @@ oc_bvfind( struct berval *ocname ) return( NULL ); } +static LDAP_SLIST_HEAD(OCUList, slap_object_class) oc_undef_list + = LDAP_SLIST_HEAD_INITIALIZER(&oc_undef_list); + +ObjectClass * +oc_bvfind_undef( struct berval *ocname ) +{ + ObjectClass *oc = oc_bvfind( ocname ); + + if ( oc ) { + return oc; + } + + LDAP_SLIST_FOREACH( oc, &oc_undef_list, soc_next ) { + int d = oc->soc_cname.bv_len - ocname->bv_len; + + if ( d ) { + continue; + } + + if ( strcasecmp( oc->soc_cname.bv_val, ocname->bv_val ) == 0 ) { + break; + } + } + + if ( oc ) { + return oc; + } + + oc = ch_malloc( sizeof( ObjectClass ) + ocname->bv_len + 1 ); + memset( oc, 0, sizeof( ObjectClass ) ); + + oc->soc_cname.bv_len = ocname->bv_len; + oc->soc_cname.bv_val = (char *)&oc[ 1 ]; + AC_MEMCPY( oc->soc_cname.bv_val, ocname->bv_val, ocname->bv_len ); + + LDAP_SLIST_NEXT( oc, soc_next ) = NULL; + LDAP_SLIST_INSERT_HEAD( &oc_undef_list, oc, soc_next ); + + return oc; +} + static int oc_create_required( ObjectClass *soc, @@ -320,34 +366,37 @@ oc_add_sups( void oc_destroy( void ) { - ObjectClass *o, *n; + ObjectClass *o; avl_free(oc_index, ldap_memfree); - for (o=oc_list; o; o=n) - { - n = o->soc_next; + while( !LDAP_SLIST_EMPTY(&oc_list) ) { + o = LDAP_SLIST_FIRST(&oc_list); + LDAP_SLIST_REMOVE_HEAD(&oc_list, soc_next); + if (o->soc_sups) ldap_memfree(o->soc_sups); if (o->soc_required) ldap_memfree(o->soc_required); if (o->soc_allowed) ldap_memfree(o->soc_allowed); ldap_objectclass_free((LDAPObjectClass *)o); } + + while( !LDAP_SLIST_EMPTY(&oc_undef_list) ) { + o = LDAP_SLIST_FIRST(&oc_undef_list); + LDAP_SLIST_REMOVE_HEAD(&oc_undef_list, soc_next); + + ch_free( (ObjectClass *)o ); + } } static int oc_insert( ObjectClass *soc, - const char **err -) + const char **err ) { - ObjectClass **ocp; struct oindexrec *oir; char **names; - ocp = &oc_list; - while ( *ocp != NULL ) { - ocp = &(*ocp)->soc_next; - } - *ocp = soc; + LDAP_SLIST_NEXT( soc, soc_next ) = NULL; + LDAP_SLIST_INSERT_HEAD( &oc_list, soc, soc_next ); if ( soc->soc_oid ) { oir = (struct oindexrec *) @@ -360,8 +409,7 @@ oc_insert( assert( oir->oir_oc ); if ( avl_insert( &oc_index, (caddr_t) oir, - (AVL_CMP) oc_index_cmp, - (AVL_DUP) avl_dup_error ) ) + oc_index_cmp, avl_dup_error ) ) { *err = soc->soc_oid; ldap_memfree(oir); @@ -384,8 +432,7 @@ oc_insert( assert( oir->oir_oc ); if ( avl_insert( &oc_index, (caddr_t) oir, - (AVL_CMP) oc_index_cmp, - (AVL_DUP) avl_dup_error ) ) + oc_index_cmp, avl_dup_error ) ) { *err = *names; ldap_memfree(oir); @@ -406,8 +453,7 @@ int oc_add( LDAPObjectClass *oc, int user, - const char **err -) + const char **err ) { ObjectClass *soc; int code; @@ -457,6 +503,7 @@ oc_add( } if ( code != 0 ) return code; + if( user && op ) return SLAP_SCHERR_CLASS_BAD_SUP; code = oc_create_required( soc, soc->soc_at_oids_must, &op, err ); if ( code != 0 ) return code; @@ -464,7 +511,7 @@ oc_add( code = oc_create_allowed( soc, soc->soc_at_oids_may, &op, err ); if ( code != 0 ) return code; - if( user && op ) return SLAP_SCHERR_CLASS_BAD_SUP; + if( user && op ) return SLAP_SCHERR_CLASS_BAD_USAGE; code = oc_insert(soc,err); return code; @@ -473,27 +520,29 @@ oc_add( int oc_schema_info( Entry *e ) { - struct berval vals[2]; - ObjectClass *oc; - AttributeDescription *ad_objectClasses = slap_schema.si_ad_objectClasses; + ObjectClass *oc; + struct berval val; + struct berval nval; - vals[1].bv_val = NULL; - - for ( oc = oc_list; oc; oc = oc->soc_next ) { + LDAP_SLIST_FOREACH( oc, &oc_list, soc_next ) { if( oc->soc_flags & SLAP_OC_HIDE ) continue; - if ( ldap_objectclass2bv( &oc->soc_oclass, vals ) == NULL ) { + if ( ldap_objectclass2bv( &oc->soc_oclass, &val ) == NULL ) { return -1; } + nval = oc->soc_cname; + #if 0 - Debug( LDAP_DEBUG_TRACE, "Merging oc [%ld] %s\n", - (long) vals[0].bv_len, vals[0].bv_val, 0 ); + Debug( LDAP_DEBUG_TRACE, "Merging oc [%ld] %s (%s)\n", + (long) val.bv_len, val.bv_val, nval.bv_val ); #endif - if( attr_merge( e, ad_objectClasses, vals ) ) + + if( attr_merge_one( e, ad_objectClasses, &val, &nval ) ) { return -1; - ldap_memfree( vals[0].bv_val ); + } + ldap_memfree( val.bv_val ); } return 0; }