]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb2/modify.c
Apply ldbm bind() change to bdb2 code.
[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                 case SLAP_TOOLID_MODE:
148                         bdb2i_check_default_attr_index_mod( li, modlist );
149                         break;
150         }
151
152          ret = bdb2i_back_modify_internal( be, conn, op, dn, modlist );
153         (void) bdb2i_leave_backend_w( get_dbenv( be ), lock );
154         bdb2i_stop_timing( be->bd_info, time1, "MOD", conn, op );
155
156         return( ret );
157 }
158
159
160 static int
161 add_values(
162     Entry       *e,
163     LDAPMod     *mod,
164     char        *dn
165 )
166 {
167         int             i;
168         Attribute       *a;
169
170         /* check if the values we're adding already exist */
171         if ( (a = attr_find( e->e_attrs, mod->mod_type )) != NULL ) {
172                 for ( i = 0; mod->mod_bvalues[i] != NULL; i++ ) {
173                         if ( value_find( a->a_vals, mod->mod_bvalues[i],
174                             a->a_syntax, 3 ) == 0 ) {
175                                 return( LDAP_TYPE_OR_VALUE_EXISTS );
176                         }
177                 }
178         }
179
180         /* no - add them */
181         if( attr_merge( e, mod->mod_type, mod->mod_bvalues ) != 0 ) {
182                 return( LDAP_CONSTRAINT_VIOLATION );
183         }
184
185         return( LDAP_SUCCESS );
186 }
187
188 static int
189 delete_values(
190     Entry       *e,
191     LDAPMod     *mod,
192     char        *dn
193 )
194 {
195         int             i, j, k, found;
196         Attribute       *a;
197
198         /* delete the entire attribute */
199         if ( mod->mod_bvalues == NULL ) {
200                 Debug( LDAP_DEBUG_ARGS, "removing entire attribute %s\n",
201                     mod->mod_type, 0, 0 );
202                 return( attr_delete( &e->e_attrs, mod->mod_type ) ?
203                     LDAP_NO_SUCH_ATTRIBUTE : LDAP_SUCCESS );
204         }
205
206         /* delete specific values - find the attribute first */
207         if ( (a = attr_find( e->e_attrs, mod->mod_type )) == NULL ) {
208                 Debug( LDAP_DEBUG_ARGS, "could not find attribute %s\n",
209                     mod->mod_type, 0, 0 );
210                 return( LDAP_NO_SUCH_ATTRIBUTE );
211         }
212
213         /* find each value to delete */
214         for ( i = 0; mod->mod_bvalues[i] != NULL; i++ ) {
215                 found = 0;
216                 for ( j = 0; a->a_vals[j] != NULL; j++ ) {
217                         if ( value_cmp( mod->mod_bvalues[i], a->a_vals[j],
218                             a->a_syntax, 3 ) != 0 ) {
219                                 continue;
220                         }
221                         found = 1;
222
223                         /* found a matching value - delete it */
224                         ber_bvfree( a->a_vals[j] );
225                         for ( k = j + 1; a->a_vals[k] != NULL; k++ ) {
226                                 a->a_vals[k - 1] = a->a_vals[k];
227                         }
228                         a->a_vals[k - 1] = NULL;
229                         break;
230                 }
231
232                 /* looked through them all w/o finding it */
233                 if ( ! found ) {
234                         Debug( LDAP_DEBUG_ARGS,
235                             "could not find value for attr %s\n",
236                             mod->mod_type, 0, 0 );
237                         return( LDAP_NO_SUCH_ATTRIBUTE );
238                 }
239         }
240
241         return( LDAP_SUCCESS );
242 }
243
244 static int
245 replace_values(
246     Entry       *e,
247     LDAPMod     *mod,
248     char        *dn
249 )
250 {
251         (void) attr_delete( &e->e_attrs, mod->mod_type );
252
253         if ( attr_merge( e, mod->mod_type, mod->mod_bvalues ) != 0 ) {
254                 return( LDAP_CONSTRAINT_VIOLATION );
255         }
256
257         return( LDAP_SUCCESS );
258 }