2000-02-05 13:01:41 +08:00
|
|
|
/* schema.c - routines to manage schema definitions */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2012-01-01 23:07:45 +08:00
|
|
|
* Copyright 1998-2012 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* 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
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-06-17 23:07:35 +08:00
|
|
|
#include <ac/ctype.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
2002-08-31 18:49:03 +08:00
|
|
|
#include "lutil.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-06-15 03:10:07 +08:00
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
int
|
2000-05-22 11:46:57 +08:00
|
|
|
schema_info( Entry **entry, const char **text )
|
1999-05-29 02:56:47 +08:00
|
|
|
{
|
2001-12-20 06:41:00 +08:00
|
|
|
AttributeDescription *ad_structuralObjectClass
|
|
|
|
= slap_schema.si_ad_structuralObjectClass;
|
|
|
|
AttributeDescription *ad_objectClass
|
|
|
|
= slap_schema.si_ad_objectClass;
|
2002-08-31 18:49:03 +08:00
|
|
|
AttributeDescription *ad_createTimestamp
|
|
|
|
= slap_schema.si_ad_createTimestamp;
|
|
|
|
AttributeDescription *ad_modifyTimestamp
|
|
|
|
= slap_schema.si_ad_modifyTimestamp;
|
2000-05-16 07:36:37 +08:00
|
|
|
|
1999-05-29 02:56:47 +08:00
|
|
|
Entry *e;
|
2002-08-29 18:49:11 +08:00
|
|
|
struct berval vals[5];
|
2003-02-26 05:08:48 +08:00
|
|
|
struct berval nvals[5];
|
1999-05-29 02:56:47 +08:00
|
|
|
|
2006-08-29 09:43:23 +08:00
|
|
|
e = entry_alloc();
|
2002-11-02 02:59:52 +08:00
|
|
|
if( e == NULL ) {
|
|
|
|
/* Out of memory, do something about it */
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-08-29 09:43:23 +08:00
|
|
|
"schema_info: entry_alloc failed - out of memory.\n", 0, 0, 0 );
|
2002-11-02 02:59:52 +08:00
|
|
|
*text = "out of memory";
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
1999-05-29 02:56:47 +08:00
|
|
|
|
|
|
|
e->e_attrs = NULL;
|
2002-08-10 11:10:52 +08:00
|
|
|
/* backend-specific schema info should be created by the
|
|
|
|
* backend itself
|
|
|
|
*/
|
2004-07-27 05:26:34 +08:00
|
|
|
ber_dupbv( &e->e_name, &frontendDB->be_schemadn );
|
|
|
|
ber_dupbv( &e->e_nname, &frontendDB->be_schemandn );
|
1999-05-29 02:56:47 +08:00
|
|
|
e->e_private = NULL;
|
|
|
|
|
2004-08-07 00:39:45 +08:00
|
|
|
BER_BVSTR( &vals[0], "subentry" );
|
|
|
|
if( attr_merge_one( e, ad_structuralObjectClass, vals, NULL ) ) {
|
2002-11-02 02:59:52 +08:00
|
|
|
/* Out of memory, do something about it */
|
|
|
|
entry_free( e );
|
|
|
|
*text = "out of memory";
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
2001-12-20 06:41:00 +08:00
|
|
|
|
2004-08-07 00:39:45 +08:00
|
|
|
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 ) ) {
|
2002-11-02 02:59:52 +08:00
|
|
|
/* Out of memory, do something about it */
|
|
|
|
entry_free( e );
|
|
|
|
*text = "out of memory";
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
2000-05-16 07:36:37 +08:00
|
|
|
|
1999-07-24 11:39:23 +08:00
|
|
|
{
|
2000-05-22 11:46:57 +08:00
|
|
|
int rc;
|
2000-05-16 07:36:37 +08:00
|
|
|
AttributeDescription *desc = NULL;
|
2004-07-27 05:26:34 +08:00
|
|
|
struct berval rdn = frontendDB->be_schemadn;
|
2005-11-14 06:26:53 +08:00
|
|
|
vals[0].bv_val = ber_bvchr( &rdn, '=' );
|
1999-05-29 02:56:47 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
if( vals[0].bv_val == NULL ) {
|
2000-05-17 00:22:52 +08:00
|
|
|
*text = "improperly configured subschema subentry";
|
|
|
|
return LDAP_OTHER;
|
2000-05-16 07:36:37 +08:00
|
|
|
}
|
1999-07-24 11:39:23 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
vals[0].bv_val++;
|
|
|
|
vals[0].bv_len = rdn.bv_len - (vals[0].bv_val - rdn.bv_val);
|
|
|
|
rdn.bv_len -= vals[0].bv_len + 1;
|
2000-05-16 07:36:37 +08:00
|
|
|
|
2001-12-26 16:17:44 +08:00
|
|
|
rc = slap_bv2ad( &rdn, &desc, text );
|
2000-05-16 07:36:37 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2000-05-17 00:22:52 +08:00
|
|
|
entry_free( e );
|
|
|
|
*text = "improperly configured subschema subentry";
|
|
|
|
return LDAP_OTHER;
|
1999-07-24 11:39:23 +08:00
|
|
|
}
|
|
|
|
|
2005-11-14 06:26:53 +08:00
|
|
|
nvals[0].bv_val = ber_bvchr( &frontendDB->be_schemandn, '=' );
|
2005-07-18 14:22:33 +08:00
|
|
|
assert( nvals[0].bv_val != NULL );
|
2003-02-26 05:08:48 +08:00
|
|
|
nvals[0].bv_val++;
|
2004-07-27 05:26:34 +08:00
|
|
|
nvals[0].bv_len = frontendDB->be_schemandn.bv_len -
|
|
|
|
(nvals[0].bv_val - frontendDB->be_schemandn.bv_val);
|
2003-02-26 05:08:48 +08:00
|
|
|
|
2004-08-07 00:39:45 +08:00
|
|
|
if ( attr_merge_one( e, desc, vals, nvals ) ) {
|
2002-11-02 02:59:52 +08:00
|
|
|
/* Out of memory, do something about it */
|
|
|
|
entry_free( e );
|
|
|
|
*text = "out of memory";
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
1999-07-24 11:39:23 +08:00
|
|
|
}
|
1999-05-29 02:56:47 +08:00
|
|
|
|
2002-08-31 18:49:03 +08:00
|
|
|
{
|
|
|
|
char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
|
|
|
|
|
|
|
|
/*
|
2006-10-28 11:53:02 +08:00
|
|
|
* According to RFC 4512:
|
2002-08-31 18:49:03 +08:00
|
|
|
|
2006-10-28 11:53:02 +08:00
|
|
|
Servers SHOULD maintain the 'creatorsName', 'createTimestamp',
|
|
|
|
'modifiersName', and 'modifyTimestamp' attributes for all entries of
|
|
|
|
the DIT.
|
2002-08-31 18:49:03 +08:00
|
|
|
|
|
|
|
* to be conservative, we declare schema created
|
|
|
|
* AND modified at server startup time ...
|
|
|
|
*/
|
|
|
|
|
|
|
|
vals[0].bv_val = timebuf;
|
2005-06-07 12:12:14 +08:00
|
|
|
vals[0].bv_len = sizeof( timebuf );
|
|
|
|
|
|
|
|
slap_timestamp( &starttime, vals );
|
2002-08-31 18:49:03 +08:00
|
|
|
|
2004-08-07 00:39:45 +08:00
|
|
|
if( attr_merge_one( e, ad_createTimestamp, vals, NULL ) ) {
|
2002-11-02 02:59:52 +08:00
|
|
|
/* Out of memory, do something about it */
|
|
|
|
entry_free( e );
|
|
|
|
*text = "out of memory";
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
2004-08-07 00:39:45 +08:00
|
|
|
if( attr_merge_one( e, ad_modifyTimestamp, vals, NULL ) ) {
|
2002-11-02 02:59:52 +08:00
|
|
|
/* Out of memory, do something about it */
|
|
|
|
entry_free( e );
|
|
|
|
*text = "out of memory";
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
2002-08-31 18:49:03 +08:00
|
|
|
}
|
|
|
|
|
2000-02-05 13:01:41 +08:00
|
|
|
if ( syn_schema_info( e )
|
|
|
|
|| mr_schema_info( e )
|
2002-03-11 11:06:34 +08:00
|
|
|
|| mru_schema_info( e )
|
2000-02-05 13:01:41 +08:00
|
|
|
|| at_schema_info( e )
|
2002-10-09 15:11:50 +08:00
|
|
|
|| oc_schema_info( e )
|
|
|
|
|| cr_schema_info( e ) )
|
2000-02-05 13:01:41 +08:00
|
|
|
{
|
1999-05-29 02:56:47 +08:00
|
|
|
/* Out of memory, do something about it */
|
|
|
|
entry_free( e );
|
2000-05-17 06:04:49 +08:00
|
|
|
*text = "out of memory";
|
2000-05-17 00:22:52 +08:00
|
|
|
return LDAP_OTHER;
|
1999-05-29 02:56:47 +08:00
|
|
|
}
|
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
*entry = e;
|
|
|
|
return LDAP_SUCCESS;
|
1999-05-29 02:56:47 +08:00
|
|
|
}
|