2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2004 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16 * All rights reserved.
18 * Redistribution and use in source and binary forms are permitted
19 * provided that this notice is preserved and that due credit is given
20 * to the University of Michigan at Ann Arbor. The name of the University
21 * may not be used to endorse or promote products derived from this
22 * software without specific prior written permission. This software
23 * is provided ``as is'' without express or implied warranty.
28 #include <ac/string.h>
44 Modification pmod = *mod;
46 switch ( mod->sm_op ) {
50 case LDAP_MOD_REPLACE:
58 /* check if values to add exist in attribute */
59 a = attr_find( e->e_attrs, mod->sm_desc );
64 mr = mod->sm_desc->ad_type->sat_equality;
65 if( mr == NULL || !mr->smr_match ) {
66 /* do not allow add of additional attribute
67 if no equality rule exists */
69 snprintf( textbuf, textlen,
70 "modify/%s: %s: no equality matching rule",
71 op, mod->sm_desc->ad_cname.bv_val );
72 return LDAP_INAPPROPRIATE_MATCHING;
76 for ( i = 0; !BER_BVISNULL( &mod->sm_values[i] ); i++ ) /* count 'em */;
77 pmod.sm_values = (BerVarray)ch_malloc( (i + 1)*sizeof( struct berval ) );
78 if ( pmod.sm_nvalues != NULL ) {
79 pmod.sm_nvalues = (BerVarray)ch_malloc(
80 (i + 1)*sizeof( struct berval ) );
84 /* no normalization is done in this routine nor
85 * in the matching routines called by this routine.
86 * values are now normalized once on input to the
87 * server (whether from LDAP or from the underlying
90 for ( p = i = 0; !BER_BVISNULL( &mod->sm_values[i] ); i++ ) {
93 assert( a->a_vals[0].bv_val );
94 for ( j = 0; !BER_BVISNULL( &a->a_vals[j] ); j++ ) {
95 if ( mod->sm_nvalues ) {
96 rc = value_match( &match, mod->sm_desc, mr,
97 SLAP_MR_EQUALITY | SLAP_MR_VALUE_OF_ASSERTION_SYNTAX
98 | SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH
99 | SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH,
100 &a->a_nvals[j], &mod->sm_nvalues[i], text );
102 rc = value_match( &match, mod->sm_desc, mr,
103 SLAP_MR_EQUALITY | SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
104 &a->a_vals[j], &mod->sm_values[i], text );
107 if ( rc == LDAP_SUCCESS && match == 0 ) {
108 /* value already exists */
109 if ( permissive ) break;
112 snprintf( textbuf, textlen,
113 "modify/%s: %s: value #%d already exists",
114 op, mod->sm_desc->ad_cname.bv_val, i );
115 return LDAP_TYPE_OR_VALUE_EXISTS;
117 } else if ( rc != LDAP_SUCCESS ) {
122 if ( permissive && match != 0 ) {
123 if ( pmod.sm_nvalues ) {
124 pmod.sm_nvalues[p] = mod->sm_nvalues[i];
126 pmod.sm_values[p++] = mod->sm_values[i];
132 /* all new values match exist */
133 ch_free( pmod.sm_values );
134 if ( pmod.sm_nvalues ) ch_free( pmod.sm_nvalues );
138 BER_BVZERO( &pmod.sm_values[p] );
139 if ( pmod.sm_nvalues ) {
140 BER_BVZERO( &pmod.sm_nvalues[p] );
146 rc = attr_merge( e, mod->sm_desc, pmod.sm_values, pmod.sm_nvalues );
148 if ( a != NULL && permissive ) {
149 ch_free( pmod.sm_values );
150 if ( pmod.sm_nvalues ) ch_free( pmod.sm_nvalues );
154 /* this should return result of attr_merge */
156 snprintf( textbuf, textlen,
157 "modify/%s: %s: merge error",
158 op, mod->sm_desc->ad_cname.bv_val );
166 modify_delete_values(
171 char *textbuf, size_t textlen )
173 int i, j, k, rc = LDAP_SUCCESS;
175 MatchingRule *mr = mod->sm_desc->ad_type->sat_equality;
180 * If permissive is set, then the non-existence of an
181 * attribute is not treated as an error.
184 /* delete the entire attribute */
185 if ( mod->sm_values == NULL ) {
186 rc = attr_delete( &e->e_attrs, mod->sm_desc );
190 } else if( rc != LDAP_SUCCESS ) {
192 snprintf( textbuf, textlen,
193 "modify/delete: %s: no such attribute",
194 mod->sm_desc->ad_cname.bv_val );
195 rc = LDAP_NO_SUCH_ATTRIBUTE;
200 if( mr == NULL || !mr->smr_match ) {
201 /* disallow specific attributes from being deleted if
204 snprintf( textbuf, textlen,
205 "modify/delete: %s: no equality matching rule",
206 mod->sm_desc->ad_cname.bv_val );
207 return LDAP_INAPPROPRIATE_MATCHING;
210 /* delete specific values - find the attribute first */
211 if ( (a = attr_find( e->e_attrs, mod->sm_desc )) == NULL ) {
216 snprintf( textbuf, textlen,
217 "modify/delete: %s: no such attribute",
218 mod->sm_desc->ad_cname.bv_val );
219 return LDAP_NO_SUCH_ATTRIBUTE;
222 for ( i = 0; mod->sm_values[i].bv_val != NULL; i++ ) {
224 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) {
226 if( mod->sm_nvalues ) {
227 assert( a->a_nvals );
228 rc = (*mr->smr_match)( &match,
229 SLAP_MR_VALUE_OF_ASSERTION_SYNTAX
230 | SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH
231 | SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH,
232 a->a_desc->ad_type->sat_syntax,
234 &mod->sm_nvalues[i] );
237 assert( a->a_nvals == NULL );
239 rc = (*mr->smr_match)( &match,
240 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
241 a->a_desc->ad_type->sat_syntax,
243 &mod->sm_values[i] );
246 if ( rc != LDAP_SUCCESS ) {
248 snprintf( textbuf, textlen,
249 "%s: matching rule failed",
250 mod->sm_desc->ad_cname.bv_val );
260 /* delete value and mark it as dummy */
261 free( a->a_vals[j].bv_val );
262 a->a_vals[j].bv_val = &dummy;
263 if( a->a_nvals != a->a_vals ) {
264 free( a->a_nvals[j].bv_val );
265 a->a_nvals[j].bv_val = &dummy;
273 snprintf( textbuf, textlen,
274 "modify/delete: %s: no such value",
275 mod->sm_desc->ad_cname.bv_val );
276 rc = LDAP_NO_SUCH_ATTRIBUTE;
285 /* compact array skipping dummies */
286 for ( k = 0, j = 0; a->a_vals[k].bv_val != NULL; k++ ) {
288 if( a->a_vals[k].bv_val == &dummy ) {
289 assert( a->a_nvals == NULL || a->a_nvals[k].bv_val == &dummy );
293 a->a_vals[ j ] = a->a_vals[ k ];
294 if (a->a_nvals != a->a_vals) {
295 a->a_nvals[ j ] = a->a_nvals[ k ];
302 a->a_vals[j].bv_val = NULL;
303 if (a->a_nvals != a->a_vals) a->a_nvals[j].bv_val = NULL;
305 /* if no values remain, delete the entire attribute */
306 if ( a->a_vals[0].bv_val == NULL ) {
307 if ( attr_delete( &e->e_attrs, mod->sm_desc ) ) {
309 snprintf( textbuf, textlen,
310 "modify/delete: %s: no such attribute",
311 mod->sm_desc->ad_cname.bv_val );
312 rc = LDAP_NO_SUCH_ATTRIBUTE;
322 modify_replace_values(
327 char *textbuf, size_t textlen )
329 (void) attr_delete( &e->e_attrs, mod->sm_desc );
331 if ( mod->sm_values ) {
332 return modify_add_values( e, mod, permissive, text, textbuf, textlen );
339 modify_increment_values(
344 char *textbuf, size_t textlen )
348 a = attr_find( e->e_attrs, mod->sm_desc );
351 snprintf( textbuf, textlen,
352 "modify/increment: %s: no such attribute",
353 mod->sm_desc->ad_cname.bv_val );
354 return LDAP_NO_SUCH_ATTRIBUTE;
357 if ( !strcmp( a->a_desc->ad_type->sat_syntax_oid, SLAPD_INTEGER_SYNTAX )) {
359 char str[sizeof(long)*3 + 2]; /* overly long */
360 long incr = atol( mod->sm_values[0].bv_val );
362 /* treat zero and errors as a no-op */
367 for( i=0; a->a_nvals[i].bv_val != NULL; i++ ) {
369 long value = atol( a->a_nvals[i].bv_val );
370 size_t strln = snprintf( str, sizeof(str), "%ld", value+incr );
372 tmp = SLAP_REALLOC( a->a_nvals[i].bv_val, strln+1 );
374 *text = "modify/increment: reallocation error";
377 a->a_nvals[i].bv_val = tmp;
378 a->a_nvals[i].bv_len = strln;
380 AC_MEMCPY( a->a_nvals[i].bv_val, str, strln+1 );
384 snprintf( textbuf, textlen,
385 "modify/increment: %s: increment not supported for value syntax %s",
386 mod->sm_desc->ad_cname.bv_val,
387 a->a_desc->ad_type->sat_syntax_oid );
388 return LDAP_CONSTRAINT_VIOLATION;
399 if ( mod->sm_values != NULL ) ber_bvarray_free( mod->sm_values );
400 mod->sm_values = NULL;
402 if ( mod->sm_nvalues != NULL ) ber_bvarray_free( mod->sm_nvalues );
403 mod->sm_nvalues = NULL;
405 if( freeit ) free( mod );
414 for ( ; ml != NULL; ml = next ) {
417 slap_mod_free( &ml->sml_mod, 0 );