openldap/servers/slapd/schemaparse.c

352 lines
7.5 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* schemaparse.c - routines to parse config file objectclass definitions */
/* $OpenLDAP$ */
1999-08-07 07:07:46 +08:00
/*
2000-05-13 10:47:56 +08:00
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
1999-08-07 07:07:46 +08:00
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
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
#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"
1999-05-28 22:27:07 +08:00
#include "ldap_schema.h"
1998-08-09 08:43:13 +08:00
1999-04-30 02:10:40 +08:00
int global_schemacheck = 1; /* schemacheck on is default */
1998-08-09 08:43:13 +08:00
static void oc_usage(void);
static void at_usage(void);
1998-08-09 08:43:13 +08:00
1999-09-05 05:15:49 +08:00
static char *const err2text[] = {
"Success",
1999-05-28 22:27:07 +08:00
"Out of memory",
2000-05-28 03:21:28 +08:00
"ObjectClass not found",
"ObjectClass inappropriate SUPerior",
2000-05-28 03:21:28 +08:00
"AttributeType not found",
"AttributeType inappropriate USAGE",
2000-05-28 03:21:28 +08:00
"Duplicate objectClass",
"Duplicate attributeType",
"Duplicate ldapSyntax",
"Duplicate matchingRule",
"OID or name required",
2000-05-28 03:21:28 +08:00
"SYNTAX or SUPerior required",
"MatchingRule not found",
1999-06-15 20:28:54 +08:00
"Syntax not found",
"Syntax required",
2001-06-08 06:47:02 +08:00
"Qualifier not supported",
"Invalid NAME"
1999-05-28 22:27:07 +08:00
};
char *
scherr2str(int code)
{
if ( code < 0 || code >= (sizeof(err2text)/sizeof(char *)) ) {
return "Unknown error";
1999-05-28 22:27:07 +08:00
} else {
return err2text[code];
}
}
2001-06-08 06:47:02 +08:00
/* check schema descr validity */
int slap_valid_descr( const char *descr )
{
int i=0;
if( !DESC_LEADCHAR( descr[i] ) ) {
return 0;
}
while( descr[++i] ) {
if( !DESC_CHAR( descr[i] ) ) {
return 0;
}
}
return 1;
}
1999-05-28 22:27:07 +08:00
/* OID Macros */
/* String compare with delimiter check. Return 0 if not
* matched, otherwise return length matched.
*/
int
1999-08-21 03:00:44 +08:00
dscompare(const char *s1, const char *s2, char delim)
{
1999-08-21 03:00:44 +08:00
const char *orig = s1;
while (*s1++ == *s2++)
if (!s1[-1]) break;
--s1;
--s2;
if (!*s1 && (!*s2 || *s2 == delim))
return s1 - orig;
return 0;
}
static OidMacro *om_list = NULL;
/* Replace an OID Macro invocation with its full numeric OID.
* If the macro is used with "macroname:suffix" append ".suffix"
* to the expansion.
*/
static char *
find_oidm(char *oid)
{
OidMacro *om;
/* OID macros must start alpha */
if ( OID_LEADCHAR( *oid ) ) {
return oid;
}
for (om = om_list; om; om=om->som_next) {
char **names = om->som_names;
if( names == NULL ) {
continue;
}
for( ; *names != NULL ; names++ ) {
int pos = dscompare(*names, oid, ':');
if( pos ) {
int suflen = strlen(oid + pos);
char *new = ch_calloc(1,
om->som_oid.bv_len + suflen + 1);
strcpy(new, om->som_oid.bv_val);
if( suflen ) {
suflen = om->som_oid.bv_len;
new[suflen++] = '.';
strcpy(new+suflen, oid+pos+1);
}
return new;
}
}
}
return NULL;
}
int
parse_oidm(
1999-08-21 03:00:44 +08:00
const char *fname,
int lineno,
int argc,
char **argv
)
{
char *oid;
OidMacro *om;
if (argc != 3) {
fprintf( stderr, "%s: line %d: too many arguments\n",
fname, lineno );
usage: fprintf( stderr, "\tObjectIdentifier <name> <oid>\n");
return 1;
}
oid = find_oidm( argv[1] );
if( oid != NULL ) {
fprintf( stderr,
"%s: line %d: "
"ObjectIdentifier \"%s\" previously defined \"%s\"",
fname, lineno, argv[1], oid );
return 1;
}
om = (OidMacro *) ch_malloc( sizeof(OidMacro) );
om->som_names = NULL;
charray_add( &om->som_names, argv[1] );
om->som_oid.bv_val = find_oidm( argv[2] );
if (!om->som_oid.bv_val) {
fprintf( stderr, "%s: line %d: OID %s not recognized\n",
fname, lineno, argv[2] );
goto usage;
}
if (om->som_oid.bv_val == argv[2]) {
om->som_oid.bv_val = ch_strdup( argv[2] );
}
om->som_oid.bv_len = strlen( om->som_oid.bv_val );
om->som_next = om_list;
om_list = om;
return 0;
}
int
1999-05-28 22:27:07 +08:00
parse_oc(
1999-08-21 03:00:44 +08:00
const char *fname,
1999-05-28 22:27:07 +08:00
int lineno,
char *line,
char **argv
1999-05-28 22:27:07 +08:00
)
{
LDAPObjectClass *oc;
1999-05-28 22:27:07 +08:00
int code;
const char *err;
char *oid = NULL;
1999-05-28 22:27:07 +08:00
oc = ldap_str2objectclass(line,&code,&err,LDAP_SCHEMA_ALLOW_ALL);
1999-05-28 22:27:07 +08:00
if ( !oc ) {
fprintf( stderr, "%s: line %d: %s before %s\n",
fname, lineno, ldap_scherr2str(code), err );
oc_usage();
return 1;
1999-05-28 22:27:07 +08:00
}
2001-10-11 02:15:30 +08:00
if ( oc->oc_oid == NULL ) {
fprintf( stderr,
"%s: line %d: objectclass has no OID\n",
fname, lineno );
oc_usage();
return 1;
}
if ( !OID_LEADCHAR( oc->oc_oid[0] )) {
/* Expand OID macros */
oid = find_oidm( oc->oc_oid );
if ( !oid ) {
fprintf( stderr,
"%s: line %d: OID %s not recognized\n",
fname, lineno, oc->oc_oid);
return 1;
}
if ( oid != oc->oc_oid ) {
ldap_memfree( oc->oc_oid );
oc->oc_oid = oid;
}
}
1999-05-28 22:27:07 +08:00
code = oc_add(oc,&err);
if ( code ) {
2000-05-28 03:21:28 +08:00
fprintf( stderr, "%s: line %d: %s: \"%s\"\n",
1999-05-28 22:27:07 +08:00
fname, lineno, scherr2str(code), err);
return 1;
1999-05-28 22:27:07 +08:00
}
1999-05-28 22:27:07 +08:00
ldap_memfree(oc);
return 0;
1998-08-09 08:43:13 +08:00
}
static void
oc_usage( void )
1999-05-28 22:27:07 +08:00
{
fprintf( stderr,
"ObjectClassDescription = \"(\" whsp\n"
" numericoid whsp ; ObjectClass identifier\n"
" [ \"NAME\" qdescrs ]\n"
" [ \"DESC\" qdstring ]\n"
" [ \"OBSOLETE\" whsp ]\n"
" [ \"SUP\" oids ] ; Superior ObjectClasses\n"
" [ ( \"ABSTRACT\" / \"STRUCTURAL\" / \"AUXILIARY\" ) whsp ]\n"
" ; default structural\n"
" [ \"MUST\" oids ] ; AttributeTypes\n"
" [ \"MAY\" oids ] ; AttributeTypes\n"
" whsp \")\"\n" );
1999-05-28 22:27:07 +08:00
}
1998-08-09 08:43:13 +08:00
1999-05-28 22:27:07 +08:00
static void
at_usage( void )
{
fprintf( stderr,
"AttributeTypeDescription = \"(\" whsp\n"
" numericoid whsp ; AttributeType identifier\n"
" [ \"NAME\" qdescrs ] ; name used in AttributeType\n"
" [ \"DESC\" qdstring ] ; description\n"
" [ \"OBSOLETE\" whsp ]\n"
" [ \"SUP\" woid ] ; derived from this other\n"
" ; AttributeType\n"
" [ \"EQUALITY\" woid ] ; Matching Rule name\n"
" [ \"ORDERING\" woid ] ; Matching Rule name\n"
" [ \"SUBSTR\" woid ] ; Matching Rule name\n"
" [ \"SYNTAX\" whsp noidlen whsp ] ; see section 4.3\n"
" [ \"SINGLE-VALUE\" whsp ] ; default multi-valued\n"
" [ \"COLLECTIVE\" whsp ] ; default not collective\n"
" [ \"NO-USER-MODIFICATION\" whsp ]; default user modifiable\n"
" [ \"USAGE\" whsp AttributeUsage ]; default userApplications\n"
" ; userApplications\n"
" ; directoryOperation\n"
" ; distributedOperation\n"
" ; dSAOperation\n"
" whsp \")\"\n");
1999-05-28 22:27:07 +08:00
}
int
1999-05-28 22:27:07 +08:00
parse_at(
1999-08-21 03:00:44 +08:00
const char *fname,
1999-05-28 22:27:07 +08:00
int lineno,
char *line,
char **argv
1999-05-28 22:27:07 +08:00
)
{
LDAPAttributeType *at;
1999-05-28 22:27:07 +08:00
int code;
const char *err;
char *oid = NULL;
1999-05-28 22:27:07 +08:00
at = ldap_str2attributetype(line,&code,&err,LDAP_SCHEMA_ALLOW_ALL);
1999-05-28 22:27:07 +08:00
if ( !at ) {
fprintf( stderr, "%s: line %d: %s before %s\n",
fname, lineno, ldap_scherr2str(code), err );
at_usage();
return 1;
1999-05-28 22:27:07 +08:00
}
2001-10-11 02:15:30 +08:00
if ( at->at_oid == NULL ) {
fprintf( stderr,
"%s: line %d: attributeType has no OID\n",
fname, lineno );
at_usage();
return 1;
}
if ( !OID_LEADCHAR( at->at_oid[0] )) {
/* Expand OID macros */
oid = find_oidm( at->at_oid );
if ( !oid ) {
fprintf( stderr,
"%s: line %d: OID %s not recognized\n",
fname, lineno, at->at_oid);
return 1;
}
if ( oid != at->at_oid ) {
ldap_memfree( at->at_oid );
at->at_oid = oid;
}
}
2001-10-11 02:15:30 +08:00
if ( at->at_syntax_oid && !OID_LEADCHAR( at->at_syntax_oid[0] )) {
/* Expand OID macros */
oid = find_oidm( at->at_syntax_oid );
if ( !oid ) {
fprintf(stderr,
"%s: line %d: OID %s not recognized\n",
fname, lineno, at->at_syntax_oid);
return 1;
}
if ( oid != at->at_syntax_oid ) {
ldap_memfree( at->at_syntax_oid );
at->at_syntax_oid = oid;
}
}
1999-05-28 22:27:07 +08:00
code = at_add(at,&err);
if ( code ) {
2000-05-28 03:21:28 +08:00
fprintf( stderr, "%s: line %d: %s: \"%s\"\n",
1999-05-28 22:27:07 +08:00
fname, lineno, scherr2str(code), err);
return 1;
1999-05-28 22:27:07 +08:00
}
ldap_memfree(at);
return 0;
1999-05-28 22:27:07 +08:00
}