]> git.sur5r.net Git - openldap/blob - servers/slapd/add.c
c0b93363ceb242fb7f03b5660d798174969e0938
[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
160         if( rc != LDAP_SUCCESS ) {
161                 send_ldap_result( conn, op, rc,
162                         NULL, text, NULL, NULL );
163                 goto done;
164         }
165
166         /* check for referrals */
167         rc = backend_check_referrals( be, conn, op,
168                 e->e_dn, e->e_ndn, &text );
169
170         if ( rc != LDAP_SUCCESS ) {
171                 goto done;
172         }
173
174         if ( global_readonly || be->be_readonly ) {
175                 Debug( LDAP_DEBUG_ANY, "do_add: database is read-only\n",
176                        0, 0, 0 );
177                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
178                         NULL, "directory is read-only", NULL, NULL );
179                 goto done;
180         }
181
182         /*
183          * do the add if 1 && (2 || 3)
184          * 1) there is an add function implemented in this backend;
185          * 2) this backend is master for what it holds;
186          * 3) it's a replica and the dn supplied is the updatedn.
187          */
188         if ( be->be_add ) {
189                 /* do the update here */
190 #ifdef SLAPD_MULTIMASTER
191                 if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
192                         global_lastmod == ON)) && (be->be_update_ndn == NULL ||
193                         strcmp( be->be_update_ndn, op->o_ndn )) )
194 #else
195                 if ( be->be_update_ndn == NULL ||
196                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
197 #endif
198                 {
199                         int update = be->be_update_ndn != NULL;
200
201                         rc = slap_modlist2mods( modlist, update, &mods, &text );
202                         if( rc != LDAP_SUCCESS ) {
203                                 send_ldap_result( conn, op, rc,
204                                         NULL, text, NULL, NULL );
205                                 goto done;
206                         }
207
208 #ifndef SLAPD_MULTIMASTER
209                         if ( (be->be_lastmod == ON || (be->be_lastmod == UNDEFINED &&
210                                 global_lastmod == ON)) && !update )
211 #endif
212                         {
213                                 Modifications **modstail;
214                                 for( modstail = &mods;
215                                         *modstail != NULL;
216                                         modstail = &(*modstail)->sml_next )
217                                 {
218                                         assert( (*modstail)->sml_op == LDAP_MOD_ADD );
219                                         assert( (*modstail)->sml_desc != NULL );
220                                 }
221                                 rc = slap_mods_opattrs( op, modstail, &text );
222                                 if( rc != LDAP_SUCCESS ) {
223                                         send_ldap_result( conn, op, rc,
224                                                 NULL, text, NULL, NULL );
225                                         goto done;
226                                 }
227                         }
228
229                         rc = slap_mods2entry( mods, &e, &text );
230                         if( rc != LDAP_SUCCESS ) {
231                                 send_ldap_result( conn, op, rc,
232                                         NULL, text, NULL, NULL );
233                                 goto done;
234                         }
235
236                         if ( (*be->be_add)( be, conn, op, e ) == 0 ) {
237 #ifdef SLAPD_MULTIMASTER
238                                 if (be->be_update_ndn == NULL ||
239                                         strcmp( be->be_update_ndn, op->o_ndn ))
240 #endif
241                                 {
242                                         replog( be, op, e->e_dn, e );
243                                 }
244                                 be_entry_release_w( be, e );
245                                 e = NULL;
246                         }
247
248 #ifndef SLAPD_MULTIMASTER
249                 } else {
250                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
251                                 be->be_update_refs ? be->be_update_refs : default_referral, NULL );
252 #endif
253                 }
254         } else {
255             Debug( LDAP_DEBUG_ARGS, "    do_add: no backend support\n", 0, 0, 0 );
256                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
257                         NULL, "operation not supported within namingContext", NULL, NULL );
258         }
259
260 done:
261         if( modlist != NULL ) {
262                 slap_modlist_free( modlist );
263         }
264         if( mods != NULL ) {
265                 slap_mods_free( mods );
266         }
267         if( e != NULL ) {
268                 entry_free( e );
269         }
270
271         return rc;
272 }
273
274 static int slap_mods2entry(
275         Modifications *mods,
276         Entry **e,
277         const char **text )
278 {
279         Attribute **tail = &(*e)->e_attrs;
280         assert( *tail == NULL );
281
282         for( ; mods != NULL; mods = mods->sml_next ) {
283                 Attribute *attr;
284
285                 assert( mods->sml_op == LDAP_MOD_ADD );
286                 assert( mods->sml_desc != NULL );
287
288                 attr = attr_find( (*e)->e_attrs, mods->sml_desc );
289
290                 if( attr != NULL ) {
291                         *text = "attribute provided more than once";
292                         return LDAP_OPERATIONS_ERROR;
293                 }
294
295                 attr = ch_calloc( 1, sizeof(Attribute) );
296
297                 /* move ad to attr structure */
298                 attr->a_desc = mods->sml_desc;
299                 mods->sml_desc = NULL;
300
301                 /* move values to attr structure */
302                 /*      should check for duplicates */
303                 attr->a_vals = mods->sml_bvalues;
304                 mods->sml_bvalues = NULL;
305
306                 *tail = attr;
307                 tail = &attr->a_next;
308         }
309
310         return LDAP_SUCCESS;
311 }
312