2000-09-22 14:46:32 +08:00
|
|
|
/* add.c - ldap BerkeleyDB back-end add routine */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-22 14:46:32 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
2000-09-25 06:48:13 +08:00
|
|
|
#include "external.h"
|
2000-09-22 14:46:32 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
bdb_add(
|
2000-09-26 07:41:16 +08:00
|
|
|
BackendDB *be,
|
2000-09-22 14:46:32 +08:00
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e )
|
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2001-12-27 09:38:15 +08:00
|
|
|
struct berval pdn;
|
2000-09-22 14:46:32 +08:00
|
|
|
Entry *p = NULL;
|
|
|
|
int rc;
|
2000-09-28 10:27:49 +08:00
|
|
|
const char *text;
|
2001-06-15 15:08:37 +08:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN];
|
|
|
|
size_t textlen = sizeof textbuf;
|
2000-09-22 14:46:32 +08:00
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
|
|
|
DB_TXN *ltid = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
struct bdb_op_info opinfo;
|
2002-01-11 02:18:37 +08:00
|
|
|
int subentry;
|
2000-09-22 14:46:32 +08:00
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_ARGS, "==> bdb_add: %s\n", e->e_dn, 0, 0);
|
|
|
|
|
|
|
|
/* check entry's schema */
|
2002-01-11 03:37:03 +08:00
|
|
|
rc = entry_schema_check( be, e, NULL, &text, textbuf, textlen );
|
2000-09-22 14:46:32 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_add: entry failed schema check: %s (%d)\n",
|
|
|
|
text, rc, 0 );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2002-01-11 02:18:37 +08:00
|
|
|
subentry = is_entry_subentry( e );
|
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
/*
|
|
|
|
* acquire an ID outside of the operation transaction
|
|
|
|
* to avoid serializing adds.
|
|
|
|
*/
|
|
|
|
rc = bdb_next_id( be, NULL, &e->e_id );
|
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_add: next_id failed (%d)\n",
|
|
|
|
rc, 0, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-11-28 05:59:56 +08:00
|
|
|
if( 0 ) {
|
2000-09-24 14:04:58 +08:00
|
|
|
/* transaction retry */
|
2000-09-24 07:15:40 +08:00
|
|
|
retry: rc = txn_abort( ltid );
|
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
|
|
|
if( rc != 0 ) {
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
/* begin transaction */
|
2001-11-27 11:41:03 +08:00
|
|
|
if( bdb->bi_txn ) {
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = txn_begin( bdb->bi_dbenv, NULL, <id,
|
|
|
|
bdb->bi_db_opflags );
|
2001-11-27 11:41:03 +08:00
|
|
|
text = NULL;
|
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_add: txn_begin failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
}
|
2000-09-24 07:15:40 +08:00
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
opinfo.boi_bdb = be;
|
|
|
|
opinfo.boi_txn = ltid;
|
|
|
|
opinfo.boi_err = 0;
|
|
|
|
op->o_private = &opinfo;
|
2000-09-22 14:46:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2002-01-01 21:32:10 +08:00
|
|
|
pdn.bv_val = dn_parent( be, e->e_ndn );
|
2002-01-11 02:18:37 +08:00
|
|
|
if (pdn.bv_val && *pdn.bv_val) {
|
2002-01-01 21:32:10 +08:00
|
|
|
pdn.bv_len = e->e_nname.bv_len - (pdn.bv_val - e->e_ndn);
|
2002-01-11 02:18:37 +08:00
|
|
|
} else {
|
2002-01-01 21:32:10 +08:00
|
|
|
pdn.bv_len = 0;
|
2002-01-11 02:18:37 +08:00
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
|
2001-12-27 09:38:15 +08:00
|
|
|
if( pdn.bv_len != 0 ) {
|
2000-09-22 14:46:32 +08:00
|
|
|
Entry *matched = NULL;
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
/* get parent */
|
2001-12-27 09:38:15 +08:00
|
|
|
rc = bdb_dn2entry( be, ltid, &pdn, &p, &matched, 0 );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
2000-09-24 14:04:58 +08:00
|
|
|
case 0:
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
2000-09-24 07:15:40 +08:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
if ( p == NULL ) {
|
2001-11-05 14:24:11 +08:00
|
|
|
char *matched_dn = NULL;
|
2002-01-02 19:00:36 +08:00
|
|
|
BVarray refs;
|
2000-09-22 14:46:32 +08:00
|
|
|
|
|
|
|
if ( matched != NULL ) {
|
|
|
|
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 )
|
2000-09-22 14:46:32 +08:00
|
|
|
: NULL;
|
|
|
|
bdb_entry_return( be, matched );
|
2000-09-28 10:27:49 +08:00
|
|
|
matched = NULL;
|
2000-09-22 14:46:32 +08:00
|
|
|
|
|
|
|
} else {
|
2001-11-05 14:24:11 +08:00
|
|
|
refs = referral_rewrite( default_referral,
|
2001-12-27 04:59:24 +08:00
|
|
|
NULL, &e->e_name, LDAP_SCOPE_DEFAULT );
|
2000-09-22 14:46:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: parent does not exist\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
2000-09-28 06:28:59 +08:00
|
|
|
matched_dn, NULL, refs, NULL );
|
2000-09-22 14:46:32 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
bvarray_free( refs );
|
2001-11-05 14:24:11 +08:00
|
|
|
ch_free( matched_dn );
|
2000-09-22 14:46:32 +08:00
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE ) )
|
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: no write access to parent\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
2001-11-15 00:09:33 +08:00
|
|
|
text = "no write access to parent";
|
2000-09-22 14:46:32 +08:00
|
|
|
goto return_results;;
|
|
|
|
}
|
|
|
|
|
2002-01-11 02:18:37 +08:00
|
|
|
if ( is_entry_subentry( p ) ) {
|
|
|
|
/* parent is a subentry, don't allow add */
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: parent is subentry\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
text = "parent is a subentry";
|
|
|
|
goto return_results;;
|
|
|
|
}
|
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
if ( is_entry_alias( p ) ) {
|
|
|
|
/* parent is an alias, don't allow add */
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: parent is alias\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_ALIAS_PROBLEM;
|
|
|
|
text = "parent is an alias";
|
|
|
|
goto return_results;;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_entry_referral( p ) ) {
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
char *matched_dn = ch_strdup( p->e_dn );
|
2002-01-02 19:00:36 +08:00
|
|
|
BVarray refs = is_entry_referral( p )
|
2001-12-27 04:59:24 +08:00
|
|
|
? get_entry_referrals( be, conn, op, p )
|
2000-09-22 14:46:32 +08:00
|
|
|
: NULL;
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: parent is referral\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
2000-09-28 06:28:59 +08:00
|
|
|
matched_dn, NULL, refs, NULL );
|
2000-09-22 14:46:32 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
bvarray_free( refs );
|
2000-09-22 14:46:32 +08:00
|
|
|
free( matched_dn );
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-01-11 02:18:37 +08:00
|
|
|
if ( subentry ) {
|
|
|
|
/* FIXME: */
|
|
|
|
/* parent must be an administrative point of the required kind */
|
|
|
|
}
|
|
|
|
|
2000-09-24 07:15:40 +08:00
|
|
|
/* free parent and writer lock */
|
|
|
|
bdb_entry_return( be, p );
|
|
|
|
p = NULL;
|
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* no parent!
|
2002-01-11 02:18:37 +08:00
|
|
|
* must be adding entry at suffix or with parent ""
|
2000-09-22 14:46:32 +08:00
|
|
|
*/
|
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:09:33 +08:00
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
if ( ! rc ) {
|
2001-11-28 05:59:56 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_add: no write access to parent\n",
|
2001-11-15 00:09:33 +08:00
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
text = "no write access to parent";
|
|
|
|
goto return_results;;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: %s denied\n",
|
2001-12-27 09:38:15 +08:00
|
|
|
pdn.bv_len == 0 ? "suffix" : "entry at root",
|
2001-11-15 00:09:33 +08:00
|
|
|
0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
}
|
2002-01-11 02:18:37 +08:00
|
|
|
|
|
|
|
if( subentry ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_add: no parent, cannot add subentry\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
text = "no parent, cannot add subentry";
|
|
|
|
goto return_results;;
|
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* dn2id index */
|
2001-12-27 09:38:15 +08:00
|
|
|
rc = bdb_dn2id_add( be, ltid, &pdn, e );
|
2000-09-22 14:46:32 +08:00
|
|
|
if ( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: dn2id_add failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2000-09-24 07:15:40 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
case DB_KEYEXIST:
|
2000-09-22 14:46:32 +08:00
|
|
|
rc = LDAP_ALREADY_EXISTS;
|
2000-09-24 07:15:40 +08:00
|
|
|
break;
|
|
|
|
default:
|
2000-09-22 14:46:32 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* id2entry index */
|
|
|
|
rc = bdb_id2entry_add( be, ltid, e );
|
|
|
|
if ( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: id2entry_add failed\n",
|
|
|
|
0, 0, 0 );
|
2000-09-24 14:04:58 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
text = "entry store failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* attribute indexes */
|
2001-11-27 09:09:19 +08:00
|
|
|
rc = bdb_index_entry_add( be, ltid, e, e->e_attrs );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2000-09-22 14:46:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_add: index_entry_add failed\n",
|
|
|
|
0, 0, 0 );
|
2000-09-24 14:04:58 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
text = "index generation failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-11-27 11:41:03 +08:00
|
|
|
if( bdb->bi_txn ) {
|
2001-11-27 10:35:20 +08:00
|
|
|
rc = txn_commit( ltid, 0 );
|
2001-11-27 11:41:03 +08:00
|
|
|
}
|
2000-09-22 14:46:32 +08:00
|
|
|
ltid = NULL;
|
2000-09-24 07:15:40 +08:00
|
|
|
op->o_private = NULL;
|
2000-09-22 14:46:32 +08:00
|
|
|
|
2000-09-27 03:26:08 +08:00
|
|
|
if( rc != 0 ) {
|
2000-09-22 14:46:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_add: txn_commit failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "commit failed";
|
2001-11-28 05:59:56 +08:00
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-15 00:17:30 +08:00
|
|
|
"bdb_add: added id=%08lx dn=\"%s\"\n",
|
2000-09-22 14:46:32 +08:00
|
|
|
e->e_id, e->e_dn, 0 );
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
text = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return_results:
|
|
|
|
send_ldap_result( conn, op, rc,
|
2000-09-24 07:15:40 +08:00
|
|
|
NULL, text, NULL, NULL );
|
2000-09-22 14:46:32 +08:00
|
|
|
|
2001-11-28 05:59:56 +08:00
|
|
|
if( rc == LDAP_SUCCESS && bdb->bi_txn_cp ) {
|
2000-09-28 12:09:13 +08:00
|
|
|
ldap_pvt_thread_yield();
|
2001-12-07 13:05:00 +08:00
|
|
|
TXN_CHECKPOINT( bdb->bi_dbenv,
|
2000-09-28 12:09:13 +08:00
|
|
|
bdb->bi_txn_cp_kbyte, bdb->bi_txn_cp_min, 0 );
|
|
|
|
}
|
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
done:
|
|
|
|
if (p != NULL) {
|
|
|
|
/* free parent and writer lock */
|
|
|
|
bdb_entry_return( be, p );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ltid != NULL ) {
|
|
|
|
txn_abort( ltid );
|
2000-09-24 07:15:40 +08:00
|
|
|
op->o_private = NULL;
|
2000-09-22 14:46:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|