1999-05-26 10:35:20 +08:00
|
|
|
/* back-ldap.h - ldap backend header file */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2001-01-17 15:09:22 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2001-01-17 15:09:22 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
/* This is an altered version */
|
1999-05-26 10:35:20 +08: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-20 05:27:20 +08: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-26 10:35:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SLAPD_LDAP_H
|
|
|
|
#define SLAPD_LDAP_H
|
|
|
|
|
|
|
|
#include "external.h"
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/* String rewrite library */
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
#include "rewrite.h"
|
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
|
|
struct slap_conn;
|
|
|
|
struct slap_op;
|
2003-02-14 07:29:56 +08:00
|
|
|
struct slap_backend_db;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
struct ldapconn {
|
|
|
|
struct slap_conn *conn;
|
|
|
|
LDAP *ld;
|
2002-04-25 10:05:34 +08:00
|
|
|
struct berval cred;
|
2001-12-28 12:20:08 +08:00
|
|
|
struct berval bound_dn;
|
2003-02-14 07:29:56 +08:00
|
|
|
struct berval local_dn;
|
1999-05-26 10:35:20 +08:00
|
|
|
int bound;
|
2003-02-14 07:29:56 +08:00
|
|
|
ldap_pvt_thread_mutex_t lc_mutex;
|
1999-05-26 10:35:20 +08:00
|
|
|
};
|
|
|
|
|
2001-02-20 03:14:12 +08:00
|
|
|
struct ldapmap {
|
|
|
|
int drop_missing;
|
|
|
|
|
|
|
|
Avlnode *map;
|
|
|
|
Avlnode *remap;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ldapmapping {
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval src;
|
|
|
|
struct berval dst;
|
2001-02-20 03:14:12 +08:00
|
|
|
};
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
struct ldapinfo {
|
2003-02-14 07:29:56 +08:00
|
|
|
struct slap_backend_db *be;
|
2000-06-05 12:59:26 +08:00
|
|
|
char *url;
|
2003-04-04 05:35:27 +08:00
|
|
|
struct berval binddn;
|
|
|
|
struct berval bindpw;
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_t conn_mutex;
|
2002-04-25 10:05:34 +08:00
|
|
|
int savecred;
|
2001-01-20 05:27:20 +08:00
|
|
|
Avlnode *conntree;
|
2001-05-12 08:51:28 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
struct rewrite_info *rwinfo;
|
|
|
|
#else /* !ENABLE_REWRITE */
|
2002-05-02 01:45:03 +08:00
|
|
|
BerVarray suffix_massage;
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* !ENABLE_REWRITE */
|
2001-02-20 03:14:12 +08:00
|
|
|
|
|
|
|
struct ldapmap oc_map;
|
|
|
|
struct ldapmap at_map;
|
1999-05-26 10:35:20 +08:00
|
|
|
};
|
|
|
|
|
2003-04-04 07:23:56 +08: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-05 06:20:49 +08:00
|
|
|
int ldap_back_map_result(SlapReply *rs);
|
2003-04-04 08:43:40 +08:00
|
|
|
int ldap_back_op_result(struct ldapconn *lc, Operation *op, SlapReply *rs,
|
2003-04-05 06:20:49 +08:00
|
|
|
ber_int_t msgid, int sendok);
|
1999-09-02 16:05:17 +08:00
|
|
|
int back_ldap_LTX_init_module(int argc, char *argv[]);
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-12-28 12:20:08 +08:00
|
|
|
void ldap_back_dn_massage(struct ldapinfo *li, struct berval *dn,
|
|
|
|
struct berval *res, int normalized, int tofrom);
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2001-05-12 08:51:28 +08: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-14 07:29:56 +08:00
|
|
|
extern void ldap_back_conn_free( void *c );
|
2001-02-20 03:14:12 +08:00
|
|
|
|
2003-03-01 19:08:53 +08:00
|
|
|
/* attributeType/objectClass mapping */
|
2001-02-20 03:14:12 +08:00
|
|
|
int mapping_cmp (const void *, const void *);
|
|
|
|
int mapping_dup (void *, void *);
|
|
|
|
|
2002-01-05 01:51:20 +08:00
|
|
|
void ldap_back_map_init ( struct ldapmap *lm, struct ldapmapping ** );
|
2002-01-02 19:00:36 +08:00
|
|
|
void ldap_back_map ( struct ldapmap *map, struct berval *s, struct berval *m,
|
|
|
|
int remap );
|
2003-01-28 00:39:56 +08:00
|
|
|
#define BACKLDAP_MAP 0
|
|
|
|
#define BACKLDAP_REMAP 1
|
2001-05-12 08:51:28 +08:00
|
|
|
char *
|
|
|
|
ldap_back_map_filter(
|
|
|
|
struct ldapmap *at_map,
|
|
|
|
struct ldapmap *oc_map,
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval *f,
|
2001-05-12 08:51:28 +08:00
|
|
|
int remap
|
|
|
|
);
|
2003-04-06 00:53:29 +08:00
|
|
|
|
|
|
|
int
|
2001-05-12 08:51:28 +08:00
|
|
|
ldap_back_map_attrs(
|
|
|
|
struct ldapmap *at_map,
|
2001-12-31 19:35:52 +08:00
|
|
|
AttributeName *a,
|
2003-04-06 00:53:29 +08:00
|
|
|
int remap,
|
|
|
|
char ***mapped_attrs
|
2001-05-12 08:51:28 +08:00
|
|
|
);
|
|
|
|
|
2002-12-15 06:25:52 +08:00
|
|
|
extern void mapping_free ( void *mapping );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-03-01 19:08:53 +08: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-12 08:51:28 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
2002-05-01 19:41:57 +08:00
|
|
|
extern int suffix_massage_config( struct rewrite_info *info,
|
|
|
|
struct berval *pvnc, struct berval *nvnc,
|
|
|
|
struct berval *prnc, struct berval *nrnc);
|
2002-01-14 09:43:17 +08:00
|
|
|
extern int ldap_dnattr_rewrite( struct rewrite_info *rwinfo, BerVarray a_vals, void *cookie );
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* ENABLE_REWRITE */
|
2001-02-20 03:14:12 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
2003-01-28 00:39:56 +08:00
|
|
|
#endif /* SLAPD_LDAP_H */
|