]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb2/modify.c
BugFix and selection in the test-suite of the bdb2 backend-specific
[openldap] / servers / slapd / back-bdb2 / modify.c
1 /* modify.c - bdb2 backend modify routine */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6
7 #include <ac/string.h>
8 #include <ac/socket.h>
9
10 #include "slap.h"
11 #include "back-bdb2.h"
12 #include "proto-back-bdb2.h"
13
14 static int      add_values(Entry *e, LDAPMod *mod, char *dn);
15 static int      delete_values(Entry *e, LDAPMod *mod, char *dn);
16 static int      replace_values(Entry *e, LDAPMod *mod, char *dn);
17
18 static int
19 bdb2i_back_modify_internal(
20     BackendDB   *be,
21     Connection  *conn,
22     Operation   *op,
23     char        *dn,
24     LDAPModList *modlist
25 )
26 {
27         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
28         char            *matched;
29         LDAPModList     *ml;
30         Entry           *e;
31         int             i, err;
32
33         Debug(LDAP_DEBUG_ARGS, "bdb2i_back_modify:\n", 0, 0, 0);
34
35         if ( (e = bdb2i_dn2entry_w( be, dn, &matched )) == NULL ) {
36                 send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched,
37                     NULL );
38                 if ( matched != NULL ) {
39                         free( matched );
40                 }
41                 return( -1 );
42         }
43
44         if ( (err = acl_check_modlist( be, conn, op, e, modlist )) != LDAP_SUCCESS ) {
45                 send_ldap_result( conn, op, err, NULL, NULL );
46                 goto error_return;
47         }
48
49         for ( ml = modlist; ml != NULL; ml = ml->ml_next ) {
50                 LDAPMod *mod = &ml->ml_mod;
51
52                 switch ( mod->mod_op & ~LDAP_MOD_BVALUES ) {
53                 case LDAP_MOD_ADD:
54                         err = add_values( e, mod, op->o_ndn );
55                         break;
56
57                 case LDAP_MOD_DELETE:
58                         err = delete_values( e, mod, op->o_ndn );
59                         break;
60
61                 case LDAP_MOD_REPLACE:
62                         err = replace_values( e, mod, op->o_ndn );
63                         break;
64                 }
65
66                 if ( err != LDAP_SUCCESS ) {
67                         /* unlock entry, delete from cache */
68                         send_ldap_result( conn, op, err, NULL, NULL );
69                         goto error_return;
70                 }
71         }
72
73         /* check that the entry still obeys the schema */
74         if ( global_schemacheck && oc_schema_check( e ) != 0 ) {
75                 Debug( LDAP_DEBUG_ANY, "entry failed schema check\n", 0, 0, 0 );
76                 send_ldap_result( conn, op, LDAP_OBJECT_CLASS_VIOLATION, NULL, NULL );
77                 goto error_return;
78         }
79
80         /* check for abandon */
81         ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
82         if ( op->o_abandon ) {
83                 ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
84                 goto error_return;
85         }
86         ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
87
88         /* modify indexes */
89         if ( bdb2i_index_add_mods( be, modlist, e->e_id ) != 0 ) {
90                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
91                 goto error_return;
92         }
93
94         /* check for abandon */
95         ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
96         if ( op->o_abandon ) {
97                 ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
98                 goto error_return;
99         }
100         ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
101
102         /* change the entry itself */
103         if ( bdb2i_id2entry_add( be, e ) != 0 ) {
104                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
105                 goto error_return;
106         }
107
108         send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
109         bdb2i_cache_return_entry_w( &li->li_cache, e );
110         return( 0 );
111
112 error_return:;
113         bdb2i_cache_return_entry_w( &li->li_cache, e );
114         return( -1 );
115 }
116
117
118 int
119 bdb2_back_modify(
120     BackendDB   *be,
121     Connection  *conn,
122     Operation   *op,
123     char        *dn,
124     LDAPModList *modlist
125 )
126 {
127         DB_LOCK         lock;
128         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
129         struct timeval  time1;
130         int             ret;
131
132         bdb2i_start_timing( be->bd_info, &time1 );
133
134         if ( bdb2i_enter_backend_w( get_dbenv( be ), &lock ) != 0 ) {
135
136                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
137                 return( -1 );
138
139         }
140
141         /*  check, if a new default attribute index will be created,
142                 in which case we have to open the index file BEFORE TP  */
143         switch ( slapMode ) {
144                 case SLAP_SERVER_MODE:
145                 case SLAP_TIMEDSERVER_MODE:
146                 case SLAP_TOOL_MODE:
147                         bdb2i_check_default_attr_index_mod( li, modlist );
148                         break;
149         }
150
151          ret = bdb2i_back_modify_internal( be, conn, op, dn, modlist );
152         (void) bdb2i_leave_backend( get_dbenv( be ), lock );
153         bdb2i_stop_timing( be->bd_info, time1, "MOD", conn, op );
154
155         return( ret );
156 }
157
158
159 static int
160 add_values(
161     Entry       *e,
162     LDAPMod     *mod,
163     char        *dn
164 )
165 {
166         int             i;
167         Attribute       *a;
168
169         /* check if the values we're adding already exist */
170         if ( (a = attr_find( e->e_attrs, mod->mod_type )) != NULL ) {
171                 for ( i = 0; mod->mod_bvalues[i] != NULL; i++ ) {
172                         if ( value_find( a->a_vals, mod->mod_bvalues[i],
173                             a->a_syntax, 3 ) == 0 ) {
174                                 return( LDAP_TYPE_OR_VALUE_EXISTS );
175                         }
176                 }
177         }
178
179         /* no - add them */
180         if( attr_merge( e, mod->mod_type, mod->mod_bvalues ) != 0 ) {
181                 return( LDAP_CONSTRAINT_VIOLATION );
182         }
183
184         return( LDAP_SUCCESS );
185 }
186
187 static int
188 delete_values(
189     Entry       *e,
190     LDAPMod     *mod,
191     char        *dn
192 )
193 {
194         int             i, j, k, found;
195         Attribute       *a;
196
197         /* delete the entire attribute */
198         if ( mod->mod_bvalues == NULL ) {
199                 Debug( LDAP_DEBUG_ARGS, "removing entire attribute %s\n",
200                     mod->mod_type, 0, 0 );
201                 return( attr_delete( &e->e_attrs, mod->mod_type ) ?
202                     LDAP_NO_SUCH_ATTRIBUTE : LDAP_SUCCESS );
203         }
204
205         /* delete specific values - find the attribute first */
206         if ( (a = attr_find( e->e_attrs, mod->mod_type )) == NULL ) {
207                 Debug( LDAP_DEBUG_ARGS, "could not find attribute %s\n",
208                     mod->mod_type, 0, 0 );
209                 return( LDAP_NO_SUCH_ATTRIBUTE );
210         }
211
212         /* find each value to delete */
213         for ( i = 0; mod->mod_bvalues[i] != NULL; i++ ) {
214                 found = 0;
215                 for ( j = 0; a->a_vals[j] != NULL; j++ ) {
216                         if ( value_cmp( mod->mod_bvalues[i], a->a_vals[j],
217                             a->a_syntax, 3 ) != 0 ) {
218                                 continue;
219                         }
220                         found = 1;
221
222                         /* found a matching value - delete it */
223                         ber_bvfree( a->a_vals[j] );
224                         for ( k = j + 1; a->a_vals[k] != NULL; k++ ) {
225                                 a->a_vals[k - 1] = a->a_vals[k];
226                         }
227                         a->a_vals[k - 1] = NULL;
228                         break;
229                 }
230
231                 /* looked through them all w/o finding it */
232                 if ( ! found ) {
233                         Debug( LDAP_DEBUG_ARGS,
234                             "could not find value for attr %s\n",
235                             mod->mod_type, 0, 0 );
236                         return( LDAP_NO_SUCH_ATTRIBUTE );
237                 }
238         }
239
240         return( LDAP_SUCCESS );
241 }
242
243 static int
244 replace_values(
245     Entry       *e,
246     LDAPMod     *mod,
247     char        *dn
248 )
249 {
250         (void) attr_delete( &e->e_attrs, mod->mod_type );
251
252         if ( attr_merge( e, mod->mod_type, mod->mod_bvalues ) != 0 ) {
253                 return( LDAP_CONSTRAINT_VIOLATION );
254         }
255
256         return( LDAP_SUCCESS );
257 }