]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/back-ldap.h
cleanup
[openldap] / servers / slapd / back-ldap / back-ldap.h
1 /* back-ldap.h - ldap backend header file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 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   cred;
57         struct berval   bound_dn;
58         int             bound;
59 };
60
61 struct ldapmap {
62         int drop_missing;
63
64         Avlnode *map;
65         Avlnode *remap;
66 };
67
68 struct ldapmapping {
69         struct berval src;
70         struct berval dst;
71 };
72
73 struct ldapinfo {
74         char *url;
75         char *binddn;
76         char *bindpw;
77         ldap_pvt_thread_mutex_t         conn_mutex;
78         int savecred;
79         Avlnode *conntree;
80 #ifdef ENABLE_REWRITE
81         struct rewrite_info *rwinfo;
82 #else /* !ENABLE_REWRITE */
83         BerVarray suffix_massage;
84 #endif /* !ENABLE_REWRITE */
85
86         struct ldapmap oc_map;
87         struct ldapmap at_map;
88 };
89
90 struct ldapconn *ldap_back_getconn(struct ldapinfo *li, struct slap_conn *conn,
91         struct slap_op *op);
92 int ldap_back_dobind(struct ldapconn *lc, Operation *op);
93 int ldap_back_map_result(int err);
94 int ldap_back_op_result(struct ldapconn *lc, Operation *op);
95 int     back_ldap_LTX_init_module(int argc, char *argv[]);
96
97 void ldap_back_dn_massage(struct ldapinfo *li, struct berval *dn,
98         struct berval *res, int normalized, int tofrom);
99
100 extern int ldap_back_conn_cmp( const void *c1, const void *c2);
101 extern int ldap_back_conn_dup( void *c1, void *c2 );
102
103 int mapping_cmp (const void *, const void *);
104 int mapping_dup (void *, void *);
105
106 void ldap_back_map_init ( struct ldapmap *lm, struct ldapmapping ** );
107 void ldap_back_map ( struct ldapmap *map, struct berval *s, struct berval *m,
108         int remap );
109 #define BACKLDAP_MAP    0
110 #define BACKLDAP_REMAP  1
111 char *
112 ldap_back_map_filter(
113                 struct ldapmap *at_map,
114                 struct ldapmap *oc_map,
115                 struct berval *f,
116                 int remap
117 );
118 char **
119 ldap_back_map_attrs(
120                 struct ldapmap *at_map,
121                 AttributeName *a,
122                 int remap
123 );
124
125 extern void mapping_free ( void *mapping );
126
127 #ifdef ENABLE_REWRITE
128 extern int suffix_massage_config( struct rewrite_info *info,
129                 struct berval *pvnc, struct berval *nvnc,
130                 struct berval *prnc, struct berval *nrnc);
131 extern int ldap_dnattr_rewrite( struct rewrite_info *rwinfo, BerVarray a_vals, void *cookie );
132 #endif /* ENABLE_REWRITE */
133
134 LDAP_END_DECL
135
136 #endif /* SLAPD_LDAP_H */