2000-02-05 13:01:41 +08:00
|
|
|
/* schema_check.c - routines to enforce schema definitions */
|
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1998-2004 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>.
|
2000-02-05 13:01:41 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "ldap_pvt.h"
|
|
|
|
|
2001-12-20 06:08:24 +08:00
|
|
|
static char * oc_check_required(
|
|
|
|
Entry *e,
|
|
|
|
ObjectClass *oc,
|
|
|
|
struct berval *ocname );
|
|
|
|
|
2003-02-27 06:12:14 +08:00
|
|
|
static int entry_naming_check(
|
|
|
|
Entry *e,
|
|
|
|
const char** text,
|
|
|
|
char *textbuf, size_t textlen );
|
2000-02-05 13:01:41 +08:00
|
|
|
/*
|
|
|
|
* entry_schema_check - check that entry e conforms to the schema required
|
|
|
|
* by its object class(es).
|
|
|
|
*
|
|
|
|
* returns 0 if so, non-zero otherwise.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2000-04-25 21:15:55 +08:00
|
|
|
entry_schema_check(
|
2002-01-11 03:37:03 +08:00
|
|
|
Backend *be,
|
|
|
|
Entry *e,
|
|
|
|
Attribute *oldattrs,
|
2001-12-20 06:08:24 +08:00
|
|
|
const char** text,
|
2001-06-06 08:23:56 +08:00
|
|
|
char *textbuf, size_t textlen )
|
2000-02-05 13:01:41 +08:00
|
|
|
{
|
2001-12-20 06:08:24 +08:00
|
|
|
Attribute *a, *asc, *aoc;
|
|
|
|
ObjectClass *sc, *oc;
|
2002-10-10 07:02:01 +08:00
|
|
|
AttributeType *at;
|
|
|
|
ContentRule *cr;
|
2001-12-20 06:08:24 +08:00
|
|
|
int rc, i;
|
|
|
|
struct berval nsc;
|
|
|
|
AttributeDescription *ad_structuralObjectClass
|
|
|
|
= slap_schema.si_ad_structuralObjectClass;
|
|
|
|
AttributeDescription *ad_objectClass
|
|
|
|
= slap_schema.si_ad_objectClass;
|
2000-06-01 02:46:13 +08:00
|
|
|
int extensible = 0;
|
2002-01-12 04:28:05 +08:00
|
|
|
int subentry = is_entry_subentry( e );
|
2002-01-14 03:38:12 +08:00
|
|
|
int collectiveSubentry = 0;
|
2002-01-12 04:28:05 +08:00
|
|
|
|
2003-09-03 23:44:22 +08:00
|
|
|
if ( SLAP_NO_SCHEMA_CHECK( be )) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-10-10 07:02:01 +08:00
|
|
|
if( subentry ) {
|
|
|
|
collectiveSubentry = is_entry_collectiveAttributeSubentry( e );
|
|
|
|
}
|
2000-02-15 04:57:34 +08:00
|
|
|
|
2001-08-29 05:43:00 +08:00
|
|
|
*text = textbuf;
|
|
|
|
|
2002-01-10 08:17:21 +08:00
|
|
|
/* misc attribute checks */
|
2001-07-24 12:31:01 +08:00
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
2002-01-12 04:28:05 +08:00
|
|
|
const char *type = a->a_desc->ad_cname.bv_val;
|
|
|
|
|
2001-07-24 12:31:01 +08:00
|
|
|
/* there should be at least one value */
|
|
|
|
assert( a->a_vals );
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( a->a_vals[0].bv_val != NULL );
|
2001-07-24 12:31:01 +08:00
|
|
|
|
2002-01-10 08:17:21 +08:00
|
|
|
if( a->a_desc->ad_type->sat_check ) {
|
|
|
|
int rc = (a->a_desc->ad_type->sat_check)(
|
2002-01-12 02:00:22 +08:00
|
|
|
be, e, a, text, textbuf, textlen );
|
2002-01-10 08:17:21 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-14 03:38:12 +08:00
|
|
|
if( !collectiveSubentry && is_at_collective( a->a_desc->ad_type ) ) {
|
2002-01-13 13:00:59 +08:00
|
|
|
snprintf( textbuf, textlen,
|
2002-01-20 06:33:07 +08:00
|
|
|
"'%s' can only appear in collectiveAttributeSubentry",
|
2002-01-12 04:28:05 +08:00
|
|
|
type );
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
2001-07-24 12:31:01 +08:00
|
|
|
/* if single value type, check for multiple values */
|
|
|
|
if( is_at_single_value( a->a_desc->ad_type ) &&
|
2002-01-02 19:00:36 +08:00
|
|
|
a->a_vals[1].bv_val != NULL )
|
2001-07-24 12:31:01 +08:00
|
|
|
{
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"attribute '%s' cannot have multiple values",
|
|
|
|
type );
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn=\"%s\" %s\n", e->e_dn, textbuf, 0 );
|
2001-07-24 12:31:01 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"Entry (%s), %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-21 12:44:34 +08:00
|
|
|
/* it's a REALLY bad idea to disable schema checks */
|
2000-04-25 21:15:55 +08:00
|
|
|
if( !global_schemacheck ) return LDAP_SUCCESS;
|
2000-02-05 13:01:41 +08:00
|
|
|
|
2002-08-27 09:35:43 +08:00
|
|
|
/* find the structural object class attribute */
|
2001-12-20 06:08:24 +08:00
|
|
|
asc = attr_find( e->e_attrs, ad_structuralObjectClass );
|
|
|
|
if ( asc == NULL ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: No structuralObjectClass for entry (%s)\n",
|
|
|
|
e->e_dn, 0, 0 );
|
2001-12-20 06:08:24 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"No structuralObjectClass for entry (%s)\n",
|
|
|
|
e->e_dn, 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*text = "no structuralObjectClass operational attribute";
|
2002-08-27 10:28:15 +08:00
|
|
|
return LDAP_OTHER;
|
2001-12-20 06:08:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
assert( asc->a_vals != NULL );
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( asc->a_vals[0].bv_val != NULL );
|
|
|
|
assert( asc->a_vals[1].bv_val == NULL );
|
2001-12-20 06:08:24 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
sc = oc_bvfind( &asc->a_vals[0] );
|
2001-12-20 06:08:24 +08:00
|
|
|
if( sc == NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"unrecognized structuralObjectClass '%s'",
|
2002-01-03 07:26:20 +08:00
|
|
|
asc->a_vals[0].bv_val );
|
2001-12-20 06:08:24 +08:00
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 );
|
2001-12-20 06:08:24 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"entry_check_schema(%s): %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( sc->soc_kind != LDAP_SCHEMA_STRUCTURAL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"structuralObjectClass '%s' is not STRUCTURAL",
|
2002-01-03 07:26:20 +08:00
|
|
|
asc->a_vals[0].bv_val );
|
2001-12-20 06:08:24 +08:00
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 );
|
2001-12-20 06:08:24 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"entry_check_schema(%s): %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
|
|
|
#endif
|
|
|
|
|
2002-08-27 13:51:35 +08:00
|
|
|
return LDAP_OTHER;
|
2001-12-20 06:08:24 +08:00
|
|
|
}
|
|
|
|
|
2002-10-10 10:07:24 +08:00
|
|
|
if( 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;
|
|
|
|
}
|
|
|
|
|
2001-12-20 06:08:24 +08:00
|
|
|
/* find the object class attribute */
|
|
|
|
aoc = attr_find( e->e_attrs, ad_objectClass );
|
|
|
|
if ( aoc == NULL ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: No objectClass for entry (%s).\n",
|
|
|
|
e->e_dn, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2001-01-17 10:51:05 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "No objectClass for entry (%s)\n",
|
2000-02-05 13:01:41 +08:00
|
|
|
e->e_dn, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2001-01-11 03:00:47 +08:00
|
|
|
*text = "no objectClass attribute";
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
|
2001-12-20 06:08:24 +08:00
|
|
|
assert( aoc->a_vals != NULL );
|
2002-01-02 19:00:36 +08:00
|
|
|
assert( aoc->a_vals[0].bv_val != NULL );
|
2001-12-20 06:08:24 +08:00
|
|
|
|
2002-01-03 07:26:20 +08:00
|
|
|
rc = structural_class( aoc->a_vals, &nsc, &oc, text, textbuf, textlen );
|
2001-12-20 06:08:24 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-12-20 07:41:31 +08:00
|
|
|
*text = textbuf;
|
|
|
|
|
2001-12-20 06:08:24 +08:00
|
|
|
if ( oc == NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"unrecognized objectClass '%s'",
|
2002-01-03 07:26:20 +08:00
|
|
|
aoc->a_vals[0].bv_val );
|
2001-12-20 06:08:24 +08:00
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
|
2003-06-28 08:52:40 +08:00
|
|
|
} else if ( sc != slap_schema.si_oc_glue && sc != oc ) {
|
2001-12-20 06:08:24 +08:00
|
|
|
snprintf( textbuf, textlen,
|
2003-02-08 04:12:26 +08:00
|
|
|
"structural object class modification "
|
|
|
|
"from '%s' to '%s' not allowed",
|
2002-01-02 19:00:36 +08:00
|
|
|
asc->a_vals[0].bv_val, nsc.bv_val );
|
2001-12-20 06:08:24 +08:00
|
|
|
return LDAP_NO_OBJECT_CLASS_MODS;
|
2003-08-28 06:16:04 +08:00
|
|
|
} else if ( sc == slap_schema.si_oc_glue ) {
|
2003-06-28 08:52:40 +08:00
|
|
|
sc = oc;
|
|
|
|
}
|
2001-12-20 06:08:24 +08:00
|
|
|
|
2003-02-27 06:12:14 +08:00
|
|
|
/* naming check */
|
2003-10-31 06:44:45 +08:00
|
|
|
if ( !is_entry_objectclass ( e, slap_schema.si_oc_glue, 0 ) ) {
|
|
|
|
rc = entry_naming_check( e, text, textbuf, textlen );
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Glue Entry */
|
|
|
|
}
|
2003-02-08 04:12:26 +08:00
|
|
|
|
2002-10-10 07:02:01 +08:00
|
|
|
/* find the content rule for the structural class */
|
|
|
|
cr = cr_find( sc->soc_oid );
|
|
|
|
|
|
|
|
/* the cr must be same as the structural class */
|
|
|
|
assert( !cr || !strcmp( cr->scr_oid, sc->soc_oid ) );
|
|
|
|
|
|
|
|
/* check that the entry has required attrs of the content rule */
|
2002-10-10 10:07:24 +08:00
|
|
|
if( cr ) {
|
|
|
|
if( 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cr->scr_required ) for( i=0; cr->scr_required[i]; i++ ) {
|
2002-10-10 07:02:01 +08:00
|
|
|
at = cr->scr_required[i];
|
|
|
|
|
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
|
|
|
if( a->a_desc->ad_type == at ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not there => schema violation */
|
|
|
|
if ( a == NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"content rule '%s' requires attribute '%s'",
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-10 10:07:24 +08:00
|
|
|
if( cr->scr_precluded ) for( i=0; cr->scr_precluded[i]; i++ ) {
|
2002-10-10 07:02:01 +08:00
|
|
|
at = cr->scr_precluded[i];
|
|
|
|
|
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
|
|
|
if( a->a_desc->ad_type == at ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* there => schema violation */
|
|
|
|
if ( a != NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"content rule '%s' precluded attribute '%s'",
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-05 13:01:41 +08:00
|
|
|
/* check that the entry has required attrs for each oc */
|
2002-01-02 19:00:36 +08:00
|
|
|
for ( i = 0; aoc->a_vals[i].bv_val != NULL; i++ ) {
|
|
|
|
if ( (oc = oc_bvfind( &aoc->a_vals[i] )) == NULL ) {
|
2001-06-06 08:23:56 +08:00
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"unrecognized objectClass '%s'",
|
2002-01-02 19:00:36 +08:00
|
|
|
aoc->a_vals[i].bv_val );
|
2001-06-06 08:23:56 +08:00
|
|
|
|
2002-10-10 10:38:32 +08:00
|
|
|
#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 ) {
|
|
|
|
/* disallow obsolete classes */
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"objectClass '%s' is OBSOLETE",
|
|
|
|
aoc->a_vals[i].bv_val );
|
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn (%s), %s\n", e->e_dn, textbuf, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-02-05 13:01:41 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-12-20 09:41:44 +08:00
|
|
|
"entry_check_schema(%s): %s\n",
|
2001-06-06 08:23:56 +08:00
|
|
|
e->e_dn, textbuf, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2001-01-11 03:00:47 +08:00
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
2002-01-10 14:30:26 +08:00
|
|
|
}
|
2000-04-25 21:15:55 +08:00
|
|
|
|
2002-01-19 10:58:00 +08:00
|
|
|
if ( oc->soc_check ) {
|
|
|
|
int rc = (oc->soc_check)( be, e, oc,
|
2002-01-10 14:30:26 +08:00
|
|
|
text, textbuf, textlen );
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
2002-01-13 13:00:59 +08:00
|
|
|
|
2002-01-10 14:30:26 +08:00
|
|
|
if ( oc->soc_kind == LDAP_SCHEMA_ABSTRACT ) {
|
2001-12-20 06:08:24 +08:00
|
|
|
/* object class is abstract */
|
2001-12-20 09:41:44 +08:00
|
|
|
if ( oc != slap_schema.si_oc_top &&
|
|
|
|
!is_object_subclass( oc, sc ))
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
ObjectClass *xc = NULL;
|
2002-01-02 19:00:36 +08:00
|
|
|
for( j=0; aoc->a_vals[j].bv_val; j++ ) {
|
2001-12-20 09:41:44 +08:00
|
|
|
if( i != j ) {
|
2002-01-02 19:00:36 +08:00
|
|
|
xc = oc_bvfind( &aoc->a_vals[i] );
|
2001-12-20 09:41:44 +08:00
|
|
|
if( xc == NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"unrecognized objectClass '%s'",
|
2002-01-02 19:00:36 +08:00
|
|
|
aoc->a_vals[i].bv_val );
|
2001-12-20 09:41:44 +08:00
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
2001-12-20 09:41:44 +08:00
|
|
|
"entry_schema_check: dn (%s), %s\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
e->e_dn, textbuf, 0 );
|
2001-12-20 09:41:44 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"entry_check_schema(%s): %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
|
|
|
#endif
|
2001-12-20 06:08:24 +08:00
|
|
|
|
2001-12-20 09:41:44 +08:00
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* since we previous check against the
|
|
|
|
* structural object of this entry, the
|
|
|
|
* abstract class must be a (direct or indirect)
|
|
|
|
* superclass of one of the auxiliary classes of
|
|
|
|
* the entry.
|
|
|
|
*/
|
|
|
|
if ( xc->soc_kind == LDAP_SCHEMA_AUXILIARY &&
|
|
|
|
is_object_subclass( oc, xc ) )
|
|
|
|
{
|
2002-08-22 10:27:42 +08:00
|
|
|
xc = NULL;
|
|
|
|
break;
|
2001-12-20 09:41:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( xc == NULL ) {
|
|
|
|
snprintf( textbuf, textlen, "instanstantiation of "
|
|
|
|
"abstract objectClass '%s' not allowed",
|
2002-01-02 19:00:36 +08:00
|
|
|
aoc->a_vals[i].bv_val );
|
2001-12-20 09:41:44 +08:00
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn (%s), %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
2001-12-20 09:41:44 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"entry_check_schema(%s): %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( oc->soc_kind != LDAP_SCHEMA_STRUCTURAL || oc == sc ) {
|
2002-10-10 07:02:01 +08:00
|
|
|
char *s;
|
|
|
|
|
|
|
|
if( oc->soc_kind == LDAP_SCHEMA_AUXILIARY ) {
|
2003-05-05 17:17:10 +08:00
|
|
|
int k;
|
|
|
|
|
2002-10-10 07:02:01 +08:00
|
|
|
if( cr ) {
|
2003-05-14 13:29:46 +08:00
|
|
|
int j;
|
|
|
|
|
2003-05-05 17:17:10 +08:00
|
|
|
k = -1;
|
2002-10-10 07:02:01 +08:00
|
|
|
if( cr->scr_auxiliaries ) {
|
2003-05-14 13:29:46 +08:00
|
|
|
for( j = 0; cr->scr_auxiliaries[j]; j++ ) {
|
|
|
|
if( cr->scr_auxiliaries[j] == oc ) {
|
2003-05-05 17:17:10 +08:00
|
|
|
k = 0;
|
2002-10-10 07:02:01 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ( global_disallows & SLAP_DISALLOW_AUX_WO_CR ) {
|
2003-05-05 17:17:10 +08:00
|
|
|
k = -1;
|
|
|
|
} else {
|
|
|
|
k = 0;
|
2002-10-10 07:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2000-02-05 13:01:41 +08:00
|
|
|
|
2002-10-10 07:02:01 +08:00
|
|
|
s = oc_check_required( e, oc, &aoc->a_vals[i] );
|
2000-02-05 13:01:41 +08:00
|
|
|
if (s != NULL) {
|
2001-06-06 08:23:56 +08:00
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"object class '%s' requires attribute '%s'",
|
2002-01-02 19:00:36 +08:00
|
|
|
aoc->a_vals[i].bv_val, s );
|
2001-06-06 08:23:56 +08:00
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn=\"%s\" %s", e->e_dn, textbuf, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-02-05 13:01:41 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-06-06 08:23:56 +08:00
|
|
|
"Entry (%s): %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2001-01-11 03:00:47 +08:00
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
2000-06-01 02:46:13 +08:00
|
|
|
|
2001-01-11 03:00:47 +08:00
|
|
|
if( oc == slap_schema.si_oc_extensibleObject ) {
|
2000-06-01 02:46:13 +08:00
|
|
|
extensible=1;
|
|
|
|
}
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-01 02:46:13 +08:00
|
|
|
if( extensible ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-02-05 13:01:41 +08:00
|
|
|
/* check that each attr in the entry is allowed by some oc */
|
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
2002-10-10 07:02:01 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = 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;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ret != 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;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ret != LDAP_SUCCESS )
|
|
|
|
{
|
|
|
|
ret = oc_check_allowed( a->a_desc->ad_type, aoc->a_vals, sc );
|
|
|
|
}
|
|
|
|
|
2001-07-24 12:31:01 +08:00
|
|
|
if ( ret != LDAP_SUCCESS ) {
|
2001-10-22 21:23:05 +08:00
|
|
|
char *type = a->a_desc->ad_cname.bv_val;
|
2001-06-06 08:23:56 +08:00
|
|
|
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"attribute '%s' not allowed",
|
|
|
|
type );
|
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, INFO,
|
|
|
|
"entry_schema_check: dn=\"%s\" %s\n", e->e_dn, textbuf, 0);
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-02-05 13:01:41 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-06-06 08:23:56 +08:00
|
|
|
"Entry (%s), %s\n",
|
|
|
|
e->e_dn, textbuf, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2001-07-24 12:31:01 +08:00
|
|
|
return ret;
|
2001-07-24 11:25:17 +08:00
|
|
|
}
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
|
2001-07-24 12:31:01 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2001-12-20 06:08:24 +08:00
|
|
|
oc_check_required(
|
|
|
|
Entry *e,
|
|
|
|
ObjectClass *oc,
|
|
|
|
struct berval *ocname )
|
2000-02-05 13:01:41 +08:00
|
|
|
{
|
|
|
|
AttributeType *at;
|
|
|
|
int i;
|
|
|
|
Attribute *a;
|
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ENTRY,
|
|
|
|
"oc_check_required: dn (%s), objectClass \"%s\"\n",
|
|
|
|
e->e_dn, ocname->bv_val, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-02-05 13:01:41 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-12-20 06:08:24 +08:00
|
|
|
"oc_check_required entry (%s), objectClass \"%s\"\n",
|
|
|
|
e->e_dn, ocname->bv_val, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2000-02-05 13:01:41 +08:00
|
|
|
|
|
|
|
/* check for empty oc_required */
|
|
|
|
if(oc->soc_required == NULL) {
|
2000-04-25 21:15:55 +08:00
|
|
|
return NULL;
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* for each required attribute */
|
|
|
|
for ( i = 0; oc->soc_required[i] != NULL; i++ ) {
|
|
|
|
at = oc->soc_required[i];
|
|
|
|
/* see if it's in the entry */
|
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
2000-02-29 05:16:05 +08:00
|
|
|
if( a->a_desc->ad_type == at ) {
|
2000-02-05 13:01:41 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* not there => schema violation */
|
|
|
|
if ( a == NULL ) {
|
2001-11-16 15:45:37 +08:00
|
|
|
return at->sat_cname.bv_val;
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
2000-05-29 00:36:34 +08:00
|
|
|
int oc_check_allowed(
|
2000-02-07 05:09:44 +08:00
|
|
|
AttributeType *at,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray ocl,
|
2001-12-20 09:41:44 +08:00
|
|
|
ObjectClass *sc )
|
2000-02-05 13:01:41 +08:00
|
|
|
{
|
|
|
|
int i, j;
|
2000-02-07 05:09:44 +08:00
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ENTRY,
|
|
|
|
"oc_check_allowed: type \"%s\"\n", at->sat_cname.bv_val, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
2000-02-07 05:09:44 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"oc_check_allowed type \"%s\"\n",
|
2001-11-16 15:45:37 +08:00
|
|
|
at->sat_cname.bv_val, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2001-01-17 10:51:05 +08:00
|
|
|
/* always allow objectClass attribute */
|
2001-11-16 15:45:37 +08:00
|
|
|
if ( strcasecmp( at->sat_cname.bv_val, "objectClass" ) == 0 ) {
|
2000-04-25 21:15:55 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-02-07 05:09:44 +08:00
|
|
|
}
|
|
|
|
|
2000-05-22 11:46:57 +08:00
|
|
|
/*
|
|
|
|
* All operational attributions are allowed by schema rules.
|
|
|
|
*/
|
2000-02-07 05:09:44 +08:00
|
|
|
if( is_at_operational(at) ) {
|
2000-04-25 21:15:55 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-02-07 05:09:44 +08:00
|
|
|
}
|
2000-02-05 13:01:41 +08:00
|
|
|
|
2001-12-20 09:41:44 +08:00
|
|
|
/* check to see if its allowed by the structuralObjectClass */
|
|
|
|
if( sc ) {
|
|
|
|
/* does it require the type? */
|
|
|
|
for ( j = 0; sc->soc_required != NULL &&
|
|
|
|
sc->soc_required[j] != NULL; j++ )
|
|
|
|
{
|
|
|
|
if( at == sc->soc_required[j] ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* does it allow the type? */
|
|
|
|
for ( j = 0; sc->soc_allowed != NULL &&
|
|
|
|
sc->soc_allowed[j] != NULL; j++ )
|
|
|
|
{
|
|
|
|
if( at == sc->soc_allowed[j] ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-05 13:01:41 +08:00
|
|
|
/* check that the type appears as req or opt in at least one oc */
|
2002-01-02 19:00:36 +08:00
|
|
|
for ( i = 0; ocl[i].bv_val != NULL; i++ ) {
|
2000-02-05 13:01:41 +08:00
|
|
|
/* if we know about the oc */
|
2002-01-02 19:00:36 +08:00
|
|
|
ObjectClass *oc = oc_bvfind( &ocl[i] );
|
2001-12-20 09:41:44 +08:00
|
|
|
if ( oc != NULL && oc->soc_kind != LDAP_SCHEMA_ABSTRACT &&
|
|
|
|
( sc == NULL || oc->soc_kind == LDAP_SCHEMA_AUXILIARY ))
|
|
|
|
{
|
2000-02-05 13:01:41 +08:00
|
|
|
/* does it require the type? */
|
|
|
|
for ( j = 0; oc->soc_required != NULL &&
|
2000-02-07 05:09:44 +08:00
|
|
|
oc->soc_required[j] != NULL; j++ )
|
|
|
|
{
|
|
|
|
if( at == oc->soc_required[j] ) {
|
2000-04-25 21:15:55 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-02-07 05:09:44 +08:00
|
|
|
}
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
/* does it allow the type? */
|
|
|
|
for ( j = 0; oc->soc_allowed != NULL &&
|
2000-02-07 05:09:44 +08:00
|
|
|
oc->soc_allowed[j] != NULL; j++ )
|
|
|
|
{
|
|
|
|
if( at == oc->soc_allowed[j] ) {
|
2000-04-25 21:15:55 +08:00
|
|
|
return LDAP_SUCCESS;
|
2000-02-07 05:09:44 +08:00
|
|
|
}
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not allowed by any oc */
|
2000-04-25 21:15:55 +08:00
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
2000-02-05 13:01:41 +08:00
|
|
|
}
|
2001-12-20 09:41:44 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine the structural object class from a set of OIDs
|
|
|
|
*/
|
|
|
|
int structural_class(
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray ocs,
|
2001-12-20 09:41:44 +08:00
|
|
|
struct berval *scbv,
|
2002-01-03 07:26:20 +08:00
|
|
|
ObjectClass **scp,
|
2001-12-20 09:41:44 +08:00
|
|
|
const char **text,
|
|
|
|
char *textbuf, size_t textlen )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
ObjectClass *oc;
|
|
|
|
ObjectClass *sc = NULL;
|
|
|
|
int scn = -1;
|
|
|
|
|
|
|
|
*text = "structural_class: internal error";
|
|
|
|
scbv->bv_len = 0;
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for( i=0; ocs[i].bv_val; i++ ) {
|
|
|
|
oc = oc_bvfind( &ocs[i] );
|
2001-12-20 09:41:44 +08:00
|
|
|
|
|
|
|
if( oc == NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
2002-01-31 22:12:06 +08:00
|
|
|
"unrecognized objectClass '%s'",
|
2002-01-02 19:00:36 +08:00
|
|
|
ocs[i].bv_val );
|
2001-12-20 09:41:44 +08:00
|
|
|
*text = textbuf;
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( oc->soc_kind == LDAP_SCHEMA_STRUCTURAL ) {
|
|
|
|
if( sc == NULL || is_object_subclass( sc, oc ) ) {
|
|
|
|
sc = oc;
|
|
|
|
scn = i;
|
|
|
|
|
|
|
|
} else if ( !is_object_subclass( oc, sc ) ) {
|
|
|
|
int j;
|
|
|
|
ObjectClass *xc = NULL;
|
|
|
|
|
|
|
|
/* find common superior */
|
2002-01-02 19:00:36 +08:00
|
|
|
for( j=i+1; ocs[j].bv_val; j++ ) {
|
|
|
|
xc = oc_bvfind( &ocs[j] );
|
2001-12-20 09:41:44 +08:00
|
|
|
|
|
|
|
if( xc == NULL ) {
|
|
|
|
snprintf( textbuf, textlen,
|
2002-01-31 22:12:06 +08:00
|
|
|
"unrecognized objectClass '%s'",
|
2003-10-26 00:32:17 +08:00
|
|
|
ocs[j].bv_val );
|
2001-12-20 09:41:44 +08:00
|
|
|
*text = textbuf;
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( xc->soc_kind != LDAP_SCHEMA_STRUCTURAL ) {
|
|
|
|
xc = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( is_object_subclass( sc, xc ) &&
|
|
|
|
is_object_subclass( oc, xc ) )
|
|
|
|
{
|
|
|
|
/* found common subclass */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
xc = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( xc == NULL ) {
|
|
|
|
/* no common subclass */
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"invalid structural object class chain (%s/%s)",
|
2002-01-02 19:00:36 +08:00
|
|
|
ocs[scn].bv_val, ocs[i].bv_val );
|
2001-12-20 09:41:44 +08:00
|
|
|
*text = textbuf;
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-27 09:55:09 +08:00
|
|
|
if( scp ) {
|
2002-01-03 07:26:20 +08:00
|
|
|
*scp = sc;
|
2002-08-27 09:55:09 +08:00
|
|
|
}
|
2002-01-03 07:26:20 +08:00
|
|
|
|
2001-12-20 09:41:44 +08:00
|
|
|
if( sc == NULL ) {
|
2002-10-27 08:41:52 +08:00
|
|
|
*text = "no structural object class provided";
|
2001-12-20 09:41:44 +08:00
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
2002-08-28 01:51:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( scn < 0 ) {
|
|
|
|
*text = "invalid structural object class";
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
2001-12-20 09:41:44 +08:00
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
*scbv = ocs[scn];
|
2002-08-27 09:55:09 +08:00
|
|
|
|
2002-08-27 10:43:00 +08:00
|
|
|
if( scbv->bv_len == 0 ) {
|
2002-08-27 09:55:09 +08:00
|
|
|
*text = "invalid structural object class";
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
2001-12-20 09:41:44 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return structural object class from list of modifications
|
|
|
|
*/
|
|
|
|
int mods_structural_class(
|
|
|
|
Modifications *mods,
|
|
|
|
struct berval *sc,
|
|
|
|
const char **text,
|
|
|
|
char *textbuf, size_t textlen )
|
|
|
|
{
|
|
|
|
Modifications *ocmod = NULL;
|
|
|
|
|
|
|
|
for( ; mods != NULL; mods = mods->sml_next ) {
|
|
|
|
if( mods->sml_desc == slap_schema.si_ad_objectClass ) {
|
|
|
|
if( ocmod != NULL ) {
|
|
|
|
*text = "entry has multiple objectClass attributes";
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
ocmod = mods;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ocmod == NULL ) {
|
|
|
|
*text = "entry has no objectClass attribute";
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
2004-04-08 14:49:17 +08:00
|
|
|
if( ocmod->sml_values == NULL || ocmod->sml_values[0].bv_val == NULL ) {
|
2001-12-20 09:41:44 +08:00
|
|
|
*text = "objectClass attribute has no values";
|
|
|
|
return LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
}
|
|
|
|
|
2004-04-08 14:49:17 +08:00
|
|
|
return structural_class( ocmod->sml_values, sc, NULL,
|
2001-12-20 09:41:44 +08:00
|
|
|
text, textbuf, textlen );
|
2001-12-21 12:44:34 +08:00
|
|
|
}
|
2003-02-27 06:12:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
entry_naming_check(
|
|
|
|
Entry *e,
|
|
|
|
const char** text,
|
|
|
|
char *textbuf, size_t textlen )
|
|
|
|
{
|
|
|
|
/* naming check */
|
2003-04-11 09:29:28 +08:00
|
|
|
LDAPRDN rdn = NULL;
|
2003-02-27 06:12:14 +08:00
|
|
|
const char *p = NULL;
|
|
|
|
ber_len_t cnt;
|
|
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get attribute type(s) and attribute value(s) of our RDN
|
|
|
|
*/
|
|
|
|
if ( ldap_bv2rdn( &e->e_name, &rdn, (char **)&p,
|
|
|
|
LDAP_DN_FORMAT_LDAP ) )
|
|
|
|
{
|
|
|
|
*text = "unrecongized attribute type(s) in RDN";
|
|
|
|
return LDAP_INVALID_DN_SYNTAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that each AVA of the RDN is present in the entry */
|
|
|
|
/* FIXME: Should also check that each AVA lists a distinct type */
|
2003-04-11 09:29:28 +08:00
|
|
|
for ( cnt = 0; rdn[cnt]; cnt++ ) {
|
|
|
|
LDAPAVA *ava = rdn[cnt];
|
2003-02-27 06:12:14 +08:00
|
|
|
AttributeDescription *desc = NULL;
|
|
|
|
Attribute *attr;
|
|
|
|
const char *errtext;
|
|
|
|
|
2003-10-25 09:40:55 +08:00
|
|
|
if( ava->la_flags & LDAP_AVA_BINARY ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"value of naming attribute '%s' in unsupported BER form",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
|
|
|
}
|
|
|
|
|
2003-02-27 06:12:14 +08:00
|
|
|
rc = slap_bv2ad( &ava->la_attr, &desc, &errtext );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
snprintf( textbuf, textlen, "%s (in RDN)", errtext );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-10-25 10:26:19 +08:00
|
|
|
if( desc->ad_type->sat_usage ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"naming attribute '%s' is operational",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( desc->ad_type->sat_collective ) {
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"naming attribute '%s' is collective",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( desc->ad_type->sat_obsolete ) {
|
|
|
|
snprintf( textbuf, textlen,
|
2004-03-11 21:02:13 +08:00
|
|
|
"naming attribute '%s' is obsolete",
|
2003-10-25 10:26:19 +08:00
|
|
|
ava->la_attr.bv_val );
|
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !desc->ad_type->sat_equality ) {
|
2003-02-27 06:12:14 +08:00
|
|
|
snprintf( textbuf, textlen,
|
2003-10-25 09:40:55 +08:00
|
|
|
"naming attribute '%s' has no equality matching rule",
|
2003-02-27 06:12:14 +08:00
|
|
|
ava->la_attr.bv_val );
|
2003-03-23 00:12:39 +08:00
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
2003-02-27 06:12:14 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-10-25 10:26:19 +08:00
|
|
|
if( !desc->ad_type->sat_equality->smr_match ) {
|
2003-03-23 00:12:39 +08:00
|
|
|
snprintf( textbuf, textlen,
|
2003-10-25 09:40:55 +08:00
|
|
|
"naming attribute '%s' has unsupported equality matching rule",
|
2003-03-23 00:12:39 +08:00
|
|
|
ava->la_attr.bv_val );
|
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
2003-10-25 09:40:55 +08:00
|
|
|
break;
|
2003-03-23 00:12:39 +08:00
|
|
|
}
|
|
|
|
|
2003-10-25 09:40:55 +08:00
|
|
|
/* find the naming attribute */
|
|
|
|
attr = attr_find( e->e_attrs, desc );
|
|
|
|
if ( attr == NULL ) {
|
2003-02-27 06:12:14 +08:00
|
|
|
snprintf( textbuf, textlen,
|
2003-10-25 09:40:55 +08:00
|
|
|
"naming attribute '%s' is not present in entry",
|
2003-02-27 06:12:14 +08:00
|
|
|
ava->la_attr.bv_val );
|
2003-03-23 00:12:39 +08:00
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
2003-02-27 06:12:14 +08:00
|
|
|
break;
|
|
|
|
}
|
2003-10-25 09:40:55 +08:00
|
|
|
|
|
|
|
rc = value_find_ex( desc, SLAP_MR_VALUE_OF_ASSERTION_SYNTAX|
|
|
|
|
SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH,
|
|
|
|
attr->a_nvals, &ava->la_value, NULL );
|
|
|
|
|
|
|
|
if( rc != 0 ) {
|
|
|
|
switch( rc ) {
|
|
|
|
case LDAP_INAPPROPRIATE_MATCHING:
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"inappropriate matching for naming attribute '%s'",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
break;
|
|
|
|
case LDAP_INVALID_SYNTAX:
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"value of naming attribute '%s' is invalid",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
break;
|
|
|
|
case LDAP_NO_SUCH_ATTRIBUTE:
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"value of naming attribute '%s' is not present in entry",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
snprintf( textbuf, textlen,
|
|
|
|
"naming attribute '%s' is inappropriate",
|
|
|
|
ava->la_attr.bv_val );
|
|
|
|
}
|
|
|
|
rc = LDAP_NAMING_VIOLATION;
|
|
|
|
break;
|
|
|
|
}
|
2003-02-27 06:12:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ldap_rdnfree( rdn );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|