]> git.sur5r.net Git - openldap/blob - libraries/liblber/lber-int.h
ITS#897 Internal connection that is closed on one end and about to
[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 };
91
92 #define SOCKBUF_VALID( sb )     ( (sb)->sb_valid == LBER_VALID_SOCKBUF )
93
94 #define READBUFSIZ      8192
95
96 struct seqorset {
97         BerElement      *sos_ber;
98         ber_len_t       sos_clen;
99         ber_tag_t       sos_tag;
100         char            *sos_first;
101         char            *sos_ptr;
102         struct seqorset *sos_next;
103 };
104
105
106 /*
107  * io.c
108  */
109 int ber_realloc LDAP_P((
110         BerElement *ber,
111         ber_len_t len ));
112
113 /*
114  * bprint.c
115  */
116 #define ber_log_printf ber_pvt_log_printf
117
118 #ifdef NEW_LOGGING
119 LBER_F( int )
120 ber_output_dump LDAP_P((
121                         char *subsys,
122                         int level,
123                         BerElement *ber,
124                         int inout ));
125 #endif
126
127 LBER_F( int )
128 ber_log_bprint LDAP_P((
129         int errlvl,
130         int loglvl,
131         const char *data,
132         ber_len_t len ));
133
134 LBER_F( int )
135 ber_log_dump LDAP_P((
136         int errlvl,
137         int loglvl,
138         BerElement *ber,
139         int inout ));
140
141 LBER_F( int )
142 ber_log_sos_dump LDAP_P((
143         int errlvl,
144         int loglvl,
145         Seqorset *sos ));
146
147
148 /* memory.c */
149         /* simple macros to realloc for now */
150 LBER_F (BerMemoryFunctions *)   ber_int_memory_fns;
151
152 #ifdef CSRIMALLOC
153 #define LBER_INT_MALLOC         malloc
154 #define LBER_INT_CALLOC         calloc
155 #define LBER_INT_REALLOC        realloc
156 #define LBER_INT_FREE           free
157 #define LBER_INT_VFREE          ber_memvfree
158 #define LBER_INT_STRDUP         strdup
159
160 #define LBER_MALLOC                     malloc
161 #define LBER_CALLOC                     calloc
162 #define LBER_REALLOC            realloc
163 #define LBER_FREE                       free
164 #define LBER_VFREE                      ber_memvfree
165 #define LBER_STRDUP                     strdup
166
167 #else
168 #define LBER_INT_MALLOC(s)              ber_memalloc((s))
169 #define LBER_INT_CALLOC(n,s)    ber_memcalloc((n),(s))
170 #define LBER_INT_REALLOC(p,s)   ber_memrealloc((p),(s))
171 #define LBER_INT_FREE(p)                ber_memfree((p))
172 #define LBER_INT_VFREE(v)               ber_memvfree((void**)(v))
173 #define LBER_INT_STRDUP(s)              ber_strdup((s))
174
175 #define LBER_MALLOC(s)          ber_memalloc((s))
176 #define LBER_CALLOC(n,s)        ber_memcalloc((n),(s))
177 #define LBER_REALLOC(p,s)       ber_memrealloc((p),(s))
178 #define LBER_FREE(p)            ber_memfree((p))        
179 #define LBER_VFREE(v)           ber_memvfree((void**)(v))
180 #define LBER_STRDUP(s)          ber_strdup((s))
181 #endif
182
183 /* sockbuf.c */
184
185 LBER_F( int )
186 ber_int_sb_init LDAP_P(( Sockbuf *sb ));
187
188 LBER_F( int )
189 ber_int_sb_close LDAP_P(( Sockbuf *sb ));
190
191 LBER_F( int )
192 ber_int_sb_destroy LDAP_P(( Sockbuf *sb ));
193
194 LBER_F( ber_slen_t )
195 ber_int_sb_read LDAP_P(( Sockbuf *sb, void *buf, ber_len_t len ));
196
197 LBER_F( ber_slen_t )
198 ber_int_sb_write LDAP_P(( Sockbuf *sb, void *buf, ber_len_t len ));
199
200 LDAP_END_DECL
201
202 #endif /* _LBER_INT_H */