openldap/servers/slapd/back-bdb/dn2entry.c

57 lines
957 B
C
Raw Normal View History

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
bdb_dn2entry_rw(
BackendDB *be,
2000-09-25 06:48:13 +08:00
DB_TXN *tid,
struct berval *dn,
2000-09-25 06:48:13 +08:00
Entry **e,
Entry **matched,
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
Debug(LDAP_DEBUG_TRACE, "bdb_dn2entry_rw(\"%s\")\n",
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 ) {
rc = bdb_id2entry_rw( be, tid, id, e, rw );
2000-09-25 06:48:13 +08:00
} else {
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
}