]> git.sur5r.net Git - openldap/blob - libraries/liblber/lber-int.h
Regen
[openldap] / libraries / liblber / lber-int.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /* Portions
7  * Copyright (c) 1990 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #ifndef _LBER_INT_H
19 #define _LBER_INT_H
20
21 #include "lber.h"
22 #include "ldap_log.h"
23 #include "lber_pvt.h"
24
25 LDAP_BEGIN_DECL
26
27 LBER_F (BER_ERRNO_FN) ber_int_errno_fn;
28
29 struct lber_options {
30         short lbo_valid;
31         unsigned short          lbo_options;
32         int                     lbo_debug;
33         long            lbo_meminuse;
34 };
35
36 #ifdef NEW_LOGGING
37 #    ifdef LDAP_DEBUG
38 #        ifdef LDAP_LOG
39 #            undef LDAP_LOG
40 #        endif
41 #        define LDAP_LOG(a) ber_pvt_log_output a
42 #        define BER_DUMP(a) ber_output_dump a
43 #    else
44 #        define LDAP_LOG(a)
45 #        define BER_DUMP(a)
46 #    endif
47 #endif
48
49 #define LBER_UNINITIALIZED              0x0
50 #define LBER_INITIALIZED                0x1
51 #define LBER_VALID_BERELEMENT   0x2
52 #define LBER_VALID_SOCKBUF              0x3
53
54 LBER_F (struct lber_options) ber_int_options;
55 #define ber_int_debug ber_int_options.lbo_debug
56
57 struct berelement {
58         struct          lber_options ber_opts;
59 #define ber_valid               ber_opts.lbo_valid
60 #define ber_options             ber_opts.lbo_options
61 #define ber_debug               ber_opts.lbo_debug
62
63         ber_tag_t       ber_usertag;
64
65         ber_tag_t       ber_tag;
66         ber_len_t       ber_len;
67
68         char            *ber_buf;
69         char            *ber_ptr;
70         char            *ber_end;
71
72         struct seqorset *ber_sos;
73         char            *ber_rwptr;
74 };
75 #define BER_VALID(ber)  ((ber)->ber_valid==LBER_VALID_BERELEMENT)
76
77 #define ber_pvt_ber_remaining(ber)      ((ber)->ber_end - (ber)->ber_ptr)
78 #define ber_pvt_ber_total(ber)          ((ber)->ber_end - (ber)->ber_buf)
79 #define ber_pvt_ber_write(ber)          ((ber)->ber_ptr - (ber)->ber_buf)
80
81 struct sockbuf {
82         struct lber_options sb_opts;
83         Sockbuf_IO_Desc         *sb_iod;                /* I/O functions */
84 #define sb_valid                sb_opts.lbo_valid
85 #define sb_options              sb_opts.lbo_options
86 #define sb_debug                sb_opts.lbo_debug
87         ber_socket_t            sb_fd;
88         unsigned int            sb_trans_needs_read:1;
89         unsigned int            sb_trans_needs_write:1;
90         ber_len_t                       sb_max_incoming;
91 };
92
93 #define SOCKBUF_VALID( sb )     ( (sb)->sb_valid == LBER_VALID_SOCKBUF )
94
95 #define READBUFSIZ      8192
96
97 struct seqorset {
98         BerElement      *sos_ber;
99         ber_len_t       sos_clen;
100         ber_tag_t       sos_tag;
101         char            *sos_first;
102         char            *sos_ptr;
103         struct seqorset *sos_next;
104 };
105
106
107 /*
108  * io.c
109  */
110 int ber_realloc LDAP_P((
111         BerElement *ber,
112         ber_len_t len ));
113
114 /*
115  * bprint.c
116  */
117 #define ber_log_printf ber_pvt_log_printf
118
119 #ifdef NEW_LOGGING
120 LBER_F( int )
121 ber_output_dump LDAP_P((
122         const char *subsys,
123         int level,
124         BerElement *ber,
125         int inout ));
126 #endif
127
128 LBER_F( int )
129 ber_log_bprint LDAP_P((
130         int errlvl,
131         int loglvl,
132         const char *data,
133         ber_len_t len ));
134
135 LBER_F( int )
136 ber_log_dump LDAP_P((
137         int errlvl,
138         int loglvl,
139         BerElement *ber,
140         int inout ));
141
142 LBER_F( int )
143 ber_log_sos_dump LDAP_P((
144         int errlvl,
145         int loglvl,
146         Seqorset *sos ));
147
148
149 /* memory.c */
150         /* simple macros to realloc for now */
151 LBER_F (BerMemoryFunctions *)   ber_int_memory_fns;
152
153 #ifdef CSRIMALLOC
154 #define LBER_INT_MALLOC         malloc
155 #define LBER_INT_CALLOC         calloc
156 #define LBER_INT_REALLOC        realloc
157 #define LBER_INT_FREE           free
158 #define LBER_INT_VFREE          ber_memvfree
159 #define LBER_INT_STRDUP         strdup
160
161 #define LBER_MALLOC                     malloc
162 #define LBER_CALLOC                     calloc
163 #define LBER_REALLOC            realloc
164 #define LBER_FREE                       free
165 #define LBER_VFREE                      ber_memvfree
166 #define LBER_STRDUP                     strdup
167
168 #else
169 #define LBER_INT_MALLOC(s)              ber_memalloc((s))
170 #define LBER_INT_CALLOC(n,s)    ber_memcalloc((n),(s))
171 #define LBER_INT_REALLOC(p,s)   ber_memrealloc((p),(s))
172 #define LBER_INT_FREE(p)                ber_memfree((p))
173 #define LBER_INT_VFREE(v)               ber_memvfree((void**)(v))
174 #define LBER_INT_STRDUP(s)              ber_strdup((s))
175
176 #define LBER_MALLOC(s)          ber_memalloc((s))
177 #define LBER_CALLOC(n,s)        ber_memcalloc((n),(s))
178 #define LBER_REALLOC(p,s)       ber_memrealloc((p),(s))
179 #define LBER_FREE(p)            ber_memfree((p))        
180 #define LBER_VFREE(v)           ber_memvfree((void**)(v))
181 #define LBER_STRDUP(s)          ber_strdup((s))
182 #endif
183
184 /* sockbuf.c */
185
186 LBER_F( int )
187 ber_int_sb_init LDAP_P(( Sockbuf *sb ));
188
189 LBER_F( int )
190 ber_int_sb_close LDAP_P(( Sockbuf *sb ));
191
192 LBER_F( int )
193 ber_int_sb_destroy LDAP_P(( Sockbuf *sb ));
194
195 LBER_F( ber_slen_t )
196 ber_int_sb_read LDAP_P(( Sockbuf *sb, void *buf, ber_len_t len ));
197
198 LBER_F( ber_slen_t )
199 ber_int_sb_write LDAP_P(( Sockbuf *sb, void *buf, ber_len_t len ));
200
201 LDAP_END_DECL
202
203 #endif /* _LBER_INT_H */