]> git.sur5r.net Git - openldap/blob - include/lber.h
Add special check for pthreads under HP-UX (as last resort).
[openldap] / include / lber.h
1 /*
2  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted only
6  * as authorized by the OpenLDAP Public License.  A copy of this
7  * license is available at http://www.OpenLDAP.org/license.html or
8  * in file LICENSE in the top-level directory of the distribution.
9  */
10 /* Portions
11  * Copyright (c) 1990 Regents of the University of Michigan.
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms are permitted
15  * provided that this notice is preserved and that due credit is given
16  * to the University of Michigan at Ann Arbor. The name of the University
17  * may not be used to endorse or promote products derived from this
18  * software without specific prior written permission. This software
19  * is provided ``as is'' without express or implied warranty.
20  */
21
22 #ifndef _LBER_H
23 #define _LBER_H
24
25 #include <ldap_cdefs.h>
26
27 LDAP_BEGIN_DECL
28
29 /* BER classes and mask */
30 #define LBER_CLASS_UNIVERSAL    0x00
31 #define LBER_CLASS_APPLICATION  0x40
32 #define LBER_CLASS_CONTEXT      0x80
33 #define LBER_CLASS_PRIVATE      0xc0
34 #define LBER_CLASS_MASK         0xc0
35
36 /* BER encoding type and mask */
37 #define LBER_PRIMITIVE          0x00
38 #define LBER_CONSTRUCTED        0x20
39 #define LBER_ENCODING_MASK      0x20
40
41 #define LBER_BIG_TAG_MASK       0x1f
42 #define LBER_MORE_TAG_MASK      0x80
43
44 /*
45  * Note that LBER_ERROR and LBER_DEFAULT are values that can never appear
46  * as valid BER tags, and so it is safe to use them to report errors.  In
47  * fact, any tag for which the following is true is invalid:
48  *     (( tag & 0x00000080 ) != 0 ) && (( tag & 0xFFFFFF00 ) != 0 )
49  */
50 #define LBER_ERROR              0xffffffffL
51 #define LBER_DEFAULT            0xffffffffL
52 /* #define LBER_END_SEQORSET    0xfffffffeL *//* no part of LDAP C-API */
53
54 /* general BER types we know about */
55 #define LBER_BOOLEAN            0x01L
56 #define LBER_INTEGER            0x02L
57 #define LBER_BITSTRING          0x03L
58 #define LBER_OCTETSTRING        0x04L
59 #define LBER_NULL               0x05L
60 #define LBER_ENUMERATED         0x0aL
61 #define LBER_SEQUENCE           0x30L   /* constructed */
62 #define LBER_SET                0x31L   /* constructed */
63
64 #define OLD_LBER_SEQUENCE       0x10L   /* w/o constructed bit - broken */
65 #define OLD_LBER_SET            0x11L   /* w/o constructed bit - broken */
66
67 typedef int (*BERTranslateProc) LDAP_P(( char **bufp,
68         unsigned long *buflenp,
69         int free_input ));
70
71 /* LBER BerElement options */
72 #define LBER_USE_DER            0x01
73 #define LBER_USE_INDEFINITE_LEN 0x02
74 #define LBER_TRANSLATE_STRINGS  0x04
75
76 /* get/set options for BerElement */
77 #define LBER_OPT_BER_OPTIONS    0x01
78 #define LBER_OPT_BER_DEBUG              0x02
79 #define LBER_OPT_DEBUG_LEVEL    LBER_OPT_BER_DEBUG
80
81 /* LBER Sockbuf options */ 
82 #define LBER_TO_FILE           0x01     /* to a file referenced by sb_fd   */
83 #define LBER_TO_FILE_ONLY      0x02     /* only write to file, not network */
84 #define LBER_MAX_INCOMING_SIZE 0x04     /* impose limit on incoming stuff  */
85 #define LBER_NO_READ_AHEAD     0x08     /* read only as much as requested  */
86
87 /* get/set options for Sockbuf */
88 #define LBER_OPT_SOCKBUF_DESC           0x1000
89 #define LBER_OPT_SOCKBUF_OPTIONS        0x1001
90 #define LBER_OPT_SOCKBUF_DEBUG          0x1002
91
92 /* on/off values */
93 #define LBER_OPT_ON             ((void *) 1)
94 #define LBER_OPT_OFF    ((void *) 0)
95
96 #define LBER_OPT_SUCCESS        0
97 #define LBER_OPT_ERROR          (-1)
98
99 typedef struct berelement BerElement;
100 #define NULLBER ((BerElement *) 0)
101
102 typedef struct sockbuf Sockbuf;
103
104 typedef struct seqorset Seqorset;
105 #define NULLSEQORSET ((Seqorset *) 0)
106
107 /* structure for returning a sequence of octet strings + length */
108 struct berval {
109         unsigned long   bv_len;
110         char            *bv_val;
111 };
112
113 /*
114  * in bprint.c:
115  */
116 LDAP_F void ber_print_error LDAP_P(( char *data ));
117 LDAP_F void ber_bprint LDAP_P(( char *data, int len ));
118 #define lber_bprint(d,l)       ber_bprint((d),(l))
119
120 LDAP_F void ber_dump LDAP_P(( BerElement *ber, int inout ));
121 LDAP_F void ber_sos_dump LDAP_P(( Seqorset *sos ));
122
123
124 /*
125  * in decode.c:
126  */
127 LDAP_F unsigned long ber_get_tag LDAP_P(( BerElement *ber ));
128 LDAP_F unsigned long ber_skip_tag LDAP_P(( BerElement *ber, unsigned long *len ));
129 LDAP_F unsigned long ber_peek_tag LDAP_P(( BerElement *ber, unsigned long *len ));
130 LDAP_F unsigned long ber_get_int LDAP_P(( BerElement *ber, long *num ));
131 LDAP_F unsigned long ber_get_stringb LDAP_P(( BerElement *ber, char *buf,
132         unsigned long *len ));
133 LDAP_F unsigned long ber_get_stringa LDAP_P(( BerElement *ber, char **buf ));
134 LDAP_F unsigned long ber_get_stringal LDAP_P(( BerElement *ber, struct berval **bv ));
135 LDAP_F unsigned long ber_get_bitstringa LDAP_P(( BerElement *ber, char **buf,
136         unsigned long *len ));
137 LDAP_F unsigned long ber_get_null LDAP_P(( BerElement *ber ));
138 LDAP_F unsigned long ber_get_boolean LDAP_P(( BerElement *ber, int *boolval ));
139 LDAP_F unsigned long ber_first_element LDAP_P(( BerElement *ber, unsigned long *len,
140         char **last ));
141 LDAP_F unsigned long ber_next_element LDAP_P(( BerElement *ber, unsigned long *len,
142         char *last ));
143 LDAP_F unsigned long ber_scanf LDAP_P(( BerElement *ber, char *fmt, ... ));
144 LDAP_F void ber_bvfree LDAP_P(( struct berval *bv ));
145 LDAP_F void ber_bvecfree LDAP_P(( struct berval **bv ));
146 LDAP_F struct berval *ber_bvdup LDAP_P(( struct berval *bv ));
147 LDAP_F void ber_set_string_translators LDAP_P(( BerElement *ber,
148         BERTranslateProc encode_proc, BERTranslateProc decode_proc ));
149
150 /*
151  * in encode.c
152  */
153 LDAP_F int ber_put_enum LDAP_P(( BerElement *ber, long num, unsigned long tag ));
154 LDAP_F int ber_put_int LDAP_P(( BerElement *ber, long num, unsigned long tag ));
155 LDAP_F int ber_put_ostring LDAP_P(( BerElement *ber, char *str, unsigned long len,
156         unsigned long tag ));
157 LDAP_F int ber_put_string LDAP_P(( BerElement *ber, char *str, unsigned long tag ));
158 LDAP_F int ber_put_bitstring LDAP_P(( BerElement *ber, char *str,
159         unsigned long bitlen, unsigned long tag ));
160 LDAP_F int ber_put_null LDAP_P(( BerElement *ber, unsigned long tag ));
161 LDAP_F int ber_put_boolean LDAP_P(( BerElement *ber, int boolval,
162         unsigned long tag ));
163 LDAP_F int ber_start_seq LDAP_P(( BerElement *ber, unsigned long tag ));
164 LDAP_F int ber_start_set LDAP_P(( BerElement *ber, unsigned long tag ));
165 LDAP_F int ber_put_seq LDAP_P(( BerElement *ber ));
166 LDAP_F int ber_put_set LDAP_P(( BerElement *ber ));
167 LDAP_F int ber_printf LDAP_P(( BerElement *ber, char *fmt, ... ));
168 /*
169  * in io.c:
170  */
171
172 LDAP_F long ber_read LDAP_P(( BerElement *ber, char *buf, unsigned long len ));
173 LDAP_F long ber_write LDAP_P(( BerElement *ber, char *buf, unsigned long len,
174         int nosos ));
175 LDAP_F void ber_free LDAP_P(( BerElement *ber, int freebuf ));
176 LDAP_F int ber_flush LDAP_P(( Sockbuf *sb, BerElement *ber, int freeit ));
177 LDAP_F BerElement *ber_alloc LDAP_P(( void ));
178 LDAP_F BerElement *der_alloc LDAP_P(( void ));
179 LDAP_F BerElement *ber_alloc_t LDAP_P(( int options ));
180 LDAP_F BerElement *ber_dup LDAP_P(( BerElement *ber ));
181 LDAP_F unsigned long ber_get_next LDAP_P(( Sockbuf *sb, unsigned long *len,
182         BerElement *ber ));
183 LDAP_F void ber_init_w_nullc LDAP_P(( BerElement *ber, int options ));
184 LDAP_F void ber_reset LDAP_P(( BerElement *ber, int was_writing ));
185
186 /*
187  * LBER draft-ietf-ldapext-ldap-c-api-01 routines
188  */
189 LDAP_F BerElement *ber_init LDAP_P(( struct berval *bv ));
190 LDAP_F int ber_flatten LDAP_P(( BerElement *ber, struct berval **bvPtr ));
191
192 /*
193  * LBER ber accessor functions
194  */
195 LDAP_F int
196 lber_get_option LDAP_P((void *item, int option, void *outvalue));
197
198 LDAP_F int
199 lber_set_option LDAP_P((void *item, int option, void *invalue));
200
201 /*
202  * LBER Sockbuf functions
203  */
204 LDAP_F Sockbuf *lber_sockbuf_alloc LDAP_P((void));
205 LDAP_F Sockbuf *lber_sockbuf_alloc_fd LDAP_P((int fd));
206 LDAP_F void lber_sockbuf_free LDAP_P((Sockbuf *sb));
207
208 LDAP_END_DECL
209
210 #endif /* _LBER_H */