1 /* dn2entry.c - routines to deal with the dn2id / id2entry glue */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2000-2013 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
20 #include <ac/string.h>
25 * dn2entry - look up dn in the cache/indexes and return the corresponding
26 * entry. If the requested DN is not found and matched is TRUE, return info
27 * for the closest ancestor of the DN. Otherwise e is NULL.
40 struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
43 struct berval mbv, nmbv;
46 Debug(LDAP_DEBUG_TRACE, "mdb_dn2entry(\"%s\")\n",
47 dn->bv_val ? dn->bv_val : "", 0, 0 );
51 rc = mdb_dn2id( op, tid, m2, dn, &id, nsubs, &mbv, &nmbv );
54 rc2 = mdb_cursor_open( tid, mdb->mi_id2entry, &mc );
55 if ( rc2 == MDB_SUCCESS ) {
56 rc2 = mdb_id2entry( op, mc, id, e );
57 mdb_cursor_close( mc );
62 rc = mdb_cursor_open( tid, mdb->mi_id2entry, &mc );
63 if ( rc == MDB_SUCCESS ) {
64 rc = mdb_id2entry( op, mc, id, e );
70 if ( rc == MDB_SUCCESS )
71 ber_dupbv_x( &(*e)->e_nname, dn, op->o_tmpmemctx );
73 ber_dupbv_x( &(*e)->e_nname, &nmbv, op->o_tmpmemctx );