]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldbm/modify.c
84f6f109dc672ddb516efafd7d248a183303d37e
[openldap] / servers / slapd / back-ldbm / modify.c
1 /* modify.c - ldbm backend modify routine */
2
3 #include <stdio.h>
4 #include <string.h>
5 #include <sys/types.h>
6 #include <sys/socket.h>
7 #include "slap.h"
8 #include "back-ldbm.h"
9
10 extern int              global_schemacheck;
11 extern Entry            *dn2entry();
12 extern Attribute        *attr_find();
13
14 static int      add_values();
15 static int      delete_values();
16 static int      replace_values();
17
18 int
19 ldbm_back_modify(
20     Backend     *be,
21     Connection  *conn,
22     Operation   *op,
23     char        *dn,
24     LDAPMod     *mods
25 )
26 {
27         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
28         char            *matched = NULL;
29         Entry           *e;
30         int             i, err, modtype;
31         LDAPMod         *mod;
32
33         if ( (e = dn2entry( be, dn, &matched )) == NULL ) {
34                 send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched,
35                     NULL );
36                 if ( matched != NULL ) {
37                         free( matched );
38                 }
39                 return( -1 );
40         }
41         /* lock entry */
42
43         if ( (err = acl_check_mods( be, conn, op, e, mods )) != LDAP_SUCCESS ) {
44                 send_ldap_result( conn, op, err, NULL, NULL );
45                 cache_return_entry( &li->li_cache, e );
46                 return( -1 );
47         }
48
49         for ( mod = mods; mod != NULL; mod = mod->mod_next ) {
50                 switch ( mod->mod_op & ~LDAP_MOD_BVALUES ) {
51                 case LDAP_MOD_ADD:
52                         err = add_values( e, mod, op->o_dn );
53                         break;
54
55                 case LDAP_MOD_DELETE:
56                         err = delete_values( e, mod, op->o_dn );
57                         break;
58
59                 case LDAP_MOD_REPLACE:
60                         err = replace_values( e, mod, op->o_dn );
61                         break;
62                 }
63
64                 if ( err != LDAP_SUCCESS ) {
65                         /* unlock entry, delete from cache */
66                         send_ldap_result( conn, op, err, NULL, NULL );
67                         goto error_return;
68                 }
69         }
70
71         /* check for abandon */
72         pthread_mutex_lock( &op->o_abandonmutex );
73         if ( op->o_abandon ) {
74                 pthread_mutex_unlock( &op->o_abandonmutex );
75                 goto error_return;
76         }
77         pthread_mutex_unlock( &op->o_abandonmutex );
78
79         /* check that the entry still obeys the schema */
80         if ( global_schemacheck && oc_schema_check( e ) != 0 ) {
81                 Debug( LDAP_DEBUG_ANY, "entry failed schema check\n", 0, 0, 0 );
82                 send_ldap_result( conn, op, LDAP_OBJECT_CLASS_VIOLATION, NULL, NULL );
83                 goto error_return;
84         }
85
86         /* modify indexes */
87         if ( index_add_mods( be, mods, e->e_id ) != 0 ) {
88                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
89                 goto error_return;
90         }
91
92         /* check for abandon */
93         pthread_mutex_lock( &op->o_abandonmutex );
94         if ( op->o_abandon ) {
95                 pthread_mutex_unlock( &op->o_abandonmutex );
96                 goto error_return;
97         }
98         pthread_mutex_unlock( &op->o_abandonmutex );
99
100         /* change the entry itself */
101         if ( id2entry_add( be, e ) != 0 ) {
102                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
103                 goto error_return;
104         }
105
106         send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
107         cache_return_entry( &li->li_cache, e );
108
109         return( 0 );
110
111 error_return:;
112         cache_delete_entry( &li->li_cache, e );
113         cache_return_entry( &li->li_cache, e );
114
115         return( -1 );
116 }
117
118 static int
119 add_values(
120     Entry       *e,
121     LDAPMod     *mod,
122     char        *dn
123 )
124 {
125         int             i;
126         Attribute       *a;
127
128         /* check if the values we're adding already exist */
129         if ( (a = attr_find( e->e_attrs, mod->mod_type )) != NULL ) {
130                 for ( i = 0; mod->mod_bvalues[i] != NULL; i++ ) {
131                         if ( value_find( a->a_vals, mod->mod_bvalues[i],
132                             a->a_syntax, 3 ) == 0 ) {
133                                 return( LDAP_TYPE_OR_VALUE_EXISTS );
134                         }
135                 }
136         }
137
138         /* no - add them */
139         if( attr_merge( e, mod->mod_type, mod->mod_bvalues ) != 0 ) {
140                 return( LDAP_CONSTRAINT_VIOLATION );
141         }
142
143         return( LDAP_SUCCESS );
144 }
145
146 static int
147 delete_values(
148     Entry       *e,
149     LDAPMod     *mod,
150     char        *dn
151 )
152 {
153         int             i, j, k, found;
154         Attribute       *a;
155
156         /* delete the entire attribute */
157         if ( mod->mod_bvalues == NULL ) {
158                 Debug( LDAP_DEBUG_ARGS, "removing entire attribute %s\n",
159                     mod->mod_type, 0, 0 );
160                 return( attr_delete( &e->e_attrs, mod->mod_type ) ?
161                     LDAP_NO_SUCH_ATTRIBUTE : LDAP_SUCCESS );
162         }
163
164         /* delete specific values - find the attribute first */
165         if ( (a = attr_find( e->e_attrs, mod->mod_type )) == NULL ) {
166                 Debug( LDAP_DEBUG_ARGS, "could not find attribute %s\n",
167                     mod->mod_type, 0, 0 );
168                 return( LDAP_NO_SUCH_ATTRIBUTE );
169         }
170
171         /* find each value to delete */
172         for ( i = 0; mod->mod_bvalues[i] != NULL; i++ ) {
173                 found = 0;
174                 for ( j = 0; a->a_vals[j] != NULL; j++ ) {
175                         if ( value_cmp( mod->mod_bvalues[i], a->a_vals[j],
176                             a->a_syntax, 3 ) != 0 ) {
177                                 continue;
178                         }
179                         found = 1;
180
181                         /* found a matching value - delete it */
182                         ber_bvfree( a->a_vals[j] );
183                         for ( k = j + 1; a->a_vals[k] != NULL; k++ ) {
184                                 a->a_vals[k - 1] = a->a_vals[k];
185                         }
186                         a->a_vals[k - 1] = NULL;
187                         break;
188                 }
189
190                 /* looked through them all w/o finding it */
191                 if ( ! found ) {
192                         Debug( LDAP_DEBUG_ARGS,
193                             "could not find value for attr %s\n",
194                             mod->mod_type, 0, 0 );
195                         return( LDAP_NO_SUCH_ATTRIBUTE );
196                 }
197         }
198
199         return( LDAP_SUCCESS );
200 }
201
202 static int
203 replace_values(
204     Entry       *e,
205     LDAPMod     *mod,
206     char        *dn
207 )
208 {
209         (void) attr_delete( &e->e_attrs, mod->mod_type );
210
211         if ( attr_merge( e, mod->mod_type, mod->mod_bvalues ) != 0 ) {
212                 return( LDAP_CONSTRAINT_VIOLATION );
213         }
214
215         return( LDAP_SUCCESS );
216 }