2000-09-25 06:48:13 +08:00
|
|
|
/* dn2entry.c - routines to deal with the dn2id / id2entry glue */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 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
|
|
|
|
* entry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2002-01-25 15:19:01 +08:00
|
|
|
bdb_dn2entry_rw(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
2000-09-25 06:48:13 +08:00
|
|
|
DB_TXN *tid,
|
2001-12-27 07:26:17 +08:00
|
|
|
struct berval *dn,
|
2000-09-25 06:48:13 +08:00
|
|
|
Entry **e,
|
2000-09-28 06:28:59 +08:00
|
|
|
Entry **matched,
|
2002-01-25 15:19:01 +08:00
|
|
|
int flags,
|
|
|
|
int rw )
|
2000-09-25 06:48:13 +08:00
|
|
|
{
|
|
|
|
int rc;
|
2001-12-29 18:25:19 +08:00
|
|
|
ID id, id2 = 0;
|
2000-09-25 06:48:13 +08:00
|
|
|
|
2002-01-25 15:19:01 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "bdb_dn2entry_rw(\"%s\")\n",
|
2001-12-27 07:26:17 +08:00
|
|
|
dn->bv_val, 0, 0 );
|
2000-09-25 06:48:13 +08:00
|
|
|
|
2000-09-27 01:47:24 +08:00
|
|
|
*e = NULL;
|
|
|
|
|
2000-09-25 06:48:13 +08:00
|
|
|
if( matched != NULL ) {
|
2000-09-27 01:47:24 +08:00
|
|
|
*matched = NULL;
|
2001-12-29 18:25:19 +08:00
|
|
|
rc = bdb_dn2id_matched( be, tid, dn, &id, &id2 );
|
2000-09-25 06:48:13 +08:00
|
|
|
} else {
|
|
|
|
rc = bdb_dn2id( be, tid, dn, &id );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( rc != 0 ) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-12-29 18:25:19 +08:00
|
|
|
if( id2 == 0 ) {
|
2002-01-25 15:19:01 +08:00
|
|
|
rc = bdb_id2entry_rw( be, tid, id, e, rw );
|
2000-09-25 06:48:13 +08:00
|
|
|
} else {
|
2002-01-25 15:19:01 +08:00
|
|
|
rc = bdb_id2entry_r( be, tid, id2, matched);
|
2000-09-25 06:48:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2000-09-27 01:47:24 +08:00
|
|
|
}
|