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