1999-05-25 22:35:20 -04:00
|
|
|
/* back-ldap.h - ldap backend header file */
|
1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2001-01-17 02:09:22 -05:00
|
|
|
/*
|
2003-01-03 15:20:47 -05:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2001-01-17 02:09:22 -05:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
*/
|
|
|
|
|
/* This is an altered version */
|
1999-05-25 22:35:20 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
|
|
|
|
|
*
|
|
|
|
|
* Permission is granted to anyone to use this software for any purpose
|
|
|
|
|
* on any computer system, and to alter it and redistribute it, subject
|
|
|
|
|
* to the following restrictions:
|
|
|
|
|
*
|
|
|
|
|
* 1. The author is not responsible for the consequences of use of this
|
|
|
|
|
* software, no matter how awful, even if they arise from flaws in it.
|
|
|
|
|
*
|
|
|
|
|
* 2. The origin of this software must not be misrepresented, either by
|
|
|
|
|
* explicit claim or by omission. Since few users ever read sources,
|
|
|
|
|
* credits should appear in the documentation.
|
|
|
|
|
*
|
|
|
|
|
* 3. Altered versions must be plainly marked as such, and must not be
|
|
|
|
|
* misrepresented as being the original software. Since few users
|
|
|
|
|
* ever read sources, credits should appear in the documentation.
|
|
|
|
|
*
|
|
|
|
|
* 4. This notice may not be removed or altered.
|
2001-01-19 16:27:20 -05:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
|
|
|
|
|
*
|
|
|
|
|
* This software is being modified by Pierangelo Masarati.
|
|
|
|
|
* The previously reported conditions apply to the modified code as well.
|
|
|
|
|
* Changes in the original code are highlighted where required.
|
|
|
|
|
* Credits for the original code go to the author, Howard Chu.
|
1999-05-25 22:35:20 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SLAPD_LDAP_H
|
|
|
|
|
#define SLAPD_LDAP_H
|
|
|
|
|
|
|
|
|
|
#include "external.h"
|
|
|
|
|
|
2001-05-11 20:51:28 -04:00
|
|
|
/* String rewrite library */
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
|
#include "rewrite.h"
|
|
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|
|
1999-05-25 22:35:20 -04:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
|
|
|
|
struct slap_conn;
|
|
|
|
|
struct slap_op;
|
2003-02-13 18:29:56 -05:00
|
|
|
struct slap_backend_db;
|
1999-05-25 22:35:20 -04:00
|
|
|
|
|
|
|
|
struct ldapconn {
|
|
|
|
|
struct slap_conn *conn;
|
|
|
|
|
LDAP *ld;
|
2002-04-24 22:05:34 -04:00
|
|
|
struct berval cred;
|
2001-12-27 23:20:08 -05:00
|
|
|
struct berval bound_dn;
|
2003-02-13 18:29:56 -05:00
|
|
|
struct berval local_dn;
|
1999-05-25 22:35:20 -04:00
|
|
|
int bound;
|
2003-02-13 18:29:56 -05:00
|
|
|
ldap_pvt_thread_mutex_t lc_mutex;
|
1999-05-25 22:35:20 -04:00
|
|
|
};
|
|
|
|
|
|
2001-02-19 14:14:12 -05:00
|
|
|
struct ldapmap {
|
|
|
|
|
int drop_missing;
|
|
|
|
|
|
|
|
|
|
Avlnode *map;
|
|
|
|
|
Avlnode *remap;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ldapmapping {
|
2002-01-02 06:00:36 -05:00
|
|
|
struct berval src;
|
|
|
|
|
struct berval dst;
|
2001-02-19 14:14:12 -05:00
|
|
|
};
|
|
|
|
|
|
1999-05-25 22:35:20 -04:00
|
|
|
struct ldapinfo {
|
2003-02-13 18:29:56 -05:00
|
|
|
struct slap_backend_db *be;
|
2000-06-05 00:59:26 -04:00
|
|
|
char *url;
|
2003-04-03 16:35:27 -05:00
|
|
|
struct berval binddn;
|
|
|
|
|
struct berval bindpw;
|
1999-05-25 22:35:20 -04:00
|
|
|
ldap_pvt_thread_mutex_t conn_mutex;
|
2002-04-24 22:05:34 -04:00
|
|
|
int savecred;
|
2001-01-19 16:27:20 -05:00
|
|
|
Avlnode *conntree;
|
2001-05-11 20:51:28 -04:00
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
|
struct rewrite_info *rwinfo;
|
|
|
|
|
#else /* !ENABLE_REWRITE */
|
2002-05-01 13:45:03 -04:00
|
|
|
BerVarray suffix_massage;
|
2001-05-11 20:51:28 -04:00
|
|
|
#endif /* !ENABLE_REWRITE */
|
2001-02-19 14:14:12 -05:00
|
|
|
|
|
|
|
|
struct ldapmap oc_map;
|
|
|
|
|
struct ldapmap at_map;
|
1999-05-25 22:35:20 -04:00
|
|
|
};
|
|
|
|
|
|
2003-04-03 18:23:56 -05:00
|
|
|
struct ldapconn *ldap_back_getconn(struct slap_op *op, struct slap_rep *rs);
|
|
|
|
|
int ldap_back_dobind(struct ldapconn *lc, Operation *op, SlapReply *rs);
|
2003-04-04 17:20:49 -05:00
|
|
|
int ldap_back_map_result(SlapReply *rs);
|
2003-04-03 19:43:40 -05:00
|
|
|
int ldap_back_op_result(struct ldapconn *lc, Operation *op, SlapReply *rs,
|
2003-04-04 17:20:49 -05:00
|
|
|
ber_int_t msgid, int sendok);
|
1999-09-02 04:05:17 -04:00
|
|
|
int back_ldap_LTX_init_module(int argc, char *argv[]);
|
1999-05-25 22:35:20 -04:00
|
|
|
|
2001-12-27 23:20:08 -05:00
|
|
|
void ldap_back_dn_massage(struct ldapinfo *li, struct berval *dn,
|
|
|
|
|
struct berval *res, int normalized, int tofrom);
|
2001-01-19 16:27:20 -05:00
|
|
|
|
2001-05-11 20:51:28 -04:00
|
|
|
extern int ldap_back_conn_cmp( const void *c1, const void *c2);
|
|
|
|
|
extern int ldap_back_conn_dup( void *c1, void *c2 );
|
2003-02-13 18:29:56 -05:00
|
|
|
extern void ldap_back_conn_free( void *c );
|
2001-02-19 14:14:12 -05:00
|
|
|
|
2003-03-01 06:08:53 -05:00
|
|
|
/* attributeType/objectClass mapping */
|
2001-02-19 14:14:12 -05:00
|
|
|
int mapping_cmp (const void *, const void *);
|
|
|
|
|
int mapping_dup (void *, void *);
|
|
|
|
|
|
2002-01-04 12:51:20 -05:00
|
|
|
void ldap_back_map_init ( struct ldapmap *lm, struct ldapmapping ** );
|
2002-01-02 06:00:36 -05:00
|
|
|
void ldap_back_map ( struct ldapmap *map, struct berval *s, struct berval *m,
|
|
|
|
|
int remap );
|
2003-01-27 11:39:56 -05:00
|
|
|
#define BACKLDAP_MAP 0
|
|
|
|
|
#define BACKLDAP_REMAP 1
|
2001-05-11 20:51:28 -04:00
|
|
|
char *
|
|
|
|
|
ldap_back_map_filter(
|
|
|
|
|
struct ldapmap *at_map,
|
|
|
|
|
struct ldapmap *oc_map,
|
2002-01-02 06:00:36 -05:00
|
|
|
struct berval *f,
|
2001-05-11 20:51:28 -04:00
|
|
|
int remap
|
|
|
|
|
);
|
2003-04-05 11:53:29 -05:00
|
|
|
|
|
|
|
|
int
|
2001-05-11 20:51:28 -04:00
|
|
|
ldap_back_map_attrs(
|
|
|
|
|
struct ldapmap *at_map,
|
2001-12-31 06:35:52 -05:00
|
|
|
AttributeName *a,
|
2003-04-05 11:53:29 -05:00
|
|
|
int remap,
|
|
|
|
|
char ***mapped_attrs
|
2001-05-11 20:51:28 -04:00
|
|
|
);
|
|
|
|
|
|
2002-12-14 17:25:52 -05:00
|
|
|
extern void mapping_free ( void *mapping );
|
2001-05-11 20:51:28 -04:00
|
|
|
|
2003-03-01 06:08:53 -05:00
|
|
|
extern int ldap_back_map_config(
|
|
|
|
|
struct ldapmap *oc_map,
|
|
|
|
|
struct ldapmap *at_map,
|
|
|
|
|
const char *fname,
|
|
|
|
|
int lineno,
|
|
|
|
|
int argc,
|
|
|
|
|
char **argv );
|
|
|
|
|
|
|
|
|
|
extern int
|
|
|
|
|
ldap_back_filter_map_rewrite_(
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
|
struct rewrite_info *info,
|
|
|
|
|
void *cookie,
|
|
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|
struct ldapmap *at_map,
|
|
|
|
|
struct ldapmap *oc_map,
|
|
|
|
|
Filter *f,
|
|
|
|
|
struct berval *fstr,
|
|
|
|
|
int remap );
|
|
|
|
|
|
|
|
|
|
/* suffix massaging by means of librewrite */
|
2001-05-11 20:51:28 -04:00
|
|
|
#ifdef ENABLE_REWRITE
|
2002-05-01 07:41:57 -04:00
|
|
|
extern int suffix_massage_config( struct rewrite_info *info,
|
|
|
|
|
struct berval *pvnc, struct berval *nvnc,
|
|
|
|
|
struct berval *prnc, struct berval *nrnc);
|
2002-01-13 20:43:17 -05:00
|
|
|
extern int ldap_dnattr_rewrite( struct rewrite_info *rwinfo, BerVarray a_vals, void *cookie );
|
2001-05-11 20:51:28 -04:00
|
|
|
#endif /* ENABLE_REWRITE */
|
2001-02-19 14:14:12 -05:00
|
|
|
|
1999-05-25 22:35:20 -04:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
2003-01-27 11:39:56 -05:00
|
|
|
#endif /* SLAPD_LDAP_H */
|