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