]> git.sur5r.net Git - openldap/blob - servers/slapd/add.c
More CLDAP tweaks, to differentiate between real LDAPv2 CLDAP and "other"
[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         int     manageDSAit;
48
49 #ifdef NEW_LOGGING
50         LDAP_LOG(( "operation", LDAP_LEVEL_ENTRY,
51                    "do_add: conn %d enter\n", conn->c_connid ));
52 #else
53         Debug( LDAP_DEBUG_TRACE, "do_add\n", 0, 0, 0 );
54 #endif
55         /*
56          * Parse the add request.  It looks like this:
57          *
58          *      AddRequest := [APPLICATION 14] SEQUENCE {
59          *              name    DistinguishedName,
60          *              attrs   SEQUENCE OF SEQUENCE {
61          *                      type    AttributeType,
62          *                      values  SET OF AttributeValue
63          *              }
64          *      }
65          */
66
67         /* get the name */
68         if ( ber_scanf( ber, "{a", /*}*/ &dn ) == LBER_ERROR ) {
69 #ifdef NEW_LOGGING
70                 LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
71                            "do_add: conn %d ber_scanf failed\n", conn->c_connid ));
72 #else
73                 Debug( LDAP_DEBUG_ANY, "do_add: ber_scanf failed\n", 0, 0, 0 );
74 #endif
75                 send_ldap_disconnect( conn, op,
76                         LDAP_PROTOCOL_ERROR, "decoding error" );
77                 return -1;
78         }
79
80         ndn = ch_strdup( dn );
81
82         if ( dn_normalize( ndn ) == NULL ) {
83 #ifdef NEW_LOGGING
84                 LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
85                            "do_add: conn %d      invalid dn (%s)\n", conn->c_connid, dn ));
86 #else
87                 Debug( LDAP_DEBUG_ANY, "do_add: invalid dn (%s)\n", dn, 0, 0 );
88 #endif
89                 send_ldap_result( conn, op, LDAP_INVALID_DN_SYNTAX, NULL,
90                     "invalid DN", NULL, NULL );
91                 free( dn );
92                 free( ndn );
93                 return LDAP_INVALID_DN_SYNTAX;
94         }
95
96         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
97
98         e->e_dn = dn;
99         e->e_ndn = ndn;
100         e->e_attrs = NULL;
101         e->e_private = NULL;
102
103 #ifdef NEW_LOGGING
104         LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
105                    "do_add: conn %d  ndn (%s)\n", conn->c_connid, e->e_ndn ));
106 #else
107         Debug( LDAP_DEBUG_ARGS, "do_add: ndn (%s)\n", e->e_ndn, 0, 0 );
108 #endif
109
110         /* get the attrs */
111         for ( tag = ber_first_element( ber, &len, &last ); tag != LBER_DEFAULT;
112             tag = ber_next_element( ber, &len, last ) )
113         {
114                 LDAPModList *mod = (LDAPModList *) ch_malloc( sizeof(LDAPModList) );
115                 mod->ml_op = LDAP_MOD_ADD;
116                 mod->ml_next = NULL;
117
118                 rc = ber_scanf( ber, "{a{V}}", &mod->ml_type, &mod->ml_bvalues );
119
120                 if ( rc == LBER_ERROR ) {
121 #ifdef NEW_LOGGING
122                         LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
123                                    "do_add: conn %d      decoding error \n", conn->c_connid ));
124 #else
125                         Debug( LDAP_DEBUG_ANY, "do_add: decoding error\n", 0, 0, 0 );
126 #endif
127                         send_ldap_disconnect( conn, op,
128                                 LDAP_PROTOCOL_ERROR, "decoding error" );
129                         rc = -1;
130                         free( mod );
131                         goto done;
132                 }
133
134                 if ( mod->ml_bvalues == NULL ) {
135 #ifdef NEW_LOGGING
136                         LDAP_LOG(( "operation", LDAP_LEVEL_INFO,
137                                    "do_add: conn %d      no values for type %s\n",
138                                    conn->c_connid, mod->ml_type ));
139 #else
140                         Debug( LDAP_DEBUG_ANY, "no values for type %s\n",
141                                 mod->ml_type, 0, 0 );
142 #endif
143                         send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
144                                 NULL, "no values for attribute type", NULL, NULL );
145                         free( mod->ml_type );
146                         free( mod );
147                         goto done;
148                 }
149
150                 *modtail = mod;
151                 modtail = &mod->ml_next;
152         }
153
154         if ( ber_scanf( ber, /*{*/ "}") == LBER_ERROR ) {
155 #ifdef NEW_LOGGING
156                 LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
157                            "do_add: conn %d      ber_scanf failed\n", conn->c_connid ));
158 #else
159                 Debug( LDAP_DEBUG_ANY, "do_add: ber_scanf failed\n", 0, 0, 0 );
160 #endif
161                 send_ldap_disconnect( conn, op,
162                         LDAP_PROTOCOL_ERROR, "decoding error" );
163                 rc = -1;
164                 goto done;
165         }
166
167         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
168 #ifdef NEW_LOGGING
169                 LDAP_LOG(( "operation", LDAP_LEVEL_INFO,
170                            "do_add: conn %d      get_ctrls failed\n", conn->c_connid ));
171 #else
172                 Debug( LDAP_DEBUG_ANY, "do_add: get_ctrls failed\n", 0, 0, 0 );
173 #endif
174                 goto done;
175         } 
176
177         if ( modlist == NULL ) {
178                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
179                         NULL, "no attributes provided", NULL, NULL );
180                 goto done;
181         }
182
183         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d ADD dn=\"%s\"\n",
184             op->o_connid, op->o_opid, e->e_ndn, 0, 0 );
185
186         if( e->e_ndn == NULL || *e->e_ndn == '\0' ) {
187                 /* protocolError may be a more appropriate error */
188                 send_ldap_result( conn, op, rc = LDAP_ALREADY_EXISTS,
189                         NULL, "root DSE exists", NULL, NULL );
190                 goto done;
191         }
192
193         manageDSAit = get_manageDSAit( op );
194
195         /*
196          * We could be serving multiple database backends.  Select the
197          * appropriate one, or send a referral to our "referral server"
198          * if we don't hold it.
199          */
200         be = select_backend( e->e_ndn, manageDSAit );
201         if ( be == NULL ) {
202                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
203                         NULL, NULL, default_referral, NULL );
204                 goto done;
205         }
206
207         /* check restrictions */
208         rc = backend_check_restrictions( be, conn, op, NULL, &text ) ;
209         if( rc != LDAP_SUCCESS ) {
210                 send_ldap_result( conn, op, rc,
211                         NULL, text, NULL, NULL );
212                 goto done;
213         }
214
215         /* check for referrals */
216         rc = backend_check_referrals( be, conn, op, e->e_dn, e->e_ndn );
217         if ( rc != LDAP_SUCCESS ) {
218                 goto done;
219         }
220
221         /*
222          * do the add if 1 && (2 || 3)
223          * 1) there is an add function implemented in this backend;
224          * 2) this backend is master for what it holds;
225          * 3) it's a replica and the dn supplied is the updatedn.
226          */
227         if ( be->be_add ) {
228                 /* do the update here */
229                 int repl_user = (be->be_update_ndn != NULL &&
230                         strcmp( be->be_update_ndn, op->o_ndn ) == 0);
231 #ifndef SLAPD_MULTIMASTER
232                 if ( be->be_update_ndn == NULL || repl_user )
233 #endif
234                 {
235                         int update = be->be_update_ndn != NULL;
236                         char textbuf[SLAP_TEXT_BUFLEN];
237                         size_t textlen = sizeof textbuf;
238
239                         rc = slap_modlist2mods( modlist, update, &mods, &text,
240                                 textbuf, textlen );
241
242                         if( rc != LDAP_SUCCESS ) {
243                                 send_ldap_result( conn, op, rc,
244                                         NULL, text, NULL, NULL );
245                                 goto done;
246                         }
247
248                         if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
249                                 global_lastmod == ON)) && !repl_user )
250                         {
251                                 Modifications **modstail;
252                                 for( modstail = &mods;
253                                         *modstail != NULL;
254                                         modstail = &(*modstail)->sml_next )
255                                 {
256                                         assert( (*modstail)->sml_op == LDAP_MOD_ADD );
257                                         assert( (*modstail)->sml_desc != NULL );
258                                 }
259                                 rc = slap_mods_opattrs( op, modstail, &text );
260                                 if( rc != LDAP_SUCCESS ) {
261                                         send_ldap_result( conn, op, rc,
262                                                 NULL, text, NULL, NULL );
263                                         goto done;
264                                 }
265                         }
266
267                         rc = slap_mods2entry( mods, &e, &text );
268                         if( rc != LDAP_SUCCESS ) {
269                                 send_ldap_result( conn, op, rc,
270                                         NULL, text, NULL, NULL );
271                                 goto done;
272                         }
273
274                         if ( (*be->be_add)( be, conn, op, e ) == 0 ) {
275 #ifdef SLAPD_MULTIMASTER
276                                 if ( !repl_user )
277 #endif
278                                 {
279                                         replog( be, op, e->e_dn, e );
280                                 }
281                                 be_entry_release_w( be, conn, op, e );
282                                 e = NULL;
283                         }
284
285 #ifndef SLAPD_MULTIMASTER
286                 } else {
287                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
288                                 be->be_update_refs ? be->be_update_refs : default_referral, NULL );
289 #endif
290                 }
291         } else {
292 #ifdef NEW_LOGGING
293             LDAP_LOG(( "operation", LDAP_LEVEL_INFO,
294                        "do_add: conn %d  no backend support\n", conn->c_connid ));
295 #else
296             Debug( LDAP_DEBUG_ARGS, "    do_add: no backend support\n", 0, 0, 0 );
297 #endif
298             send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
299                               NULL, "operation not supported within namingContext", NULL, NULL );
300         }
301
302 done:
303         if( modlist != NULL ) {
304                 slap_modlist_free( modlist );
305         }
306         if( mods != NULL ) {
307                 slap_mods_free( mods );
308         }
309         if( e != NULL ) {
310                 entry_free( e );
311         }
312
313         return rc;
314 }
315
316 static int slap_mods2entry(
317         Modifications *mods,
318         Entry **e,
319         const char **text )
320 {
321         Attribute **tail = &(*e)->e_attrs;
322         assert( *tail == NULL );
323
324         for( ; mods != NULL; mods = mods->sml_next ) {
325                 Attribute *attr;
326
327                 assert( mods->sml_op == LDAP_MOD_ADD );
328                 assert( mods->sml_desc != NULL );
329
330                 attr = attr_find( (*e)->e_attrs, mods->sml_desc );
331
332                 if( attr != NULL ) {
333 #define SLURPD_FRIENDLY
334 #ifdef SLURPD_FRIENDLY
335                         ber_len_t i,j;
336
337                         for( i=0; attr->a_vals[i]; i++ ) {
338                                 /* count them */
339                         }
340                         for( j=0; mods->sml_bvalues[j]; j++ ) {
341                                 /* count them */
342                         }
343                         j++;    /* NULL */
344                         
345                         attr->a_vals = ch_realloc( attr->a_vals,
346                                 sizeof( struct berval * ) * (i+j) );
347
348                         /* should check for duplicates */
349                         AC_MEMCPY( &attr->a_vals[i], mods->sml_bvalues,
350                                 sizeof( struct berval * ) * j );
351
352                         /* trim the mods array */
353                         ch_free( mods->sml_bvalues );
354                         mods->sml_bvalues = NULL;
355
356                         continue;
357 #else
358                         *text = "attribute provided more than once";
359                         return LDAP_TYPE_OR_VALUE_EXISTS;
360 #endif
361                 }
362
363                 attr = ch_calloc( 1, sizeof(Attribute) );
364
365                 /* move ad to attr structure */
366                 attr->a_desc = mods->sml_desc;
367                 mods->sml_desc = NULL;
368
369                 /* move values to attr structure */
370                 /*      should check for duplicates */
371                 attr->a_vals = mods->sml_bvalues;
372                 mods->sml_bvalues = NULL;
373
374                 *tail = attr;
375                 tail = &attr->a_next;
376         }
377
378         return LDAP_SUCCESS;
379 }
380