X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fschema.c;h=2819b1ad909e5b32ed79f36c266f67db195efb6d;hb=1adee08e8912c1f47c7b170fe62bebdd9797921f;hp=469de9a2b44f2ae6967dad2c94339fd5d069ef1b;hpb=aa9612f0519762979d9ec38256a3bf6c28616ee4;p=openldap diff --git a/servers/slapd/schema.c b/servers/slapd/schema.c index 469de9a2b4..2819b1ad90 100644 --- a/servers/slapd/schema.c +++ b/servers/slapd/schema.c @@ -1,8 +1,17 @@ /* schema.c - routines to manage schema definitions */ /* $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-2010 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,11 +23,9 @@ #include #include "slap.h" -#include "ldap_pvt.h" +#include "lutil.h" -#if defined( SLAPD_SCHEMA_DN ) - int schema_info( Entry **entry, const char **text ) { @@ -26,45 +33,57 @@ schema_info( Entry **entry, const char **text ) = slap_schema.si_ad_structuralObjectClass; AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass; + AttributeDescription *ad_createTimestamp + = slap_schema.si_ad_createTimestamp; + AttributeDescription *ad_modifyTimestamp + = slap_schema.si_ad_modifyTimestamp; Entry *e; - struct berval vals[2]; - - vals[1].bv_val = NULL; + struct berval vals[5]; + struct berval nvals[5]; - e = (Entry *) ch_calloc( 1, sizeof(Entry) ); + e = entry_alloc(); + if( e == NULL ) { + /* Out of memory, do something about it */ + Debug( LDAP_DEBUG_ANY, + "schema_info: entry_alloc failed - out of memory.\n", 0, 0, 0 ); + *text = "out of memory"; + return LDAP_OTHER; + } e->e_attrs = NULL; - ber_str2bv( SLAPD_SCHEMA_DN, sizeof(SLAPD_SCHEMA_DN)-1, 1, &e->e_name); - (void) dnNormalize2( NULL, &e->e_name, &e->e_nname ); + /* backend-specific schema info should be created by the + * backend itself + */ + ber_dupbv( &e->e_name, &frontendDB->be_schemadn ); + ber_dupbv( &e->e_nname, &frontendDB->be_schemandn ); e->e_private = NULL; - vals[0].bv_val = "subentry"; - vals[0].bv_len = sizeof("subentry")-1; - attr_merge( e, ad_structuralObjectClass, vals ); - - vals[0].bv_val = "top"; - vals[0].bv_len = sizeof("top")-1; - attr_merge( e, ad_objectClass, vals ); - - vals[0].bv_val = "subentry"; - vals[0].bv_len = sizeof("subentry")-1; - attr_merge( e, ad_objectClass, vals ); - - vals[0].bv_val = "subschema"; - vals[0].bv_len = sizeof("subschema")-1; - attr_merge( e, ad_objectClass, vals ); + BER_BVSTR( &vals[0], "subentry" ); + if( attr_merge_one( e, ad_structuralObjectClass, vals, NULL ) ) { + /* Out of memory, do something about it */ + entry_free( e ); + *text = "out of memory"; + return LDAP_OTHER; + } - vals[0].bv_val = "extensibleObject"; - vals[0].bv_len = sizeof("extensibleObject")-1; - attr_merge( e, ad_objectClass, vals ); + BER_BVSTR( &vals[0], "top" ); + BER_BVSTR( &vals[1], "subentry" ); + BER_BVSTR( &vals[2], "subschema" ); + BER_BVSTR( &vals[3], "extensibleObject" ); + BER_BVZERO( &vals[4] ); + if ( attr_merge( e, ad_objectClass, vals, NULL ) ) { + /* Out of memory, do something about it */ + entry_free( e ); + *text = "out of memory"; + return LDAP_OTHER; + } { int rc; AttributeDescription *desc = NULL; - struct berval rdn = { sizeof(SLAPD_SCHEMA_DN)-1, - SLAPD_SCHEMA_DN }; - vals[0].bv_val = strchr( rdn.bv_val, '=' ); + struct berval rdn = frontendDB->be_schemadn; + vals[0].bv_val = ber_bvchr( &rdn, '=' ); if( vals[0].bv_val == NULL ) { *text = "improperly configured subschema subentry"; @@ -83,13 +102,59 @@ schema_info( Entry **entry, const char **text ) return LDAP_OTHER; } - attr_merge( e, desc, vals ); + nvals[0].bv_val = ber_bvchr( &frontendDB->be_schemandn, '=' ); + assert( nvals[0].bv_val != NULL ); + nvals[0].bv_val++; + nvals[0].bv_len = frontendDB->be_schemandn.bv_len - + (nvals[0].bv_val - frontendDB->be_schemandn.bv_val); + + if ( attr_merge_one( e, desc, vals, nvals ) ) { + /* Out of memory, do something about it */ + entry_free( e ); + *text = "out of memory"; + return LDAP_OTHER; + } + } + + { + char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; + + /* + * According to RFC 4512: + + Servers SHOULD maintain the 'creatorsName', 'createTimestamp', + 'modifiersName', and 'modifyTimestamp' attributes for all entries of + the DIT. + + * to be conservative, we declare schema created + * AND modified at server startup time ... + */ + + vals[0].bv_val = timebuf; + vals[0].bv_len = sizeof( timebuf ); + + slap_timestamp( &starttime, vals ); + + if( attr_merge_one( e, ad_createTimestamp, vals, NULL ) ) { + /* Out of memory, do something about it */ + entry_free( e ); + *text = "out of memory"; + return LDAP_OTHER; + } + if( attr_merge_one( e, ad_modifyTimestamp, vals, NULL ) ) { + /* Out of memory, do something about it */ + entry_free( e ); + *text = "out of memory"; + return LDAP_OTHER; + } } if ( syn_schema_info( e ) || mr_schema_info( e ) + || mru_schema_info( e ) || at_schema_info( e ) - || oc_schema_info( e ) ) + || oc_schema_info( e ) + || cr_schema_info( e ) ) { /* Out of memory, do something about it */ entry_free( e ); @@ -100,4 +165,3 @@ schema_info( Entry **entry, const char **text ) *entry = e; return LDAP_SUCCESS; } -#endif