]> git.sur5r.net Git - openldap/blob - servers/slapd/modify.c
Don't try to free NULL idl. Did not cause a problem, though, as
[openldap] / servers / slapd / modify.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/socket.h>
18 #include <ac/string.h>
19 #include <ac/time.h>
20
21 #include "slap.h"
22
23 static void     modlist_free(LDAPModList *ml);
24 static void     add_lastmods(Operation *op, LDAPModList **ml);
25
26
27 void
28 do_modify(
29     Connection  *conn,
30     Operation   *op
31 )
32 {
33         char            *ndn;
34         char            *last;
35         unsigned long   tag, len;
36         LDAPModList     *modlist, *tmp;
37         LDAPModList     **modtail;
38         Backend         *be;
39
40         Debug( LDAP_DEBUG_TRACE, "do_modify\n", 0, 0, 0 );
41
42         /*
43          * Parse the modify request.  It looks like this:
44          *
45          *      ModifyRequest := [APPLICATION 6] SEQUENCE {
46          *              name    DistinguishedName,
47          *              mods    SEQUENCE OF SEQUENCE {
48          *                      operation       ENUMERATED {
49          *                              add     (0),
50          *                              delete  (1),
51          *                              replace (2)
52          *                      },
53          *                      modification    SEQUENCE {
54          *                              type    AttributeType,
55          *                              values  SET OF AttributeValue
56          *                      }
57          *              }
58          *      }
59          */
60
61         if ( ber_scanf( op->o_ber, "{a" /*}*/, &ndn ) == LBER_ERROR ) {
62                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
63                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL, "" );
64                 return;
65         }
66
67         Debug( LDAP_DEBUG_ARGS, "do_modify: dn (%s)\n", ndn, 0, 0 );
68
69         (void) dn_normalize_case( ndn );
70
71         /* collect modifications & save for later */
72         modlist = NULL;
73         modtail = &modlist;
74
75         for ( tag = ber_first_element( op->o_ber, &len, &last );
76             tag != LBER_DEFAULT;
77             tag = ber_next_element( op->o_ber, &len, last ) )
78         {
79                 (*modtail) = (LDAPModList *) ch_calloc( 1, sizeof(LDAPModList) );
80
81                 if ( ber_scanf( op->o_ber, "{i{a[V]}}", &(*modtail)->ml_op,
82                     &(*modtail)->ml_type, &(*modtail)->ml_bvalues )
83                     == LBER_ERROR )
84                 {
85                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
86                             "decoding error" );
87                         free( ndn );
88                         free( *modtail );
89                         *modtail = NULL;
90                         modlist_free( modlist );
91                         return;
92                 }
93
94                 if ( (*modtail)->ml_op != LDAP_MOD_ADD &&
95                     (*modtail)->ml_op != LDAP_MOD_DELETE &&
96                     (*modtail)->ml_op != LDAP_MOD_REPLACE )
97                 {
98                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
99                             "unrecognized modify operation" );
100                         free( ndn );
101                         modlist_free( modlist );
102                         return;
103                 }
104
105                 if ( (*modtail)->ml_bvalues == NULL
106                         && (*modtail)->ml_op != LDAP_MOD_DELETE )
107                 {
108                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
109                             "no values given" );
110                         free( ndn );
111                         modlist_free( modlist );
112                         return;
113                 }
114                 attr_normalize( (*modtail)->ml_type );
115
116                 modtail = &(*modtail)->ml_next;
117         }
118         *modtail = NULL;
119
120 #ifdef LDAP_DEBUG
121         Debug( LDAP_DEBUG_ARGS, "modifications:\n", 0, 0, 0 );
122         for ( tmp = modlist; tmp != NULL; tmp = tmp->ml_next ) {
123                 Debug( LDAP_DEBUG_ARGS, "\t%s: %s\n",
124                         tmp->ml_op == LDAP_MOD_ADD
125                                 ? "add" : (tmp->ml_op == LDAP_MOD_DELETE
126                                         ? "delete" : "replace"), tmp->ml_type, 0 );
127         }
128 #endif
129
130         Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d MOD dn=\"%s\"\n",
131             conn->c_connid, op->o_opid, ndn, 0, 0 );
132
133         /*
134          * We could be serving multiple database backends.  Select the
135          * appropriate one, or send a referral to our "referral server"
136          * if we don't hold it.
137          */
138         if ( (be = select_backend( ndn )) == NULL ) {
139                 free( ndn );
140                 modlist_free( modlist );
141                 send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
142                     default_referral );
143                 return;
144         }
145
146         /* alias suffix if approp */
147         ndn = suffixAlias ( ndn, op, be );
148
149         /*
150          * do the modify if 1 && (2 || 3)
151          * 1) there is a modify function implemented in this backend;
152          * 2) this backend is master for what it holds;
153          * 3) it's a replica and the dn supplied is the update_ndn.
154          */
155         if ( be->be_modify != NULL ) {
156                 /* do the update here */
157                 if ( be->be_update_ndn == NULL ||
158                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
159                 {
160                         if ( (be->be_lastmod == ON || ( be->be_lastmod == UNDEFINED &&
161                                 global_lastmod == ON ) ) && be->be_update_ndn == NULL ) {
162                                 add_lastmods( op, &modlist );
163                         }
164                         if ( (*be->be_modify)( be, conn, op, ndn, modlist ) == 0 ) {
165                                 replog( be, LDAP_REQ_MODIFY, ndn, modlist, 0 );
166                         }
167
168                 /* send a referral */
169                 } else {
170                         send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
171                             default_referral );
172                 }
173         } else {
174                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
175                     "Function not implemented" );
176         }
177
178         free( ndn );
179         modlist_free( modlist );
180 }
181
182 static void
183 modlist_free(
184     LDAPModList *ml
185 )
186 {
187         LDAPModList *next;
188
189         for ( ; ml != NULL; ml = next ) {
190                 next = ml->ml_next;
191
192                 free( ml->ml_type );
193                 if ( ml->ml_bvalues != NULL )
194                         ber_bvecfree( ml->ml_bvalues );
195
196                 free( ml );
197         }
198 }
199
200 static void
201 add_lastmods( Operation *op, LDAPModList **modlist )
202 {
203         char            buf[22];
204         struct berval   bv;
205         struct berval   *bvals[2];
206         LDAPModList             **m;
207         LDAPModList             *tmp;
208         struct tm       *ltm;
209
210         Debug( LDAP_DEBUG_TRACE, "add_lastmods\n", 0, 0, 0 );
211
212         bvals[0] = &bv;
213         bvals[1] = NULL;
214
215         /* remove any attempts by the user to modify these attrs */
216         for ( m = modlist; *m != NULL; m = &(*m)->ml_next ) {
217             if ( strcasecmp( (*m)->ml_type, "modifytimestamp" ) == 0 || 
218                                 strcasecmp( (*m)->ml_type, "modifiersname" ) == 0 ||
219                                 strcasecmp( (*m)->ml_type, "createtimestamp" ) == 0 || 
220                                 strcasecmp( (*m)->ml_type, "creatorsname" ) == 0 ) {
221
222                 Debug( LDAP_DEBUG_TRACE,
223                                         "add_lastmods: found lastmod attr: %s\n",
224                                         (*m)->ml_type, 0, 0 );
225                 tmp = *m;
226                 *m = (*m)->ml_next;
227                 free( tmp->ml_type );
228                 if ( tmp->ml_bvalues != NULL ) {
229                     ber_bvecfree( tmp->ml_bvalues );
230                 }
231                 free( tmp );
232                 if (!*m)
233                     break;
234             }
235         }
236
237         if ( op->o_dn == NULL || op->o_dn[0] == '\0' ) {
238                 bv.bv_val = "NULLDN";
239                 bv.bv_len = strlen( bv.bv_val );
240         } else {
241                 bv.bv_val = op->o_dn;
242                 bv.bv_len = strlen( bv.bv_val );
243         }
244         tmp = (LDAPModList *) ch_calloc( 1, sizeof(LDAPModList) );
245         tmp->ml_type = ch_strdup( "modifiersname" );
246         tmp->ml_op = LDAP_MOD_REPLACE;
247         tmp->ml_bvalues = (struct berval **) ch_calloc( 1,
248             2 * sizeof(struct berval *) );
249         tmp->ml_bvalues[0] = ber_bvdup( &bv );
250         tmp->ml_next = *modlist;
251         *modlist = tmp;
252
253         ldap_pvt_thread_mutex_lock( &currenttime_mutex );
254 #ifndef LDAP_LOCALTIME
255         ltm = gmtime( &currenttime );
256         strftime( buf, sizeof(buf), "%Y%m%d%H%M%SZ", ltm );
257 #else
258         ltm = localtime( &currenttime );
259         strftime( buf, sizeof(buf), "%y%m%d%H%M%SZ", ltm );
260 #endif
261         ldap_pvt_thread_mutex_unlock( &currenttime_mutex );
262         bv.bv_val = buf;
263         bv.bv_len = strlen( bv.bv_val );
264         tmp = (LDAPModList *) ch_calloc( 1, sizeof(LDAPModList) );
265         tmp->ml_type = ch_strdup( "modifytimestamp" );
266         tmp->ml_op = LDAP_MOD_REPLACE;
267         tmp->ml_bvalues = (struct berval **) ch_calloc( 1, 2 * sizeof(struct berval *) );
268         tmp->ml_bvalues[0] = ber_bvdup( &bv );
269         tmp->ml_next = *modlist;
270         *modlist = tmp;
271 }