]> git.sur5r.net Git - openldap/blob - servers/slapd/oc.c
Add error handling to BDB_INDEX code
[openldap] / servers / slapd / oc.c
1 /* oc.c - object class routines */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/ctype.h>
13 #include <ac/string.h>
14 #include <ac/socket.h>
15
16 #include "slap.h"
17 #include "ldap_pvt.h"
18
19 int is_object_subclass(
20         ObjectClass *sub,
21         ObjectClass *sup )
22 {
23         int i;
24
25         if( sub == NULL || sup == NULL ) return 0;
26
27 #if 0
28         Debug( LDAP_DEBUG_TRACE, "is_object_subclass(%s,%s) %d\n",
29                 sub->soc_oid, sup->soc_oid, sup == sub );
30 #endif
31
32         if( sup == sub ) {
33                 return 1;
34         }
35
36         if( sup->soc_sups == NULL ) {
37                 return 0;
38         }
39
40         for( i=0; sup->soc_sups[i] != NULL; i++ ) {
41                 if( is_object_subclass( sub, sup->soc_sups[i] ) ) {
42                         return 1;
43                 }
44         }
45
46         return 0;
47 }
48
49 int is_entry_objectclass(
50         Entry*  e,
51         ObjectClass *oc )
52 {
53         Attribute *attr;
54         int i;
55         AttributeDescription *objectClass = slap_schema.si_ad_objectClass;
56         assert(!( e == NULL || oc == NULL ));
57
58         if( e == NULL || oc == NULL ) {
59                 return 0;
60         }
61
62         /*
63          * find objectClass attribute
64          */
65         attr = attr_find(e->e_attrs, objectClass);
66
67         if( attr == NULL ) {
68                 /* no objectClass attribute */
69 #ifdef NEW_LOGGING
70                 LDAP_LOG(( "operation", LDAP_LEVEL_ERR, "is_entry_objectclass: "
71                         "dn(%s), oid (%s), no objectClass attribute.\n",
72                         e->e_dn == NULL ? "" : e->e_dn,
73                         oc->soc_oclass.oc_oid ));
74 #else
75                 Debug( LDAP_DEBUG_ANY, "is_entry_objectclass(\"%s\", \"%s\") "
76                         "no objectClass attribute\n",
77                         e->e_dn == NULL ? "" : e->e_dn,
78                         oc->soc_oclass.oc_oid, 0 );
79 #endif
80
81                 return 0;
82         }
83
84         for( i=0; attr->a_vals[i]; i++ ) {
85                 ObjectClass *objectClass = oc_find( attr->a_vals[i]->bv_val );
86
87                 if( objectClass == oc ) {
88                         return 1;
89                 }
90         }
91
92         return 0;
93
94 }
95
96
97 struct oindexrec {
98         char            *oir_name;
99         ObjectClass     *oir_oc;
100 };
101
102 static Avlnode  *oc_index = NULL;
103 static ObjectClass *oc_list = NULL;
104
105 static int
106 oc_index_cmp(
107     struct oindexrec    *oir1,
108     struct oindexrec    *oir2 )
109 {
110         assert( oir1->oir_name );
111         assert( oir1->oir_oc );
112         assert( oir2->oir_name );
113         assert( oir2->oir_oc );
114
115         return strcasecmp( oir1->oir_name, oir2->oir_name );
116 }
117
118 static int
119 oc_index_name_cmp(
120     char                *name,
121     struct oindexrec    *oir )
122 {
123         assert( oir->oir_name );
124         assert( oir->oir_oc );
125
126         return (strcasecmp( name, oir->oir_name ));
127 }
128
129 ObjectClass *
130 oc_find( const char *ocname )
131 {
132         struct oindexrec        *oir;
133
134         oir = (struct oindexrec *) avl_find( oc_index, ocname,
135             (AVL_CMP) oc_index_name_cmp );
136
137         if ( oir != NULL ) {
138                 assert( oir->oir_name );
139                 assert( oir->oir_oc );
140
141                 return( oir->oir_oc );
142         }
143
144         return( NULL );
145 }
146
147 static int
148 oc_create_required(
149     ObjectClass         *soc,
150     char                **attrs,
151     const char          **err )
152 {
153         char            **attrs1;
154         AttributeType   *sat;
155         AttributeType   **satp;
156         int             i;
157
158         if ( attrs ) {
159                 attrs1 = attrs;
160                 while ( *attrs1 ) {
161                         sat = at_find(*attrs1);
162                         if ( !sat ) {
163                                 *err = *attrs1;
164                                 return SLAP_SCHERR_ATTR_NOT_FOUND;
165                         }
166                         if ( at_find_in_list(sat, soc->soc_required) < 0) {
167                                 if ( at_append_to_list(sat, &soc->soc_required) ) {
168                                         *err = *attrs1;
169                                         return SLAP_SCHERR_OUTOFMEM;
170                                 }
171                         }
172                         attrs1++;
173                 }
174                 /* Now delete duplicates from the allowed list */
175                 for ( satp = soc->soc_required; *satp; satp++ ) {
176                         i = at_find_in_list(*satp,soc->soc_allowed);
177                         if ( i >= 0 ) {
178                                 at_delete_from_list(i, &soc->soc_allowed);
179                         }
180                 }
181         }
182         return 0;
183 }
184
185 static int
186 oc_create_allowed(
187     ObjectClass         *soc,
188     char                **attrs,
189     const char          **err )
190 {
191         char            **attrs1;
192         AttributeType   *sat;
193
194         if ( attrs ) {
195                 attrs1 = attrs;
196                 while ( *attrs1 ) {
197                         sat = at_find(*attrs1);
198                         if ( !sat ) {
199                                 *err = *attrs1;
200                                 return SLAP_SCHERR_ATTR_NOT_FOUND;
201                         }
202                         if ( at_find_in_list(sat, soc->soc_required) < 0 &&
203                              at_find_in_list(sat, soc->soc_allowed) < 0 ) {
204                                 if ( at_append_to_list(sat, &soc->soc_allowed) ) {
205                                         *err = *attrs1;
206                                         return SLAP_SCHERR_OUTOFMEM;
207                                 }
208                         }
209                         attrs1++;
210                 }
211         }
212         return 0;
213 }
214
215 static int
216 oc_add_sups(
217     ObjectClass         *soc,
218     char                        **sups,
219     const char          **err )
220 {
221         int             code;
222         ObjectClass     *soc1;
223         int             nsups;
224         char    **sups1;
225         int             add_sups = 0;
226
227         if ( sups ) {
228                 if ( !soc->soc_sups ) {
229                         /* We are at the first recursive level */
230                         add_sups = 1;
231                         nsups = 1;
232                         sups1 = sups;
233                         while ( *sups1 ) {
234                                 nsups++;
235                                 sups1++;
236                         }
237                         soc->soc_sups = (ObjectClass **)ch_calloc(nsups,
238                                           sizeof(ObjectClass *));
239                 }
240
241                 nsups = 0;
242                 sups1 = sups;
243                 while ( *sups1 ) {
244                         soc1 = oc_find(*sups1);
245                         if ( !soc1 ) {
246                                 *err = *sups1;
247                                 return SLAP_SCHERR_CLASS_NOT_FOUND;
248                         }
249
250                         /* check object class usage
251                          * abstract classes can only sup abstract classes 
252                          * structural classes can not sup auxiliary classes
253                          * auxiliary classes can not sup structural classes
254                          */
255                         if( soc->soc_kind != soc1->soc_kind
256                                 && soc1->soc_kind != LDAP_SCHEMA_ABSTRACT )
257                         {
258                                 *err = *sups1;
259                                 return SLAP_SCHERR_CLASS_BAD_USAGE;
260                         }
261
262                         if ( add_sups )
263                                 soc->soc_sups[nsups] = soc1;
264
265                         code = oc_add_sups( soc, soc1->soc_sup_oids, err );
266                         if ( code ) return code;
267
268                         code = oc_create_required( soc, soc1->soc_at_oids_must, err );
269                         if ( code ) return code;
270
271                         code = oc_create_allowed( soc, soc1->soc_at_oids_may, err );
272                         if ( code ) return code;
273
274                         nsups++;
275                         sups1++;
276                 }
277         }
278
279         return 0;
280 }
281
282 static int
283 oc_insert(
284     ObjectClass         *soc,
285     const char          **err
286 )
287 {
288         ObjectClass     **ocp;
289         struct oindexrec        *oir;
290         char                    **names;
291
292         ocp = &oc_list;
293         while ( *ocp != NULL ) {
294                 ocp = &(*ocp)->soc_next;
295         }
296         *ocp = soc;
297
298         if ( soc->soc_oid ) {
299                 oir = (struct oindexrec *)
300                         ch_calloc( 1, sizeof(struct oindexrec) );
301                 oir->oir_name = soc->soc_oid;
302                 oir->oir_oc = soc;
303
304                 assert( oir->oir_name );
305                 assert( oir->oir_oc );
306
307                 if ( avl_insert( &oc_index, (caddr_t) oir,
308                                  (AVL_CMP) oc_index_cmp,
309                                  (AVL_DUP) avl_dup_error ) )
310                 {
311                         *err = soc->soc_oid;
312                         ldap_memfree(oir->oir_name);
313                         ldap_memfree(oir);
314                         return SLAP_SCHERR_DUP_CLASS;
315                 }
316
317                 /* FIX: temporal consistency check */
318                 assert( oc_find(oir->oir_name) != NULL );
319         }
320
321         if ( (names = soc->soc_names) ) {
322                 while ( *names ) {
323                         oir = (struct oindexrec *)
324                                 ch_calloc( 1, sizeof(struct oindexrec) );
325                         oir->oir_name = ch_strdup(*names);
326                         oir->oir_oc = soc;
327
328                         assert( oir->oir_name );
329                         assert( oir->oir_oc );
330
331                         if ( avl_insert( &oc_index, (caddr_t) oir,
332                                          (AVL_CMP) oc_index_cmp,
333                                          (AVL_DUP) avl_dup_error ) )
334                         {
335                                 *err = *names;
336                                 ldap_memfree(oir->oir_name);
337                                 ldap_memfree(oir);
338                                 return SLAP_SCHERR_DUP_CLASS;
339                         }
340
341                         /* FIX: temporal consistency check */
342                         assert( oc_find(oir->oir_name) != NULL );
343
344                         names++;
345                 }
346         }
347
348         return 0;
349 }
350
351 int
352 oc_add(
353     LDAPObjectClass     *oc,
354     const char          **err
355 )
356 {
357         ObjectClass     *soc;
358         int             code;
359
360         if ( oc->oc_names != NULL ) {
361                 int i;
362
363                 for( i=0; oc->oc_names[i]; i++ ) {
364                         if( !slap_valid_descr( oc->oc_names[i] ) ) {
365                                 return SLAP_SCHERR_BAD_DESCR;
366                         }
367                 }
368         }
369
370         soc = (ObjectClass *) ch_calloc( 1, sizeof(ObjectClass) );
371         AC_MEMCPY( &soc->soc_oclass, oc, sizeof(LDAPObjectClass) );
372
373         if( soc->soc_sup_oids == NULL &&
374                 soc->soc_kind == LDAP_SCHEMA_STRUCTURAL )
375         {
376                 /* structural object classes implicitly inherit from 'top' */
377                 static char *top_oids[] = { SLAPD_TOP_OID, NULL };
378                 code = oc_add_sups( soc, top_oids, err );
379         } else {
380                 code = oc_add_sups( soc, soc->soc_sup_oids, err );
381         }
382
383         if ( code != 0 ) return code;
384
385         code = oc_create_required( soc, soc->soc_at_oids_must, err );
386         if ( code != 0 ) return code;
387
388         code = oc_create_allowed( soc, soc->soc_at_oids_may, err );
389         if ( code != 0 ) return code;
390
391         code = oc_insert(soc,err);
392         return code;
393 }
394
395 #ifdef LDAP_DEBUG
396
397 static void
398 oc_print( ObjectClass *oc )
399 {
400         int     i;
401         const char *mid;
402
403         printf( "objectclass %s\n", ldap_objectclass2name( &oc->soc_oclass ) );
404         if ( oc->soc_required != NULL ) {
405                 mid = "\trequires ";
406                 for ( i = 0; oc->soc_required[i] != NULL; i++, mid = "," )
407                         printf( "%s%s", mid,
408                                 ldap_attributetype2name( &oc->soc_required[i]->sat_atype ) );
409                 printf( "\n" );
410         }
411         if ( oc->soc_allowed != NULL ) {
412                 mid = "\tallows ";
413                 for ( i = 0; oc->soc_allowed[i] != NULL; i++, mid = "," )
414                         printf( "%s%s", mid,
415                                 ldap_attributetype2name( &oc->soc_allowed[i]->sat_atype ) );
416                 printf( "\n" );
417         }
418 }
419
420 #endif
421
422
423 #if defined( SLAPD_SCHEMA_DN )
424
425 int
426 oc_schema_info( Entry *e )
427 {
428         struct berval   val;
429         struct berval   *vals[2];
430         ObjectClass     *oc;
431
432         AttributeDescription *ad_objectClasses = slap_schema.si_ad_objectClasses;
433
434         vals[0] = &val;
435         vals[1] = NULL;
436
437         for ( oc = oc_list; oc; oc = oc->soc_next ) {
438                 val.bv_val = ldap_objectclass2str( &oc->soc_oclass );
439                 if ( val.bv_val == NULL ) {
440                         return -1;
441                 }
442                 val.bv_len = strlen( val.bv_val );
443 #if 0
444                 Debug( LDAP_DEBUG_TRACE, "Merging oc [%ld] %s\n",
445                (long) val.bv_len, val.bv_val, 0 );
446 #endif
447                 attr_merge( e, ad_objectClasses, vals );
448                 ldap_memfree( val.bv_val );
449         }
450         return 0;
451 }
452
453 #endif