]> git.sur5r.net Git - openldap/blob - include/ldap_schema.h
Fix ITS#1213, OID macro parsing in attributetypes
[openldap] / include / ldap_schema.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2001 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted only as authorized by the OpenLDAP
8  * Public License.  A copy of this license is available at
9  * http://www.OpenLDAP.org/license.html or in file LICENSE in the
10  * top-level directory of the distribution.
11  */
12 /*
13  * ldap-schema.h - Header for basic schema handling functions that can be
14  *              used by both clients and servers.
15  * these routines should be renamed ldap_x_...
16  */
17
18 #ifndef _LDAP_SCHEMA_H
19 #define _LDAP_SCHEMA_H 1
20
21 #include <ldap_cdefs.h>
22
23 LDAP_BEGIN_DECL
24
25 /* Codes for parsing errors */
26
27 #define LDAP_SCHERR_OUTOFMEM            1
28 #define LDAP_SCHERR_UNEXPTOKEN          2
29 #define LDAP_SCHERR_NOLEFTPAREN         3
30 #define LDAP_SCHERR_NORIGHTPAREN        4
31 #define LDAP_SCHERR_NODIGIT             5
32 #define LDAP_SCHERR_BADNAME             6
33 #define LDAP_SCHERR_BADDESC             7
34 #define LDAP_SCHERR_BADSUP              8
35 #define LDAP_SCHERR_DUPOPT              9
36 #define LDAP_SCHERR_EMPTY               10
37
38 typedef struct ldap_schema_extension_item {
39         char *lsei_name;
40         char **lsei_values;
41 } LDAPSchemaExtensionItem;
42
43 typedef struct ldap_syntax {
44         char *syn_oid;          /* REQUIRED */
45         char **syn_names;       /* OPTIONAL */
46         char *syn_desc;         /* OPTIONAL */
47         LDAPSchemaExtensionItem **syn_extensions; /* OPTIONAL */
48 } LDAPSyntax;
49
50 typedef struct ldap_matchingrule {
51         char *mr_oid;           /* REQUIRED */
52         char **mr_names;        /* OPTIONAL */
53         char *mr_desc;          /* OPTIONAL */
54         int  mr_obsolete;       /* OPTIONAL */
55         char *mr_syntax_oid;    /* REQUIRED */
56         LDAPSchemaExtensionItem **mr_extensions; /* OPTIONAL */
57 } LDAPMatchingRule;
58
59 typedef struct ldap_matchingruleuse {
60         char *mru_oid;          /* REQUIRED */
61         char **mru_names;       /* OPTIONAL */
62         char *mru_desc;         /* OPTIONAL */
63         int  mru_obsolete;      /* OPTIONAL */
64         char **mru_applies_oids;        /* REQUIRED */
65         LDAPSchemaExtensionItem **mru_extensions; /* OPTIONAL */
66 } LDAPMatchingRuleUse;
67
68 typedef struct ldap_attributetype {
69         char *at_oid;           /* REQUIRED */
70         char **at_names;        /* OPTIONAL */
71         char *at_desc;          /* OPTIONAL */
72         int  at_obsolete;       /* 0=no, 1=yes */
73         char *at_sup_oid;       /* OPTIONAL */
74         char *at_equality_oid;  /* OPTIONAL */
75         char *at_ordering_oid;  /* OPTIONAL */
76         char *at_substr_oid;    /* OPTIONAL */
77         char *at_syntax_oid;    /* OPTIONAL */
78         int  at_syntax_len;     /* OPTIONAL */
79         int  at_single_value;   /* 0=no, 1=yes */
80         int  at_collective;     /* 0=no, 1=yes */
81         int  at_no_user_mod;    /* 0=no, 1=yes */
82         int  at_usage;          /* 0=userApplications, 1=directoryOperation,
83                                    2=distributedOperation, 3=dSAOperation */
84         LDAPSchemaExtensionItem **at_extensions; /* OPTIONAL */
85 } LDAPAttributeType;
86
87 typedef struct ldap_objectclass {
88         char *oc_oid;           /* REQUIRED */
89         char **oc_names;        /* OPTIONAL */
90         char *oc_desc;          /* OPTIONAL */
91         int  oc_obsolete;       /* 0=no, 1=yes */
92         char **oc_sup_oids;     /* OPTIONAL */
93         int  oc_kind;           /* 0=ABSTRACT, 1=STRUCTURAL, 2=AUXILIARY */
94         char **oc_at_oids_must; /* OPTIONAL */
95         char **oc_at_oids_may;  /* OPTIONAL */
96         LDAPSchemaExtensionItem **oc_extensions; /* OPTIONAL */
97 } LDAPObjectClass;
98
99 #define LDAP_SCHEMA_NO                          0
100 #define LDAP_SCHEMA_YES                         1
101
102 #define LDAP_SCHEMA_USER_APPLICATIONS           0
103 #define LDAP_SCHEMA_DIRECTORY_OPERATION         1
104 #define LDAP_SCHEMA_DISTRIBUTED_OPERATION       2
105 #define LDAP_SCHEMA_DSA_OPERATION               3
106
107 #define LDAP_SCHEMA_ABSTRACT                    0
108 #define LDAP_SCHEMA_STRUCTURAL                  1
109 #define LDAP_SCHEMA_AUXILIARY                   2
110
111 /*
112  * Flags that control how liberal the parsing routines are.
113  */
114 #define LDAP_SCHEMA_ALLOW_NONE          0x00 /* Strict parsing               */
115 #define LDAP_SCHEMA_ALLOW_NO_OID        0x01 /* Allow missing oid            */
116 #define LDAP_SCHEMA_ALLOW_QUOTED        0x02 /* Allow bogus extra quotes     */
117 #define LDAP_SCHEMA_ALLOW_DESCR         0x04 /* Allow descr instead of OID   */
118 #define LDAP_SCHEMA_ALLOW_DESCR_PREFIX  0x08 /* Allow descr as OID prefix    */
119 #define LDAP_SCHEMA_ALLOW_OID_MACRO     0x10 /* Allow OID macros in slapd    */
120 #define LDAP_SCHEMA_ALLOW_ALL           0x1f /* Be very liberal in parsing   */
121
122 LDAP_F( LDAP_CONST char * )
123 ldap_syntax2name LDAP_P((
124         LDAPSyntax * syn ));
125
126 LDAP_F( LDAP_CONST char * )
127 ldap_matchingrule2name LDAP_P((
128         LDAPMatchingRule * mr ));
129
130 LDAP_F( LDAP_CONST char * )
131 ldap_matchingruleuse2name LDAP_P((
132         LDAPMatchingRuleUse * mru ));
133
134 LDAP_F( LDAP_CONST char * )
135 ldap_attributetype2name LDAP_P((
136         LDAPAttributeType * at ));
137
138 LDAP_F( LDAP_CONST char * )
139 ldap_objectclass2name LDAP_P((
140         LDAPObjectClass * oc ));
141
142 LDAP_F( void )
143 ldap_syntax_free LDAP_P((
144         LDAPSyntax * syn ));
145
146 LDAP_F( void )
147 ldap_matchingrule_free LDAP_P((
148         LDAPMatchingRule * mr ));
149
150 LDAP_F( void )
151 ldap_matchingruleuse_free LDAP_P((
152         LDAPMatchingRuleUse * mr ));
153
154 LDAP_F( void )
155 ldap_attributetype_free LDAP_P((
156         LDAPAttributeType * at ));
157
158 LDAP_F( void )
159 ldap_objectclass_free LDAP_P((
160         LDAPObjectClass * oc ));
161
162 LDAP_F( LDAPObjectClass * )
163 ldap_str2objectclass LDAP_P((
164         LDAP_CONST char * s,
165         int * code,
166         LDAP_CONST char ** errp,
167         LDAP_CONST int flags ));
168
169 LDAP_F( LDAPAttributeType * )
170 ldap_str2attributetype LDAP_P((
171         LDAP_CONST char * s,
172         int * code,
173         LDAP_CONST char ** errp,
174         LDAP_CONST int flags ));
175
176 LDAP_F( LDAPSyntax * )
177 ldap_str2syntax LDAP_P((
178         LDAP_CONST char * s,
179         int * code,
180         LDAP_CONST char ** errp,
181         LDAP_CONST int flags ));
182
183 LDAP_F( LDAPMatchingRule * )
184 ldap_str2matchingrule LDAP_P((
185         LDAP_CONST char * s,
186         int * code,
187         LDAP_CONST char ** errp,
188         LDAP_CONST int flags ));
189
190 LDAP_F( LDAPMatchingRuleUse * )
191 ldap_str2matchingruleuse LDAP_P((
192         LDAP_CONST char * s,
193         int * code,
194         LDAP_CONST char ** errp,
195         LDAP_CONST int flags ));
196
197 LDAP_F( char * )
198 ldap_objectclass2str LDAP_P((
199         LDAP_CONST LDAPObjectClass * oc ));
200
201 LDAP_F( char * )
202 ldap_attributetype2str LDAP_P((
203         LDAP_CONST LDAPAttributeType * at ));
204
205 LDAP_F( char * )
206 ldap_syntax2str LDAP_P((
207         LDAP_CONST LDAPSyntax * syn ));
208
209 LDAP_F( char * )
210 ldap_matchingrule2str LDAP_P((
211         LDAP_CONST LDAPMatchingRule * mr ));
212
213 LDAP_F( char * )
214 ldap_matchingruleuse2str LDAP_P((
215         LDAP_CONST LDAPMatchingRuleUse * mru ));
216
217 LDAP_F( char * )
218 ldap_scherr2str LDAP_P((
219         int code )) LDAP_GCCATTR((const));
220
221 LDAP_END_DECL
222
223 #endif
224