1998-12-12 20:48:14 +00:00
|
|
|
/*
|
1999-01-06 05:37:54 +00:00
|
|
|
* Copyright (C) 1998, 1999 Internet Software Consortium.
|
1998-12-12 20:48:14 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
|
|
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
1998-10-29 02:01:29 +00:00
|
|
|
|
1998-12-12 19:25:20 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1998-10-29 02:01:29 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/buffer.h>
|
|
|
|
|
|
|
|
void
|
1999-01-09 02:39:39 +00:00
|
|
|
isc_buffer_init(isc_buffer_t *b, void *base, unsigned int length,
|
1999-09-02 02:10:44 +00:00
|
|
|
unsigned int type)
|
|
|
|
{
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make 'b' refer to the 'length'-byte region starting at base.
|
|
|
|
*/
|
|
|
|
|
1999-01-06 05:37:54 +00:00
|
|
|
REQUIRE(b != NULL);
|
1998-10-29 02:01:29 +00:00
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
b->magic = ISC_BUFFER_MAGIC;
|
1999-01-06 05:37:54 +00:00
|
|
|
b->type = type;
|
1998-10-29 02:01:29 +00:00
|
|
|
b->base = base;
|
|
|
|
b->length = length;
|
|
|
|
b->used = 0;
|
1999-01-06 05:37:54 +00:00
|
|
|
b->current = 0;
|
1999-01-20 02:42:22 +00:00
|
|
|
b->active = 0;
|
1999-09-02 02:10:44 +00:00
|
|
|
b->mctx = NULL;
|
|
|
|
ISC_LINK_INIT(b, link);
|
1999-01-06 05:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
isc_buffer_invalidate(isc_buffer_t *b) {
|
|
|
|
/*
|
|
|
|
* Make 'b' an invalid buffer.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-09-02 02:10:44 +00:00
|
|
|
REQUIRE(!ISC_LINK_LINKED(b, link));
|
|
|
|
REQUIRE(b->mctx == NULL);
|
1999-01-06 05:37:54 +00:00
|
|
|
|
|
|
|
b->magic = 0;
|
|
|
|
b->type = 0;
|
|
|
|
b->base = NULL;
|
|
|
|
b->length = 0;
|
|
|
|
b->used = 0;
|
|
|
|
b->current = 0;
|
1999-01-20 02:42:22 +00:00
|
|
|
b->active = 0;
|
1999-01-06 05:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
isc_buffer_type(isc_buffer_t *b) {
|
|
|
|
/*
|
|
|
|
* The type of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-06 05:37:54 +00:00
|
|
|
|
|
|
|
return (b->type);
|
1998-10-29 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_region(isc_buffer_t *b, isc_region_t *r) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make 'r' refer to the region of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
|
|
|
r->base = b->base;
|
|
|
|
r->length = b->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_used(isc_buffer_t *b, isc_region_t *r) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make 'r' refer to the used region of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
|
|
|
r->base = b->base;
|
|
|
|
r->length = b->used;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_available(isc_buffer_t *b, isc_region_t *r) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make 'r' refer to the available region of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
1999-01-09 02:39:39 +00:00
|
|
|
r->base = (unsigned char *)b->base + b->used;
|
1998-10-29 02:01:29 +00:00
|
|
|
r->length = b->length - b->used;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_add(isc_buffer_t *b, unsigned int n) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Increase the 'used' region of 'b' by 'n' bytes.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(b->used + n <= b->length);
|
|
|
|
|
|
|
|
b->used += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_subtract(isc_buffer_t *b, unsigned int n) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Decrease the 'used' region of 'b' by 'n' bytes.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(b->used >= n);
|
|
|
|
|
|
|
|
b->used -= n;
|
1999-01-20 02:42:22 +00:00
|
|
|
if (b->current > b->used)
|
|
|
|
b->current = b->used;
|
|
|
|
if (b->active > b->used)
|
|
|
|
b->active = b->used;
|
1998-10-29 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_clear(isc_buffer_t *b) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make the used region empty.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-06 05:37:54 +00:00
|
|
|
|
1998-10-29 02:01:29 +00:00
|
|
|
b->used = 0;
|
1999-01-20 02:42:22 +00:00
|
|
|
b->current = 0;
|
|
|
|
b->active = 0;
|
1998-10-29 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_consumed(isc_buffer_t *b, isc_region_t *r) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make 'r' refer to the consumed region of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
|
|
|
r->base = b->base;
|
1999-01-06 05:37:54 +00:00
|
|
|
r->length = b->current;
|
1998-10-29 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_remaining(isc_buffer_t *b, isc_region_t *r) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make 'r' refer to the remaining region of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
1999-01-06 05:37:54 +00:00
|
|
|
r->base = (unsigned char *)b->base + b->current;
|
|
|
|
r->length = b->used - b->current;
|
1998-10-29 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
1999-01-20 02:42:22 +00:00
|
|
|
void
|
|
|
|
isc_buffer_active(isc_buffer_t *b, isc_region_t *r) {
|
|
|
|
/*
|
|
|
|
* Make 'r' refer to the active region of 'b'.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-20 02:42:22 +00:00
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
|
|
|
if (b->current < b->active) {
|
|
|
|
r->base = (unsigned char *)b->base + b->current;
|
|
|
|
r->length = b->active - b->current;
|
|
|
|
} else {
|
|
|
|
r->base = NULL;
|
|
|
|
r->length = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
isc_buffer_setactive(isc_buffer_t *b, unsigned int n) {
|
|
|
|
unsigned int active;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sets the end of the active region 'n' bytes after current.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-20 02:42:22 +00:00
|
|
|
active = b->current + n;
|
|
|
|
REQUIRE(active <= b->used);
|
|
|
|
|
|
|
|
b->active = active;
|
|
|
|
}
|
|
|
|
|
1998-10-29 02:01:29 +00:00
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_first(isc_buffer_t *b) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Make the consumed region empty.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
|
1999-01-06 05:37:54 +00:00
|
|
|
b->current = 0;
|
1998-10-29 02:01:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_forward(isc_buffer_t *b, unsigned int n) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
1999-01-06 05:37:54 +00:00
|
|
|
* Increase the 'consumed' region of 'b' by 'n' bytes.
|
1998-10-29 02:01:29 +00:00
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-06 05:37:54 +00:00
|
|
|
REQUIRE(b->current + n <= b->used);
|
1998-10-29 02:01:29 +00:00
|
|
|
|
|
|
|
b->current += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_back(isc_buffer_t *b, unsigned int n) {
|
1998-10-29 02:01:29 +00:00
|
|
|
/*
|
|
|
|
* Decrease the 'consumed' region of 'b' by 'n' bytes.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-06 05:37:54 +00:00
|
|
|
REQUIRE(n <= b->current);
|
1998-10-29 02:01:29 +00:00
|
|
|
|
|
|
|
b->current -= n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-12-13 23:45:21 +00:00
|
|
|
isc_buffer_compact(isc_buffer_t *b) {
|
1998-10-29 02:01:29 +00:00
|
|
|
unsigned int length;
|
1999-01-06 05:37:54 +00:00
|
|
|
void *src;
|
1998-10-29 02:01:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Compact the used region by moving the remaining region so it occurs
|
|
|
|
* at the start of the buffer. The used region is shrunk by the size
|
|
|
|
* of the consumed region, and the consumed region is then made empty.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1998-10-29 02:01:29 +00:00
|
|
|
|
1999-01-06 05:37:54 +00:00
|
|
|
src = (unsigned char *)b->base + b->current;
|
|
|
|
length = b->used - b->current;
|
|
|
|
(void)memmove(b->base, src, (size_t)length);
|
1998-10-29 02:01:29 +00:00
|
|
|
|
1999-01-20 02:42:22 +00:00
|
|
|
if (b->active > b->current)
|
|
|
|
b->active -= b->current;
|
|
|
|
else
|
|
|
|
b->active = 0;
|
1999-01-06 05:37:54 +00:00
|
|
|
b->current = 0;
|
1998-10-29 02:01:29 +00:00
|
|
|
b->used = length;
|
|
|
|
}
|
1999-01-07 02:06:48 +00:00
|
|
|
|
1999-05-18 13:44:52 +00:00
|
|
|
isc_uint8_t
|
|
|
|
isc_buffer_getuint8(isc_buffer_t *b) {
|
|
|
|
unsigned char *cp;
|
|
|
|
isc_uint8_t result;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read an unsigned 8-bit integer from 'b' and return it.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-05-18 13:44:52 +00:00
|
|
|
REQUIRE(b->used - b->current >= 1);
|
|
|
|
|
|
|
|
cp = b->base;
|
|
|
|
cp += b->current;
|
|
|
|
b->current += 1;
|
|
|
|
result = ((unsigned int)(cp[0]));
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
isc_buffer_putuint8(isc_buffer_t *b, isc_uint8_t val)
|
|
|
|
{
|
|
|
|
unsigned char *cp;
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-05-18 13:44:52 +00:00
|
|
|
REQUIRE(b->used + 1 <= b->length);
|
|
|
|
|
|
|
|
cp = b->base;
|
|
|
|
cp += b->used;
|
|
|
|
b->used += 1;
|
|
|
|
cp[0] = (val & 0x00ff);
|
|
|
|
}
|
|
|
|
|
1999-01-07 02:06:48 +00:00
|
|
|
isc_uint16_t
|
|
|
|
isc_buffer_getuint16(isc_buffer_t *b) {
|
|
|
|
unsigned char *cp;
|
|
|
|
isc_uint16_t result;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read an unsigned 16-bit integer in network byte order from 'b',
|
|
|
|
* convert it to host byte order, and return it.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-07 02:06:48 +00:00
|
|
|
REQUIRE(b->used - b->current >= 2);
|
|
|
|
|
|
|
|
cp = b->base;
|
|
|
|
cp += b->current;
|
|
|
|
b->current += 2;
|
|
|
|
result = ((unsigned int)(cp[0])) << 8;
|
|
|
|
result |= ((unsigned int)(cp[1]));
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
1999-01-27 06:18:45 +00:00
|
|
|
void
|
|
|
|
isc_buffer_putuint16(isc_buffer_t *b, isc_uint16_t val)
|
|
|
|
{
|
|
|
|
unsigned char *cp;
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-27 06:18:45 +00:00
|
|
|
REQUIRE(b->used + 2 <= b->length);
|
|
|
|
|
|
|
|
cp = b->base;
|
|
|
|
cp += b->used;
|
|
|
|
b->used += 2;
|
|
|
|
cp[0] = (val & 0xff00) >> 8;
|
|
|
|
cp[1] = (val & 0x00ff);
|
|
|
|
}
|
|
|
|
|
1999-01-07 02:06:48 +00:00
|
|
|
isc_uint32_t
|
|
|
|
isc_buffer_getuint32(isc_buffer_t *b) {
|
|
|
|
unsigned char *cp;
|
|
|
|
isc_uint32_t result;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read an unsigned 32-bit integer in network byte order from 'b',
|
|
|
|
* convert it to host byte order, and return it.
|
|
|
|
*/
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-07 02:06:48 +00:00
|
|
|
REQUIRE(b->used - b->current >= 4);
|
|
|
|
|
|
|
|
cp = b->base;
|
|
|
|
cp += b->current;
|
|
|
|
b->current += 4;
|
|
|
|
result = ((unsigned int)(cp[0])) << 24;
|
|
|
|
result |= ((unsigned int)(cp[1])) << 16;
|
|
|
|
result |= ((unsigned int)(cp[2])) << 8;
|
|
|
|
result |= ((unsigned int)(cp[3]));
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
1999-01-27 06:18:45 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
isc_buffer_putuint32(isc_buffer_t *b, isc_uint32_t val)
|
|
|
|
{
|
|
|
|
unsigned char *cp;
|
|
|
|
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
1999-01-27 06:18:45 +00:00
|
|
|
REQUIRE(b->used + 4 <= b->length);
|
|
|
|
|
|
|
|
cp = b->base;
|
|
|
|
cp += b->used;
|
|
|
|
b->used += 4;
|
1999-09-23 17:54:57 +00:00
|
|
|
cp[0] = (unsigned char)((val & 0xff000000) >> 24);
|
|
|
|
cp[1] = (unsigned char)((val & 0x00ff0000) >> 16);
|
|
|
|
cp[2] = (unsigned char)((val & 0x0000ff00) >> 8);
|
|
|
|
cp[3] = (unsigned char)(val & 0x000000ff);
|
1999-01-27 06:18:45 +00:00
|
|
|
}
|
1999-04-19 23:56:36 +00:00
|
|
|
|
1999-10-29 23:50:55 +00:00
|
|
|
void
|
|
|
|
isc_buffer_putmem(isc_buffer_t *b, unsigned char *base, unsigned int length)
|
|
|
|
{
|
|
|
|
unsigned char *cp;
|
|
|
|
|
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
|
|
|
REQUIRE(b->used + length <= b->length);
|
|
|
|
|
|
|
|
cp = b->base + b->used;
|
|
|
|
memcpy(cp, base, length);
|
|
|
|
b->used += length;
|
|
|
|
}
|
|
|
|
|
1999-09-22 00:35:59 +00:00
|
|
|
isc_result_t
|
|
|
|
isc_buffer_copyregion(isc_buffer_t *b, isc_region_t *r) {
|
|
|
|
unsigned char *base;
|
|
|
|
unsigned int available;
|
|
|
|
|
|
|
|
REQUIRE(ISC_BUFFER_VALID(b));
|
|
|
|
REQUIRE(r != NULL);
|
|
|
|
|
|
|
|
base = (unsigned char *)b->base + b->used;
|
|
|
|
available = b->length - b->used;
|
|
|
|
if (r->length > available)
|
|
|
|
return (ISC_R_NOSPACE);
|
|
|
|
memcpy(base, r->base, r->length);
|
|
|
|
b->used += r->length;
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
1999-04-19 23:56:36 +00:00
|
|
|
isc_result_t
|
1999-09-02 02:10:44 +00:00
|
|
|
isc_buffer_allocate(isc_mem_t *mctx, isc_buffer_t **dynbuffer,
|
|
|
|
unsigned int length, unsigned int type)
|
1999-04-19 23:56:36 +00:00
|
|
|
{
|
1999-09-02 02:10:44 +00:00
|
|
|
isc_buffer_t *dbuf;
|
1999-04-19 23:56:36 +00:00
|
|
|
|
|
|
|
REQUIRE(dynbuffer != NULL);
|
|
|
|
REQUIRE(*dynbuffer == NULL);
|
|
|
|
|
1999-09-02 02:10:44 +00:00
|
|
|
dbuf = isc_mem_get(mctx, length + sizeof(isc_buffer_t));
|
1999-04-19 23:56:36 +00:00
|
|
|
if (dbuf == NULL)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
|
1999-09-02 02:10:44 +00:00
|
|
|
isc_buffer_init(dbuf, ((unsigned char *)dbuf) + sizeof(isc_buffer_t),
|
1999-04-19 23:56:36 +00:00
|
|
|
length, type);
|
1999-09-02 02:10:44 +00:00
|
|
|
dbuf->mctx = mctx;
|
1999-04-19 23:56:36 +00:00
|
|
|
|
|
|
|
*dynbuffer = dbuf;
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
1999-04-29 05:59:51 +00:00
|
|
|
void
|
1999-09-02 02:10:44 +00:00
|
|
|
isc_buffer_free(isc_buffer_t **dynbuffer)
|
1999-04-19 23:56:36 +00:00
|
|
|
{
|
|
|
|
unsigned int real_length;
|
1999-09-02 02:10:44 +00:00
|
|
|
isc_buffer_t *dbuf;
|
|
|
|
isc_mem_t *mctx;
|
1999-04-19 23:56:36 +00:00
|
|
|
|
|
|
|
REQUIRE(dynbuffer != NULL);
|
1999-09-10 01:54:08 +00:00
|
|
|
REQUIRE(ISC_BUFFER_VALID(*dynbuffer));
|
1999-09-02 02:10:44 +00:00
|
|
|
REQUIRE((*dynbuffer)->mctx != NULL);
|
1999-04-19 23:56:36 +00:00
|
|
|
|
|
|
|
dbuf = *dynbuffer;
|
|
|
|
*dynbuffer = NULL; /* destroy external reference */
|
|
|
|
|
1999-09-02 02:10:44 +00:00
|
|
|
real_length = dbuf->length + sizeof(isc_buffer_t);
|
|
|
|
mctx = dbuf->mctx;
|
|
|
|
dbuf->mctx = NULL;
|
|
|
|
isc_buffer_invalidate(dbuf);
|
1999-04-19 23:56:36 +00:00
|
|
|
|
|
|
|
isc_mem_put(mctx, dbuf, real_length);
|
|
|
|
}
|