]> git.sur5r.net Git - openldap/blob - servers/slapd/add.c
s/SUBSTRINGS/SUBSTR/
[openldap] / servers / slapd / add.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright (c) 1995 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21 #include <ac/string.h>
22 #include <ac/time.h>
23 #include <ac/socket.h>
24
25 #include "ldap_pvt.h"
26 #include "slap.h"
27
28 static int slap_mods2entry(
29         Modifications *mods,
30         Entry **e,
31         const char **text );
32
33 int
34 do_add( Connection *conn, Operation *op )
35 {
36         BerElement      *ber = op->o_ber;
37         char            *dn, *ndn, *last;
38         ber_len_t       len;
39         ber_tag_t       tag;
40         Entry           *e;
41         Backend         *be;
42         LDAPModList     *modlist = NULL;
43         LDAPModList     **modtail = &modlist;
44         Modifications *mods = NULL;
45         const char *text;
46         int                     rc = LDAP_SUCCESS;
47
48         Debug( LDAP_DEBUG_TRACE, "do_add\n", 0, 0, 0 );
49
50         /*
51          * Parse the add request.  It looks like this:
52          *
53          *      AddRequest := [APPLICATION 14] SEQUENCE {
54          *              name    DistinguishedName,
55          *              attrs   SEQUENCE OF SEQUENCE {
56          *                      type    AttributeType,
57          *                      values  SET OF AttributeValue
58          *              }
59          *      }
60          */
61
62         /* get the name */
63         if ( ber_scanf( ber, "{a", /*}*/ &dn ) == LBER_ERROR ) {
64                 Debug( LDAP_DEBUG_ANY, "do_add: ber_scanf failed\n", 0, 0, 0 );
65                 send_ldap_disconnect( conn, op,
66                         LDAP_PROTOCOL_ERROR, "decoding error" );
67                 return -1;
68         }
69
70         ndn = ch_strdup( dn );
71
72         if ( dn_normalize( ndn ) == NULL ) {
73                 Debug( LDAP_DEBUG_ANY, "do_add: invalid dn (%s)\n", dn, 0, 0 );
74                 send_ldap_result( conn, op, LDAP_INVALID_DN_SYNTAX, NULL,
75                     "invalid DN", NULL, NULL );
76                 free( dn );
77                 free( ndn );
78                 return LDAP_INVALID_DN_SYNTAX;
79         }
80
81         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
82
83         e->e_dn = dn;
84         e->e_ndn = ndn;
85         e->e_attrs = NULL;
86         e->e_private = NULL;
87
88         Debug( LDAP_DEBUG_ARGS, "do_add: ndn (%s)\n", e->e_ndn, 0, 0 );
89
90         /* get the attrs */
91         for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
92             tag = ber_next_element( ber, &len, last ) )
93         {
94                 LDAPModList *mod = (LDAPModList *) ch_malloc( sizeof(LDAPModList) );
95                 mod->ml_op = LDAP_MOD_ADD;
96                 mod->ml_next = NULL;
97
98                 rc = ber_scanf( ber, "{a{V}}", &mod->ml_type, &mod->ml_bvalues );
99
100                 if ( rc == LBER_ERROR ) {
101                         Debug( LDAP_DEBUG_ANY, "do_add: decoding error\n", 0, 0, 0 );
102                         send_ldap_disconnect( conn, op,
103                                 LDAP_PROTOCOL_ERROR, "decoding error" );
104                         rc = -1;
105                         free( mod );
106                         goto done;
107                 }
108
109                 if ( mod->ml_bvalues == NULL ) {
110                         Debug( LDAP_DEBUG_ANY, "no values for type %s\n",
111                                 mod->ml_type, 0, 0 );
112                         send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
113                                 NULL, "no values for attribute type", NULL, NULL );
114                         free( mod->ml_type );
115                         free( mod );
116                         goto done;
117                 }
118
119                 *modtail = mod;
120                 modtail = &mod->ml_next;
121         }
122
123         if ( ber_scanf( ber, /*{*/ "}") == LBER_ERROR ) {
124                 Debug( LDAP_DEBUG_ANY, "do_add: ber_scanf failed\n", 0, 0, 0 );
125                 send_ldap_disconnect( conn, op,
126                         LDAP_PROTOCOL_ERROR, "decoding error" );
127                 rc = -1;
128                 goto done;
129         }
130
131         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
132                 Debug( LDAP_DEBUG_ANY, "do_add: get_ctrls failed\n", 0, 0, 0 );
133                 goto done;
134         } 
135
136         if ( modlist == NULL ) {
137                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
138                         NULL, "no attributes provided", NULL, NULL );
139                 goto done;
140         }
141
142         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d ADD dn=\"%s\"\n",
143             op->o_connid, op->o_opid, e->e_ndn, 0, 0 );
144
145         /*
146          * We could be serving multiple database backends.  Select the
147          * appropriate one, or send a referral to our "referral server"
148          * if we don't hold it.
149          */
150         be = select_backend( e->e_ndn );
151         if ( be == NULL ) {
152                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
153                         NULL, NULL, default_referral, NULL );
154                 goto done;
155         }
156
157         /* make sure this backend recongizes critical controls */
158         rc = backend_check_controls( be, conn, op, &text ) ;
159         if( rc != LDAP_SUCCESS ) {
160                 send_ldap_result( conn, op, rc,
161                         NULL, text, NULL, NULL );
162                 goto done;
163         }
164
165         /* check for referrals */
166         rc = backend_check_referrals( be, conn, op, e->e_dn, e->e_ndn );
167         if ( rc != LDAP_SUCCESS ) {
168                 goto done;
169         }
170
171         if ( global_readonly || be->be_readonly ) {
172                 Debug( LDAP_DEBUG_ANY, "do_add: database is read-only\n",
173                        0, 0, 0 );
174                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
175                         NULL, "directory is read-only", NULL, NULL );
176                 goto done;
177         }
178
179         /*
180          * do the add if 1 && (2 || 3)
181          * 1) there is an add function implemented in this backend;
182          * 2) this backend is master for what it holds;
183          * 3) it's a replica and the dn supplied is the updatedn.
184          */
185         if ( be->be_add ) {
186                 /* do the update here */
187 #ifdef SLAPD_MULTIMASTER
188                 if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
189                         global_lastmod == ON)) && (be->be_update_ndn == NULL ||
190                         strcmp( be->be_update_ndn, op->o_ndn )) )
191 #else
192                 if ( be->be_update_ndn == NULL ||
193                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
194 #endif
195                 {
196                         int update = be->be_update_ndn != NULL;
197
198                         rc = slap_modlist2mods( modlist, update, &mods, &text );
199                         if( rc != LDAP_SUCCESS ) {
200                                 send_ldap_result( conn, op, rc,
201                                         NULL, text, NULL, NULL );
202                                 goto done;
203                         }
204
205 #ifndef SLAPD_MULTIMASTER
206                         if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
207                                 global_lastmod == ON)) && !update )
208 #endif
209                         {
210                                 Modifications **modstail;
211                                 for( modstail = &mods;
212                                         *modstail != NULL;
213                                         modstail = &(*modstail)->sml_next )
214                                 {
215                                         assert( (*modstail)->sml_op == LDAP_MOD_ADD );
216                                         assert( (*modstail)->sml_desc != NULL );
217                                 }
218                                 rc = slap_mods_opattrs( op, modstail, &text );
219                                 if( rc != LDAP_SUCCESS ) {
220                                         send_ldap_result( conn, op, rc,
221                                                 NULL, text, NULL, NULL );
222                                         goto done;
223                                 }
224                         }
225
226                         rc = slap_mods2entry( mods, &e, &text );
227                         if( rc != LDAP_SUCCESS ) {
228                                 send_ldap_result( conn, op, rc,
229                                         NULL, text, NULL, NULL );
230                                 goto done;
231                         }
232
233                         if ( (*be->be_add)( be, conn, op, e ) == 0 ) {
234 #ifdef SLAPD_MULTIMASTER
235                                 if (be->be_update_ndn == NULL ||
236                                         strcmp( be->be_update_ndn, op->o_ndn ))
237 #endif
238                                 {
239                                         replog( be, op, e->e_dn, e );
240                                 }
241                                 be_entry_release_w( be, e );
242                                 e = NULL;
243                         }
244
245 #ifndef SLAPD_MULTIMASTER
246                 } else {
247                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
248                                 be->be_update_refs ? be->be_update_refs : default_referral, NULL );
249 #endif
250                 }
251         } else {
252             Debug( LDAP_DEBUG_ARGS, "    do_add: no backend support\n", 0, 0, 0 );
253                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
254                         NULL, "operation not supported within namingContext", NULL, NULL );
255         }
256
257 done:
258         if( modlist != NULL ) {
259                 slap_modlist_free( modlist );
260         }
261         if( mods != NULL ) {
262                 slap_mods_free( mods );
263         }
264         if( e != NULL ) {
265                 entry_free( e );
266         }
267
268         return rc;
269 }
270
271 static int slap_mods2entry(
272         Modifications *mods,
273         Entry **e,
274         const char **text )
275 {
276         Attribute **tail = &(*e)->e_attrs;
277         assert( *tail == NULL );
278
279         for( ; mods != NULL; mods = mods->sml_next ) {
280                 Attribute *attr;
281
282                 assert( mods->sml_op == LDAP_MOD_ADD );
283                 assert( mods->sml_desc != NULL );
284
285                 attr = attr_find( (*e)->e_attrs, mods->sml_desc );
286
287                 if( attr != NULL ) {
288 #define SLURPD_FRIENDLY
289 #ifdef SLURPD_FRIENDLY
290                         ber_len_t i,j;
291
292                         for( i=0; attr->a_vals[i]; i++ ) {
293                                 /* count them */
294                         }
295                         for( j=0; mods->sml_bvalues[j]; j++ ) {
296                                 /* count them */
297                         }
298                         j++;    /* NULL */
299                         
300                         attr->a_vals = ch_realloc( attr->a_vals,
301                                 sizeof( struct berval * ) * (i+j) );
302
303                         /* should check for duplicates */
304                         memcpy( &attr->a_vals[i], mods->sml_bvalues,
305                                 sizeof( struct berval * ) * j );
306
307                         /* trim the mods array */
308                         ch_free( mods->sml_bvalues );
309                         mods->sml_bvalues = NULL;
310
311                         continue;
312 #else
313                         *text = "attribute provided more than once";
314                         return LDAP_TYPE_OR_VALUE_EXISTS;
315 #endif
316                 }
317
318                 attr = ch_calloc( 1, sizeof(Attribute) );
319
320                 /* move ad to attr structure */
321                 attr->a_desc = mods->sml_desc;
322                 mods->sml_desc = NULL;
323
324                 /* move values to attr structure */
325                 /*      should check for duplicates */
326                 attr->a_vals = mods->sml_bvalues;
327                 mods->sml_bvalues = NULL;
328
329                 *tail = attr;
330                 tail = &attr->a_next;
331         }
332
333         return LDAP_SUCCESS;
334 }
335