2000-09-20 15:21:09 +08:00
|
|
|
/* dn2id.c - routines to deal with the dn2id index */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-20 15:21:09 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
2001-06-15 15:08:37 +08:00
|
|
|
#include "idl.h"
|
2002-09-19 14:08:12 +08:00
|
|
|
#include "lutil.h"
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2001-12-07 20:38:25 +08:00
|
|
|
#ifndef BDB_HIER
|
2000-09-20 15:21:09 +08:00
|
|
|
int
|
2000-09-22 14:46:32 +08:00
|
|
|
bdb_dn2id_add(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
2000-09-20 15:21:09 +08:00
|
|
|
DB_TXN *txn,
|
2003-04-22 12:06:09 +08:00
|
|
|
EntryInfo *eip,
|
2003-04-22 02:28:38 +08:00
|
|
|
Entry *e,
|
|
|
|
void *ctx )
|
2000-09-20 15:21:09 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
2001-12-08 18:10:04 +08:00
|
|
|
int rc;
|
|
|
|
DBT key, data;
|
2002-01-26 14:40:56 +08:00
|
|
|
char *buf;
|
|
|
|
struct berval ptr, pdn;
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ARGS, "bdb_dn2id_add( \"%s\", 0x%08lx )\n",
|
|
|
|
e->e_ndn, (long) e->e_id, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-27 03:26:08 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_add( \"%s\", 0x%08lx )\n",
|
2001-12-06 11:26:37 +08:00
|
|
|
e->e_ndn, (long) e->e_id, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-06 11:26:37 +08:00
|
|
|
assert( e->e_id != NOID );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
|
|
|
DBTzero( &key );
|
2001-12-26 14:21:06 +08:00
|
|
|
key.size = e->e_nname.bv_len + 2;
|
2002-04-25 13:16:15 +08:00
|
|
|
key.ulen = key.size;
|
|
|
|
key.flags = DB_DBT_USERMEM;
|
2003-04-22 02:28:38 +08:00
|
|
|
buf = sl_malloc( key.size, ctx );
|
2001-12-08 18:10:04 +08:00
|
|
|
key.data = buf;
|
|
|
|
buf[0] = DN_BASE_PREFIX;
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val = buf + 1;
|
|
|
|
ptr.bv_len = e->e_nname.bv_len;
|
|
|
|
AC_MEMCPY( ptr.bv_val, e->e_nname.bv_val, e->e_nname.bv_len );
|
|
|
|
ptr.bv_val[ptr.bv_len] = '\0';
|
2000-09-20 15:21:09 +08:00
|
|
|
|
|
|
|
DBTzero( &data );
|
2001-12-06 11:26:37 +08:00
|
|
|
data.data = (char *) &e->e_id;
|
|
|
|
data.size = sizeof( e->e_id );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
|
|
|
/* store it -- don't override */
|
|
|
|
rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
|
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR, "bdb_dn2id_add: put failed: %s %d\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-26 09:36:35 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_add: put failed: %s %d\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-20 15:21:09 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifndef BDB_MULTIPLE_SUFFIXES
|
2002-01-26 14:40:56 +08:00
|
|
|
if( !be_issuffix( be, &ptr )) {
|
2003-01-31 06:00:16 +08:00
|
|
|
#endif
|
2001-12-11 00:59:37 +08:00
|
|
|
buf[0] = DN_SUBTREE_PREFIX;
|
2003-01-31 06:00:16 +08:00
|
|
|
rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
|
2001-12-11 00:59:37 +08:00
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
2003-01-31 06:00:16 +08:00
|
|
|
"=> bdb_dn2id_add: subtree (%s) put failed: %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-11 00:59:37 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-01-31 06:00:16 +08:00
|
|
|
"=> bdb_dn2id_add: subtree (%s) put failed: %d\n",
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-11 00:59:37 +08:00
|
|
|
goto done;
|
|
|
|
}
|
2002-01-18 06:37:38 +08:00
|
|
|
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifdef BDB_MULTIPLE_SUFFIXES
|
|
|
|
if( !be_issuffix( be, &ptr )) {
|
|
|
|
#endif
|
2002-01-26 16:44:59 +08:00
|
|
|
dnParent( &ptr, &pdn );
|
2002-01-18 06:37:38 +08:00
|
|
|
|
2002-01-26 14:40:56 +08:00
|
|
|
key.size = pdn.bv_len + 2;
|
2002-04-25 13:16:15 +08:00
|
|
|
key.ulen = key.size;
|
2002-01-26 14:40:56 +08:00
|
|
|
pdn.bv_val[-1] = DN_ONE_PREFIX;
|
|
|
|
key.data = pdn.bv_val-1;
|
2002-01-18 07:45:40 +08:00
|
|
|
ptr = pdn;
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2001-12-08 18:10:04 +08:00
|
|
|
rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
|
|
|
|
|
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
2002-03-27 04:04:30 +08:00
|
|
|
"=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-08 18:10:04 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-08 18:10:04 +08:00
|
|
|
goto done;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifndef BDB_MULTIPLE_SUFFIXES
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
|
|
|
|
2002-01-26 14:40:56 +08:00
|
|
|
while( !be_issuffix( be, &ptr )) {
|
2003-01-31 06:00:16 +08:00
|
|
|
#else
|
|
|
|
for (;;) {
|
|
|
|
#endif
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
|
2001-12-08 18:10:04 +08:00
|
|
|
|
|
|
|
rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2001-12-08 18:10:04 +08:00
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
2002-03-27 04:04:30 +08:00
|
|
|
"=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-08 18:10:04 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-08 18:10:04 +08:00
|
|
|
break;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifdef BDB_MULTIPLE_SUFFIXES
|
|
|
|
if( be_issuffix( be, &ptr )) break;
|
|
|
|
#endif
|
2002-01-26 16:44:59 +08:00
|
|
|
dnParent( &ptr, &pdn );
|
2002-01-18 06:37:38 +08:00
|
|
|
|
2002-01-26 14:40:56 +08:00
|
|
|
key.size = pdn.bv_len + 2;
|
2002-04-25 13:16:15 +08:00
|
|
|
key.ulen = key.size;
|
2002-01-26 14:40:56 +08:00
|
|
|
key.data = pdn.bv_val - 1;
|
2002-01-18 07:45:40 +08:00
|
|
|
ptr = pdn;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifdef BDB_MULTIPLE_SUFFIXES
|
|
|
|
}
|
|
|
|
#endif
|
2000-09-20 15:21:09 +08:00
|
|
|
|
|
|
|
done:
|
2003-04-22 02:28:38 +08:00
|
|
|
sl_free( buf, ctx );
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, RESULTS, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-26 11:47:56 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-24 14:04:58 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
bdb_dn2id_delete(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
2000-09-24 14:04:58 +08:00
|
|
|
DB_TXN *txn,
|
2003-04-22 12:06:09 +08:00
|
|
|
EntryInfo *eip,
|
2003-04-22 02:28:38 +08:00
|
|
|
Entry *e,
|
|
|
|
void *ctx )
|
2000-09-24 14:04:58 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
2001-12-08 18:10:04 +08:00
|
|
|
int rc;
|
|
|
|
DBT key;
|
2002-01-26 14:40:56 +08:00
|
|
|
char *buf;
|
|
|
|
struct berval pdn, ptr;
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ARGS,
|
|
|
|
"=> bdb_dn2id_delete ( \"%s\", 0x%08lx )\n", e->e_ndn, e->e_id, 0);
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-27 03:26:08 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_delete( \"%s\", 0x%08lx )\n",
|
2001-12-08 18:10:04 +08:00
|
|
|
e->e_ndn, e->e_id, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-24 14:04:58 +08:00
|
|
|
|
|
|
|
DBTzero( &key );
|
2001-12-26 14:21:06 +08:00
|
|
|
key.size = e->e_nname.bv_len + 2;
|
2003-04-22 02:28:38 +08:00
|
|
|
buf = sl_malloc( key.size, ctx );
|
2001-12-08 18:10:04 +08:00
|
|
|
key.data = buf;
|
2001-12-06 21:20:18 +08:00
|
|
|
key.flags = DB_DBT_USERMEM;
|
2001-12-08 18:10:04 +08:00
|
|
|
buf[0] = DN_BASE_PREFIX;
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val = buf+1;
|
|
|
|
ptr.bv_len = e->e_nname.bv_len;
|
|
|
|
AC_MEMCPY( ptr.bv_val, e->e_nname.bv_val, e->e_nname.bv_len );
|
|
|
|
ptr.bv_val[ptr.bv_len] = '\0';
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2001-12-06 11:26:37 +08:00
|
|
|
/* delete it */
|
2000-09-24 14:04:58 +08:00
|
|
|
rc = db->del( db, txn, &key, 0 );
|
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
2002-03-27 04:04:30 +08:00
|
|
|
"=> bdb_dn2id_delete: delete failed: %s %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-26 09:36:35 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_delete: delete failed: %s %d\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-24 14:04:58 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifndef BDB_MULTIPLE_SUFFIXES
|
2002-01-26 14:40:56 +08:00
|
|
|
if( !be_issuffix( be, &ptr )) {
|
2003-01-31 06:00:16 +08:00
|
|
|
#endif
|
2001-12-11 00:59:37 +08:00
|
|
|
buf[0] = DN_SUBTREE_PREFIX;
|
2002-04-25 13:16:15 +08:00
|
|
|
rc = db->del( db, txn, &key, 0 );
|
2001-12-11 00:59:37 +08:00
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
|
|
|
"=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
|
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-11 00:59:37 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-12-08 18:10:04 +08:00
|
|
|
"=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-11 00:59:37 +08:00
|
|
|
goto done;
|
|
|
|
}
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifdef BDB_MULTIPLE_SUFFIXES
|
|
|
|
if( !be_issuffix( be, &ptr )) {
|
|
|
|
#endif
|
2002-01-26 16:44:59 +08:00
|
|
|
dnParent( &ptr, &pdn );
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2002-01-26 14:40:56 +08:00
|
|
|
key.size = pdn.bv_len + 2;
|
2002-04-25 13:16:15 +08:00
|
|
|
key.ulen = key.size;
|
2002-01-26 14:40:56 +08:00
|
|
|
pdn.bv_val[-1] = DN_ONE_PREFIX;
|
|
|
|
key.data = pdn.bv_val - 1;
|
2002-01-18 07:45:40 +08:00
|
|
|
ptr = pdn;
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2001-12-08 18:10:04 +08:00
|
|
|
rc = bdb_idl_delete_key( be, db, txn, &key, e->e_id );
|
|
|
|
|
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
2002-03-27 04:04:30 +08:00
|
|
|
"=> bdb_dn2id_delete: parent (%s) delete failed: %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-08 18:10:04 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"=> bdb_dn2id_delete: parent (%s) delete failed: %d\n",
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-08 18:10:04 +08:00
|
|
|
goto done;
|
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifndef BDB_MULTIPLE_SUFFIXES
|
2000-09-24 14:04:58 +08:00
|
|
|
}
|
|
|
|
|
2002-01-26 14:40:56 +08:00
|
|
|
while( !be_issuffix( be, &ptr )) {
|
2003-01-31 06:00:16 +08:00
|
|
|
#else
|
|
|
|
for (;;) {
|
|
|
|
#endif
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2001-12-08 18:10:04 +08:00
|
|
|
rc = bdb_idl_delete_key( be, db, txn, &key, e->e_id );
|
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
2002-03-27 04:04:30 +08:00
|
|
|
"=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-08 18:10:04 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
|
2002-01-26 14:40:56 +08:00
|
|
|
ptr.bv_val, rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-12-08 18:10:04 +08:00
|
|
|
goto done;
|
2000-09-24 14:04:58 +08:00
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifdef BDB_MULTIPLE_SUFFIXES
|
|
|
|
if( be_issuffix( be, &ptr )) break;
|
|
|
|
#endif
|
2002-01-26 16:44:59 +08:00
|
|
|
dnParent( &ptr, &pdn );
|
2002-01-18 06:37:38 +08:00
|
|
|
|
2002-01-26 14:40:56 +08:00
|
|
|
key.size = pdn.bv_len + 2;
|
2002-04-25 13:16:15 +08:00
|
|
|
key.ulen = key.size;
|
2002-01-26 14:40:56 +08:00
|
|
|
key.data = pdn.bv_val - 1;
|
2002-01-18 07:45:40 +08:00
|
|
|
ptr = pdn;
|
2000-09-24 14:04:58 +08:00
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifdef BDB_MULTIPLE_SUFFIXES
|
|
|
|
}
|
|
|
|
#endif
|
2000-09-24 14:04:58 +08:00
|
|
|
|
|
|
|
done:
|
2003-04-22 02:28:38 +08:00
|
|
|
sl_free( buf, ctx );
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, RESULTS, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2002-03-27 05:34:03 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-24 14:04:58 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-09-25 06:48:13 +08:00
|
|
|
bdb_dn2id(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
2000-09-24 14:04:58 +08:00
|
|
|
DB_TXN *txn,
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval *dn,
|
2003-04-22 02:28:38 +08:00
|
|
|
EntryInfo *ei,
|
2003-04-17 00:23:36 +08:00
|
|
|
void *ctx )
|
2000-09-24 14:04:58 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
DBT key, data;
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ARGS, "=> bdb_dn2id( \"%s\" )\n", dn->bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-27 07:26:17 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id( \"%s\" )\n", dn->bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-24 14:04:58 +08:00
|
|
|
|
|
|
|
DBTzero( &key );
|
2001-12-27 07:26:17 +08:00
|
|
|
key.size = dn->bv_len + 2;
|
2003-04-17 00:23:36 +08:00
|
|
|
key.data = sl_malloc( key.size, ctx );
|
2000-09-25 06:48:13 +08:00
|
|
|
((char *)key.data)[0] = DN_BASE_PREFIX;
|
2001-12-27 07:26:17 +08:00
|
|
|
AC_MEMCPY( &((char *)key.data)[1], dn->bv_val, key.size - 1 );
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2000-09-25 06:48:13 +08:00
|
|
|
/* store the ID */
|
2000-09-24 14:04:58 +08:00
|
|
|
DBTzero( &data );
|
2003-04-22 02:28:38 +08:00
|
|
|
data.data = &ei->bei_id;
|
2000-09-25 06:48:13 +08:00
|
|
|
data.ulen = sizeof(ID);
|
2000-09-24 14:04:58 +08:00
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
|
2000-09-25 06:48:13 +08:00
|
|
|
/* fetch it */
|
2003-04-17 00:23:36 +08:00
|
|
|
rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2000-09-28 10:42:20 +08:00
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR, "<= bdb_dn2id: get failed %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-28 10:42:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: get failed: %s (%d)\n",
|
|
|
|
db_strerror( rc ), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-28 10:42:20 +08:00
|
|
|
} else {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, RESULTS,
|
2003-04-22 02:28:38 +08:00
|
|
|
"<= bdb_dn2id: got id=0x%08lx\n", ei->bei_id, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-28 10:42:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: got id=0x%08lx\n",
|
2003-04-22 02:28:38 +08:00
|
|
|
ei->bei_id, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-28 10:42:20 +08:00
|
|
|
}
|
2000-09-24 14:04:58 +08:00
|
|
|
|
2003-04-17 00:23:36 +08:00
|
|
|
sl_free( key.data, ctx );
|
2000-09-25 06:48:13 +08:00
|
|
|
return rc;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
|
|
|
|
2000-09-25 06:48:13 +08:00
|
|
|
int
|
|
|
|
bdb_dn2id_children(
|
2003-04-17 08:52:31 +08:00
|
|
|
Operation *op,
|
2000-09-25 06:48:13 +08:00
|
|
|
DB_TXN *txn,
|
2003-04-17 08:52:31 +08:00
|
|
|
Entry *e )
|
2000-09-20 15:21:09 +08:00
|
|
|
{
|
2003-04-22 12:06:09 +08:00
|
|
|
DBT key, data;
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
|
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
|
|
|
ID id;
|
2000-09-25 06:48:13 +08:00
|
|
|
int rc;
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ARGS,
|
2003-04-17 08:52:31 +08:00
|
|
|
"=> bdb_dn2id_children( %s )\n", e->e_nname.bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2000-09-25 06:48:13 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_children( %s )\n",
|
2003-04-17 08:52:31 +08:00
|
|
|
e->e_nname.bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-25 06:48:13 +08:00
|
|
|
DBTzero( &key );
|
2003-04-17 08:52:31 +08:00
|
|
|
key.size = e->e_nname.bv_len + 2;
|
|
|
|
key.data = sl_malloc( key.size, op->o_tmpmemctx );
|
2000-09-25 06:48:13 +08:00
|
|
|
((char *)key.data)[0] = DN_ONE_PREFIX;
|
2003-04-17 08:52:31 +08:00
|
|
|
AC_MEMCPY( &((char *)key.data)[1], e->e_nname.bv_val, key.size - 1 );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
if ( bdb->bi_idl_cache_size ) {
|
|
|
|
rc = bdb_idl_cache_get( bdb, db, &key, NULL );
|
|
|
|
if ( rc != LDAP_NO_SUCH_OBJECT ) {
|
2003-04-22 13:15:50 +08:00
|
|
|
sl_free( key.data, op->o_tmpmemctx );
|
2003-04-22 13:14:27 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2000-09-25 06:48:13 +08:00
|
|
|
/* we actually could do a empty get... */
|
|
|
|
DBTzero( &data );
|
|
|
|
data.data = &id;
|
|
|
|
data.ulen = sizeof(id);
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
data.doff = 0;
|
|
|
|
data.dlen = sizeof(id);
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2003-04-17 08:52:31 +08:00
|
|
|
rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
|
|
|
|
sl_free( key.data, op->o_tmpmemctx );
|
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, DETAIL1,
|
2003-04-17 00:23:36 +08:00
|
|
|
"<= bdb_dn2id_children( %s ): %s (%d)\n",
|
2003-04-17 08:52:31 +08:00
|
|
|
e->e_nname.bv_val, rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
|
2002-07-12 04:33:24 +08:00
|
|
|
db_strerror(rc)), rc );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2003-04-17 00:23:36 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_children( %s ): %s (%d)\n",
|
2003-04-17 08:52:31 +08:00
|
|
|
e->e_nname.bv_val,
|
2000-09-28 08:24:28 +08:00
|
|
|
rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
|
2000-09-25 06:48:13 +08:00
|
|
|
db_strerror(rc) ), rc );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2000-09-25 06:48:13 +08:00
|
|
|
return rc;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
bdb_dn2idl(
|
|
|
|
BackendDB *be,
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval *dn,
|
2001-06-15 15:08:37 +08:00
|
|
|
int prefix,
|
2003-04-22 14:29:13 +08:00
|
|
|
ID *ids,
|
|
|
|
void *ctx )
|
2001-06-15 15:08:37 +08:00
|
|
|
{
|
|
|
|
int rc;
|
2001-12-09 10:34:45 +08:00
|
|
|
DBT key;
|
2001-06-15 15:08:37 +08:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ARGS,
|
|
|
|
"=> bdb_dn2ididl( \"%s\" )\n", dn->bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-12-27 07:26:17 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2idl( \"%s\" )\n", dn->bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2003-01-31 06:00:16 +08:00
|
|
|
#ifndef BDB_MULTIPLE_SUFFIXES
|
2002-01-26 14:40:56 +08:00
|
|
|
if (prefix == DN_SUBTREE_PREFIX && be_issuffix(be, dn))
|
2001-12-03 22:04:06 +08:00
|
|
|
{
|
|
|
|
BDB_IDL_ALL(bdb, ids);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-01-31 06:00:16 +08:00
|
|
|
#endif
|
2001-12-03 22:04:06 +08:00
|
|
|
|
2001-06-15 15:08:37 +08:00
|
|
|
DBTzero( &key );
|
2001-12-27 07:26:17 +08:00
|
|
|
key.size = dn->bv_len + 2;
|
2002-04-25 13:16:15 +08:00
|
|
|
key.ulen = key.size;
|
|
|
|
key.flags = DB_DBT_USERMEM;
|
2003-04-22 14:29:13 +08:00
|
|
|
key.data = sl_malloc( key.size, ctx );
|
2001-06-15 15:08:37 +08:00
|
|
|
((char *)key.data)[0] = prefix;
|
2001-12-27 07:26:17 +08:00
|
|
|
AC_MEMCPY( &((char *)key.data)[1], dn->bv_val, key.size - 1 );
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2001-12-06 22:15:47 +08:00
|
|
|
rc = bdb_idl_fetch_key( be, db, NULL, &key, ids );
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
if( rc != 0 ) {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, ERR,
|
|
|
|
"<= bdb_dn2ididl: get failed: %s (%d)\n", db_strerror(rc), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-06-15 15:08:37 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<= bdb_dn2idl: get failed: %s (%d)\n",
|
|
|
|
db_strerror( rc ), rc, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-10-14 00:55:54 +08:00
|
|
|
|
2001-06-15 15:08:37 +08:00
|
|
|
} else {
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG ( INDEX, RESULTS,
|
2002-03-27 04:04:30 +08:00
|
|
|
"<= bdb_dn2ididl: id=%ld first=%ld last=%ld\n",
|
|
|
|
(long) ids[0], (long) BDB_IDL_FIRST( ids ),
|
2002-07-12 04:33:24 +08:00
|
|
|
(long) BDB_IDL_LAST( ids ) );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2001-06-15 15:08:37 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<= bdb_dn2idl: id=%ld first=%ld last=%ld\n",
|
2001-10-14 00:55:54 +08:00
|
|
|
(long) ids[0],
|
|
|
|
(long) BDB_IDL_FIRST( ids ), (long) BDB_IDL_LAST( ids ) );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2001-06-15 15:08:37 +08:00
|
|
|
}
|
|
|
|
|
2003-04-22 14:29:13 +08:00
|
|
|
sl_free( key.data, ctx );
|
2001-06-15 15:08:37 +08:00
|
|
|
return rc;
|
|
|
|
}
|
2001-12-07 20:38:25 +08:00
|
|
|
#else /* BDB_HIER */
|
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
/* Experimental management routines for a hierarchically structured database.
|
2001-12-07 20:38:25 +08:00
|
|
|
*
|
|
|
|
* Unsupported! Use at your own risk!
|
2003-04-22 14:29:13 +08:00
|
|
|
* -- Howard Chu, Symas Corp. 2003.
|
2001-12-07 20:38:25 +08:00
|
|
|
*
|
2003-04-22 12:06:09 +08:00
|
|
|
* Instead of a ldbm-style dn2id database, we use a hierarchical one. Each
|
|
|
|
* entry in this database is a struct diskNode, keyed by entryID and with
|
|
|
|
* the data containing the RDN and entryID of the node's children. We use
|
|
|
|
* a B-Tree with sorted duplicates to store all the children of a node under
|
|
|
|
* the same key. Also, the first item under the key contains an empty rdn
|
|
|
|
* and the ID of the node's parent, to allow bottom-up tree traversal as
|
|
|
|
* well as top-down.
|
|
|
|
*
|
|
|
|
* The diskNode is a variable length structure. This definition is not
|
|
|
|
* directly usable for in-memory manipulation.
|
2001-12-07 20:38:25 +08:00
|
|
|
*/
|
|
|
|
typedef struct diskNode {
|
2003-04-22 12:06:09 +08:00
|
|
|
ID entryID;
|
|
|
|
short nrdnlen;
|
|
|
|
char nrdn[1];
|
|
|
|
char rdn[1];
|
2001-12-07 20:38:25 +08:00
|
|
|
} diskNode;
|
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
/* Sort function for the sorted duplicate data items of a dn2id key.
|
|
|
|
* Sorts based on normalized RDN, in lexical order.
|
2001-12-07 20:38:25 +08:00
|
|
|
*/
|
2003-04-22 12:06:09 +08:00
|
|
|
int
|
|
|
|
bdb_hdb_compare(
|
|
|
|
DB *db,
|
|
|
|
const DBT *usrkey,
|
|
|
|
const DBT *curkey
|
2001-12-07 20:38:25 +08:00
|
|
|
)
|
|
|
|
{
|
2003-04-22 12:06:09 +08:00
|
|
|
diskNode *usr = usrkey->data;
|
|
|
|
diskNode *cur = curkey->data;
|
|
|
|
short curlen;
|
|
|
|
char *ptr = (char *)&cur->nrdnlen;
|
2002-09-19 14:08:12 +08:00
|
|
|
int rc;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
curlen = ptr[0] << 8 | ptr[1];
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
rc = strncmp( usr->nrdn, cur->nrdn, usr->nrdnlen );
|
|
|
|
if ( rc == 0 ) rc = usrlen - curlen;
|
2001-12-07 20:38:25 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
/* This function constructs a full DN for a given entry.
|
2001-12-07 20:38:25 +08:00
|
|
|
*/
|
|
|
|
int bdb_fix_dn(
|
|
|
|
BackendDB *be,
|
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2003-04-22 13:14:27 +08:00
|
|
|
EntryInfo *ei;
|
|
|
|
int rlen = 0, nrlen = 0;
|
2001-12-07 20:38:25 +08:00
|
|
|
char *ptr, *nptr;
|
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
for ( ei = BEI(e); ei; ei=ei->bei_parent ) {
|
|
|
|
rlen += ei->bei_rdn.bv_len + 1;
|
|
|
|
nrlen += ei->bei_nrdn.bv_len + 1;
|
2001-12-07 20:38:25 +08:00
|
|
|
}
|
2001-12-27 07:26:17 +08:00
|
|
|
e->e_name.bv_len = rlen - 1;
|
|
|
|
e->e_nname.bv_len = nrlen - 1;
|
|
|
|
e->e_name.bv_val = ch_malloc(rlen + nrlen);
|
|
|
|
e->e_nname.bv_val = e->e_name.bv_val + rlen;
|
|
|
|
ptr = e->e_name.bv_val;
|
|
|
|
nptr = e->e_nname.bv_val;
|
2003-04-22 13:14:27 +08:00
|
|
|
for ( ei = BEI(e); ei; ei=ei->bei_parent ) {
|
|
|
|
ptr = lutil_strcopy(ptr, ei->bei_rdn.bv_val);
|
|
|
|
nptr = lutil_strcopy(nptr, ei->bei_nrdn.bv_val);
|
|
|
|
if ( ei->bei_parent ) {
|
|
|
|
*ptr++ = ',';
|
|
|
|
*nptr++ = ',';
|
|
|
|
}
|
2001-12-07 20:38:25 +08:00
|
|
|
}
|
2003-04-22 13:14:27 +08:00
|
|
|
*ptr = '\0';
|
|
|
|
*nptr = '\0';
|
2001-12-07 20:38:25 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
/* We add two elements to the DN2ID database - a data item under the parent's
|
|
|
|
* entryID containing the child's RDN and entryID, and an item under the
|
|
|
|
* child's entryID containing the parent's entryID.
|
|
|
|
*/
|
2001-12-07 20:38:25 +08:00
|
|
|
int
|
|
|
|
bdb_dn2id_add(
|
|
|
|
BackendDB *be,
|
|
|
|
DB_TXN *txn,
|
2003-04-22 12:06:09 +08:00
|
|
|
EntryInfo *eip,
|
|
|
|
Entry *e,
|
|
|
|
void *ctx )
|
2001-12-07 20:38:25 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2003-04-22 12:06:09 +08:00
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
2001-12-07 20:38:25 +08:00
|
|
|
DBT key, data;
|
2003-04-22 12:06:09 +08:00
|
|
|
int rc, rlen, nrlen;
|
2001-12-07 20:38:25 +08:00
|
|
|
diskNode *d;
|
2003-04-22 12:06:09 +08:00
|
|
|
char *ptr;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2001-12-28 16:38:24 +08:00
|
|
|
nrlen = dn_rdnlen( be, &e->e_nname );
|
2001-12-08 21:07:01 +08:00
|
|
|
if (nrlen) {
|
2001-12-28 16:38:24 +08:00
|
|
|
rlen = dn_rdnlen( be, &e->e_name );
|
2001-12-08 21:07:01 +08:00
|
|
|
} else {
|
2003-04-22 14:29:13 +08:00
|
|
|
nrlen = e->e_nname.bv_len;
|
|
|
|
rlen = e->e_name.bv_len;
|
2001-12-08 21:07:01 +08:00
|
|
|
}
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
d = sl_malloc(sizeof(diskNode) + rlen + nrlen, ctx);
|
|
|
|
d->entryID = e->e_id;
|
|
|
|
d->nrdnlen = nrlen;
|
|
|
|
ptr = lutil_strncopy( d->nrdn, e->e_nname.bv_val, nrlen );
|
|
|
|
*ptr++ = '\0';
|
|
|
|
ptr = lutil_strncopy( ptr, e->e_name.bv_val, rlen );
|
|
|
|
*ptr = '\0';
|
2001-12-07 20:38:25 +08:00
|
|
|
|
|
|
|
DBTzero(&key);
|
|
|
|
DBTzero(&data);
|
2003-04-22 12:06:09 +08:00
|
|
|
key.data = &eip->bei_id;
|
2001-12-07 20:38:25 +08:00
|
|
|
key.size = sizeof(ID);
|
|
|
|
key.flags = DB_DBT_USERMEM;
|
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
if ( bdb->bi_idl_cache_size ) {
|
|
|
|
bdb_idl_cache_del( bdb, db, &key );
|
|
|
|
}
|
|
|
|
#endif
|
2001-12-07 20:38:25 +08:00
|
|
|
data.data = d;
|
|
|
|
data.size = sizeof(diskNode) + rlen + nrlen + 2;
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
|
|
|
|
rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
|
|
|
|
|
|
|
|
if (rc == 0) {
|
2003-04-22 12:06:09 +08:00
|
|
|
key.data = &e->e_id;
|
|
|
|
d->entryID = eip->bei_id;
|
|
|
|
d->nrdnlen = 0;
|
|
|
|
d->nrdn[0] = '\0';
|
|
|
|
d->rdn[0] = '\0';
|
|
|
|
data.size = sizeof(diskNode);
|
|
|
|
|
|
|
|
rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
|
2001-12-07 20:38:25 +08:00
|
|
|
}
|
2003-04-22 12:06:09 +08:00
|
|
|
|
|
|
|
sl_free( d, ctx );
|
|
|
|
|
2001-12-07 20:38:25 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
bdb_dn2id_delete(
|
|
|
|
BackendDB *be,
|
|
|
|
DB_TXN *txn,
|
2003-04-22 12:06:09 +08:00
|
|
|
EntryInfo *eip,
|
|
|
|
Entry *e,
|
|
|
|
void *ctx )
|
2001-12-07 20:38:25 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2003-04-22 12:06:09 +08:00
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
|
|
|
DBT key, data;
|
|
|
|
DBC *cursor;
|
|
|
|
diskNode *d;
|
|
|
|
int rc, nrlen;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
|
|
|
DBTzero(&key);
|
2003-04-22 12:06:09 +08:00
|
|
|
key.size = sizeof(ID);
|
|
|
|
key.ulen = key.size;
|
|
|
|
key.data = &eip->bei_id;
|
|
|
|
key.flags = DB_DBT_USERMEM;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
DBTzero(&data);
|
|
|
|
data.size = sizeof(diskNode) + BEI(e)->nrdn.bv_len;
|
|
|
|
d = sl_malloc( data.size, ctx );
|
|
|
|
d->entryID = e->e_id;
|
|
|
|
d->nrdnlen = BEI(e)->nrdn.bv_len;
|
|
|
|
strcpy( d->nrdn, BEI(e)->nrdn.bv_val );
|
|
|
|
data.data = d;
|
|
|
|
data.ulen = data.size;
|
|
|
|
data.dlen = data.size;
|
|
|
|
data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
if ( bdb->bi_idl_cache_size ) {
|
|
|
|
bdb_idl_cache_del( bdb, db, &key );
|
|
|
|
}
|
|
|
|
#endif
|
2003-04-22 12:06:09 +08:00
|
|
|
rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
|
|
|
|
if ( rc ) return rc;
|
|
|
|
|
|
|
|
rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH | DB_RMW );
|
|
|
|
if ( rc == 0 )
|
|
|
|
rc = cursor->c_del( cursor, 0 );
|
|
|
|
cursor->c_close( cursor );
|
|
|
|
|
|
|
|
key.data = &e->e_id;
|
|
|
|
rc = db->del( db, txn, &key, 0);
|
|
|
|
sl_free( d, ctx );
|
2001-12-07 20:38:25 +08:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-04-22 12:06:09 +08:00
|
|
|
bdb_dn2id(
|
2001-12-07 20:38:25 +08:00
|
|
|
BackendDB *be,
|
|
|
|
DB_TXN *txn,
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval *in,
|
2003-04-22 12:06:09 +08:00
|
|
|
EntryInfo *ei,
|
|
|
|
void *ctx )
|
2001-12-07 20:38:25 +08:00
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2003-04-22 12:06:09 +08:00
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
|
|
|
DBT key, data;
|
|
|
|
DBC *cursor;
|
|
|
|
int rc = 0, nrlen;
|
|
|
|
char *ptr;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
nrlen = dn_rdnlen( be, &in );
|
2003-04-22 14:29:13 +08:00
|
|
|
if (!nrlen) nrlen = in->bv_len;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
DBTzero(&key);
|
|
|
|
key.size = sizeof(ID);
|
|
|
|
key.data = &eip->bei_id;
|
|
|
|
key.flags = DB_DBT_USERMEM;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
DBTzero(&data);
|
|
|
|
data.size = sizeof(diskNode) + nrlen;
|
|
|
|
d = sl_malloc( data.size * 3, ctx );
|
|
|
|
d->nrdnlen = nrlen;
|
|
|
|
ptr = lutil_strncopy( d->nrdn, BEI(e)->nrdn.bv_val, nrlen );
|
|
|
|
*ptr = '\0';
|
|
|
|
data.data = d;
|
|
|
|
data.ulen = data.size * 3;
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
2002-09-19 14:08:12 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
|
|
|
|
if ( rc ) return rc;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH );
|
|
|
|
cursor->c_close( cursor );
|
|
|
|
if ( rc ) return rc;
|
2003-02-01 03:43:14 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
AC_MEMCPY( &ei->bei_id, &d->entryID, sizeof(ID) );
|
|
|
|
ei->rdn.bv_len = data.size - sizeof(diskNode) - nrlen;
|
|
|
|
ptr = d->nrdn + nrlen + 1;
|
|
|
|
strcpy( ei->rdn.bv_val, ptr );
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 12:06:09 +08:00
|
|
|
return rc;
|
2001-12-07 20:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
bdb_dn2id_children(
|
2003-04-22 12:06:09 +08:00
|
|
|
Operation *op,
|
2001-12-07 20:38:25 +08:00
|
|
|
DB_TXN *txn,
|
2003-04-22 12:06:09 +08:00
|
|
|
Entry *e )
|
2001-12-07 20:38:25 +08:00
|
|
|
{
|
2003-04-22 12:06:09 +08:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
|
2003-04-22 13:14:27 +08:00
|
|
|
DB *db = bdb->bi_dn2id->bdi_db;
|
|
|
|
DBT key, data;
|
|
|
|
DBC *cursor;
|
2001-12-07 20:38:25 +08:00
|
|
|
int rc;
|
|
|
|
ID id;
|
2003-04-22 13:14:27 +08:00
|
|
|
diskNode d;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
DBTzero(&key);
|
|
|
|
key.size = sizeof(ID);
|
|
|
|
key.data = &e->e_id;
|
|
|
|
key.flags = DB_DBT_USERMEM;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
if ( bdb->bi_idl_cache_size ) {
|
|
|
|
rc = bdb_idl_cache_get( bdb, db, &key, NULL );
|
|
|
|
if ( rc != LDAP_NO_SUCH_OBJECT ) {
|
|
|
|
sl_free( key.data, o->o_tmpmemctx );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
DBTzero(&data);
|
|
|
|
data.ulen = sizeof(d);
|
|
|
|
data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
|
|
|
|
data.dlen = sizeof(d);
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
|
|
|
|
if ( rc ) return rc;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 13:14:27 +08:00
|
|
|
rc = cursor->c_get( cursor, &key, &data, DB_FIRST );
|
|
|
|
if ( rc == 0 ) {
|
|
|
|
rc = cursor->c_get( cursor, &key, &data, DB_NEXT_DUP );
|
2001-12-07 20:38:25 +08:00
|
|
|
}
|
2003-04-22 13:14:27 +08:00
|
|
|
cursor->c_close( cursor );
|
2001-12-07 20:38:25 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2003-04-22 14:29:13 +08:00
|
|
|
struct dn2id_cookie {
|
|
|
|
struct bdb_info *bdb;
|
|
|
|
DB *db;
|
|
|
|
int prefix;
|
|
|
|
int rc;
|
|
|
|
ID id;
|
|
|
|
ID dbuf;
|
|
|
|
ID *ids;
|
|
|
|
ID tmp[BDB_IDL_DB_SIZE];
|
|
|
|
ID buf[BDB_IDL_UM_SIZE];
|
|
|
|
DBT key;
|
|
|
|
DBT data;
|
|
|
|
DBC dbc;
|
|
|
|
void *ptr;
|
|
|
|
void *ctx;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* We can't just use bdb_idl_fetch_key because
|
|
|
|
* 1 - our data items are longer than just an entry ID
|
|
|
|
* 2 - our data items are sorted alphabetically by nrdn, not by ID.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bdb_dn2idl_internal(
|
|
|
|
struct dn2id_cookie *cx
|
|
|
|
)
|
|
|
|
{
|
|
|
|
ID *save, *i;
|
|
|
|
|
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
if ( cx->bdb->bi_idl_cache_size ) {
|
|
|
|
cx->rc = bdb_idl_cache_get(cx->bdb, cx->db, &cx->key, cx->tmp);
|
|
|
|
if ( cx->rc == DB_NOTFOUND ) {
|
|
|
|
return cx->rc;
|
|
|
|
}
|
|
|
|
if ( cx->rc == LDAP_SUCCESS ) {
|
|
|
|
readit = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
cx->data.data = &cx->dbuf;
|
|
|
|
cx->data.ulen = sizeof(ID);
|
|
|
|
cx->data.dlen = sizeof(ID);
|
|
|
|
cx->data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
|
|
|
|
|
|
|
|
cx->rc = db->cursor( cx->db, NULL, &cx->dbc, cx->bdb->bi_db_opflags );
|
|
|
|
if ( cx->rc ) return cx->rc;
|
|
|
|
BDB_IDL_ZERO( cx->tmp );
|
|
|
|
|
|
|
|
cx->rc = dbc->c_get( dbc, &cx->key, &cx->data, DB_FIRST );
|
|
|
|
cx->data.data = &cx->buf;
|
|
|
|
cx->data.ulen = sizeof(cx->buf);
|
|
|
|
while ( cx->rc == 0 ) {
|
|
|
|
u_int8_t *j;
|
|
|
|
size_t len;
|
|
|
|
cx->rc = dbc->c_get( dbc, &cx->key, &cx->data, DB_MULTIPLE |
|
|
|
|
DB_NEXT_DUP );
|
|
|
|
DB_MULTIPLE_INIT( cx->ptr, &cx->data );
|
|
|
|
while (cx->ptr) {
|
|
|
|
DB_MULTIPLE_NEXT( cx->ptr, &cx->data, j, len );
|
|
|
|
if (j) {
|
|
|
|
AC_MEMCPY( &cx->dbuf, j, sizeof(ID) );
|
|
|
|
bdb_idl_insert( cx->tmp, cx->dbuf );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dbc->c_close( dbc );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-12-07 20:38:25 +08:00
|
|
|
int
|
|
|
|
bdb_dn2idl(
|
|
|
|
BackendDB *be,
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval *dn,
|
2001-12-07 20:38:25 +08:00
|
|
|
int prefix,
|
2003-04-22 14:29:13 +08:00
|
|
|
ID *ids,
|
|
|
|
void *ctx )
|
2001-12-07 20:38:25 +08:00
|
|
|
{
|
2003-04-22 14:29:13 +08:00
|
|
|
struct dn2id_cookie cx;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 14:29:13 +08:00
|
|
|
cx.id = *(ID *)dn;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 14:29:13 +08:00
|
|
|
cx.bdb = (struct bdb_info *)be->be_private;
|
|
|
|
cx.db = cx.bdb->bi_dn2id->bdi_db;
|
|
|
|
cx.prefix = prefix;
|
|
|
|
cx.ids = ids;
|
|
|
|
cx.ctx = ctx;
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 14:29:13 +08:00
|
|
|
DBTzero(&cx.key);
|
|
|
|
cx.key.data = &cx.id;
|
|
|
|
cx.key.size = sizeof(ID);
|
|
|
|
cx.key.flags = DB_DBT_USERMEM;
|
|
|
|
DBTzero(&cx.data);
|
2001-12-07 20:38:25 +08:00
|
|
|
|
2003-04-22 14:29:13 +08:00
|
|
|
return bdb_dn2idl_internal(&cx);
|
2001-12-07 20:38:25 +08:00
|
|
|
}
|
|
|
|
#endif /* BDB_HIER */
|