Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / lib / lwres / man / lwres_buffer.3
blob452cdc495f904f5de8da4b67e16bea9073d0a834
1 .\"     $NetBSD: lwres_buffer.3,v 1.5 2014/12/10 04:38:02 christos Exp $
2 .\"
3 .\" Copyright (C) 2004, 2005, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
4 .\" Copyright (C) 2000, 2001 Internet Software Consortium.
5 .\" 
6 .\" Permission to use, copy, modify, and/or distribute this software for any
7 .\" purpose with or without fee is hereby granted, provided that the above
8 .\" copyright notice and this permission notice appear in all copies.
9 .\" 
10 .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 .\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 .\" AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 .\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 .\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 .\" PERFORMANCE OF THIS SOFTWARE.
17 .\"
18 .\" Id
19 .\"
20 .hy 0
21 .ad l
22 .\"     Title: lwres_buffer
23 .\"    Author: 
24 .\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/>
25 .\"      Date: June 18, 2007
26 .\"    Manual: BIND9
27 .\"    Source: BIND9
28 .\"
29 .TH "LWRES_BUFFER" "3" "June 18, 2007" "BIND9" "BIND9"
30 .\" disable hyphenation
31 .nh
32 .\" disable justification (adjust text to left margin only)
33 .ad l
34 .SH "NAME"
35 lwres_buffer_init, lwres_buffer_invalidate, lwres_buffer_add, lwres_buffer_subtract, lwres_buffer_clear, lwres_buffer_first, lwres_buffer_forward, lwres_buffer_back, lwres_buffer_getuint8, lwres_buffer_putuint8, lwres_buffer_getuint16, lwres_buffer_putuint16, lwres_buffer_getuint32, lwres_buffer_putuint32, lwres_buffer_putmem, lwres_buffer_getmem \- lightweight resolver buffer management
36 .SH "SYNOPSIS"
37 .nf
38 #include <lwres/lwbuffer.h>
39 .fi
40 .HP 23
41 .BI "void lwres_buffer_init(lwres_buffer_t\ *" "b" ", void\ *" "base" ", unsigned\ int\ " "length" ");"
42 .HP 29
43 .BI "void lwres_buffer_invalidate(lwres_buffer_t\ *" "b" ");"
44 .HP 22
45 .BI "void lwres_buffer_add(lwres_buffer_t\ *" "b" ", unsigned\ int\ " "n" ");"
46 .HP 27
47 .BI "void lwres_buffer_subtract(lwres_buffer_t\ *" "b" ", unsigned\ int\ " "n" ");"
48 .HP 24
49 .BI "void lwres_buffer_clear(lwres_buffer_t\ *" "b" ");"
50 .HP 24
51 .BI "void lwres_buffer_first(lwres_buffer_t\ *" "b" ");"
52 .HP 26
53 .BI "void lwres_buffer_forward(lwres_buffer_t\ *" "b" ", unsigned\ int\ " "n" ");"
54 .HP 23
55 .BI "void lwres_buffer_back(lwres_buffer_t\ *" "b" ", unsigned\ int\ " "n" ");"
56 .HP 36
57 .BI "lwres_uint8_t lwres_buffer_getuint8(lwres_buffer_t\ *" "b" ");"
58 .HP 27
59 .BI "void lwres_buffer_putuint8(lwres_buffer_t\ *" "b" ", lwres_uint8_t\ " "val" ");"
60 .HP 38
61 .BI "lwres_uint16_t lwres_buffer_getuint16(lwres_buffer_t\ *" "b" ");"
62 .HP 28
63 .BI "void lwres_buffer_putuint16(lwres_buffer_t\ *" "b" ", lwres_uint16_t\ " "val" ");"
64 .HP 38
65 .BI "lwres_uint32_t lwres_buffer_getuint32(lwres_buffer_t\ *" "b" ");"
66 .HP 28
67 .BI "void lwres_buffer_putuint32(lwres_buffer_t\ *" "b" ", lwres_uint32_t\ " "val" ");"
68 .HP 25
69 .BI "void lwres_buffer_putmem(lwres_buffer_t\ *" "b" ", const\ unsigned\ char\ *" "base" ", unsigned\ int\ " "length" ");"
70 .HP 25
71 .BI "void lwres_buffer_getmem(lwres_buffer_t\ *" "b" ", unsigned\ char\ *" "base" ", unsigned\ int\ " "length" ");"
72 .SH "DESCRIPTION"
73 .PP
74 These functions provide bounds checked access to a region of memory where data is being read or written. They are based on, and similar to, the
75 isc_buffer_
76 functions in the ISC library.
77 .PP
78 A buffer is a region of memory, together with a set of related subregions. The
79 \fIused region\fR
80 and the
81 \fIavailable\fR
82 region are disjoint, and their union is the buffer's region. The used region extends from the beginning of the buffer region to the last used byte. The available region extends from one byte greater than the last used byte to the end of the buffer's region. The size of the used region can be changed using various buffer commands. Initially, the used region is empty.
83 .PP
84 The used region is further subdivided into two disjoint regions: the
85 \fIconsumed region\fR
86 and the
87 \fIremaining region\fR. The union of these two regions is the used region. The consumed region extends from the beginning of the used region to the byte before the
88 \fIcurrent\fR
89 offset (if any). The
90 \fIremaining\fR
91 region the current pointer to the end of the used region. The size of the consumed region can be changed using various buffer commands. Initially, the consumed region is empty.
92 .PP
93 The
94 \fIactive region\fR
95 is an (optional) subregion of the remaining region. It extends from the current offset to an offset in the remaining region. Initially, the active region is empty. If the current offset advances beyond the chosen offset, the active region will also be empty.
96 .PP
97 .RS 4
98 .nf
99    /\-\-\-\-\-\-\-\-\-\-\-\-entire length\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\\\\
100    /\-\-\-\-\- used region \-\-\-\-\-\\\\/\-\- available \-\-\\\\
101    +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
102    | consumed  | remaining |                |
103    +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
104    a           b     c     d                e
109 .RS 4
111   a == base of buffer.
112   b == current pointer.  Can be anywhere between a and d.
113   c == active pointer.  Meaningful between b and d.
114   d == used pointer.
115   e == length of buffer.
120 .RS 4
122   a\-e == entire length of buffer.
123   a\-d == used region.
124   a\-b == consumed region.
125   b\-d == remaining region.
126   b\-c == optional active region.
131 \fBlwres_buffer_init()\fR
132 initializes the
133 \fBlwres_buffer_t\fR
134 \fI*b\fR
135 and assocates it with the memory region of size
136 \fIlength\fR
137 bytes starting at location
138 \fIbase.\fR
140 \fBlwres_buffer_invalidate()\fR
141 marks the buffer
142 \fI*b\fR
143 as invalid. Invalidating a buffer after use is not required, but makes it possible to catch its possible accidental use.
145 The functions
146 \fBlwres_buffer_add()\fR
148 \fBlwres_buffer_subtract()\fR
149 respectively increase and decrease the used space in buffer
150 \fI*b\fR
152 \fIn\fR
153 bytes.
154 \fBlwres_buffer_add()\fR
155 checks for buffer overflow and
156 \fBlwres_buffer_subtract()\fR
157 checks for underflow. These functions do not allocate or deallocate memory. They just change the value of
158 used.
160 A buffer is re\-initialised by
161 \fBlwres_buffer_clear()\fR. The function sets
162 used,
163 current
165 active
166 to zero.
168 \fBlwres_buffer_first\fR
169 makes the consumed region of buffer
170 \fI*p\fR
171 empty by setting
172 current
173 to zero (the start of the buffer).
175 \fBlwres_buffer_forward()\fR
176 increases the consumed region of buffer
177 \fI*b\fR
179 \fIn\fR
180 bytes, checking for overflow. Similarly,
181 \fBlwres_buffer_back()\fR
182 decreases buffer
183 \fIb\fR's consumed region by
184 \fIn\fR
185 bytes and checks for underflow.
187 \fBlwres_buffer_getuint8()\fR
188 reads an unsigned 8\-bit integer from
189 \fI*b\fR
190 and returns it.
191 \fBlwres_buffer_putuint8()\fR
192 writes the unsigned 8\-bit integer
193 \fIval\fR
194 to buffer
195 \fI*b\fR.
197 \fBlwres_buffer_getuint16()\fR
199 \fBlwres_buffer_getuint32()\fR
200 are identical to
201 \fBlwres_buffer_putuint8()\fR
202 except that they respectively read an unsigned 16\-bit or 32\-bit integer in network byte order from
203 \fIb\fR. Similarly,
204 \fBlwres_buffer_putuint16()\fR
206 \fBlwres_buffer_putuint32()\fR
207 writes the unsigned 16\-bit or 32\-bit integer
208 \fIval\fR
209 to buffer
210 \fIb\fR, in network byte order.
212 Arbitrary amounts of data are read or written from a lightweight resolver buffer with
213 \fBlwres_buffer_getmem()\fR
215 \fBlwres_buffer_putmem()\fR
216 respectively.
217 \fBlwres_buffer_putmem()\fR
218 copies
219 \fIlength\fR
220 bytes of memory at
221 \fIbase\fR
223 \fIb\fR. Conversely,
224 \fBlwres_buffer_getmem()\fR
225 copies
226 \fIlength\fR
227 bytes of memory from
228 \fIb\fR
230 \fIbase\fR.
231 .SH "COPYRIGHT"
232 Copyright \(co 2004, 2005, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
234 Copyright \(co 2000, 2001 Internet Software Consortium.