2002-01-10 09:46:08 +08:00
|
|
|
/* schemaparse.c - routines to parse config file objectclass definitions */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2002-01-10 09:46:08 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
2003-01-21 04:21:17 +08:00
|
|
|
static LDAP_SLIST_HEAD(OidMacroList, slap_oid_macro) om_list
|
|
|
|
= LDAP_SLIST_HEAD_INITIALIZER(om_list);
|
2002-01-10 09:46:08 +08:00
|
|
|
|
|
|
|
/* Replace an OID Macro invocation with its full numeric OID.
|
|
|
|
* If the macro is used with "macroname:suffix" append ".suffix"
|
|
|
|
* to the expansion.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
oidm_find(char *oid)
|
|
|
|
{
|
|
|
|
OidMacro *om;
|
|
|
|
|
|
|
|
/* OID macros must start alpha */
|
|
|
|
if ( OID_LEADCHAR( *oid ) ) {
|
|
|
|
return oid;
|
|
|
|
}
|
|
|
|
|
2003-01-21 04:21:17 +08:00
|
|
|
LDAP_SLIST_FOREACH( om, &om_list, som_next ) {
|
2002-01-10 09:46:08 +08:00
|
|
|
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);
|
2002-11-20 04:20:00 +08:00
|
|
|
char *tmp = SLAP_MALLOC( om->som_oid.bv_len
|
2002-01-10 09:46:08 +08:00
|
|
|
+ suflen + 1);
|
2002-11-20 04:20:00 +08:00
|
|
|
if( tmp == NULL ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"oidm_find: SLAP_MALLOC failed", 0, 0, 0 );
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"oidm_find: SLAP_MALLOC failed", 0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
2002-01-10 09:46:08 +08:00
|
|
|
strcpy(tmp, om->som_oid.bv_val);
|
|
|
|
if( suflen ) {
|
|
|
|
suflen = om->som_oid.bv_len;
|
|
|
|
tmp[suflen++] = '.';
|
|
|
|
strcpy(tmp+suflen, oid+pos+1);
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oidm_destroy()
|
|
|
|
{
|
2003-03-01 11:37:16 +08:00
|
|
|
OidMacro *om;
|
2003-01-21 04:21:17 +08:00
|
|
|
while( !LDAP_SLIST_EMPTY( &om_list )) {
|
|
|
|
om = LDAP_SLIST_FIRST( &om_list );
|
2003-03-28 18:24:16 +08:00
|
|
|
LDAP_SLIST_REMOVE_HEAD( &om_list, som_next );
|
2002-01-10 09:46:08 +08:00
|
|
|
|
2002-08-24 08:55:24 +08:00
|
|
|
ldap_charray_free(om->som_names);
|
2002-01-10 09:46:08 +08:00
|
|
|
free(om->som_oid.bv_val);
|
|
|
|
free(om);
|
2003-01-21 04:21:17 +08:00
|
|
|
|
2002-01-10 09:46:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
parse_oidm(
|
|
|
|
const char *fname,
|
|
|
|
int lineno,
|
|
|
|
int argc,
|
2003-02-26 15:39:30 +08:00
|
|
|
char **argv )
|
2002-01-10 09:46:08 +08:00
|
|
|
{
|
|
|
|
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 = oidm_find( argv[1] );
|
|
|
|
if( oid != NULL ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: "
|
|
|
|
"ObjectIdentifier \"%s\" previously defined \"%s\"",
|
|
|
|
fname, lineno, argv[1], oid );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-11-20 04:20:00 +08:00
|
|
|
om = (OidMacro *) SLAP_MALLOC( sizeof(OidMacro) );
|
|
|
|
if( om == NULL ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG( OPERATION, ERR, "parse_oidm: SLAP_MALLOC failed", 0, 0, 0 );
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY, "parse_oidm: SLAP_MALLOC failed", 0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
2002-01-10 09:46:08 +08:00
|
|
|
|
2003-02-26 15:39:30 +08:00
|
|
|
LDAP_SLIST_NEXT( om, som_next ) = NULL;
|
2002-01-10 09:46:08 +08:00
|
|
|
om->som_names = NULL;
|
2002-08-24 08:55:24 +08:00
|
|
|
ldap_charray_add( &om->som_names, argv[1] );
|
2002-01-10 09:46:08 +08:00
|
|
|
om->som_oid.bv_val = oidm_find( 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 );
|
2003-01-21 04:21:17 +08:00
|
|
|
|
|
|
|
LDAP_SLIST_INSERT_HEAD( &om_list, om, som_next );
|
2002-01-10 09:46:08 +08:00
|
|
|
return 0;
|
|
|
|
}
|