]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/back-ldap.h
error message from be_entry_put tool backend function
[openldap] / servers / slapd / back-ldap / back-ldap.h
1 /* back-ldap.h - ldap backend header file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.      
36  */
37
38 #ifndef SLAPD_LDAP_H
39 #define SLAPD_LDAP_H
40
41 #include "external.h"
42
43 /* String rewrite library */
44 #ifdef ENABLE_REWRITE
45 #include "rewrite.h"
46 #endif /* ENABLE_REWRITE */
47
48 LDAP_BEGIN_DECL
49
50 struct slap_conn;
51 struct slap_op;
52
53 struct ldapconn {
54         struct slap_conn        *conn;
55         LDAP            *ld;
56         struct berval   bound_dn;
57         int             bound;
58 };
59
60 struct ldapmap {
61         int drop_missing;
62
63         Avlnode *map;
64         Avlnode *remap;
65 };
66
67 struct ldapmapping {
68         struct berval src;
69         struct berval dst;
70 };
71
72 struct ldapinfo {
73         char *url;
74         char *binddn;
75         char *bindpw;
76         ldap_pvt_thread_mutex_t         conn_mutex;
77         Avlnode *conntree;
78 #ifdef ENABLE_REWRITE
79         struct rewrite_info *rwinfo;
80 #else /* !ENABLE_REWRITE */
81         struct berval **suffix_massage;
82 #endif /* !ENABLE_REWRITE */
83
84         struct ldapmap oc_map;
85         struct ldapmap at_map;
86 };
87
88 struct ldapconn *ldap_back_getconn(struct ldapinfo *li, struct slap_conn *conn,
89         struct slap_op *op);
90 int ldap_back_dobind(struct ldapconn *lc, Operation *op);
91 int ldap_back_map_result(int err);
92 int ldap_back_op_result(struct ldapconn *lc, Operation *op);
93 int     back_ldap_LTX_init_module(int argc, char *argv[]);
94
95 void ldap_back_dn_massage(struct ldapinfo *li, struct berval *dn,
96         struct berval *res, int normalized, int tofrom);
97
98 extern int ldap_back_conn_cmp( const void *c1, const void *c2);
99 extern int ldap_back_conn_dup( void *c1, void *c2 );
100
101 int mapping_cmp (const void *, const void *);
102 int mapping_dup (void *, void *);
103
104 void ldap_back_map_init ( struct ldapmap *lm, struct ldapmapping ** );
105 void ldap_back_map ( struct ldapmap *map, struct berval *s, struct berval *m,
106         int remap );
107 char *
108 ldap_back_map_filter(
109                 struct ldapmap *at_map,
110                 struct ldapmap *oc_map,
111                 struct berval *f,
112                 int remap
113 );
114 char **
115 ldap_back_map_attrs(
116                 struct ldapmap *at_map,
117                 AttributeName *a,
118                 int remap
119 );
120
121 extern void mapping_free ( struct ldapmapping *mapping );
122
123 #ifdef ENABLE_REWRITE
124 extern int suffix_massage_config( struct rewrite_info *info, int argc, char **argv );
125 extern int ldap_dnattr_rewrite( struct rewrite_info *rwinfo, BVarray a_vals, void *cookie );
126 #endif /* ENABLE_REWRITE */
127
128 LDAP_END_DECL
129
130 #endif