]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/proto-ldap.h
Fix corrupted CSN issue
[openldap] / servers / slapd / back-ldap / proto-ldap.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2003-2009 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This work was initially developed by the Howard Chu for inclusion
17  * in OpenLDAP Software and subsequently enhanced by Pierangelo
18  * Masarati.
19  */
20
21 #ifndef PROTO_LDAP_H
22 #define PROTO_LDAP_H
23
24 LDAP_BEGIN_DECL
25
26 extern BI_init                  ldap_back_initialize;
27 extern BI_open                  ldap_back_open;
28
29 extern BI_db_init               ldap_back_db_init;
30 extern BI_db_open               ldap_back_db_open;
31 extern BI_db_close              ldap_back_db_close;
32 extern BI_db_destroy            ldap_back_db_destroy;
33
34 extern BI_op_bind               ldap_back_bind;
35 extern BI_op_search             ldap_back_search;
36 extern BI_op_compare            ldap_back_compare;
37 extern BI_op_modify             ldap_back_modify;
38 extern BI_op_modrdn             ldap_back_modrdn;
39 extern BI_op_add                ldap_back_add;
40 extern BI_op_delete             ldap_back_delete;
41 extern BI_op_abandon            ldap_back_abandon;
42 extern BI_op_extended           ldap_back_extended;
43
44 extern BI_connection_destroy    ldap_back_conn_destroy;
45
46 extern BI_entry_get_rw          ldap_back_entry_get;
47
48 void ldap_back_release_conn_lock( ldapinfo_t *li, ldapconn_t **lcp, int dolock );
49 #define ldap_back_release_conn(li, lc) ldap_back_release_conn_lock((li), &(lc), 1)
50 int ldap_back_dobind( ldapconn_t **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
51 int ldap_back_retry( ldapconn_t **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
52 int ldap_back_map_result( SlapReply *rs );
53 int ldap_back_op_result( ldapconn_t *lc, Operation *op, SlapReply *rs,
54         ber_int_t msgid, time_t timeout, ldap_back_send_t sendok );
55 int ldap_back_cancel( ldapconn_t *lc, Operation *op, SlapReply *rs, ber_int_t msgid, ldap_back_send_t sendok );
56
57 int ldap_back_init_cf( BackendInfo *bi );
58
59 extern int ldap_back_conndn_cmp( const void *c1, const void *c2);
60 extern int ldap_back_conn_cmp( const void *c1, const void *c2);
61 extern int ldap_back_conndn_dup( void *c1, void *c2 );
62 extern void ldap_back_conn_free( void *c );
63
64 extern ldapconn_t * ldap_back_conn_delete( ldapinfo_t *li, ldapconn_t *lc );
65
66 extern int
67 ldap_back_proxy_authz_ctrl(
68                 Operation       *op,
69                 SlapReply       *rs,
70                 struct berval   *bound_ndn,
71                 int             version,
72                 slap_idassert_t *si,
73                 LDAPControl     *ctrl );
74
75 extern int
76 ldap_back_controls_add(
77                 Operation       *op,
78                 SlapReply       *rs,
79                 ldapconn_t      *lc,
80                 LDAPControl     ***pctrls );
81
82 extern int
83 ldap_back_controls_free( Operation *op, SlapReply *rs, LDAPControl ***pctrls );
84
85 extern void
86 ldap_back_quarantine(
87         Operation       *op,
88         SlapReply       *rs );
89
90 #ifdef LDAP_BACK_PRINT_CONNTREE
91 extern void
92 ldap_back_print_conntree( ldapinfo_t *li, char *msg );
93 #endif /* LDAP_BACK_PRINT_CONNTREE */
94
95 extern void slap_retry_info_destroy( slap_retry_info_t *ri );
96 extern int slap_retry_info_parse( char *in, slap_retry_info_t *ri,
97         char *buf, ber_len_t buflen );
98 extern int slap_retry_info_unparse( slap_retry_info_t *ri, struct berval *bvout );
99
100 extern int slap_idassert_authzfrom_parse_cf( const char *fname, int lineno, const char *arg, slap_idassert_t *si );
101 extern int slap_idassert_parse_cf( const char *fname, int lineno, int argc, char *argv[], slap_idassert_t *si );
102
103 extern int chain_initialize( void );
104 #ifdef SLAP_DISTPROC
105 extern int distproc_initialize( void );
106 #endif
107
108 extern int ldap_back_monitor_db_init( BackendDB *be );
109 extern int ldap_back_monitor_db_open( BackendDB *be );
110 extern int ldap_back_monitor_db_close( BackendDB *be );
111 extern int ldap_back_monitor_db_destroy( BackendDB *be );
112
113 extern LDAP_REBIND_PROC         ldap_back_default_rebind;
114 extern LDAP_URLLIST_PROC        ldap_back_default_urllist;
115
116 LDAP_END_DECL
117
118 #endif /* PROTO_LDAP_H */