X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Foc.c;h=c2ba69013df2c18d05162c54a4d27a1fecd2466a;hb=f8fb4aca7668c722f41941be719203aa8c298e12;hp=158202541e68757c2d250283c8b5ac9a3e40c9d1;hpb=f49fd8a98e6849f74e50a01165f4214b065b9b00;p=openldap diff --git a/servers/slapd/oc.c b/servers/slapd/oc.c index 158202541e..c2ba69013d 100644 --- a/servers/slapd/oc.c +++ b/servers/slapd/oc.c @@ -1,7 +1,7 @@ /* oc.c - object class routines */ /* $OpenLDAP$ */ /* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ @@ -51,7 +51,7 @@ int is_entry_objectclass( ObjectClass *oc ) { Attribute *attr; - int i; + struct berval *bv; AttributeDescription *objectClass = slap_schema.si_ad_objectClass; assert(!( e == NULL || oc == NULL )); @@ -67,9 +67,10 @@ int is_entry_objectclass( if( attr == NULL ) { /* no objectClass attribute */ #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "is_entry_objectclass: dn(%s), oid (%s), no objectlcass attribute.\n", - e->e_dn == NULL ? "" : e->e_dn, oc->soc_oclass.oc_oid )); + LDAP_LOG(( "operation", LDAP_LEVEL_ERR, "is_entry_objectclass: " + "dn(%s), oid (%s), no objectClass attribute.\n", + e->e_dn == NULL ? "" : e->e_dn, + oc->soc_oclass.oc_oid )); #else Debug( LDAP_DEBUG_ANY, "is_entry_objectclass(\"%s\", \"%s\") " "no objectClass attribute\n", @@ -77,12 +78,11 @@ int is_entry_objectclass( oc->soc_oclass.oc_oid, 0 ); #endif - return 0; } - for( i=0; attr->a_vals[i]; i++ ) { - ObjectClass *objectClass = oc_find( attr->a_vals[i]->bv_val ); + for( bv=attr->a_vals; bv->bv_val; bv++ ) { + ObjectClass *objectClass = oc_bvfind( bv ); if( objectClass == oc ) { return 1; @@ -95,7 +95,7 @@ int is_entry_objectclass( struct oindexrec { - char *oir_name; + struct berval oir_name; ObjectClass *oir_oc; }; @@ -107,27 +107,36 @@ oc_index_cmp( struct oindexrec *oir1, struct oindexrec *oir2 ) { - assert( oir1->oir_name ); - assert( oir1->oir_oc ); - assert( oir2->oir_name ); - assert( oir2->oir_oc ); - - return (strcasecmp( oir1->oir_name, oir2->oir_name )); + int i = oir1->oir_name.bv_len - oir2->oir_name.bv_len; + if (i) + return i; + return strcasecmp( oir1->oir_name.bv_val, oir2->oir_name.bv_val ); } static int oc_index_name_cmp( - char *name, + struct berval *name, struct oindexrec *oir ) { - assert( oir->oir_name ); - assert( oir->oir_oc ); - - return (strcasecmp( name, oir->oir_name )); + int i = name->bv_len - oir->oir_name.bv_len; + if (i) + return i; + return strncasecmp( name->bv_val, oir->oir_name.bv_val, name->bv_len ); } ObjectClass * oc_find( const char *ocname ) +{ + struct berval bv; + + bv.bv_val = (char *)ocname; + bv.bv_len = strlen( ocname ); + + return( oc_bvfind( &bv ) ); +} + +ObjectClass * +oc_bvfind( struct berval *ocname ) { struct oindexrec *oir; @@ -135,9 +144,6 @@ oc_find( const char *ocname ) (AVL_CMP) oc_index_name_cmp ); if ( oir != NULL ) { - assert( oir->oir_name ); - assert( oir->oir_oc ); - return( oir->oir_oc ); } @@ -221,23 +227,23 @@ oc_add_sups( int code; ObjectClass *soc1; int nsups; - char **sups1; + char **sups1; int add_sups = 0; if ( sups ) { if ( !soc->soc_sups ) { /* We are at the first recursive level */ add_sups = 1; - nsups = 0; + nsups = 1; sups1 = sups; while ( *sups1 ) { nsups++; sups1++; } - nsups++; soc->soc_sups = (ObjectClass **)ch_calloc(nsups, sizeof(ObjectClass *)); } + nsups = 0; sups1 = sups; while ( *sups1 ) { @@ -247,6 +253,18 @@ oc_add_sups( return SLAP_SCHERR_CLASS_NOT_FOUND; } + /* check object class usage + * abstract classes can only sup abstract classes + * structural classes can not sup auxiliary classes + * auxiliary classes can not sup structural classes + */ + if( soc->soc_kind != soc1->soc_kind + && soc1->soc_kind != LDAP_SCHEMA_ABSTRACT ) + { + *err = *sups1; + return SLAP_SCHERR_CLASS_BAD_USAGE; + } + if ( add_sups ) soc->soc_sups[nsups] = soc1; @@ -263,9 +281,26 @@ oc_add_sups( sups1++; } } + return 0; } +void +oc_destroy( void ) +{ + ObjectClass *o, *n; + + avl_free(oc_index, ldap_memfree); + for (o=oc_list; o; o=n) + { + n = o->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); + } +} + static int oc_insert( ObjectClass *soc, @@ -285,10 +320,11 @@ oc_insert( if ( soc->soc_oid ) { oir = (struct oindexrec *) ch_calloc( 1, sizeof(struct oindexrec) ); - oir->oir_name = soc->soc_oid; + oir->oir_name.bv_val = soc->soc_oid; + oir->oir_name.bv_len = strlen( soc->soc_oid ); oir->oir_oc = soc; - assert( oir->oir_name ); + assert( oir->oir_name.bv_val ); assert( oir->oir_oc ); if ( avl_insert( &oc_index, (caddr_t) oir, @@ -296,23 +332,23 @@ oc_insert( (AVL_DUP) avl_dup_error ) ) { *err = soc->soc_oid; - ldap_memfree(oir->oir_name); ldap_memfree(oir); return SLAP_SCHERR_DUP_CLASS; } /* FIX: temporal consistency check */ - assert( oc_find(oir->oir_name) != NULL ); + assert( oc_bvfind(&oir->oir_name) != NULL ); } if ( (names = soc->soc_names) ) { while ( *names ) { oir = (struct oindexrec *) ch_calloc( 1, sizeof(struct oindexrec) ); - oir->oir_name = ch_strdup(*names); + oir->oir_name.bv_val = *names; + oir->oir_name.bv_len = strlen( *names ); oir->oir_oc = soc; - assert( oir->oir_name ); + assert( oir->oir_name.bv_val ); assert( oir->oir_oc ); if ( avl_insert( &oc_index, (caddr_t) oir, @@ -320,13 +356,12 @@ oc_insert( (AVL_DUP) avl_dup_error ) ) { *err = *names; - ldap_memfree(oir->oir_name); ldap_memfree(oir); return SLAP_SCHERR_DUP_CLASS; } /* FIX: temporal consistency check */ - assert( oc_find(oir->oir_name) != NULL ); + assert( oc_bvfind(&oir->oir_name) != NULL ); names++; } @@ -344,6 +379,29 @@ oc_add( ObjectClass *soc; int code; + if ( oc->oc_names != NULL ) { + int i; + + for( i=0; oc->oc_names[i]; i++ ) { + if( !slap_valid_descr( oc->oc_names[i] ) ) { + return SLAP_SCHERR_BAD_DESCR; + } + } + } + + if ( !OID_LEADCHAR( oc->oc_oid[0] )) { + /* Expand OID macros */ + char *oid = oidm_find( oc->oc_oid ); + if ( !oid ) { + *err = oc->oc_oid; + return SLAP_SCHERR_OIDM; + } + if ( oid != oc->oc_oid ) { + ldap_memfree( oc->oc_oid ); + oc->oc_oid = oid; + } + } + soc = (ObjectClass *) ch_calloc( 1, sizeof(ObjectClass) ); AC_MEMCPY( &soc->soc_oclass, oc, sizeof(LDAPObjectClass) ); @@ -356,6 +414,7 @@ oc_add( } else { code = oc_add_sups( soc, soc->soc_sup_oids, err ); } + if ( code != 0 ) return code; code = oc_create_required( soc, soc->soc_at_oids_must, err ); @@ -401,27 +460,23 @@ oc_print( ObjectClass *oc ) int oc_schema_info( Entry *e ) { - struct berval val; - struct berval *vals[2]; + struct berval vals[2]; ObjectClass *oc; AttributeDescription *ad_objectClasses = slap_schema.si_ad_objectClasses; - vals[0] = &val; - vals[1] = NULL; + vals[1].bv_val = NULL; for ( oc = oc_list; oc; oc = oc->soc_next ) { - val.bv_val = ldap_objectclass2str( &oc->soc_oclass ); - if ( val.bv_val == NULL ) { + if ( ldap_objectclass2bv( &oc->soc_oclass, vals ) == NULL ) { return -1; } - val.bv_len = strlen( val.bv_val ); #if 0 Debug( LDAP_DEBUG_TRACE, "Merging oc [%ld] %s\n", - (long) val.bv_len, val.bv_val, 0 ); + (long) vals[0].bv_len, vals[0].bv_val, 0 ); #endif attr_merge( e, ad_objectClasses, vals ); - ldap_memfree( val.bv_val ); + ldap_memfree( vals[0].bv_val ); } return 0; }