]> git.sur5r.net Git - openldap/blob - include/ldap_pvt.h
return to releng
[openldap] / include / ldap_pvt.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  * 
4  * Copyright 1998-2005 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 file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15
16 /* ldap-pvt.h - Header for ldap_pvt_ functions.
17  * These are meant to be internal to OpenLDAP Software.
18  */
19
20 #ifndef _LDAP_PVT_H
21 #define _LDAP_PVT_H 1
22
23 #include <lber.h>                               /* get ber_slen_t */
24
25 LDAP_BEGIN_DECL
26
27 #define LDAP_PROTO_TCP 1 /* ldap://  */
28 #define LDAP_PROTO_UDP 2 /* reserved */
29 #define LDAP_PROTO_IPC 3 /* ldapi:// */
30
31 LDAP_F ( int )
32 ldap_pvt_url_scheme2proto LDAP_P((
33         const char * ));
34 LDAP_F ( int )
35 ldap_pvt_url_scheme2tls LDAP_P((
36         const char * ));
37
38 LDAP_F ( int )
39 ldap_pvt_url_scheme_port LDAP_P((
40         const char *, int ));
41
42 struct ldap_url_desc; /* avoid pulling in <ldap.h> */
43
44 LDAP_F( int )
45 ldap_url_parse_ext LDAP_P((
46         LDAP_CONST char *url,
47         struct ldap_url_desc **ludpp ));
48
49 LDAP_F( char * )
50 ldap_pvt_ctime LDAP_P((
51         const time_t *tp,
52         char *buf ));
53
54 LDAP_F( char *) ldap_pvt_get_fqdn LDAP_P(( char * ));
55
56 struct hostent; /* avoid pulling in <netdb.h> */
57
58 LDAP_F( int )
59 ldap_pvt_gethostbyname_a LDAP_P((
60         const char *name,
61         struct hostent *resbuf,
62         char **buf,
63         struct hostent **result,
64         int *herrno_ptr ));
65
66 LDAP_F( int )
67 ldap_pvt_gethostbyaddr_a LDAP_P((
68         const char *addr,
69         int len,
70         int type,
71         struct hostent *resbuf,
72         char **buf,
73         struct hostent **result,
74         int *herrno_ptr ));
75
76 struct sockaddr;
77
78 LDAP_F( int )
79 ldap_pvt_get_hname LDAP_P((
80         const struct sockaddr * sa,
81         int salen,
82         char *name,
83         int namelen,
84         char **herr ));
85
86
87 /* charray.c */
88
89 LDAP_F( int )
90 ldap_charray_add LDAP_P((
91     char        ***a,
92     const char *s ));
93
94 LDAP_F( int )
95 ldap_charray_merge LDAP_P((
96     char        ***a,
97     char        **s ));
98
99 LDAP_F( void )
100 ldap_charray_free LDAP_P(( char **a ));
101
102 LDAP_F( int )
103 ldap_charray_inlist LDAP_P((
104     char        **a,
105     const char *s ));
106
107 LDAP_F( char ** )
108 ldap_charray_dup LDAP_P(( char **a ));
109
110 LDAP_F( char ** )
111 ldap_str2charray LDAP_P((
112         const char *str,
113         const char *brkstr ));
114
115 LDAP_F( char * )
116 ldap_charray2str LDAP_P((
117         char **array, const char* sep ));
118
119 /* getdn.c */
120
121 #ifdef LDAP_AVA_NULL    /* in ldap.h */
122 LDAP_F( void ) ldap_rdnfree_x LDAP_P(( LDAPRDN rdn, void *ctx ));
123 LDAP_F( void ) ldap_dnfree_x LDAP_P(( LDAPDN dn, void *ctx ));
124
125 LDAP_F( int ) ldap_bv2dn_x LDAP_P(( 
126         struct berval *bv, LDAPDN *dn, unsigned flags, void *ctx ));
127 LDAP_F( int ) ldap_dn2bv_x LDAP_P(( 
128         LDAPDN dn, struct berval *bv, unsigned flags, void *ctx ));
129 LDAP_F( int ) ldap_bv2rdn_x LDAP_P(( 
130         struct berval *, LDAPRDN *, char **, unsigned flags, void *ctx ));
131 LDAP_F( int ) ldap_rdn2bv_x LDAP_P(( 
132         LDAPRDN rdn, struct berval *bv, unsigned flags, void *ctx ));
133 #endif
134
135 /* url.c */
136 LDAP_F (void) ldap_pvt_hex_unescape LDAP_P(( char *s ));
137
138 /*
139  * these macros assume 'x' is an ASCII x
140  * and assume the "C" locale
141  */
142 #define LDAP_ASCII(c)           (!((c) & 0x80))
143 #define LDAP_SPACE(c)           ((c) == ' ' || (c) == '\t' || (c) == '\n')
144 #define LDAP_DIGIT(c)           ((c) >= '0' && (c) <= '9')
145 #define LDAP_LOWER(c)           ((c) >= 'a' && (c) <= 'z')
146 #define LDAP_UPPER(c)           ((c) >= 'A' && (c) <= 'Z')
147 #define LDAP_ALPHA(c)           (LDAP_LOWER(c) || LDAP_UPPER(c))
148 #define LDAP_ALNUM(c)           (LDAP_ALPHA(c) || LDAP_DIGIT(c))
149
150 #define LDAP_LDH(c)                     (LDAP_ALNUM(c) || (c) == '-')
151
152 #define LDAP_HEXLOWER(c)        ((c) >= 'a' && (c) <= 'f')
153 #define LDAP_HEXUPPER(c)        ((c) >= 'A' && (c) <= 'F')
154 #define LDAP_HEX(c)                     (LDAP_DIGIT(c) || \
155                                                                 LDAP_HEXLOWER(c) || LDAP_HEXUPPER(c))
156
157 /* controls.c */
158 struct ldapcontrol;
159 LDAP_F (struct ldapcontrol *) ldap_control_dup LDAP_P((
160         const struct ldapcontrol *ctrl ));
161
162 LDAP_F (struct ldapcontrol **) ldap_controls_dup LDAP_P((
163         struct ldapcontrol *const *ctrls ));
164
165 LDAP_F (int) ldap_pvt_get_controls LDAP_P((
166         BerElement *be,
167         struct ldapcontrol ***ctrlsp));
168
169 #ifdef HAVE_CYRUS_SASL
170 /* cyrus.c */
171 struct sasl_security_properties; /* avoid pulling in <sasl.h> */
172 LDAP_F (int) ldap_pvt_sasl_secprops LDAP_P((
173         const char *in,
174         struct sasl_security_properties *secprops ));
175
176 LDAP_F (void *) ldap_pvt_sasl_mutex_new LDAP_P((void));
177 LDAP_F (int) ldap_pvt_sasl_mutex_lock LDAP_P((void *mutex));
178 LDAP_F (int) ldap_pvt_sasl_mutex_unlock LDAP_P((void *mutex));
179 LDAP_F (void) ldap_pvt_sasl_mutex_dispose LDAP_P((void *mutex));
180
181 struct sockbuf; /* avoid pulling in <lber.h> */
182 LDAP_F (int) ldap_pvt_sasl_install LDAP_P(( struct sockbuf *, void * ));
183 LDAP_F (void) ldap_pvt_sasl_remove LDAP_P(( struct sockbuf * ));
184 #endif /* HAVE_CYRUS_SASL */
185
186 #ifndef LDAP_PVT_SASL_LOCAL_SSF
187 #define LDAP_PVT_SASL_LOCAL_SSF 71      /* SSF for Unix Domain Sockets */
188 #endif
189
190 struct ldap;
191 struct ldapmsg;
192
193 LDAP_F (int) ldap_open_internal_connection LDAP_P((
194         struct ldap **ldp, ber_socket_t *fdp ));
195
196 /* messages.c */
197 LDAP_F( BerElement * )
198 ldap_get_message_ber LDAP_P((
199         struct ldapmsg * ));
200
201 /* search.c */
202 LDAP_F( int ) ldap_pvt_put_filter LDAP_P((
203         BerElement *ber,
204         const char *str ));
205
206 LDAP_F( char * )
207 ldap_pvt_find_wildcard LDAP_P(( const char *s ));
208
209 LDAP_F( ber_slen_t )
210 ldap_pvt_filter_value_unescape LDAP_P(( char *filter ));
211
212 /* string.c */
213 LDAP_F( char * )
214 ldap_pvt_str2upper LDAP_P(( char *str ));
215
216 LDAP_F( char * )
217 ldap_pvt_str2lower LDAP_P(( char *str ));
218
219 LDAP_F( struct berval * )
220 ldap_pvt_str2upperbv LDAP_P(( char *str, struct berval *bv ));
221
222 LDAP_F( struct berval * )
223 ldap_pvt_str2lowerbv LDAP_P(( char *str, struct berval *bv ));
224
225 /* tls.c */
226 LDAP_F (int) ldap_int_tls_config LDAP_P(( struct ldap *ld,
227         int option, const char *arg ));
228 LDAP_F (int) ldap_pvt_tls_get_option LDAP_P(( struct ldap *ld,
229         int option, void *arg ));
230 LDAP_F (int) ldap_pvt_tls_set_option LDAP_P(( struct ldap *ld,
231         int option, void *arg ));
232
233 LDAP_F (void) ldap_pvt_tls_destroy LDAP_P(( void ));
234 LDAP_F (int) ldap_pvt_tls_init LDAP_P(( void ));
235 LDAP_F (int) ldap_pvt_tls_init_def_ctx LDAP_P(( void ));
236 LDAP_F (int) ldap_pvt_tls_accept LDAP_P(( Sockbuf *sb, void *ctx_arg ));
237 LDAP_F (int) ldap_pvt_tls_inplace LDAP_P(( Sockbuf *sb ));
238 LDAP_F (void *) ldap_pvt_tls_sb_ctx LDAP_P(( Sockbuf *sb ));
239
240 LDAP_F (int) ldap_pvt_tls_init_default_ctx LDAP_P(( void ));
241
242 typedef int LDAPDN_rewrite_dummy LDAP_P (( void *dn, unsigned flags ));
243
244 LDAP_F (int) ldap_pvt_tls_get_my_dn LDAP_P(( void *ctx, struct berval *dn,
245         LDAPDN_rewrite_dummy *func, unsigned flags ));
246 LDAP_F (int) ldap_pvt_tls_get_peer_dn LDAP_P(( void *ctx, struct berval *dn,
247         LDAPDN_rewrite_dummy *func, unsigned flags ));
248 LDAP_F (int) ldap_pvt_tls_get_strength LDAP_P(( void *ctx ));
249
250 LDAP_END_DECL
251
252 #include "ldap_pvt_uc.h"
253
254 #endif
255