]> git.sur5r.net Git - openldap/blob - servers/slapd/oidm.c
Happy New Year!
[openldap] / servers / slapd / oidm.c
1 /* oidm.c - object identifier macro routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20
21 #include <ac/ctype.h>
22 #include <ac/string.h>
23 #include <ac/socket.h>
24
25 #include "slap.h"
26
27 static LDAP_SLIST_HEAD(OidMacroList, slap_oid_macro) om_list
28         = LDAP_SLIST_HEAD_INITIALIZER(om_list);
29
30 /* Replace an OID Macro invocation with its full numeric OID.
31  * If the macro is used with "macroname:suffix" append ".suffix"
32  * to the expansion.
33  */
34 char *
35 oidm_find(char *oid)
36 {
37         OidMacro *om;
38
39         /* OID macros must start alpha */
40         if ( OID_LEADCHAR( *oid ) )     {
41                 return oid;
42         }
43
44         LDAP_SLIST_FOREACH( om, &om_list, som_next ) {
45                 char **names = om->som_names;
46
47                 if( names == NULL ) {
48                         continue;
49                 }
50
51                 for( ; *names != NULL ; names++ ) {
52                         int pos = dscompare(*names, oid, ':');
53
54                         if( pos ) {
55                                 int suflen = strlen(oid + pos);
56                                 char *tmp = SLAP_MALLOC( om->som_oid.bv_len
57                                         + suflen + 1);
58                                 if( tmp == NULL ) {
59                                         Debug( LDAP_DEBUG_ANY,
60                                                 "oidm_find: SLAP_MALLOC failed", 0, 0, 0 );
61                                         return NULL;
62                                 }
63                                 strcpy(tmp, om->som_oid.bv_val);
64                                 if( suflen ) {
65                                         suflen = om->som_oid.bv_len;
66                                         tmp[suflen++] = '.';
67                                         strcpy(tmp+suflen, oid+pos+1);
68                                 }
69                                 return tmp;
70                         }
71                 }
72         }
73         return NULL;
74 }
75
76 void
77 oidm_destroy()
78 {
79         OidMacro *om;
80         while( !LDAP_SLIST_EMPTY( &om_list )) {
81                 om = LDAP_SLIST_FIRST( &om_list );
82                 LDAP_SLIST_REMOVE_HEAD( &om_list, som_next );
83
84                 ldap_charray_free(om->som_names);
85                 free(om->som_oid.bv_val);
86                 free(om);
87                 
88         }
89 }
90
91 int
92 parse_oidm(
93     const char  *fname,
94     int         lineno,
95     int         argc,
96     char        **argv )
97 {
98         char *oid;
99         OidMacro *om;
100
101         if (argc != 3) {
102                 fprintf( stderr, "%s: line %d: too many arguments\n",
103                         fname, lineno );
104 usage:  fprintf( stderr, "\tObjectIdentifier <name> <oid>\n");
105                 return 1;
106         }
107
108         oid = oidm_find( argv[1] );
109         if( oid != NULL ) {
110                 fprintf( stderr,
111                         "%s: line %d: "
112                         "ObjectIdentifier \"%s\" previously defined \"%s\"",
113                         fname, lineno, argv[1], oid );
114                 return 1;
115         }
116
117         om = (OidMacro *) SLAP_MALLOC( sizeof(OidMacro) );
118         if( om == NULL ) {
119                 Debug( LDAP_DEBUG_ANY, "parse_oidm: SLAP_MALLOC failed", 0, 0, 0 );
120                 return 1;
121         }
122
123         LDAP_SLIST_NEXT( om, som_next ) = NULL;
124         om->som_names = NULL;
125         ldap_charray_add( &om->som_names, argv[1] );
126         om->som_oid.bv_val = oidm_find( argv[2] );
127
128         if (!om->som_oid.bv_val) {
129                 fprintf( stderr, "%s: line %d: OID %s not recognized\n",
130                         fname, lineno, argv[2] );
131                 goto usage;
132         }
133
134         if (om->som_oid.bv_val == argv[2]) {
135                 om->som_oid.bv_val = ch_strdup( argv[2] );
136         }
137
138         om->som_oid.bv_len = strlen( om->som_oid.bv_val );
139
140         LDAP_SLIST_INSERT_HEAD( &om_list, om, som_next );
141         return 0;
142 }