]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/schemaparse.c
place old schema codes behind -DSLAPD_SCHEMA_COMPAT
[openldap] / servers / slapd / schemaparse.c
index f624b5dce81f7168727767ea399266d8fd9b8066..848456cf3c8168df40185e756ddd50fb31917770 100644 (file)
@@ -1,4 +1,5 @@
 /* schemaparse.c - routines to parse config file objectclass definitions */
+/* $OpenLDAP$ */
 /*
  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
@@ -56,6 +57,7 @@ parse_oc_old(
     char       **argv
 )
 {
+#ifdef SLAPD_SCHEMA_COMPAT
        int             i;
        char            last;
        LDAP_OBJECT_CLASS       *oc;
@@ -67,7 +69,12 @@ parse_oc_old(
        oc->oc_names = ch_calloc( 2, sizeof(char *) );
        oc->oc_names[0] = ch_strdup( argv[1] );
        oc->oc_names[1] = NULL;
+
        if ( strcasecmp( oc->oc_names[0], "top" ) ) {
+               /*
+                * no way to distinguish "auxiliary" from "structural"
+                * This may lead to future problems.
+                */
                oc->oc_kind = LDAP_SCHEMA_STRUCTURAL;
        }
        for ( i = 2; i < argc; i++ ) {
@@ -111,27 +118,23 @@ parse_oc_old(
         * out of thin air.
         */
        if ( oc->oc_at_oids_must ) {
-               namep = oc->oc_at_oids_must;
-               while ( *namep ) {
+               for( namep = oc->oc_at_oids_must; *namep ; namep++ ) {
                        code = at_fake_if_needed( *namep );
                        if ( code ) {
                                fprintf( stderr, "%s: line %d: %s %s\n",
                                         fname, lineno, scherr2str(code), *namep);
                                exit( EXIT_FAILURE );
                        }
-                       namep++;
                }
        }
        if ( oc->oc_at_oids_may ) {
-               namep = oc->oc_at_oids_may;
-               while ( *namep ) {
+               for( namep = oc->oc_at_oids_may; *namep; namep++ ) {
                        code = at_fake_if_needed( *namep );
                        if ( code ) {
                                fprintf( stderr, "%s: line %d: %s %s\n",
                                         fname, lineno, scherr2str(code), *namep);
                                exit( EXIT_FAILURE );
                        }
-                       namep++;
                }
        }
        
@@ -142,6 +145,12 @@ parse_oc_old(
                exit( EXIT_FAILURE );
        }
        ldap_memfree(oc);
+
+#else
+       fprintf( stderr, "%s: line %d: %s %s\n",
+                fname, lineno, "not built with -DSLAPD_SCHEMA_COMPAT\n");
+       exit( EXIT_FAILURE );
+#endif
 }
 
 /* OID Macros */
@@ -178,16 +187,16 @@ find_oidm(char *oid)
        /* OID macros must start alpha */
        if ( !isdigit( *oid ) )
        {
-           for (om = om_list; om; om=om->next)
+           for (om = om_list; om; om=om->som_next)
            {
-               if ((pos = dscompare(om->name, oid, ':')))
+               if ((pos = dscompare(om->som_name, oid, ':')))
                {
                        suflen = strlen(oid + pos);
-                       new = ch_calloc(1, om->oidlen + suflen + 1);
-                       strcpy(new, om->oid);
+                       new = ch_calloc(1, om->som_oidlen + suflen + 1);
+                       strcpy(new, om->som_oid);
                        if (suflen)
                        {
-                               suflen = om->oidlen;
+                               suflen = om->som_oidlen;
                                new[suflen++] = '.';
                                strcpy(new+suflen, oid+pos+1);
                        }
@@ -209,24 +218,27 @@ parse_oidm(
 {
        OidMacro *om;
 
-       if (argc != 3)
-       {
-usage:         fprintf( stderr, "ObjectIdentifier <name> <oid>\n");
+       if (argc != 3) {
+usage: fprintf( stderr, "ObjectIdentifier <name> <oid>\n");
                exit( EXIT_FAILURE );
        }
+
        om = (OidMacro *) ch_malloc( sizeof(OidMacro) );
-       om->name = ch_strdup( argv[1] );
-       om->oid = find_oidm( argv[2] );
-       if (!om->oid)
-       {
+       om->som_name = ch_strdup( argv[1] );
+       om->som_oid = find_oidm( argv[2] );
+
+       if (!om->som_oid) {
                fprintf( stderr, "%s: line %d: OID %s not recognized\n",
                        fname, lineno, argv[2] );
                goto usage;
        }
-       if (om->oid == argv[2])
-               om->oid = ch_strdup( argv[2] );
-       om->oidlen = strlen( om->oid );
-       om->next = om_list;
+
+       if (om->som_oid == argv[2]) {
+               om->som_oid = ch_strdup( argv[2] );
+       }
+
+       om->som_oidlen = strlen( om->som_oid );
+       om->som_next = om_list;
        om_list = om;
 }
 
@@ -243,36 +255,29 @@ parse_oc(
        const char      *err;
        char            *oid = NULL;
 
-       /* Kludge for OIDmacros. If the numericOid field starts nonnumeric
-        * look for and expand a macro. The macro's place in the input line
-        * will be replaced with a field of '0's to keep ldap_str2objectclass
-        * happy. The actual oid will be swapped into place afterward.
-        */
-       if ( !isdigit( *argv[2] ))
-       {
-               oid = find_oidm(argv[2]);
-               if (!oid)
-               {
-                       fprintf(stderr, "%s: line %d: OID %s not recognized\n",
-                               fname, lineno, argv[2]);
-                       exit( EXIT_FAILURE );
-               }
-               if (oid != argv[2])
-                       memset(strstr(line, argv[2]), '0', strlen(argv[2]));
-               else
-                       oid = NULL;
-       }
        oc = ldap_str2objectclass(line,&code,&err);
        if ( !oc ) {
                fprintf( stderr, "%s: line %d: %s before %s\n",
                         fname, lineno, ldap_scherr2str(code), err );
                oc_usage();
        }
-       if (oid)
-       {
-               ldap_memfree(oc->oc_oid);
-               oc->oc_oid = oid;
+       if ( oc->oc_oid ) {
+               if ( !isdigit( 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);
+                               exit( EXIT_FAILURE );
+                       }
+                       if ( oid != oc->oc_oid ) {
+                               ldap_memfree( oc->oc_oid );
+                               oc->oc_oid = oid;
+                       }
+               }
        }
+       /* oc->oc_oid == NULL will be an error someday */
        code = oc_add(oc,&err);
        if ( code ) {
                fprintf( stderr, "%s: line %d: %s %s\n",
@@ -348,25 +353,12 @@ parse_at(
        char            *oid = NULL;
        char            *soid = NULL;
 
-       /* Kludge for OIDmacros. If the numericOid field starts nonnumeric
-        * look for and expand a macro. The macro's place in the input line
-        * will be replaced with a field of '0's to keep ldap_str2attr
-        * happy. The actual oid will be swapped into place afterward.
-        */
-       if ( !isdigit( *argv[2] ))
-       {
-               oid = find_oidm(argv[2]);
-               if (!oid)
-               {
-                       fprintf(stderr, "%s: line %d: OID %s not recognized\n",
-                               fname, lineno, argv[2]);
-                       exit( EXIT_FAILURE );
-               }
-               if (oid != argv[2])
-                       memset(strstr(line, argv[2]), '0', strlen(argv[2]));
-               else
-                       oid = NULL;
-       }
+       /* Kludge for OIDmacros for syntaxes. If the syntax field starts
+        * nonnumeric, look for and expand a macro. The macro's place in
+        * the input line will be replaced with a field of '0's to keep
+        * ldap_str2attributetype happy. The actual oid will be swapped
+        * into place afterwards.
+        */
        for (; argv[3]; argv++)
        {
                if (!strcasecmp(argv[3], "syntax") &&
@@ -392,11 +384,23 @@ parse_at(
                         fname, lineno, ldap_scherr2str(code), err );
                at_usage();
        }
-       if (oid)
-       {
-               ldap_memfree(at->at_oid);
-               at->at_oid = oid;
+       if ( at->at_oid ) {
+               if ( !isdigit( 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);
+                               exit( EXIT_FAILURE );
+                       }
+                       if ( oid != at->at_oid ) {
+                               ldap_memfree( at->at_oid );
+                               at->at_oid = oid;
+                       }
+               }
        }
+       /* at->at_oid == NULL will be an error someday */
        if (soid)
        {
                ldap_memfree(at->at_syntax_oid);