1 /* add.c - ldap ldbm back-end add routine */
4 * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
12 #include <ac/socket.h>
13 #include <ac/string.h>
16 #include "back-ldbm.h"
17 #include "proto-back-ldbm.h"
27 struct ldbminfo *li = (struct ldbminfo *) be->be_private;
33 const char *text = NULL;
34 AttributeDescription *children = slap_schema.si_ad_children;
35 char textbuf[SLAP_TEXT_BUFLEN];
36 size_t textlen = sizeof textbuf;
39 LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,"ldbm_back_add: %s\n",
42 Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_add: %s\n", e->e_dn, 0, 0);
45 /* nobody else can add until we lock our parent */
46 ldap_pvt_thread_mutex_lock(&li->li_add_mutex);
48 if ( ( rc = dn2id( be, e->e_ndn, &id ) ) || id != NOID ) {
49 /* if (rc) something bad happened to ldbm cache */
50 ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
51 send_ldap_result( conn, op,
52 rc ? LDAP_OPERATIONS_ERROR : LDAP_ALREADY_EXISTS,
53 NULL, NULL, NULL, NULL );
57 rc = entry_schema_check( e, NULL, &text, textbuf, textlen );
59 if ( rc != LDAP_SUCCESS ) {
60 ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
63 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
64 "ldbm_back_add: entry (%s) failed schema check.\n",
67 Debug( LDAP_DEBUG_TRACE, "entry failed schema check: %s\n",
72 send_ldap_result( conn, op, rc,
73 NULL, text, NULL, NULL );
78 * Get the parent dn and see if the corresponding entry exists.
79 * If the parent does not exist, only allow the "root" user to
83 pdn = dn_parent( be, e->e_ndn );
85 if( pdn != NULL && *pdn != '\0' ) {
86 Entry *matched = NULL;
88 assert( *pdn != '\0' );
90 /* get parent with writer lock */
91 if ( (p = dn2entry_w( be, pdn, &matched )) == NULL ) {
92 char *matched_dn = NULL;
95 ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
97 if ( matched != NULL ) {
98 matched_dn = ch_strdup( matched->e_dn );
99 refs = is_entry_referral( matched )
100 ? get_entry_referrals( be, conn, op, matched,
101 e->e_dn, LDAP_SCOPE_DEFAULT )
103 cache_return_entry_r( &li->li_cache, matched );
106 refs = referral_rewrite( default_referral,
107 NULL, e->e_dn, LDAP_SCOPE_DEFAULT );
111 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
112 "ldbm_back_add: Parent of (%s) does not exist.\n",
115 Debug( LDAP_DEBUG_TRACE, "parent does not exist\n",
119 send_ldap_result( conn, op, LDAP_REFERRAL, matched_dn,
120 refs == NULL ? "parent does not exist" : "parent is referral",
123 ber_bvecfree( refs );
130 /* don't need the add lock anymore */
131 ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
135 if ( ! access_allowed( be, conn, op, p,
136 children, NULL, ACL_WRITE ) )
138 /* free parent and writer lock */
139 cache_return_entry_w( &li->li_cache, p );
142 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
143 "ldbm_back_add: No write access to parent (%s).\n",
146 Debug( LDAP_DEBUG_TRACE, "no write access to parent\n", 0,
150 send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
151 NULL, "no write access to parent", NULL, NULL );
157 if ( is_entry_alias( p ) ) {
158 /* parent is an alias, don't allow add */
160 /* free parent and writer lock */
161 cache_return_entry_w( &li->li_cache, p );
164 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
165 "ldbm_back_add: Parent is an alias.\n"));
167 Debug( LDAP_DEBUG_TRACE, "parent is alias\n", 0,
172 send_ldap_result( conn, op, LDAP_ALIAS_PROBLEM,
173 NULL, "parent is an alias", NULL, NULL );
178 if ( is_entry_referral( p ) ) {
179 /* parent is a referral, don't allow add */
180 char *matched_dn = ch_strdup( p->e_dn );
181 struct berval **refs = is_entry_referral( p )
182 ? get_entry_referrals( be, conn, op, p,
183 e->e_dn, LDAP_SCOPE_DEFAULT )
186 /* free parent and writer lock */
187 cache_return_entry_w( &li->li_cache, p );
190 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
191 "ldbm_back_add: Parent is referral.\n" ));
193 Debug( LDAP_DEBUG_TRACE, "parent is referral\n", 0,
197 send_ldap_result( conn, op, LDAP_REFERRAL,
198 matched_dn, NULL, refs, NULL );
200 ber_bvecfree( refs );
207 assert( *pdn == '\0' );
211 /* no parent, must be adding entry to root */
212 if ( !be_isroot( be, op->o_ndn ) && !be_issuffix( be, "" ) ) {
213 ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
216 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
217 "ldbm_back_add: %s add denied.\n",
218 pdn == NULL ? "suffix" : "entry at root" ));
220 Debug( LDAP_DEBUG_TRACE, "%s add denied\n",
221 pdn == NULL ? "suffix" : "entry at root",
226 send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
227 NULL, NULL, NULL, NULL );
233 * no parent, acquire the root write lock
234 * and release the add lock.
236 ldap_pvt_thread_mutex_lock(&li->li_root_mutex);
238 ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
241 if ( next_id( be, &e->e_id ) ) {
243 /* free parent and writer lock */
244 cache_return_entry_w( &li->li_cache, p );
248 /* release root lock */
249 ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
253 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
254 "ldbm_back_add: next_id failed.\n" ));
256 Debug( LDAP_DEBUG_ANY, "ldbm_add: next_id failed\n",
261 send_ldap_result( conn, op, LDAP_OTHER,
262 NULL, "next_id add failed", NULL, NULL );
268 * Try to add the entry to the cache, assign it a new dnid.
270 rc = cache_add_entry_rw(&li->li_cache, e, CACHE_WRITE_LOCK);
274 /* free parent and writer lock */
275 cache_return_entry_w( &li->li_cache, p );
279 /* release root lock */
280 ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
284 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
285 "ldbm_back_add: cache_add_entry_lock failed.\n" ));
287 Debug( LDAP_DEBUG_ANY, "cache_add_entry_lock failed\n", 0, 0,
291 send_ldap_result( conn, op,
292 rc > 0 ? LDAP_ALREADY_EXISTS : LDAP_OTHER,
293 NULL, rc > 0 ? NULL : "cache add failed", NULL, NULL );
300 /* attribute indexes */
301 if ( index_entry_add( be, e, e->e_attrs ) != LDAP_SUCCESS ) {
303 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
304 "ldbm_back_add: index_entry_add failed.\n" ));
306 Debug( LDAP_DEBUG_TRACE, "index_entry_add failed\n", 0,
310 send_ldap_result( conn, op, LDAP_OTHER,
311 NULL, "index generation failed", NULL, NULL );
317 if ( dn2id_add( be, e->e_ndn, e->e_id ) != 0 ) {
319 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
320 "ldbm_back_add: dn2id_add failed.\n" ));
322 Debug( LDAP_DEBUG_TRACE, "dn2id_add failed\n", 0,
325 /* FIXME: delete attr indices? */
327 send_ldap_result( conn, op, LDAP_OTHER,
328 NULL, "DN index generation failed", NULL, NULL );
334 if ( id2entry_add( be, e ) != 0 ) {
336 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
337 "ldbm_back_add: id2entry_add failed.\n" ));
339 Debug( LDAP_DEBUG_TRACE, "id2entry_add failed\n", 0,
343 /* FIXME: delete attr indices? */
344 (void) dn2id_delete( be, e->e_ndn, e->e_id );
346 send_ldap_result( conn, op, LDAP_OTHER,
347 NULL, "entry store failed", NULL, NULL );
352 send_ldap_result( conn, op, LDAP_SUCCESS,
353 NULL, NULL, NULL, NULL );
355 /* marks the entry as committed, so it is added to the cache;
356 * otherwise it is removed from the cache, but not destroyed;
357 * it will be destroyed by the caller */
359 cache_entry_commit( e );
363 /* free parent and writer lock */
364 cache_return_entry_w( &li->li_cache, p );
368 /* release root lock */
369 ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
373 /* in case of error, writer lock is freed
374 * and entry's private data is destroyed */
375 cache_return_entry_w( &li->li_cache, e );