1998-08-09 08:43:13 +08:00
|
|
|
/* add.c - ldap ldbm back-end add routine */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-07 07:07:46 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
1998-09-21 04:22:46 +08:00
|
|
|
#include "proto-back-ldbm.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_add(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
1999-01-29 01:32:59 +08:00
|
|
|
char *pdn;
|
1998-09-21 04:22:46 +08:00
|
|
|
Entry *p = NULL;
|
1999-01-07 10:51:08 +08:00
|
|
|
int rootlock = 0;
|
2001-07-03 19:23:18 +08:00
|
|
|
int rc;
|
|
|
|
ID id = NOID;
|
2000-05-29 06:38:21 +08:00
|
|
|
const char *text = NULL;
|
2000-05-24 02:20:38 +08:00
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
2001-06-06 08:23:56 +08:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN];
|
|
|
|
size_t textlen = sizeof textbuf;
|
2000-02-15 04:57:34 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,"ldbm_back_add: %s\n",
|
2001-10-26 10:05:14 +08:00
|
|
|
e->e_dn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-01-29 01:32:59 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_add: %s\n", e->e_dn, 0, 0);
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
/* nobody else can add until we lock our parent */
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&li->li_add_mutex);
|
1998-12-30 11:35:23 +08:00
|
|
|
|
2001-07-03 19:23:18 +08:00
|
|
|
if ( ( rc = dn2id( be, e->e_ndn, &id ) ) || id != NOID ) {
|
|
|
|
/* if (rc) something bad happened to ldbm cache */
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
2001-07-03 03:42:27 +08:00
|
|
|
send_ldap_result( conn, op,
|
2001-07-03 19:23:18 +08:00
|
|
|
rc ? LDAP_OPERATIONS_ERROR : LDAP_ALREADY_EXISTS,
|
1999-07-16 10:45:46 +08:00
|
|
|
NULL, NULL, NULL, NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|
2001-06-06 08:23:56 +08:00
|
|
|
rc = entry_schema_check( e, NULL, &text, textbuf, textlen );
|
2000-04-25 21:07:14 +08:00
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
1998-12-30 11:35:23 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_add: entry (%s) failed schema check.\n",
|
|
|
|
e->e_dn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2000-04-25 21:07:14 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry failed schema check: %s\n",
|
|
|
|
text, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
|
2000-04-25 21:07:14 +08:00
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, text, NULL, NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the parent dn and see if the corresponding entry exists.
|
|
|
|
* If the parent does not exist, only allow the "root" user to
|
|
|
|
* add the entry.
|
|
|
|
*/
|
|
|
|
|
1999-06-19 12:26:17 +08:00
|
|
|
pdn = dn_parent( be, e->e_ndn );
|
|
|
|
|
1999-08-14 09:19:29 +08:00
|
|
|
if( pdn != NULL && *pdn != '\0' ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
Entry *matched = NULL;
|
1998-09-21 04:22:46 +08:00
|
|
|
|
1999-06-19 12:26:17 +08:00
|
|
|
assert( *pdn != '\0' );
|
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
/* get parent with writer lock */
|
|
|
|
if ( (p = dn2entry_w( be, pdn, &matched )) == NULL ) {
|
2001-10-26 10:05:14 +08:00
|
|
|
char *matched_dn = NULL;
|
1999-07-16 10:45:46 +08:00
|
|
|
struct berval **refs;
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
1998-11-24 04:08:25 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( matched != NULL ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
matched_dn = ch_strdup( matched->e_dn );
|
|
|
|
refs = is_entry_referral( matched )
|
2001-12-27 04:59:24 +08:00
|
|
|
? get_entry_referrals( be, conn, op, matched )
|
1999-07-16 10:45:46 +08:00
|
|
|
: NULL;
|
|
|
|
cache_return_entry_r( &li->li_cache, matched );
|
|
|
|
|
|
|
|
} else {
|
2001-10-26 10:05:14 +08:00
|
|
|
refs = referral_rewrite( default_referral,
|
2001-12-27 04:59:24 +08:00
|
|
|
NULL, &e->e_name, LDAP_SCOPE_DEFAULT );
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_add: Parent of (%s) does not exist.\n",
|
|
|
|
e->e_dn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-07-16 10:45:46 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "parent does not exist\n",
|
|
|
|
0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-05-17 03:19:16 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL, matched_dn,
|
|
|
|
refs == NULL ? "parent does not exist" : "parent is referral",
|
|
|
|
refs, NULL );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-10-26 10:05:14 +08:00
|
|
|
ber_bvecfree( refs );
|
|
|
|
free( matched_dn );
|
1998-09-21 04:22:46 +08:00
|
|
|
|
1998-12-30 11:35:23 +08:00
|
|
|
return -1;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
/* don't need the add lock anymore */
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
1999-01-07 10:51:08 +08:00
|
|
|
|
1999-01-19 13:10:50 +08:00
|
|
|
if ( ! access_allowed( be, conn, op, p,
|
2000-02-15 04:57:34 +08:00
|
|
|
children, NULL, ACL_WRITE ) )
|
1998-12-30 11:35:23 +08:00
|
|
|
{
|
1999-07-16 10:45:46 +08:00
|
|
|
/* free parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: No write access to parent (%s).\n",
|
|
|
|
e->e_dn ));
|
|
|
|
#else
|
2000-04-25 21:07:14 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "no write access to parent\n", 0,
|
1998-08-09 08:43:13 +08:00
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
2000-04-25 21:07:14 +08:00
|
|
|
NULL, "no write access to parent", NULL, NULL );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_entry_alias( p ) ) {
|
|
|
|
/* parent is an alias, don't allow add */
|
1998-09-21 04:22:46 +08:00
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
/* free parent and writer lock */
|
1999-07-16 10:45:46 +08:00
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: Parent is an alias.\n"));
|
|
|
|
#else
|
1999-07-16 10:45:46 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "parent is alias\n", 0,
|
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_ALIAS_PROBLEM,
|
2000-04-25 21:07:14 +08:00
|
|
|
NULL, "parent is an alias", NULL, NULL );
|
1999-01-07 10:51:08 +08:00
|
|
|
|
1998-12-30 11:35:23 +08:00
|
|
|
return -1;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-12-30 11:35:23 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
if ( is_entry_referral( p ) ) {
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
char *matched_dn = ch_strdup( p->e_dn );
|
|
|
|
struct berval **refs = is_entry_referral( p )
|
2001-12-27 04:59:24 +08:00
|
|
|
? get_entry_referrals( be, conn, op, p )
|
1999-07-16 10:45:46 +08:00
|
|
|
: NULL;
|
|
|
|
|
|
|
|
/* free parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: Parent is referral.\n" ));
|
|
|
|
#else
|
1999-07-16 10:45:46 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "parent is referral\n", 0,
|
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
|
|
|
matched_dn, NULL, refs, NULL );
|
|
|
|
|
|
|
|
ber_bvecfree( refs );
|
|
|
|
free( matched_dn );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
1999-06-19 12:26:17 +08:00
|
|
|
if(pdn != NULL) {
|
|
|
|
assert( *pdn == '\0' );
|
|
|
|
}
|
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
/* no parent, must be adding entry to root */
|
2001-12-26 03:48:26 +08:00
|
|
|
if ( !be_isroot( be, &op->o_ndn ) ) {
|
2001-12-25 08:05:26 +08:00
|
|
|
if ( be_issuffix( be, "" ) || be_isupdate( be, &op->o_ndn ) ) {
|
2001-11-17 01:05:32 +08:00
|
|
|
p = (Entry *)&slap_entry_root;
|
2001-11-15 00:08:59 +08:00
|
|
|
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
if ( ! rc ) {
|
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
1999-06-19 12:26:17 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-15 00:08:59 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: No write "
|
|
|
|
"access to parent (\"\").\n" ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-15 00:08:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"no write access to parent\n",
|
|
|
|
0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-11-15 00:08:59 +08:00
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL,
|
|
|
|
"no write access to parent",
|
|
|
|
NULL, NULL );
|
1999-06-19 12:26:17 +08:00
|
|
|
|
2001-11-15 00:08:59 +08:00
|
|
|
return -1;
|
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|
2001-11-15 00:08:59 +08:00
|
|
|
} else {
|
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: %s add denied.\n",
|
|
|
|
pdn == NULL ? "suffix"
|
|
|
|
: "entry at root" ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "%s add denied\n",
|
|
|
|
pdn == NULL ? "suffix"
|
|
|
|
: "entry at root", 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-01-07 10:51:08 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* no parent, acquire the root write lock
|
|
|
|
* and release the add lock.
|
|
|
|
*/
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&li->li_root_mutex);
|
1999-01-22 06:20:03 +08:00
|
|
|
rootlock = 1;
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_add_mutex);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2001-07-20 17:50:28 +08:00
|
|
|
if ( next_id( be, &e->e_id ) ) {
|
2000-09-13 05:16:03 +08:00
|
|
|
if( p != NULL) {
|
|
|
|
/* free parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( rootlock ) {
|
|
|
|
/* release root lock */
|
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
|
|
|
|
}
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: next_id failed.\n" ));
|
|
|
|
#else
|
2000-09-13 05:16:03 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ldbm_add: next_id failed\n",
|
|
|
|
0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2000-09-13 05:16:03 +08:00
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "next_id add failed", NULL, NULL );
|
|
|
|
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
1998-12-30 11:35:23 +08:00
|
|
|
/*
|
1999-01-22 08:27:50 +08:00
|
|
|
* Try to add the entry to the cache, assign it a new dnid.
|
1998-12-30 11:35:23 +08:00
|
|
|
*/
|
1999-02-12 01:46:56 +08:00
|
|
|
rc = cache_add_entry_rw(&li->li_cache, e, CACHE_WRITE_LOCK);
|
1998-12-30 11:35:23 +08:00
|
|
|
|
1999-02-11 02:28:25 +08:00
|
|
|
if ( rc != 0 ) {
|
1999-01-07 10:51:08 +08:00
|
|
|
if( p != NULL) {
|
|
|
|
/* free parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
1999-01-22 06:20:03 +08:00
|
|
|
}
|
1999-02-11 02:28:25 +08:00
|
|
|
|
1999-01-22 06:20:03 +08:00
|
|
|
if ( rootlock ) {
|
1999-01-07 10:51:08 +08:00
|
|
|
/* release root lock */
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
|
1999-01-07 10:51:08 +08:00
|
|
|
}
|
1998-12-30 11:35:23 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: cache_add_entry_lock failed.\n" ));
|
|
|
|
#else
|
1998-12-30 11:35:23 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "cache_add_entry_lock failed\n", 0, 0,
|
|
|
|
0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op,
|
2000-04-25 21:07:14 +08:00
|
|
|
rc > 0 ? LDAP_ALREADY_EXISTS : LDAP_OTHER,
|
|
|
|
NULL, rc > 0 ? NULL : "cache add failed", NULL, NULL );
|
1999-02-11 02:28:25 +08:00
|
|
|
|
1998-12-30 11:35:23 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
1999-02-11 02:28:25 +08:00
|
|
|
rc = -1;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* attribute indexes */
|
2000-06-05 06:59:38 +08:00
|
|
|
if ( index_entry_add( be, e, e->e_attrs ) != LDAP_SUCCESS ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: index_entry_add failed.\n" ));
|
|
|
|
#else
|
2000-06-05 06:59:38 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "index_entry_add failed\n", 0,
|
1998-08-09 08:43:13 +08:00
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
2001-07-20 17:50:28 +08:00
|
|
|
|
2000-04-25 21:07:14 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "index generation failed", NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* dn2id index */
|
1999-01-29 01:32:59 +08:00
|
|
|
if ( dn2id_add( be, e->e_ndn, e->e_id ) != 0 ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: dn2id_add failed.\n" ));
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "dn2id_add failed\n", 0,
|
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
2001-07-20 17:50:28 +08:00
|
|
|
/* FIXME: delete attr indices? */
|
2001-01-18 01:01:19 +08:00
|
|
|
|
2000-04-25 21:07:14 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "DN index generation failed", NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* id2entry index */
|
|
|
|
if ( id2entry_add( be, e ) != 0 ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_add: id2entry_add failed.\n" ));
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "id2entry_add failed\n", 0,
|
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-07-20 17:50:28 +08:00
|
|
|
/* FIXME: delete attr indices? */
|
1999-08-26 08:48:24 +08:00
|
|
|
(void) dn2id_delete( be, e->e_ndn, e->e_id );
|
2001-07-20 17:50:28 +08:00
|
|
|
|
2000-04-25 21:07:14 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "entry store failed", NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
2001-07-21 18:53:06 +08:00
|
|
|
|
|
|
|
/* marks the entry as committed, so it is added to the cache;
|
|
|
|
* otherwise it is removed from the cache, but not destroyed;
|
|
|
|
* it will be destroyed by the caller */
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
2001-07-21 18:53:06 +08:00
|
|
|
cache_entry_commit( e );
|
1998-09-21 04:22:46 +08:00
|
|
|
|
|
|
|
return_results:;
|
|
|
|
if (p != NULL) {
|
1999-01-07 10:51:08 +08:00
|
|
|
/* free parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
1999-01-22 06:20:03 +08:00
|
|
|
}
|
1999-01-07 10:51:08 +08:00
|
|
|
|
1999-01-22 06:20:03 +08:00
|
|
|
if ( rootlock ) {
|
1999-01-07 10:51:08 +08:00
|
|
|
/* release root lock */
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
|
1998-09-21 04:22:46 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-04-13 14:08:28 +08:00
|
|
|
if ( rc ) {
|
2001-07-21 18:53:06 +08:00
|
|
|
/* in case of error, writer lock is freed
|
|
|
|
* and entry's private data is destroyed */
|
1999-04-13 14:08:28 +08:00
|
|
|
cache_return_entry_w( &li->li_cache, e );
|
|
|
|
}
|
1998-12-30 11:35:23 +08:00
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
return( rc );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|