2000-09-25 06:48:13 +08:00
|
|
|
/* dn2entry.c - routines to deal with the dn2id / id2entry glue */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-25 06:48:13 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dn2entry - look up dn in the cache/indexes and return the corresponding
|
2003-04-17 00:23:36 +08:00
|
|
|
* entry. If the requested DN is not found and matched is TRUE, return info
|
|
|
|
* for the closest ancestor of the DN. Otherwise e is NULL.
|
2000-09-25 06:48:13 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2003-04-17 00:23:36 +08:00
|
|
|
bdb_dn2entry(
|
2003-05-25 08:53:08 +08:00
|
|
|
Operation *op,
|
2000-09-25 06:48:13 +08:00
|
|
|
DB_TXN *tid,
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval *dn,
|
2003-04-17 00:23:36 +08:00
|
|
|
EntryInfo **e,
|
|
|
|
int matched,
|
2002-06-01 04:49:19 +08:00
|
|
|
u_int32_t locker,
|
2003-05-25 08:53:08 +08:00
|
|
|
DB_LOCK *lock )
|
2000-09-25 06:48:13 +08:00
|
|
|
{
|
2003-04-17 00:23:36 +08:00
|
|
|
EntryInfo *ei = NULL;
|
2000-09-25 06:48:13 +08:00
|
|
|
int rc;
|
|
|
|
|
2002-03-27 04:04:30 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2003-04-17 00:23:36 +08:00
|
|
|
LDAP_LOG ( CACHE, ARGS, "bdb_dn2entry(\"%s\")\n", dn->bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#else
|
2003-04-17 00:23:36 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "bdb_dn2entry(\"%s\")\n",
|
2001-12-27 07:26:17 +08:00
|
|
|
dn->bv_val, 0, 0 );
|
2002-03-27 04:04:30 +08:00
|
|
|
#endif
|
2000-09-25 06:48:13 +08:00
|
|
|
|
2000-09-27 01:47:24 +08:00
|
|
|
*e = NULL;
|
|
|
|
|
2003-05-25 08:53:08 +08:00
|
|
|
rc = bdb_cache_find_ndn( op, tid, dn, &ei, locker );
|
2003-04-17 00:23:36 +08:00
|
|
|
if ( rc ) {
|
|
|
|
if ( matched && rc == DB_NOTFOUND ) {
|
|
|
|
/* Set the return value, whether we have its entry
|
|
|
|
* or not.
|
|
|
|
*/
|
|
|
|
*e = ei;
|
|
|
|
if ( ei && ei->bei_id )
|
2003-05-25 08:53:08 +08:00
|
|
|
bdb_cache_find_id( op, tid, ei->bei_id,
|
|
|
|
&ei, 1, locker, lock );
|
2003-04-17 00:23:36 +08:00
|
|
|
else if ( ei )
|
|
|
|
bdb_cache_entryinfo_unlock( ei );
|
|
|
|
} else if ( ei ) {
|
|
|
|
bdb_cache_entryinfo_unlock( ei );
|
|
|
|
}
|
2000-09-25 06:48:13 +08:00
|
|
|
} else {
|
2003-05-25 08:53:08 +08:00
|
|
|
rc = bdb_cache_find_id( op, tid, ei->bei_id, &ei, 1,
|
|
|
|
locker, lock );
|
2003-04-17 00:23:36 +08:00
|
|
|
if ( rc == 0 ) {
|
|
|
|
*e = ei;
|
|
|
|
} else if ( matched && rc == DB_NOTFOUND ) {
|
|
|
|
/* always return EntryInfo */
|
|
|
|
ei = ei->bei_parent;
|
2003-05-25 08:53:08 +08:00
|
|
|
bdb_cache_find_id( op, tid, ei->bei_id, &ei, 1,
|
|
|
|
locker, lock );
|
2003-04-17 00:23:36 +08:00
|
|
|
*e = ei;
|
|
|
|
}
|
2000-09-25 06:48:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2000-09-27 01:47:24 +08:00
|
|
|
}
|