2000-09-22 02:46:32 -04:00
|
|
|
/* add.c - ldap BerkeleyDB back-end add routine */
|
|
|
|
|
/* $OpenLDAP$ */
|
2003-11-28 16:08:20 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2010-04-13 18:17:29 -04:00
|
|
|
* Copyright 2000-2010 The OpenLDAP Foundation.
|
2003-11-28 16:08:20 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2000-09-22 02:46:32 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
|
|
|
|
|
|
|
|
|
int
|
2003-03-30 04:03:54 -05:00
|
|
|
bdb_add(Operation *op, SlapReply *rs )
|
2000-09-22 02:46:32 -04:00
|
|
|
{
|
2003-03-30 04:03:54 -05:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
|
2001-12-26 20:38:15 -05:00
|
|
|
struct berval pdn;
|
2006-12-01 09:48:38 -05:00
|
|
|
Entry *p = NULL, *oe = op->ora_e;
|
2003-04-16 12:23:36 -04:00
|
|
|
EntryInfo *ei;
|
2001-06-15 03:08:37 -04:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN];
|
|
|
|
|
size_t textlen = sizeof textbuf;
|
2000-09-22 02:46:32 -04:00
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
2002-10-04 19:26:28 -04:00
|
|
|
AttributeDescription *entry = slap_schema.si_ad_entry;
|
2008-08-26 21:45:35 -04:00
|
|
|
DB_TXN *ltid = NULL, *lt2, *rtxn;
|
2008-02-09 19:56:44 -05:00
|
|
|
ID eid = NOID;
|
2008-10-13 01:44:55 -04:00
|
|
|
struct bdb_op_info opinfo = {{{ 0 }}};
|
2002-01-10 13:18:37 -05:00
|
|
|
int subentry;
|
2002-05-31 16:49:19 -04:00
|
|
|
DB_LOCK lock;
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2003-07-01 07:55:18 -04:00
|
|
|
int num_retries = 0;
|
2007-01-03 15:28:56 -05:00
|
|
|
int success;
|
2003-07-01 07:55:18 -04:00
|
|
|
|
2004-06-23 02:56:23 -04:00
|
|
|
LDAPControl **postread_ctrl = NULL;
|
2003-09-16 14:56:04 -04:00
|
|
|
LDAPControl *ctrls[SLAP_MAX_RESPONSE_CONTROLS];
|
|
|
|
|
int num_ctrls = 0;
|
|
|
|
|
|
2006-03-08 00:54:10 -05:00
|
|
|
#ifdef LDAP_X_TXN
|
|
|
|
|
int settle = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "==> " LDAP_XSTRING(bdb_add) ": %s\n",
|
2009-03-02 02:54:01 -05:00
|
|
|
op->ora_e->e_name.bv_val, 0, 0);
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2006-03-07 17:05:57 -05:00
|
|
|
#ifdef LDAP_X_TXN
|
2006-03-07 03:07:21 -05:00
|
|
|
if( op->o_txnSpec ) {
|
|
|
|
|
/* acquire connection lock */
|
|
|
|
|
ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
|
2006-03-08 00:54:10 -05:00
|
|
|
if( op->o_conn->c_txn == CONN_TXN_INACTIVE ) {
|
2006-03-07 03:07:21 -05:00
|
|
|
rs->sr_text = "invalid transaction identifier";
|
|
|
|
|
rs->sr_err = LDAP_X_TXN_ID_INVALID;
|
|
|
|
|
goto txnReturn;
|
2006-03-08 00:54:10 -05:00
|
|
|
} else if( op->o_conn->c_txn == CONN_TXN_SETTLE ) {
|
|
|
|
|
settle=1;
|
|
|
|
|
goto txnReturn;
|
2006-03-07 03:07:21 -05:00
|
|
|
}
|
2006-03-08 00:54:10 -05:00
|
|
|
|
2006-03-07 03:07:21 -05:00
|
|
|
if( op->o_conn->c_txn_backend == NULL ) {
|
|
|
|
|
op->o_conn->c_txn_backend = op->o_bd;
|
|
|
|
|
|
|
|
|
|
} else if( op->o_conn->c_txn_backend != op->o_bd ) {
|
|
|
|
|
rs->sr_text = "transaction cannot span multiple database contexts";
|
|
|
|
|
rs->sr_err = LDAP_AFFECTS_MULTIPLE_DSAS;
|
|
|
|
|
goto txnReturn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* insert operation into transaction */
|
|
|
|
|
|
|
|
|
|
rs->sr_text = "transaction specified";
|
2006-03-30 12:56:56 -05:00
|
|
|
rs->sr_err = LDAP_X_TXN_SPECIFY_OKAY;
|
2006-03-07 03:07:21 -05:00
|
|
|
|
|
|
|
|
txnReturn:
|
|
|
|
|
/* release connection lock */
|
|
|
|
|
ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
|
|
|
|
|
|
2006-03-08 00:54:10 -05:00
|
|
|
if( !settle ) {
|
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
|
return rs->sr_err;
|
|
|
|
|
}
|
2006-03-07 03:07:21 -05:00
|
|
|
}
|
2006-03-07 17:05:57 -05:00
|
|
|
#endif
|
2006-03-07 03:07:21 -05:00
|
|
|
|
2004-06-23 02:56:23 -04:00
|
|
|
ctrls[num_ctrls] = 0;
|
|
|
|
|
|
2006-11-27 14:59:59 -05:00
|
|
|
/* check entry's schema */
|
2009-03-02 02:54:01 -05:00
|
|
|
rs->sr_err = entry_schema_check( op, op->ora_e, NULL,
|
2009-02-04 17:36:49 -05:00
|
|
|
get_relax(op), 1, NULL, &rs->sr_text, textbuf, textlen );
|
2006-09-16 07:48:52 -04:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2006-11-27 14:59:59 -05:00
|
|
|
LDAP_XSTRING(bdb_add) ": entry failed schema check: "
|
2006-09-16 07:48:52 -04:00
|
|
|
"%s (%d)\n", rs->sr_text, rs->sr_err, 0 );
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2005-10-13 07:58:44 -04:00
|
|
|
|
2006-11-27 14:59:59 -05:00
|
|
|
/* add opattrs to shadow as well, only missing attrs will actually
|
|
|
|
|
* be added; helps compatibility with older OL versions */
|
|
|
|
|
rs->sr_err = slap_add_opattrs( op, &rs->sr_text, textbuf, textlen, 1 );
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2000-09-22 02:46:32 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2006-11-27 14:59:59 -05:00
|
|
|
LDAP_XSTRING(bdb_add) ": entry failed op attrs add: "
|
2004-11-17 09:53:03 -05:00
|
|
|
"%s (%d)\n", rs->sr_text, rs->sr_err, 0 );
|
2000-09-22 02:46:32 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-20 17:49:53 -05:00
|
|
|
if ( get_assert( op ) &&
|
|
|
|
|
( test_filter( op, op->ora_e, get_assertion( op )) != LDAP_COMPARE_TRUE ))
|
|
|
|
|
{
|
|
|
|
|
rs->sr_err = LDAP_ASSERTION_FAILED;
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-02 02:54:01 -05:00
|
|
|
subentry = is_entry_subentry( op->ora_e );
|
2002-01-10 13:18:37 -05:00
|
|
|
|
2008-08-26 21:45:35 -04:00
|
|
|
/* Get our reader TXN */
|
|
|
|
|
rs->sr_err = bdb_reader_get( op, bdb->bi_dbenv, &rtxn );
|
2006-12-30 07:05:55 -05:00
|
|
|
|
2001-11-27 16:59:56 -05:00
|
|
|
if( 0 ) {
|
2002-01-28 15:25:30 -05:00
|
|
|
retry: /* transaction retry */
|
2002-10-04 19:26:28 -04:00
|
|
|
if( p ) {
|
|
|
|
|
/* free parent and reader lock */
|
2006-05-17 21:18:48 -04:00
|
|
|
if ( p != (Entry *)&slap_entry_root ) {
|
2006-12-31 18:37:06 -05:00
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
2006-05-17 21:18:48 -04:00
|
|
|
}
|
2002-10-04 19:26:28 -04:00
|
|
|
p = NULL;
|
|
|
|
|
}
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = TXN_ABORT( ltid );
|
2000-09-23 19:15:40 -04:00
|
|
|
ltid = NULL;
|
2008-05-01 08:49:35 -04:00
|
|
|
LDAP_SLIST_REMOVE( &op->o_extra, &opinfo.boi_oe, OpExtra, oe_next );
|
|
|
|
|
opinfo.boi_oe.oe_key = NULL;
|
2003-02-26 07:09:10 -05:00
|
|
|
op->o_do_not_cache = opinfo.boi_acl_cache;
|
2003-03-30 04:03:54 -05:00
|
|
|
if( rs->sr_err != 0 ) {
|
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "internal error";
|
2000-09-23 19:15:40 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
2005-04-28 14:45:31 -04:00
|
|
|
if ( op->o_abandon ) {
|
|
|
|
|
rs->sr_err = SLAPD_ABANDON;
|
2005-04-28 14:50:24 -04:00
|
|
|
goto return_results;
|
2005-04-28 14:45:31 -04:00
|
|
|
}
|
2003-09-26 23:16:38 -04:00
|
|
|
bdb_trans_backoff( ++num_retries );
|
2000-09-23 19:15:40 -04:00
|
|
|
}
|
|
|
|
|
|
2000-09-22 02:46:32 -04:00
|
|
|
/* begin transaction */
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = TXN_BEGIN( bdb->bi_dbenv, NULL, <id,
|
2002-01-28 17:57:50 -05:00
|
|
|
bdb->bi_db_opflags );
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_text = NULL;
|
|
|
|
|
if( rs->sr_err != 0 ) {
|
2002-01-28 17:57:50 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 09:53:03 -05:00
|
|
|
LDAP_XSTRING(bdb_add) ": txn_begin failed: %s (%d)\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
db_strerror(rs->sr_err), rs->sr_err, 0 );
|
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "internal error";
|
2002-01-28 17:57:50 -05:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
2002-05-31 16:49:19 -04:00
|
|
|
|
2008-05-01 09:25:15 -04:00
|
|
|
opinfo.boi_oe.oe_key = bdb;
|
2000-09-27 18:28:59 -04:00
|
|
|
opinfo.boi_txn = ltid;
|
|
|
|
|
opinfo.boi_err = 0;
|
2003-02-26 07:09:10 -05:00
|
|
|
opinfo.boi_acl_cache = op->o_do_not_cache;
|
2008-05-01 08:49:35 -04:00
|
|
|
LDAP_SLIST_INSERT_HEAD( &op->o_extra, &opinfo.boi_oe, oe_next );
|
|
|
|
|
|
2000-09-22 02:46:32 -04:00
|
|
|
/*
|
|
|
|
|
* Get the parent dn and see if the corresponding entry exists.
|
|
|
|
|
*/
|
2009-03-02 02:54:01 -05:00
|
|
|
if ( be_issuffix( op->o_bd, &op->ora_e->e_nname ) ) {
|
2002-01-26 01:40:56 -05:00
|
|
|
pdn = slap_empty_bv;
|
2002-01-17 17:37:38 -05:00
|
|
|
} else {
|
2009-03-02 02:54:01 -05:00
|
|
|
dnParent( &op->ora_e->e_nname, &pdn );
|
2002-01-10 13:18:37 -05:00
|
|
|
}
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2003-04-16 12:23:36 -04:00
|
|
|
/* get entry or parent */
|
2003-05-24 20:53:08 -04:00
|
|
|
rs->sr_err = bdb_dn2entry( op, ltid, &op->ora_e->e_nname, &ei,
|
2008-08-26 21:45:35 -04:00
|
|
|
1, &lock );
|
2003-04-16 12:23:36 -04:00
|
|
|
switch( rs->sr_err ) {
|
|
|
|
|
case 0:
|
|
|
|
|
rs->sr_err = LDAP_ALREADY_EXISTS;
|
|
|
|
|
goto return_results;
|
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
|
break;
|
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
|
|
|
|
case LDAP_BUSY:
|
|
|
|
|
rs->sr_text = "ldap server busy";
|
|
|
|
|
goto return_results;
|
|
|
|
|
default:
|
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "internal error";
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2003-04-16 12:23:36 -04:00
|
|
|
p = ei->bei_e;
|
2006-05-17 21:18:48 -04:00
|
|
|
if ( !p )
|
|
|
|
|
p = (Entry *)&slap_entry_root;
|
|
|
|
|
|
|
|
|
|
if ( !bvmatch( &pdn, &p->e_nname ) ) {
|
|
|
|
|
rs->sr_matched = ber_strdup_x( p->e_name.bv_val,
|
|
|
|
|
op->o_tmpmemctx );
|
|
|
|
|
rs->sr_ref = is_entry_referral( p )
|
|
|
|
|
? get_entry_referrals( op, p )
|
|
|
|
|
: NULL;
|
2009-03-02 02:57:18 -05:00
|
|
|
if ( p != (Entry *)&slap_entry_root )
|
|
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
2006-05-17 21:18:48 -04:00
|
|
|
p = NULL;
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": parent "
|
|
|
|
|
"does not exist\n", 0, 0, 0 );
|
2002-01-19 14:54:48 -05:00
|
|
|
|
2006-05-17 21:18:48 -04:00
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
|
|
|
|
rs->sr_flags = REP_MATCHED_MUSTBEFREED | REP_REF_MUSTBEFREED;
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2003-02-26 07:49:21 -05:00
|
|
|
|
2006-05-17 21:18:48 -04:00
|
|
|
rs->sr_err = access_allowed( op, p,
|
|
|
|
|
children, NULL, ACL_WADD, NULL );
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2006-05-17 21:18:48 -04:00
|
|
|
if ( ! rs->sr_err ) {
|
|
|
|
|
switch( opinfo.boi_err ) {
|
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
2000-09-22 02:46:32 -04:00
|
|
|
}
|
|
|
|
|
|
2009-03-02 02:57:18 -05:00
|
|
|
if ( p != (Entry *)&slap_entry_root )
|
|
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
2009-03-02 02:54:01 -05:00
|
|
|
p = NULL;
|
|
|
|
|
|
2006-05-17 21:18:48 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": no write access to parent\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
rs->sr_text = "no write access to parent";
|
|
|
|
|
goto return_results;;
|
|
|
|
|
}
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2006-08-30 17:05:05 -04:00
|
|
|
if ( p != (Entry *)&slap_entry_root ) {
|
|
|
|
|
if ( is_entry_subentry( p ) ) {
|
2009-03-02 02:54:01 -05:00
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
|
|
|
|
p = NULL;
|
2006-08-30 17:05:05 -04:00
|
|
|
/* parent is a subentry, don't allow add */
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": parent is subentry\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
rs->sr_err = LDAP_OBJECT_CLASS_VIOLATION;
|
|
|
|
|
rs->sr_text = "parent is a subentry";
|
|
|
|
|
goto return_results;;
|
|
|
|
|
}
|
2002-01-10 13:18:37 -05:00
|
|
|
|
2006-08-30 17:05:05 -04:00
|
|
|
if ( is_entry_alias( p ) ) {
|
2009-03-02 02:54:01 -05:00
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
|
|
|
|
p = NULL;
|
2006-08-30 17:05:05 -04:00
|
|
|
/* parent is an alias, don't allow add */
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": parent is alias\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
rs->sr_err = LDAP_ALIAS_PROBLEM;
|
|
|
|
|
rs->sr_text = "parent is an alias";
|
|
|
|
|
goto return_results;;
|
|
|
|
|
}
|
2000-09-23 19:15:40 -04:00
|
|
|
|
2006-08-30 17:05:05 -04:00
|
|
|
if ( is_entry_referral( p ) ) {
|
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
|
rs->sr_matched = ber_strdup_x( p->e_name.bv_val,
|
|
|
|
|
op->o_tmpmemctx );
|
|
|
|
|
rs->sr_ref = get_entry_referrals( op, p );
|
2006-12-31 18:37:06 -05:00
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
2006-08-30 17:05:05 -04:00
|
|
|
p = NULL;
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": parent is referral\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
|
|
|
|
rs->sr_flags = REP_MATCHED_MUSTBEFREED | REP_REF_MUSTBEFREED;
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2006-05-17 21:18:48 -04:00
|
|
|
|
2007-11-11 15:32:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( subentry ) {
|
|
|
|
|
/* FIXME: */
|
|
|
|
|
/* parent must be an administrative point of the required kind */
|
2006-05-17 21:18:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* free parent and reader lock */
|
|
|
|
|
if ( p != (Entry *)&slap_entry_root ) {
|
2009-02-05 13:44:52 -05:00
|
|
|
if ( p->e_nname.bv_len ) {
|
|
|
|
|
struct berval ppdn;
|
|
|
|
|
|
|
|
|
|
/* ITS#5326: use parent's DN if differs from provided one */
|
|
|
|
|
dnParent( &op->ora_e->e_name, &ppdn );
|
|
|
|
|
if ( !dn_match( &p->e_name, &ppdn ) ) {
|
|
|
|
|
struct berval rdn;
|
|
|
|
|
struct berval newdn;
|
|
|
|
|
|
|
|
|
|
dnRdn( &op->ora_e->e_name, &rdn );
|
|
|
|
|
|
|
|
|
|
build_new_dn( &newdn, &p->e_name, &rdn, NULL );
|
2009-05-05 17:54:01 -04:00
|
|
|
if ( op->ora_e->e_name.bv_val != op->o_req_dn.bv_val )
|
|
|
|
|
ber_memfree( op->ora_e->e_name.bv_val );
|
2009-02-05 13:44:52 -05:00
|
|
|
op->ora_e->e_name = newdn;
|
|
|
|
|
|
|
|
|
|
/* FIXME: should check whether
|
|
|
|
|
* dnNormalize(newdn) == e->e_nname ... */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-31 18:37:06 -05:00
|
|
|
bdb_unlocked_cache_return_entry_r( bdb, p );
|
2000-09-22 02:46:32 -04:00
|
|
|
}
|
2006-05-17 21:18:48 -04:00
|
|
|
p = NULL;
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2009-03-02 02:54:01 -05:00
|
|
|
rs->sr_err = access_allowed( op, op->ora_e,
|
2005-04-07 20:18:24 -04:00
|
|
|
entry, NULL, ACL_WADD, NULL );
|
2002-10-04 19:26:28 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( ! rs->sr_err ) {
|
2003-02-26 07:49:21 -05:00
|
|
|
switch( opinfo.boi_err ) {
|
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": no write access to entry\n",
|
2002-10-04 19:26:28 -04:00
|
|
|
0, 0, 0 );
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
rs->sr_text = "no write access to entry";
|
2002-10-04 19:26:28 -04:00
|
|
|
goto return_results;;
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-29 18:08:29 -04:00
|
|
|
/*
|
|
|
|
|
* Check ACL for attribute write access
|
|
|
|
|
*/
|
|
|
|
|
if (!acl_check_modlist(op, oe, op->ora_modlist)) {
|
|
|
|
|
switch( opinfo.boi_err ) {
|
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": no write access to attribute\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
|
rs->sr_text = "no write access to attribute";
|
|
|
|
|
goto return_results;;
|
|
|
|
|
}
|
|
|
|
|
|
2008-02-09 19:56:44 -05:00
|
|
|
if ( eid == NOID ) {
|
|
|
|
|
rs->sr_err = bdb_next_id( op->o_bd, &eid );
|
|
|
|
|
if( rs->sr_err != 0 ) {
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": next_id failed (%d)\n",
|
|
|
|
|
rs->sr_err, 0, 0 );
|
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "internal error";
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2009-03-02 02:54:01 -05:00
|
|
|
op->ora_e->e_id = eid;
|
2008-02-09 19:56:44 -05:00
|
|
|
}
|
|
|
|
|
|
2003-04-16 12:23:36 -04:00
|
|
|
/* nested transaction */
|
|
|
|
|
rs->sr_err = TXN_BEGIN( bdb->bi_dbenv, ltid, <2,
|
|
|
|
|
bdb->bi_db_opflags );
|
|
|
|
|
rs->sr_text = NULL;
|
|
|
|
|
if( rs->sr_err != 0 ) {
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 09:53:03 -05:00
|
|
|
LDAP_XSTRING(bdb_add) ": txn_begin(2) failed: "
|
|
|
|
|
"%s (%d)\n", db_strerror(rs->sr_err), rs->sr_err, 0 );
|
2003-04-16 12:23:36 -04:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "internal error";
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-22 02:46:32 -04:00
|
|
|
/* dn2id index */
|
2009-03-02 02:54:01 -05:00
|
|
|
rs->sr_err = bdb_dn2id_add( op, lt2, ei, op->ora_e );
|
2003-03-30 04:03:54 -05:00
|
|
|
if ( rs->sr_err != 0 ) {
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": dn2id_add failed: %s (%d)\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
db_strerror(rs->sr_err), rs->sr_err, 0 );
|
2000-09-23 19:15:40 -04:00
|
|
|
|
2003-03-30 04:03:54 -05:00
|
|
|
switch( rs->sr_err ) {
|
2000-09-23 19:15:40 -04:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
|
|
|
|
case DB_KEYEXIST:
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_ALREADY_EXISTS;
|
2000-09-23 19:15:40 -04:00
|
|
|
break;
|
|
|
|
|
default:
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
2000-09-22 02:46:32 -04:00
|
|
|
}
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-08 19:20:18 -05:00
|
|
|
/* attribute indexes */
|
2009-03-02 02:54:01 -05:00
|
|
|
rs->sr_err = bdb_index_entry_add( op, lt2, op->ora_e );
|
2005-12-08 19:20:18 -05:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-12-08 19:20:18 -05:00
|
|
|
LDAP_XSTRING(bdb_add) ": index_entry_add failed\n",
|
2000-09-22 02:46:32 -04:00
|
|
|
0, 0, 0 );
|
2003-03-30 04:03:54 -05:00
|
|
|
switch( rs->sr_err ) {
|
2000-09-24 02:04:58 -04:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
|
|
|
|
default:
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
2000-09-24 02:04:58 -04:00
|
|
|
}
|
2005-12-08 19:20:18 -05:00
|
|
|
rs->sr_text = "index generation failed";
|
2000-09-22 02:46:32 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-08 19:20:18 -05:00
|
|
|
/* id2entry index */
|
2009-03-02 02:54:01 -05:00
|
|
|
rs->sr_err = bdb_id2entry_add( op->o_bd, lt2, op->ora_e );
|
2005-12-08 19:20:18 -05:00
|
|
|
if ( rs->sr_err != 0 ) {
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-12-08 19:20:18 -05:00
|
|
|
LDAP_XSTRING(bdb_add) ": id2entry_add failed\n",
|
2000-09-22 02:46:32 -04:00
|
|
|
0, 0, 0 );
|
2003-03-30 04:03:54 -05:00
|
|
|
switch( rs->sr_err ) {
|
2000-09-24 02:04:58 -04:00
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
|
goto retry;
|
|
|
|
|
default:
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
2000-09-24 02:04:58 -04:00
|
|
|
}
|
2005-12-08 19:20:18 -05:00
|
|
|
rs->sr_text = "entry store failed";
|
2000-09-22 02:46:32 -04:00
|
|
|
goto return_results;
|
|
|
|
|
}
|
2005-12-08 19:20:18 -05:00
|
|
|
|
2003-04-16 12:23:36 -04:00
|
|
|
if ( TXN_COMMIT( lt2, 0 ) != 0 ) {
|
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
|
|
|
|
rs->sr_text = "txn_commit(2) failed";
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2002-10-25 13:51:30 -04:00
|
|
|
|
2004-06-23 02:02:49 -04:00
|
|
|
/* post-read */
|
|
|
|
|
if( op->o_postread ) {
|
2004-06-23 02:56:23 -04:00
|
|
|
if( postread_ctrl == NULL ) {
|
|
|
|
|
postread_ctrl = &ctrls[num_ctrls++];
|
|
|
|
|
ctrls[num_ctrls] = NULL;
|
|
|
|
|
}
|
2009-03-02 02:54:01 -05:00
|
|
|
if ( slap_read_controls( op, rs, op->ora_e,
|
2004-06-23 02:56:23 -04:00
|
|
|
&slap_post_read_bv, postread_ctrl ) )
|
2004-06-23 02:02:49 -04:00
|
|
|
{
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2004-11-17 09:53:03 -05:00
|
|
|
"<=- " LDAP_XSTRING(bdb_add) ": post-read "
|
|
|
|
|
"failed!\n", 0, 0, 0 );
|
2006-10-13 21:08:41 -04:00
|
|
|
if ( op->o_postread & SLAP_CONTROL_CRITICAL ) {
|
|
|
|
|
/* FIXME: is it correct to abort
|
|
|
|
|
* operation if control fails? */
|
|
|
|
|
goto return_results;
|
|
|
|
|
}
|
2004-06-23 02:02:49 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-22 22:51:33 -04:00
|
|
|
if ( op->o_noop ) {
|
2003-03-30 04:03:54 -05:00
|
|
|
if (( rs->sr_err=TXN_ABORT( ltid )) != 0 ) {
|
|
|
|
|
rs->sr_text = "txn_abort (no-op) failed";
|
2002-02-01 22:28:32 -05:00
|
|
|
} else {
|
2005-11-02 20:27:07 -05:00
|
|
|
rs->sr_err = LDAP_X_NO_OPERATION;
|
2005-10-17 04:09:28 -04:00
|
|
|
ltid = NULL;
|
2003-12-29 18:31:39 -05:00
|
|
|
goto return_results;
|
2002-02-01 22:28:32 -05:00
|
|
|
}
|
|
|
|
|
|
2002-01-28 19:02:27 -05:00
|
|
|
} else {
|
2003-12-24 08:27:03 -05:00
|
|
|
struct berval nrdn;
|
2002-02-01 22:28:32 -05:00
|
|
|
|
2005-11-04 15:00:03 -05:00
|
|
|
/* pick the RDN if not suffix; otherwise pick the entire DN */
|
|
|
|
|
if (pdn.bv_len) {
|
2006-12-01 09:48:38 -05:00
|
|
|
nrdn.bv_val = op->ora_e->e_nname.bv_val;
|
2005-11-04 15:00:03 -05:00
|
|
|
nrdn.bv_len = pdn.bv_val - op->ora_e->e_nname.bv_val - 1;
|
|
|
|
|
} else {
|
2006-12-01 09:48:38 -05:00
|
|
|
nrdn = op->ora_e->e_nname;
|
2005-11-04 15:00:03 -05:00
|
|
|
}
|
2002-05-31 16:49:19 -04:00
|
|
|
|
2008-08-26 21:45:35 -04:00
|
|
|
/* Use the reader txn here, outside the add txn */
|
|
|
|
|
bdb_cache_add( bdb, ei, op->ora_e, &nrdn, rtxn, &lock );
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2003-12-24 08:27:03 -05:00
|
|
|
if(( rs->sr_err=TXN_COMMIT( ltid, 0 )) != 0 ) {
|
|
|
|
|
rs->sr_text = "txn_commit failed";
|
|
|
|
|
} else {
|
|
|
|
|
rs->sr_err = LDAP_SUCCESS;
|
2002-02-01 22:28:32 -05:00
|
|
|
}
|
2002-01-28 19:02:27 -05:00
|
|
|
}
|
2002-02-01 22:28:32 -05:00
|
|
|
|
2000-09-22 02:46:32 -04:00
|
|
|
ltid = NULL;
|
2008-05-01 08:49:35 -04:00
|
|
|
LDAP_SLIST_REMOVE( &op->o_extra, &opinfo.boi_oe, OpExtra, oe_next );
|
|
|
|
|
opinfo.boi_oe.oe_key = NULL;
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2003-12-29 18:31:39 -05:00
|
|
|
if ( rs->sr_err != LDAP_SUCCESS ) {
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": %s : %s (%d)\n",
|
2003-03-30 04:03:54 -05:00
|
|
|
rs->sr_text, db_strerror(rs->sr_err), rs->sr_err );
|
|
|
|
|
rs->sr_err = LDAP_OTHER;
|
2003-09-16 14:56:04 -04:00
|
|
|
goto return_results;
|
2000-09-22 02:46:32 -04:00
|
|
|
}
|
2002-01-25 02:19:01 -05:00
|
|
|
|
2004-11-17 09:53:03 -05:00
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
|
|
|
|
LDAP_XSTRING(bdb_add) ": added%s id=%08lx dn=\"%s\"\n",
|
2003-09-16 14:56:04 -04:00
|
|
|
op->o_noop ? " (no-op)" : "",
|
2009-03-02 02:54:01 -05:00
|
|
|
op->ora_e->e_id, op->ora_e->e_dn );
|
2003-09-16 14:56:04 -04:00
|
|
|
|
|
|
|
|
rs->sr_text = NULL;
|
|
|
|
|
if( num_ctrls ) rs->sr_ctrls = ctrls;
|
|
|
|
|
|
2000-09-22 02:46:32 -04:00
|
|
|
return_results:
|
2007-01-03 15:28:56 -05:00
|
|
|
success = rs->sr_err;
|
2003-03-30 04:03:54 -05:00
|
|
|
send_ldap_result( op, rs );
|
2000-09-22 02:46:32 -04:00
|
|
|
|
|
|
|
|
if( ltid != NULL ) {
|
2002-02-01 22:28:32 -05:00
|
|
|
TXN_ABORT( ltid );
|
2000-09-22 02:46:32 -04:00
|
|
|
}
|
2008-05-01 08:49:35 -04:00
|
|
|
if ( opinfo.boi_oe.oe_key ) {
|
|
|
|
|
LDAP_SLIST_REMOVE( &op->o_extra, &opinfo.boi_oe, OpExtra, oe_next );
|
|
|
|
|
}
|
2000-09-22 02:46:32 -04:00
|
|
|
|
2007-01-03 15:28:56 -05:00
|
|
|
if( success == LDAP_SUCCESS ) {
|
2006-12-01 09:48:38 -05:00
|
|
|
/* We own the entry now, and it can be purged at will
|
|
|
|
|
* Check to make sure it's the same entry we entered with.
|
|
|
|
|
* Possibly a callback may have mucked with it, although
|
|
|
|
|
* in general callbacks should treat the entry as read-only.
|
|
|
|
|
*/
|
2006-12-31 18:37:06 -05:00
|
|
|
bdb_cache_return_entry_r( bdb, oe, &lock );
|
2006-12-01 09:48:38 -05:00
|
|
|
if ( op->ora_e == oe )
|
|
|
|
|
op->ora_e = NULL;
|
|
|
|
|
|
|
|
|
|
if ( bdb->bi_txn_cp_kbyte ) {
|
|
|
|
|
TXN_CHECKPOINT( bdb->bi_dbenv,
|
|
|
|
|
bdb->bi_txn_cp_kbyte, bdb->bi_txn_cp_min, 0 );
|
|
|
|
|
}
|
2005-10-13 07:58:44 -04:00
|
|
|
}
|
2006-12-30 07:05:55 -05:00
|
|
|
|
2010-06-29 20:00:59 -04:00
|
|
|
slap_graduate_commit_csn( op );
|
|
|
|
|
|
2006-12-30 07:05:55 -05:00
|
|
|
if( postread_ctrl != NULL && (*postread_ctrl) != NULL ) {
|
|
|
|
|
slap_sl_free( (*postread_ctrl)->ldctl_value.bv_val, op->o_tmpmemctx );
|
|
|
|
|
slap_sl_free( *postread_ctrl, op->o_tmpmemctx );
|
|
|
|
|
}
|
2003-12-29 18:31:39 -05:00
|
|
|
return rs->sr_err;
|
2000-09-22 02:46:32 -04:00
|
|
|
}
|