1 /* attr.c - routines for dealing with attributes */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2009 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17 * All rights reserved.
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.
37 #include <ac/socket.h>
38 #include <ac/string.h>
44 * Allocate in chunks, minimum of 1000 at a time.
46 #define CHUNK_SIZE 1000
47 typedef struct slap_list {
48 struct slap_list *next;
50 static slap_list *attr_chunks;
51 static Attribute *attr_list;
52 static ldap_pvt_thread_mutex_t attr_mutex;
55 attr_prealloc( int num )
62 s = ch_calloc( 1, sizeof(slap_list) + num * sizeof(Attribute));
63 s->next = attr_chunks;
66 a = (Attribute *)(s+1);
67 for ( ;num>1; num--) {
71 a->a_next = attr_list;
72 attr_list = (Attribute *)(s+1);
78 attr_alloc( AttributeDescription *ad )
82 ldap_pvt_thread_mutex_lock( &attr_mutex );
84 attr_prealloc( CHUNK_SIZE );
86 attr_list = a->a_next;
88 ldap_pvt_thread_mutex_unlock( &attr_mutex );
95 /* Return a list of num attrs */
97 attrs_alloc( int num )
99 Attribute *head = NULL;
102 ldap_pvt_thread_mutex_lock( &attr_mutex );
103 for ( a = &attr_list; *a && num > 0; a = &(*a)->a_next ) {
110 attr_prealloc( num > CHUNK_SIZE ? num : CHUNK_SIZE );
112 for ( ; *a && num > 0; a = &(*a)->a_next ) {
120 ldap_pvt_thread_mutex_unlock( &attr_mutex );
127 attr_clean( Attribute *a )
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 ) {
134 ber_bvarray_free( a->a_nvals );
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"
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 ) {
146 ber_bvarray_free( a->a_vals );
152 #ifdef LDAP_COMP_MATCH
153 a->a_comp_data = NULL;
160 attr_free( Attribute *a )
163 ldap_pvt_thread_mutex_lock( &attr_mutex );
164 a->a_next = attr_list;
166 ldap_pvt_thread_mutex_unlock( &attr_mutex );
169 #ifdef LDAP_COMP_MATCH
171 comp_tree_free( Attribute *a )
175 for( ; a != NULL ; a = next ) {
177 if ( component_destructor && a->a_comp_data ) {
178 if ( a->a_comp_data->cd_mem_op )
179 component_destructor( a->a_comp_data->cd_mem_op );
180 free ( a->a_comp_data );
187 attrs_free( Attribute *a )
190 Attribute *b = (Attribute *)0xBAD, *tail, *next;
202 ldap_pvt_thread_mutex_lock( &attr_mutex );
203 /* replace NULL with current attr list and let attr list
204 * start from last attribute returned to list */
205 tail->a_next = attr_list;
207 ldap_pvt_thread_mutex_unlock( &attr_mutex );
212 attr_dup2( Attribute *tmp, Attribute *a )
214 tmp->a_flags = a->a_flags & SLAP_ATTR_PERSISTENT_FLAGS;
215 if ( a->a_vals != NULL ) {
218 tmp->a_numvals = a->a_numvals;
219 tmp->a_vals = ch_malloc( (tmp->a_numvals + 1) * sizeof(struct berval) );
220 for ( i = 0; i < tmp->a_numvals; i++ ) {
221 ber_dupbv( &tmp->a_vals[i], &a->a_vals[i] );
222 if ( BER_BVISNULL( &tmp->a_vals[i] ) ) break;
225 BER_BVZERO( &tmp->a_vals[i] );
227 /* a_nvals must be non null; it may be equal to a_vals */
228 assert( a->a_nvals != NULL );
230 if ( a->a_nvals != a->a_vals ) {
232 tmp->a_nvals = ch_malloc( (tmp->a_numvals + 1) * sizeof(struct berval) );
233 for ( j = 0; !BER_BVISNULL( &a->a_nvals[j] ); j++ ) {
235 ber_dupbv( &tmp->a_nvals[j], &a->a_nvals[j] );
236 if ( BER_BVISNULL( &tmp->a_nvals[j] ) ) break;
240 BER_BVZERO( &tmp->a_nvals[j] );
243 tmp->a_nvals = tmp->a_vals;
249 attr_dup( Attribute *a )
253 if ( a == NULL) return NULL;
255 tmp = attr_alloc( a->a_desc );
261 attrs_dup( Attribute *a )
264 Attribute *tmp, *anew;
266 if( a == NULL ) return NULL;
269 for( tmp=a,i=0; tmp; tmp=tmp->a_next ) {
273 anew = attrs_alloc( i );
275 for( tmp=anew; a; a=a->a_next ) {
276 tmp->a_desc = a->a_desc;
292 struct berval nval = BER_BVNULL, *cval;
298 if ( flags & SLAP_MR_ORDERING )
299 mr = a->a_desc->ad_type->sat_ordering;
301 mr = a->a_desc->ad_type->sat_equality;
303 if( !SLAP_IS_MR_ASSERTED_VALUE_NORMALIZED_MATCH( flags ) &&
306 rc = (mr->smr_normalize)(
307 flags & (SLAP_MR_TYPE_MASK|SLAP_MR_SUBTYPE_MASK|SLAP_MR_VALUE_OF_SYNTAX),
308 a->a_desc->ad_type->sat_syntax,
309 mr, val, &nval, ctx );
311 if( rc != LDAP_SUCCESS ) {
312 return LDAP_INVALID_SYNTAX;
319 if ( a->a_flags & SLAP_ATTR_SORTED_VALS ) {
321 unsigned base = 0, n = a->a_numvals;
324 unsigned pivot = n >> 1;
326 rc = value_match( &match, a->a_desc, mr, flags,
327 &a->a_nvals[i], cval, &text );
328 if ( rc == LDAP_SUCCESS && match == 0 )
341 for ( i = 0; i < a->a_numvals; i++ ) {
344 rc = ordered_value_match( &match, a->a_desc, mr, flags,
345 &a->a_nvals[i], cval, &text );
346 if ( rc == LDAP_SUCCESS && match == 0 )
353 rc = LDAP_NO_SUCH_ATTRIBUTE;
355 slap_sl_free( nval.bv_val, ctx );
370 v2 = (BerVarray) SLAP_REALLOC( (char *) a->a_vals,
371 (a->a_numvals + nn + 1) * sizeof(struct berval) );
373 Debug(LDAP_DEBUG_TRACE,
374 "attr_valadd: SLAP_REALLOC failed.\n", 0, 0, 0 );
375 return LBER_ERROR_MEMORY;
379 v2 = (BerVarray) SLAP_REALLOC( (char *) a->a_nvals,
380 (a->a_numvals + nn + 1) * sizeof(struct berval) );
382 Debug(LDAP_DEBUG_TRACE,
383 "attr_valadd: SLAP_REALLOC failed.\n", 0, 0, 0 );
384 return LBER_ERROR_MEMORY;
388 a->a_nvals = a->a_vals;
391 /* If sorted and old vals exist, must insert */
392 if (( a->a_flags & SLAP_ATTR_SORTED_VALS ) && a->a_numvals ) {
395 v2 = nvals ? nvals : vals;
396 for ( i = 0; i < nn; i++ ) {
397 rc = attr_valfind( a, SLAP_MR_EQUALITY | SLAP_MR_VALUE_OF_ASSERTION_SYNTAX |
398 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH | SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH,
399 &v2[i], &slot, NULL );
400 if ( rc != LDAP_NO_SUCH_ATTRIBUTE ) {
401 /* should never happen */
402 if ( rc == LDAP_SUCCESS )
403 rc = LDAP_TYPE_OR_VALUE_EXISTS;
406 for ( j = a->a_numvals; j >= (int)slot; j-- ) {
407 a->a_vals[j+1] = a->a_vals[j];
409 a->a_nvals[j+1] = a->a_nvals[j];
411 ber_dupbv( &a->a_nvals[slot], &v2[i] );
413 ber_dupbv( &a->a_vals[slot], &vals[i] );
416 BER_BVZERO( &a->a_vals[a->a_numvals] );
417 if ( a->a_vals != a->a_nvals )
418 BER_BVZERO( &a->a_nvals[a->a_numvals] );
420 v2 = &a->a_vals[a->a_numvals];
421 for ( i = 0 ; i < nn; i++ ) {
422 ber_dupbv( &v2[i], &vals[i] );
423 if ( BER_BVISNULL( &v2[i] ) ) break;
425 BER_BVZERO( &v2[i] );
428 v2 = &a->a_nvals[a->a_numvals];
429 for ( i = 0 ; i < nn; i++ ) {
430 ber_dupbv( &v2[i], &nvals[i] );
431 if ( BER_BVISNULL( &v2[i] ) ) break;
433 BER_BVZERO( &v2[i] );
441 * attr_merge - merge the given type and value with the list of
442 * attributes in attrs.
444 * nvals must be NULL if the attribute has no normalizer.
445 * In this case, a->a_nvals will be set equal to a->a_vals.
447 * returns 0 everything went ok
454 AttributeDescription *desc,
462 for ( a = &e->e_attrs; *a != NULL; a = &(*a)->a_next ) {
463 if ( (*a)->a_desc == desc ) {
469 *a = attr_alloc( desc );
472 * FIXME: if the attribute already exists, the presence
473 * of nvals and the value of (*a)->a_nvals must be consistent
475 assert( ( nvals == NULL && (*a)->a_nvals == (*a)->a_vals )
476 || ( nvals != NULL && (
477 ( (*a)->a_vals == NULL && (*a)->a_nvals == NULL )
478 || ( (*a)->a_nvals != (*a)->a_vals ) ) ) );
481 if ( vals != NULL ) {
482 for ( ; !BER_BVISNULL( &vals[i] ); i++ ) ;
484 return attr_valadd( *a, vals, nvals, i );
488 * if a normalization function is defined for the equality matchingRule
489 * of desc, the value is normalized and stored in nval; otherwise nval
494 AttributeDescription *desc,
499 int rc = LDAP_SUCCESS;
500 BerVarray nvals = NULL;
504 if ( desc->ad_type->sat_equality &&
505 desc->ad_type->sat_equality->smr_normalize )
509 for ( i = 0; !BER_BVISNULL( &vals[i] ); i++ );
511 nvals = slap_sl_calloc( sizeof(struct berval), i + 1, memctx );
512 for ( i = 0; !BER_BVISNULL( &vals[i] ); i++ ) {
513 rc = desc->ad_type->sat_equality->smr_normalize(
514 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
515 desc->ad_type->sat_syntax,
516 desc->ad_type->sat_equality,
517 &vals[i], &nvals[i], memctx );
519 if ( rc != LDAP_SUCCESS ) {
520 BER_BVZERO( &nvals[i + 1] );
524 BER_BVZERO( &nvals[i] );
528 if ( rc != LDAP_SUCCESS && nvals != NULL ) {
529 ber_bvarray_free_x( nvals, memctx );
536 attr_merge_normalize(
538 AttributeDescription *desc,
542 BerVarray nvals = NULL;
545 rc = attr_normalize( desc, vals, &nvals, memctx );
546 if ( rc == LDAP_SUCCESS ) {
547 rc = attr_merge( e, desc, vals, nvals );
548 if ( nvals != NULL ) {
549 ber_bvarray_free_x( nvals, memctx );
559 AttributeDescription *desc,
561 struct berval *nval )
565 for ( a = &e->e_attrs; *a != NULL; a = &(*a)->a_next ) {
566 if ( (*a)->a_desc == desc ) {
572 *a = attr_alloc( desc );
575 return attr_valadd( *a, val, nval, 1 );
579 * if a normalization function is defined for the equality matchingRule
580 * of desc, the value is normalized and stored in nval; otherwise nval
585 AttributeDescription *desc,
590 int rc = LDAP_SUCCESS;
594 if ( desc->ad_type->sat_equality &&
595 desc->ad_type->sat_equality->smr_normalize )
597 rc = desc->ad_type->sat_equality->smr_normalize(
598 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
599 desc->ad_type->sat_syntax,
600 desc->ad_type->sat_equality,
603 if ( rc != LDAP_SUCCESS ) {
612 attr_merge_normalize_one(
614 AttributeDescription *desc,
618 struct berval nval = BER_BVNULL;
619 struct berval *nvalp = NULL;
622 rc = attr_normalize_one( desc, val, &nval, memctx );
623 if ( rc == LDAP_SUCCESS && !BER_BVISNULL( &nval ) ) {
627 rc = attr_merge_one( e, desc, val, nvalp );
628 if ( nvalp != NULL ) {
629 slap_sl_free( nval.bv_val, memctx );
635 * attrs_find - find attribute(s) by AttributeDescription
636 * returns next attribute which is subtype of provided description.
642 AttributeDescription *desc )
644 for ( ; a != NULL; a = a->a_next ) {
645 if ( is_ad_subtype( a->a_desc, desc ) ) {
654 * attr_find - find attribute by type
660 AttributeDescription *desc )
662 for ( ; a != NULL; a = a->a_next ) {
663 if ( a->a_desc == desc ) {
672 * attr_delete - delete the attribute type in list pointed to by attrs
673 * return 0 deleted ok
674 * 1 not found in list a
675 * -1 something bad happened
681 AttributeDescription *desc )
685 for ( a = attrs; *a != NULL; a = &(*a)->a_next ) {
686 if ( (*a)->a_desc == desc ) {
687 Attribute *save = *a;
695 return LDAP_NO_SUCH_ATTRIBUTE;
701 ldap_pvt_thread_mutex_init( &attr_mutex );
710 for ( a=attr_chunks; a; a=attr_chunks ) {
711 attr_chunks = a->next;
714 ldap_pvt_thread_mutex_destroy( &attr_mutex );