]> git.sur5r.net Git - openldap/blob - servers/slapd/back-mdb/dn2entry.c
16c50877ddf45c1b20dd116f2716971cdf0cfe3e
[openldap] / servers / slapd / back-mdb / dn2entry.c
1 /* dn2entry.c - routines to deal with the dn2id / id2entry glue */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2012 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
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>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20 #include <ac/string.h>
21
22 #include "back-mdb.h"
23
24 /*
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.
28  */
29
30 int
31 mdb_dn2entry(
32         Operation *op,
33         MDB_txn *tid,
34         MDB_cursor *m2,
35         struct berval *dn,
36         Entry **e,
37         int matched )
38 {
39         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
40         int rc, rc2;
41         ID id = NOID;
42         struct berval mbv, nmbv;
43         MDB_cursor *mc;
44
45         Debug(LDAP_DEBUG_TRACE, "mdb_dn2entry(\"%s\")\n",
46                 dn->bv_val ? dn->bv_val : "", 0, 0 );
47
48         *e = NULL;
49
50         rc = mdb_dn2id( op, tid, m2, dn, &id, &mbv, &nmbv );
51         if ( rc ) {
52                 if ( matched ) {
53                         rc2 = mdb_cursor_open( tid, mdb->mi_id2entry, &mc );
54                         if ( rc2 == MDB_SUCCESS ) {
55                                 rc2 = mdb_id2entry( op, mc, id, e );
56                                 mdb_cursor_close( mc );
57                         }
58                 }
59
60         } else {
61                 rc = mdb_cursor_open( tid, mdb->mi_id2entry, &mc );
62                 if ( rc == MDB_SUCCESS ) {
63                         rc = mdb_id2entry( op, mc, id, e );
64                         mdb_cursor_close(mc);
65                 }
66         }
67         if ( *e ) {
68                 (*e)->e_name = mbv;
69                 if ( rc == MDB_SUCCESS )
70                         ber_dupbv_x( &(*e)->e_nname, dn, op->o_tmpmemctx );
71                 else
72                         ber_dupbv_x( &(*e)->e_nname, &nmbv, op->o_tmpmemctx );
73         }
74
75         return rc;
76 }