]> git.sur5r.net Git - openldap/blob - servers/slapd/mods.c
fix ITS#3346
[openldap] / servers / slapd / mods.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2004 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
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>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
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.
24  */
25
26 #include "portable.h"
27
28 #include <ac/string.h>
29
30 #include "slap.h"
31
32 int
33 modify_add_values(
34         Entry           *e,
35         Modification    *mod,
36         int             permissive,
37         const char      **text,
38         char            *textbuf,
39         size_t          textlen )
40 {
41         int             rc;
42         const char      *op;
43         Attribute       *a;
44         Modification    pmod = *mod;
45
46         switch ( mod->sm_op ) {
47         case LDAP_MOD_ADD:
48                 op = "add";
49                 break;
50         case LDAP_MOD_REPLACE:
51                 op = "replace";
52                 break;
53         default:
54                 op = "?";
55                 assert( 0 );
56         }
57
58         /* check if values to add exist in attribute */
59         a = attr_find( e->e_attrs, mod->sm_desc );
60         if ( a != NULL ) {
61                 int             rc, i, j, p;
62                 MatchingRule    *mr;
63
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 */
68                         *text = textbuf;
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;
73                 }
74
75                 if ( permissive ) {
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 ) );
81                         }
82                 }
83
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
88                  * database).
89                  */
90                 for ( p = i = 0; !BER_BVISNULL( &mod->sm_values[i] ); i++ ) {
91                         int     match;
92
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 );
101                                 } else {
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 );
105                                 }
106
107                                 if ( rc == LDAP_SUCCESS && match == 0 ) {
108                                         /* value already exists */
109                                         if ( permissive ) break;
110
111                                         *text = textbuf;
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;
116
117                                 } else if ( rc != LDAP_SUCCESS ) {
118                                         return rc;
119                                 }
120                         }
121
122                         if ( permissive && match != 0 ) {
123                                 if ( pmod.sm_nvalues ) {
124                                         pmod.sm_nvalues[p] = mod->sm_nvalues[i];
125                                 }
126                                 pmod.sm_values[p++] = mod->sm_values[i];
127                         }
128                 }
129
130                 if ( permissive ) {
131                         if ( p == 0 ) {
132                                 /* all new values match exist */
133                                 ch_free( pmod.sm_values );
134                                 if ( pmod.sm_nvalues ) ch_free( pmod.sm_nvalues );
135                                 return LDAP_SUCCESS;
136                         }
137
138                         BER_BVZERO( &pmod.sm_values[p] );
139                         if ( pmod.sm_nvalues ) {
140                                 BER_BVZERO( &pmod.sm_nvalues[p] );
141                         }
142                 }
143         }
144
145         /* no - add them */
146         rc = attr_merge( e, mod->sm_desc, pmod.sm_values, pmod.sm_nvalues );
147
148         if ( a != NULL && permissive ) {
149                 ch_free( pmod.sm_values );
150                 if ( pmod.sm_nvalues ) ch_free( pmod.sm_nvalues );
151         }
152
153         if ( rc != 0 ) {
154                 /* this should return result of attr_merge */
155                 *text = textbuf;
156                 snprintf( textbuf, textlen,
157                         "modify/%s: %s: merge error",
158                         op, mod->sm_desc->ad_cname.bv_val );
159                 return LDAP_OTHER;
160         }
161
162         return LDAP_SUCCESS;
163 }
164
165 int
166 modify_delete_values(
167         Entry   *e,
168         Modification    *mod,
169         int     permissive,
170         const char      **text,
171         char *textbuf, size_t textlen )
172 {
173         int             i, j, k, rc = LDAP_SUCCESS;
174         Attribute       *a;
175         MatchingRule    *mr = mod->sm_desc->ad_type->sat_equality;
176         char            dummy = '\0';
177         int                     match = 0;
178
179         /*
180          * If permissive is set, then the non-existence of an 
181          * attribute is not treated as an error.
182          */
183
184         /* delete the entire attribute */
185         if ( mod->sm_values == NULL ) {
186                 rc = attr_delete( &e->e_attrs, mod->sm_desc );
187
188                 if( permissive ) {
189                         rc = LDAP_SUCCESS;
190                 } else if( rc != LDAP_SUCCESS ) {
191                         *text = textbuf;
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;
196                 }
197                 return rc;
198         }
199
200         if( mr == NULL || !mr->smr_match ) {
201                 /* disallow specific attributes from being deleted if
202                         no equality rule */
203                 *text = textbuf;
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;
208         }
209
210         /* delete specific values - find the attribute first */
211         if ( (a = attr_find( e->e_attrs, mod->sm_desc )) == NULL ) {
212                 if( permissive ) {
213                         return LDAP_SUCCESS;
214                 }
215                 *text = textbuf;
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;
220         }
221
222         for ( i = 0; !BER_BVISNULL( &mod->sm_values[i] ); i++ ) {
223                 int     found = 0;
224                 for ( j = 0; !BER_BVISNULL( &a->a_vals[j] ); j++ ) {
225                         /* skip already deleted values */
226                         if ( a->a_vals[j].bv_val == &dummy ) {
227                                 continue;
228                         }
229
230                         if( mod->sm_nvalues ) {
231                                 assert( a->a_nvals );
232                                 rc = (*mr->smr_match)( &match,
233                                         SLAP_MR_VALUE_OF_ASSERTION_SYNTAX
234                                                 | SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH
235                                                 | SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH,
236                                         a->a_desc->ad_type->sat_syntax,
237                                         mr, &a->a_nvals[j],
238                                         &mod->sm_nvalues[i] );
239                         } else {
240 #if 0
241                                 assert( a->a_nvals == NULL );
242 #endif
243                                 rc = (*mr->smr_match)( &match,
244                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
245                                         a->a_desc->ad_type->sat_syntax,
246                                         mr, &a->a_vals[j],
247                                         &mod->sm_values[i] );
248                         }
249
250                         if ( rc != LDAP_SUCCESS ) {
251                                 *text = textbuf;
252                                 snprintf( textbuf, textlen,
253                                         "%s: matching rule failed",
254                                         mod->sm_desc->ad_cname.bv_val );
255                                 break;
256                         }
257
258                         if ( match != 0 ) {
259                                 continue;
260                         }
261
262                         found = 1;
263
264                         /* delete value and mark it as dummy */
265                         free( a->a_vals[j].bv_val );
266                         a->a_vals[j].bv_val = &dummy;
267                         if( a->a_nvals != a->a_vals ) {
268                                 free( a->a_nvals[j].bv_val );
269                                 a->a_nvals[j].bv_val = &dummy;
270                         }
271
272                         break;
273                 }
274
275                 if ( found == 0 ) {
276                         *text = textbuf;
277                         snprintf( textbuf, textlen,
278                                 "modify/delete: %s: no such value",
279                                 mod->sm_desc->ad_cname.bv_val );
280                         rc = LDAP_NO_SUCH_ATTRIBUTE;
281                         if ( i > 0 ) {
282                                 break;
283                         } else {
284                                 goto return_results;
285                         }
286                 }
287         }
288
289         /* compact array skipping dummies */
290         for ( k = 0, j = 0; a->a_vals[k].bv_val != NULL; k++ ) {
291                 /* skip dummies */
292                 if( a->a_vals[k].bv_val == &dummy ) {
293                         assert( a->a_nvals == NULL || a->a_nvals[k].bv_val == &dummy );
294                         continue;
295                 }
296                 if ( j != k ) {
297                         a->a_vals[ j ] = a->a_vals[ k ];
298                         if (a->a_nvals != a->a_vals) {
299                                 a->a_nvals[ j ] = a->a_nvals[ k ];
300                         }
301                 }
302
303                 j++;
304         }
305
306         a->a_vals[j].bv_val = NULL;
307         if (a->a_nvals != a->a_vals) a->a_nvals[j].bv_val = NULL;
308
309         /* if no values remain, delete the entire attribute */
310         if ( a->a_vals[0].bv_val == NULL ) {
311                 if ( attr_delete( &e->e_attrs, mod->sm_desc ) ) {
312                         *text = textbuf;
313                         snprintf( textbuf, textlen,
314                                 "modify/delete: %s: no such attribute",
315                                 mod->sm_desc->ad_cname.bv_val );
316                         rc = LDAP_NO_SUCH_ATTRIBUTE;
317                 }
318         }
319
320 return_results:;
321
322         return rc;
323 }
324
325 int
326 modify_replace_values(
327         Entry   *e,
328         Modification    *mod,
329         int             permissive,
330         const char      **text,
331         char *textbuf, size_t textlen )
332 {
333         (void) attr_delete( &e->e_attrs, mod->sm_desc );
334
335         if ( mod->sm_values ) {
336                 return modify_add_values( e, mod, permissive, text, textbuf, textlen );
337         }
338
339         return LDAP_SUCCESS;
340 }
341
342 int
343 modify_increment_values(
344         Entry   *e,
345         Modification    *mod,
346         int     permissive,
347         const char      **text,
348         char *textbuf, size_t textlen )
349 {
350         Attribute *a;
351
352         a = attr_find( e->e_attrs, mod->sm_desc );
353         if( a == NULL ) {
354                 *text = textbuf;
355                 snprintf( textbuf, textlen,
356                         "modify/increment: %s: no such attribute",
357                         mod->sm_desc->ad_cname.bv_val );
358                 return LDAP_NO_SUCH_ATTRIBUTE;
359         }
360
361         if ( !strcmp( a->a_desc->ad_type->sat_syntax_oid, SLAPD_INTEGER_SYNTAX )) {
362                 int i;
363                 char str[sizeof(long)*3 + 2]; /* overly long */
364                 long incr = atol( mod->sm_values[0].bv_val );
365
366                 /* treat zero and errors as a no-op */
367                 if( incr == 0 ) {
368                         return LDAP_SUCCESS;
369                 }
370
371                 for( i=0; a->a_nvals[i].bv_val != NULL; i++ ) {
372                         char *tmp;
373                         long value = atol( a->a_nvals[i].bv_val );
374                         size_t strln = snprintf( str, sizeof(str), "%ld", value+incr );
375
376                         tmp = SLAP_REALLOC( a->a_nvals[i].bv_val, strln+1 );
377                         if( tmp == NULL ) {
378                                 *text = "modify/increment: reallocation error";
379                                 return LDAP_OTHER;;
380                         }
381                         a->a_nvals[i].bv_val = tmp;
382                         a->a_nvals[i].bv_len = strln;
383
384                         AC_MEMCPY( a->a_nvals[i].bv_val, str, strln+1 );
385                 }
386
387         } else {
388                 snprintf( textbuf, textlen,
389                         "modify/increment: %s: increment not supported for value syntax %s",
390                         mod->sm_desc->ad_cname.bv_val,
391                         a->a_desc->ad_type->sat_syntax_oid );
392                 return LDAP_CONSTRAINT_VIOLATION;
393         }
394
395         return LDAP_SUCCESS;
396 }
397
398 void
399 slap_mod_free(
400         Modification    *mod,
401         int                             freeit )
402 {
403         if ( mod->sm_values != NULL ) ber_bvarray_free( mod->sm_values );
404         mod->sm_values = NULL;
405
406         if ( mod->sm_nvalues != NULL ) ber_bvarray_free( mod->sm_nvalues );
407         mod->sm_nvalues = NULL;
408
409         if( freeit ) free( mod );
410 }
411
412 void
413 slap_mods_free(
414     Modifications       *ml )
415 {
416         Modifications *next;
417
418         for ( ; ml != NULL; ml = next ) {
419                 next = ml->sml_next;
420
421                 slap_mod_free( &ml->sml_mod, 0 );
422                 free( ml );
423         }
424 }
425