]> git.sur5r.net Git - openldap/blob - include/ldap_pvt.h
Round one of LDAP_F() macro changes. In this round we rename
[openldap] / include / ldap_pvt.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11 /*
12  * ldap-pvt.h - Header for ldap_pvt_ functions. These are meant to be used
13  *              by the OpenLDAP distribution only.
14  */
15
16 #ifndef _LDAP_PVT_H
17 #define _LDAP_PVT_H 1
18
19 #include <ldap_cdefs.h>
20 #include <lber.h>                               /* get ber_slen_t */
21
22 LDAP_BEGIN_DECL
23
24 #define LDAP_PROTO_TCP 1
25 #define LDAP_PROTO_UDP 2
26 #define LDAP_PROTO_IPC 3
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
36 LDAP_F ( int )
37 ldap_pvt_domain2dn LDAP_P((
38         LDAP_CONST char *domain,
39         char **dn ));
40
41 struct hostent; /* avoid pulling in <netdb.h> */
42
43 LDAP_F( char * )
44 ldap_pvt_ctime LDAP_P((
45         const time_t *tp,
46         char *buf ));
47
48 LDAP_F( int )
49 ldap_pvt_gethostbyname_a LDAP_P((
50         const char *name, 
51         struct hostent *resbuf,
52         char **buf,
53         struct hostent **result,
54         int *herrno_ptr ));
55
56 LDAP_F( int )
57 ldap_pvt_gethostbyaddr_a LDAP_P((
58         const char *addr,
59         int len,
60         int type,
61         struct hostent *resbuf,
62         char **buf,
63         struct hostent **result,
64         int *herrno_ptr ));
65
66
67 /* charray.c */
68
69 LDAP_F( int )
70 ldap_charray_add LDAP_P((
71     char        ***a,
72     char        *s ));
73
74 LDAP_F( int )
75 ldap_charray_merge LDAP_P((
76     char        ***a,
77     char        **s ));
78
79 LDAP_F( void )
80 ldap_charray_free LDAP_P(( char **a ));
81
82 LDAP_F( int )
83 ldap_charray_inlist LDAP_P((
84     char        **a,
85     char        *s ));
86
87 LDAP_F( char ** )
88 ldap_charray_dup LDAP_P(( char **a ));
89
90 LDAP_F( char ** )
91 ldap_str2charray LDAP_P((
92         const char *str,
93         const char *brkstr ));
94
95 /* url.c */
96 LDAP_F (void) ldap_pvt_hex_unescape LDAP_P(( char *s ));
97 LDAP_F (int) ldap_pvt_unhex( int c );
98
99 /* these macros assume 'x' is an ASCII x */
100 #define LDAP_DNSEPARATOR(c)     ((c) == ',' || (c) == ';')
101 #define LDAP_SEPARATOR(c)       ((c) == ',' || (c) == ';' || (c) == '+')
102 #define LDAP_SPACE(c)           ((c) == ' ' || (c) == '\n')
103
104 #define LDAP_LOWER(c)           ( (c) >= 'a' && (c) <= 'z' )
105 #define LDAP_UPPER(c)           ( (c) >= 'A' && (c) <= 'Z' )
106 #define LDAP_ALPHA(c)           ( LDAP_LOWER(c) || LDAP_UPPER(c) )
107 #define LDAP_DIGIT(c)           ( (c) >= '0' && (c) <= '9' )
108 #define LDAP_ALNUM(c)           ( LDAP_ALPHA(c) || LDAP_DIGIT(c) )
109
110 #define LDAP_LEADKEYCHAR(c)     ( LDAP_ALPHA(c) )
111 #define LDAP_KEYCHAR(c)         ( LDAP_ALNUM(c) || (c) == '-' )
112 #define LDAP_LEADOIDCHAR(c)     ( LDAP_DIGIT(c) )
113 #define LDAP_OIDCHAR(c)         ( LDAP_DIGIT(c) || (c) == '.' )
114
115 #define LDAP_LEADATTRCHAR(c)    ( LDAP_LEADKEYCHAR(c) || LDAP_LEADOIDCHAR(c) )
116 #define LDAP_ATTRCHAR(c)                ( LDAP_KEYCHAR((c)) || (c) == '.' )
117
118 #define LDAP_NEEDSESCAPE(c)     ((c) == '\\' || (c) == '"')
119
120 #ifdef HAVE_CYRUS_SASL
121 /* sasl.c */
122
123 #include <sasl.h>
124 #include <ldap.h> 
125
126 LDAP_F (int) ldap_pvt_sasl_init LDAP_P(( void )); /* clientside init */
127 LDAP_F (int) ldap_pvt_sasl_install LDAP_P(( Sockbuf *, void * ));
128 LDAP_F (int) ldap_pvt_sasl_bind LDAP_P(( LDAP *, LDAP_CONST char *,
129         LDAP_CONST char *, LDAP_CONST sasl_callback_t *, LDAPControl **,
130         LDAPControl ** ));
131 LDAP_F (int) ldap_pvt_sasl_get_option LDAP_P(( LDAP *ld, int option,
132         void *arg ));
133 LDAP_F (int) ldap_pvt_sasl_set_option LDAP_P(( LDAP *ld, int option,
134         void *arg ));
135 #endif /* HAVE_CYRUS_SASL */
136
137 /* search.c */
138 LDAP_F( char * )
139 ldap_pvt_find_wildcard LDAP_P(( const char *s ));
140
141 LDAP_F( ber_slen_t )
142 ldap_pvt_filter_value_unescape LDAP_P(( char *filter ));
143
144 /* string.c */
145 LDAP_F( char * )
146 ldap_pvt_str2upper LDAP_P(( char *str ));
147
148 LDAP_F( char * )
149 ldap_pvt_str2lower LDAP_P(( char *str ));
150
151 /* tls.c */
152 struct ldapoptions;
153 struct ldap;
154
155 LDAP_F (int) ldap_pvt_tls_init LDAP_P(( void ));
156 LDAP_F (int) ldap_pvt_tls_config LDAP_P(( struct ldapoptions *lo, int option, const char *arg ));
157 LDAP_F (int) ldap_pvt_tls_connect LDAP_P(( struct ldap *ld, Sockbuf *sb, void *ctx_arg ));
158 LDAP_F (int) ldap_pvt_tls_accept LDAP_P(( Sockbuf *sb, void *ctx_arg ));
159 LDAP_F (int) ldap_pvt_tls_get_option LDAP_P(( struct ldapoptions *lo, int option, void *arg ));
160 LDAP_F (int) ldap_pvt_tls_set_option LDAP_P(( struct ldapoptions *lo, int option, void *arg ));
161 LDAP_F (void *) ldap_pvt_tls_sb_handle LDAP_P(( Sockbuf *sb ));
162 LDAP_F (void *) ldap_pvt_tls_get_handle LDAP_P(( struct ldap *ld ));
163 LDAP_F (int) ldap_pvt_tls_inplace LDAP_P(( Sockbuf *sb ));
164 LDAP_F (int) ldap_pvt_tls_start LDAP_P(( struct ldap *ld, Sockbuf *sb, void *ctx_arg ));
165
166 /*  
167  * UTF-8 (in utf-8.c)
168  */
169
170 typedef ber_int_t ldap_ucs4_t;
171 typedef short ldap_ucs2_t;
172 typedef ldap_ucs2_t ldap_unicode_t;
173
174 /* returns the number of bytes in the UTF-8 string */
175 LDAP_F (ber_len_t) ldap_utf8_bytes( const char * );
176 /* returns the number of UTF-8 characters in the string */
177 LDAP_F (ber_len_t) ldap_utf8_chars( const char * );
178 /* returns the length (in bytes) of the UTF-8 character */
179 LDAP_F (int) ldap_utf8_offset( const char * );
180 /* returns the length (in bytes) indicated by the UTF-8 character */
181 LDAP_F (int) ldap_utf8_charlen( const char * );
182 /* copies a UTF-8 character and returning number of bytes copied */
183 LDAP_F (int) ldap_utf8_copy( char *, const char *);
184
185 /* returns pointer of next UTF-8 character in string */
186 LDAP_F (char*) ldap_utf8_next( const char * );
187 /* returns pointer of previous UTF-8 character in string */
188 LDAP_F (char*) ldap_utf8_prev( const char * );
189
190 /* primitive ctype routines -- not aware of non-ascii characters */
191 LDAP_F (int) ldap_utf8_isascii( const char * );
192 LDAP_F (int) ldap_utf8_isalpha( const char * );
193 LDAP_F (int) ldap_utf8_isalnum( const char * );
194 LDAP_F (int) ldap_utf8_isdigit( const char * );
195 LDAP_F (int) ldap_utf8_isxdigit( const char * );
196 LDAP_F (int) ldap_utf8_isspace( const char * );
197
198 /* span characters not in set, return bytes spanned */
199 LDAP_F (ber_len_t) ldap_utf8_strcspn( const char* str, const char *set);
200 /* span characters in set, return bytes spanned */
201 LDAP_F (ber_len_t) ldap_utf8_strspn( const char* str, const char *set);
202 /* return first occurance of character in string */
203 LDAP_F (char *) ldap_utf8_strchr( const char* str, const char *chr);
204 /* return first character of set in string */
205 LDAP_F (char *) ldap_utf8_strpbrk( const char* str, const char *set);
206 /* reentrant tokenizer */
207 LDAP_F (char*) ldap_utf8_strtok( char* sp, const char* sep, char **last);
208
209 /* Optimizations */
210 #define LDAP_UTF8_ISASCII(p) ( * (const unsigned char *) (p) < 0x100 )
211 #define LDAP_UTF8_CHARLEN(p) ( LDAP_UTF8_ISASCII(p) \
212         ? 1 : ldap_utf8_charlen((p)) )
213 #define LDAP_UTF8_OFFSET(p) ( LDAP_UTF8_ISASCII(p) \
214         ? 1 : ldap_utf8_offset((p)) )
215
216 #define LDAP_UTF8_COPY(d,s) (   LDAP_UTF8_ISASCII(s) \
217         ? (*(d) = *(s), 1) : ldap_utf8_copy((d),(s)) )
218
219 #define LDAP_UTF8_NEXT(p) (     LDAP_UTF8_ISASCII(p) \
220         ? (char *)(p)+1 : ldap_utf8_next((p)) )
221
222 #define LDAP_UTF8_INCR(p) ((p) = LDAP_UTF8_NEXT(p))
223
224 /* For symmetry */
225 #define LDAP_UTF8_PREV(p) (ldap_utf8_prev((p)))
226 #define LDAP_UTF8_DECR(p) ((p)=LDAP_UTF8_PREV((p)))
227
228 LDAP_END_DECL
229
230 #endif
231