]> git.sur5r.net Git - openldap/blob - servers/slapd/attr.c
fix deadlock in case of bind error; propagate error as appropriate
[openldap] / servers / slapd / attr.c
1 /* attr.c - routines for dealing with attributes */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2006 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 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30
31 #ifdef HAVE_FCNTL_H
32 #include <fcntl.h>
33 #endif
34
35 #include <ac/ctype.h>
36 #include <ac/errno.h>
37 #include <ac/socket.h>
38 #include <ac/string.h>
39 #include <ac/time.h>
40
41 #include "slap.h"
42
43 /*
44  * Allocate in chunks, minimum of 1000 at a time.
45  */
46 #define CHUNK_SIZE      1000
47 typedef struct slap_list {
48         struct slap_list *next;
49 } slap_list;
50 static slap_list *attr_chunks;
51 static Attribute *attr_list;
52 static ldap_pvt_thread_mutex_t attr_mutex;
53
54 int
55 attr_prealloc( int num )
56 {
57         Attribute *a;
58         slap_list *s;
59
60         if (!num) return 0;
61
62         s = ch_calloc( 1, sizeof(slap_list) + num * sizeof(Attribute));
63         s->next = attr_chunks;
64         attr_chunks = s;
65
66         a = (Attribute *)(s+1);
67         for ( ;num>1; num--) {
68                 a->a_next = a+1;
69                 a++;
70         }
71         a->a_next = attr_list;
72         attr_list = (Attribute *)(s+1);
73
74         return 0;
75 }
76
77 Attribute *
78 attr_alloc( AttributeDescription *ad )
79 {
80         Attribute *a;
81
82         ldap_pvt_thread_mutex_lock( &attr_mutex );
83         if ( !attr_list )
84                 attr_prealloc( CHUNK_SIZE );
85         a = attr_list;
86         attr_list = a->a_next;
87         a->a_next = NULL;
88         ldap_pvt_thread_mutex_unlock( &attr_mutex );
89         
90         a->a_desc = ad;
91
92         return a;
93 }
94
95 /* Return a list of num attrs */
96 Attribute *
97 attrs_alloc( int num )
98 {
99         Attribute *head = NULL;
100         Attribute **a;
101
102         ldap_pvt_thread_mutex_lock( &attr_mutex );
103         for ( a = &attr_list; *a && num > 0; a = &(*a)->a_next ) {
104                 if ( !head )
105                         head = *a;
106                 num--;
107         }
108         attr_list = *a;
109         if ( num > 0 ) {
110                 attr_prealloc( num > CHUNK_SIZE ? num : CHUNK_SIZE );
111                 *a = attr_list;
112                 for ( ; *a && num > 0; a = &(*a)->a_next ) {
113                         if ( !head )
114                                 head = *a;
115                         num--;
116                 }
117                 attr_list = *a;
118         }
119         *a = NULL;
120         ldap_pvt_thread_mutex_unlock( &attr_mutex );
121
122         return head;
123 }
124
125
126 void
127 attr_free( Attribute *a )
128 {
129         if ( a->a_nvals && a->a_nvals != a->a_vals &&
130                 !( a->a_flags & SLAP_ATTR_DONT_FREE_VALS )) {
131                 if ( a->a_flags & SLAP_ATTR_DONT_FREE_DATA ) {
132                         free( a->a_nvals );
133                 } else {
134                         ber_bvarray_free( a->a_nvals );
135                 }
136         }
137         /* a_vals may be equal to slap_dummy_bv, a static empty berval;
138          * this is used as a placeholder for attributes that do not carry
139          * values, e.g. when proxying search entries with the "attrsonly"
140          * bit set. */
141         if ( a->a_vals != &slap_dummy_bv &&
142                 !( a->a_flags & SLAP_ATTR_DONT_FREE_VALS )) {
143                 if ( a->a_flags & SLAP_ATTR_DONT_FREE_DATA ) {
144                         free( a->a_vals );
145                 } else {
146                         ber_bvarray_free( a->a_vals );
147                 }
148         }
149         memset( a, 0, sizeof( Attribute ));
150         ldap_pvt_thread_mutex_lock( &attr_mutex );
151         a->a_next = attr_list;
152         attr_list = a;
153         ldap_pvt_thread_mutex_unlock( &attr_mutex );
154 }
155
156 #ifdef LDAP_COMP_MATCH
157 void
158 comp_tree_free( Attribute *a )
159 {
160         Attribute *next;
161
162         for( ; a != NULL ; a = next ) {
163                 next = a->a_next;
164                 if ( component_destructor && a->a_comp_data ) {
165                         if ( a->a_comp_data->cd_mem_op )
166                                 component_destructor( a->a_comp_data->cd_mem_op );
167                         free ( a->a_comp_data );
168                 }
169         }
170 }
171 #endif
172
173 void
174 attrs_free( Attribute *a )
175 {
176         Attribute *next;
177
178         for( ; a != NULL ; a = next ) {
179                 next = a->a_next;
180                 attr_free( a );
181         }
182 }
183
184
185 static void
186 attr_dup2( Attribute *tmp, Attribute *a )
187 {
188         if ( a->a_vals != NULL ) {
189                 int     i;
190
191                 for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ ) {
192                         /* EMPTY */ ;
193                 }
194
195                 tmp->a_vals = ch_malloc( (i + 1) * sizeof(struct berval) );
196                 for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ ) {
197                         ber_dupbv( &tmp->a_vals[i], &a->a_vals[i] );
198                         if ( BER_BVISNULL( &tmp->a_vals[i] ) ) break;
199                         /* FIXME: error? */
200                 }
201                 BER_BVZERO( &tmp->a_vals[i] );
202
203                 /* a_nvals must be non null; it may be equal to a_vals */
204                 assert( a->a_nvals != NULL );
205
206                 if ( a->a_nvals != a->a_vals ) {
207                         int     j;
208
209                         tmp->a_nvals = ch_malloc( (i + 1) * sizeof(struct berval) );
210                         for ( j = 0; !BER_BVISNULL( &a->a_nvals[j] ); j++ ) {
211                                 assert( j < i );
212                                 ber_dupbv( &tmp->a_nvals[j], &a->a_nvals[j] );
213                                 if ( BER_BVISNULL( &tmp->a_nvals[j] ) ) break;
214                                 /* FIXME: error? */
215                         }
216                         assert( j == i );
217                         BER_BVZERO( &tmp->a_nvals[j] );
218
219                 } else {
220                         tmp->a_nvals = tmp->a_vals;
221                 }
222         }
223 }
224
225 Attribute *
226 attr_dup( Attribute *a )
227 {
228         Attribute *tmp;
229
230         if ( a == NULL) return NULL;
231
232         tmp = attr_alloc( a->a_desc );
233         attr_dup2( tmp, a );
234         return tmp;
235 }
236
237 Attribute *
238 attrs_dup( Attribute *a )
239 {
240         int i;
241         Attribute *tmp, *anew;
242
243         if( a == NULL ) return NULL;
244
245         /* count them */
246         for( tmp=a,i=0; tmp; tmp=tmp->a_next ) {
247                 i++;
248         }
249
250         anew = attrs_alloc( i );
251
252         for( tmp=anew; a; a=a->a_next ) {
253                 tmp->a_desc = a->a_desc;
254                 attr_dup2( tmp, a );
255                 tmp=tmp->a_next;
256         }
257
258         return anew;
259 }
260
261
262 /*
263  * attr_merge - merge the given type and value with the list of
264  * attributes in attrs.
265  *
266  * nvals must be NULL if the attribute has no normalizer.
267  * In this case, a->a_nvals will be set equal to a->a_vals.
268  *
269  * returns      0       everything went ok
270  *              -1      trouble
271  */
272
273 int
274 attr_merge(
275         Entry           *e,
276         AttributeDescription *desc,
277         BerVarray       vals,
278         BerVarray       nvals )
279 {
280         int rc;
281
282         Attribute       **a;
283
284         for ( a = &e->e_attrs; *a != NULL; a = &(*a)->a_next ) {
285                 if (  (*a)->a_desc == desc ) {
286                         break;
287                 }
288         }
289
290         if ( *a == NULL ) {
291                 *a = attr_alloc( desc );
292         } else {
293                 /*
294                  * FIXME: if the attribute already exists, the presence
295                  * of nvals and the value of (*a)->a_nvals must be consistent
296                  */
297                 assert( ( nvals == NULL && (*a)->a_nvals == (*a)->a_vals )
298                                 || ( nvals != NULL && (
299                                         ( (*a)->a_vals == NULL && (*a)->a_nvals == NULL )
300                                         || ( (*a)->a_nvals != (*a)->a_vals ) ) ) );
301         }
302
303         rc = value_add( &(*a)->a_vals, vals );
304
305         if ( rc == LDAP_SUCCESS ) {
306                 if ( nvals ) {
307                         rc = value_add( &(*a)->a_nvals, nvals );
308                         /* FIXME: what if rc != LDAP_SUCCESS ? */
309                 } else {
310                         (*a)->a_nvals = (*a)->a_vals;
311                 }
312         }
313
314         return rc;
315 }
316
317 /*
318  * if a normalization function is defined for the equality matchingRule
319  * of desc, the value is normalized and stored in nval; otherwise nval 
320  * is NULL
321  */
322 int
323 attr_normalize(
324         AttributeDescription    *desc,
325         BerVarray               vals,
326         BerVarray               *nvalsp,
327         void                    *memctx )
328 {
329         int             rc = LDAP_SUCCESS;
330         BerVarray       nvals = NULL;
331
332         *nvalsp = NULL;
333
334         if ( desc->ad_type->sat_equality &&
335                 desc->ad_type->sat_equality->smr_normalize )
336         {
337                 int     i;
338                 
339                 for ( i = 0; !BER_BVISNULL( &vals[i] ); i++ );
340
341                 nvals = slap_sl_calloc( sizeof(struct berval), i + 1, memctx );
342                 for ( i = 0; !BER_BVISNULL( &vals[i] ); i++ ) {
343                         rc = desc->ad_type->sat_equality->smr_normalize(
344                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
345                                         desc->ad_type->sat_syntax,
346                                         desc->ad_type->sat_equality,
347                                         &vals[i], &nvals[i], memctx );
348
349                         if ( rc != LDAP_SUCCESS ) {
350                                 BER_BVZERO( &nvals[i + 1] );
351                                 break;
352                         }
353                 }
354                 BER_BVZERO( &nvals[i] );
355                 *nvalsp = nvals;
356         }
357
358 error_return:;
359         if ( rc != LDAP_SUCCESS && nvals != NULL ) {
360                 ber_bvarray_free_x( nvals, memctx );
361         }
362
363         return rc;
364 }
365
366 int
367 attr_merge_normalize(
368         Entry                   *e,
369         AttributeDescription    *desc,
370         BerVarray               vals,
371         void                    *memctx )
372 {
373         BerVarray       nvals = NULL;
374         int             rc;
375
376         rc = attr_normalize( desc, vals, &nvals, memctx );
377         if ( rc == LDAP_SUCCESS ) {
378                 rc = attr_merge( e, desc, vals, nvals );
379                 if ( nvals != NULL ) {
380                         ber_bvarray_free_x( nvals, memctx );
381                 }
382         }
383
384         return rc;
385 }
386
387 int
388 attr_merge_one(
389         Entry           *e,
390         AttributeDescription *desc,
391         struct berval   *val,
392         struct berval   *nval )
393 {
394         int rc;
395         Attribute       **a;
396
397         for ( a = &e->e_attrs; *a != NULL; a = &(*a)->a_next ) {
398                 if ( (*a)->a_desc == desc ) {
399                         break;
400                 }
401         }
402
403         if ( *a == NULL ) {
404                 *a = attr_alloc( desc );
405         }
406
407         rc = value_add_one( &(*a)->a_vals, val );
408
409         if ( rc == LDAP_SUCCESS ) {
410                 if ( nval ) {
411                         rc = value_add_one( &(*a)->a_nvals, nval );
412                         /* FIXME: what if rc != LDAP_SUCCESS ? */
413                 } else {
414                         (*a)->a_nvals = (*a)->a_vals;
415                 }
416         }
417         return rc;
418 }
419
420 /*
421  * if a normalization function is defined for the equality matchingRule
422  * of desc, the value is normalized and stored in nval; otherwise nval 
423  * is NULL
424  */
425 int
426 attr_normalize_one(
427         AttributeDescription *desc,
428         struct berval   *val,
429         struct berval   *nval,
430         void            *memctx )
431 {
432         int             rc = LDAP_SUCCESS;
433
434         BER_BVZERO( nval );
435
436         if ( desc->ad_type->sat_equality &&
437                 desc->ad_type->sat_equality->smr_normalize )
438         {
439                 rc = desc->ad_type->sat_equality->smr_normalize(
440                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
441                                 desc->ad_type->sat_syntax,
442                                 desc->ad_type->sat_equality,
443                                 val, nval, memctx );
444
445                 if ( rc != LDAP_SUCCESS ) {
446                         return rc;
447                 }
448         }
449
450         return rc;
451 }
452
453 int
454 attr_merge_normalize_one(
455         Entry           *e,
456         AttributeDescription *desc,
457         struct berval   *val,
458         void            *memctx )
459 {
460         struct berval   nval = BER_BVNULL;
461         struct berval   *nvalp = NULL;
462         int             rc;
463
464         rc = attr_normalize_one( desc, val, &nval, memctx );
465         if ( rc == LDAP_SUCCESS && !BER_BVISNULL( &nval ) ) {
466                 nvalp = &nval;
467         }
468
469         rc = attr_merge_one( e, desc, val, nvalp );
470         if ( nvalp != NULL ) {
471                 slap_sl_free( nval.bv_val, memctx );
472         }
473         return rc;
474 }
475
476 /*
477  * attrs_find - find attribute(s) by AttributeDescription
478  * returns next attribute which is subtype of provided description.
479  */
480
481 Attribute *
482 attrs_find(
483     Attribute   *a,
484         AttributeDescription *desc )
485 {
486         for ( ; a != NULL; a = a->a_next ) {
487                 if ( is_ad_subtype( a->a_desc, desc ) ) {
488                         return( a );
489                 }
490         }
491
492         return( NULL );
493 }
494
495 /*
496  * attr_find - find attribute by type
497  */
498
499 Attribute *
500 attr_find(
501     Attribute   *a,
502         AttributeDescription *desc )
503 {
504         for ( ; a != NULL; a = a->a_next ) {
505                 if ( a->a_desc == desc ) {
506                         return( a );
507                 }
508         }
509
510         return( NULL );
511 }
512
513 /*
514  * attr_delete - delete the attribute type in list pointed to by attrs
515  * return       0       deleted ok
516  *              1       not found in list a
517  *              -1      something bad happened
518  */
519
520 int
521 attr_delete(
522     Attribute   **attrs,
523         AttributeDescription *desc )
524 {
525         Attribute       **a;
526
527         for ( a = attrs; *a != NULL; a = &(*a)->a_next ) {
528                 if ( (*a)->a_desc == desc ) {
529                         Attribute       *save = *a;
530                         *a = (*a)->a_next;
531                         attr_free( save );
532
533                         return LDAP_SUCCESS;
534                 }
535         }
536
537         return LDAP_NO_SUCH_ATTRIBUTE;
538 }
539
540 int
541 attr_init( void )
542 {
543         ldap_pvt_thread_mutex_init( &attr_mutex );
544         return 0;
545 }
546
547 int
548 attr_destroy( void )
549 {
550         slap_list *a;
551
552         for ( a=attr_chunks; a; a=attr_chunks ) {
553                 attr_chunks = a->next;
554                 free( a );
555         }
556         ldap_pvt_thread_mutex_destroy( &attr_mutex );
557         return 0;
558 }