/* buffer.c * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include #include #include "buffer.h" #define SMALL_BUFFER_SIZE (2 * 1024) /* Everyone still uses 1500 byte frames, right? */ static GPtrArray *small_buffers = NULL; /* Guaranteed to be at least SMALL_BUFFER_SIZE */ /* XXX - Add medium and large buffers? */ /* Initializes a buffer with a certain amount of allocated space */ void ws_buffer_init(Buffer* buffer, gsize space) { g_assert(buffer); if (G_UNLIKELY(!small_buffers)) small_buffers = g_ptr_array_sized_new(1024); if (space <= SMALL_BUFFER_SIZE) { if (small_buffers->len > 0) { buffer->data = (guint8*) g_ptr_array_remove_index(small_buffers, small_buffers->len - 1); } else { buffer->data = (guint8*)g_malloc(SMALL_BUFFER_SIZE); } buffer->allocated = SMALL_BUFFER_SIZE; } else { buffer->data = (guint8*)g_malloc(space); buffer->allocated = space; } buffer->start = 0; buffer->first_free = 0; } /* Frees the memory used by a buffer */ void ws_buffer_free(Buffer* buffer) { g_assert(buffer); if (buffer->allocated == SMALL_BUFFER_SIZE) { g_ptr_array_add(small_buffers, buffer->data); } else { g_free(buffer->data); } buffer->data = NULL; } /* Assures that there are 'space' bytes at the end of the used space so that another routine can copy directly into the buffer space. After doing that, the routine will also want to run ws_buffer_increase_length(). */ void ws_buffer_assure_space(Buffer* buffer, gsize space) { g_assert(buffer); gsize available_at_end = buffer->allocated - buffer->first_free; gsize space_used; gboolean space_at_beginning; /* If we've got the space already, good! */ if (space <= available_at_end) { return; } /* Maybe we don't have the space available at the end, but we would if we moved the used space back to the beginning of the allocation. The buffer could have become fragmented through lots of calls to ws_buffer_remove_start(). I'm using buffer->start as the same as 'available_at_start' in this comparison. */ /* or maybe there's just no more room. */ space_at_beginning = buffer->start >= space; if (space_at_beginning || buffer->start > 0) { space_used = buffer->first_free - buffer->start; /* this memory copy better be safe for overlapping memory regions! */ memmove(buffer->data, buffer->data + buffer->start, space_used); buffer->start = 0; buffer->first_free = space_used; } /*if (buffer->start >= space) {*/ if (space_at_beginning) { return; } /* We'll allocate more space */ buffer->allocated += space + 1024; buffer->data = (guint8*)g_realloc(buffer->data, buffer->allocated); } void ws_buffer_append(Buffer* buffer, guint8 *from, gsize bytes) { g_assert(buffer); ws_buffer_assure_space(buffer, bytes); memcpy(buffer->data + buffer->first_free, from, bytes); buffer->first_free += bytes; } void ws_buffer_remove_start(Buffer* buffer, gsize bytes) { g_assert(buffer); if (buffer->start + bytes > buffer->first_free) { g_error("ws_buffer_remove_start trying to remove %" G_GINT64_MODIFIER "u bytes. s=%" G_GINT64_MODIFIER "u ff=%" G_GINT64_MODIFIER "u!\n", (guint64)bytes, (guint64)buffer->start, (guint64)buffer->first_free); /** g_error() does an abort() and thus never returns **/ } buffer->start += bytes; if (buffer->start == buffer->first_free) { buffer->start = 0; buffer->first_free = 0; } } #ifndef SOME_FUNCTIONS_ARE_DEFINES void ws_buffer_clean(Buffer* buffer) { g_assert(buffer); ws_buffer_remove_start(buffer, ws_buffer_length(buffer)); } #endif #ifndef SOME_FUNCTIONS_ARE_DEFINES void ws_buffer_increase_length(Buffer* buffer, gsize bytes) { g_assert(buffer); buffer->first_free += bytes; } #endif #ifndef SOME_FUNCTIONS_ARE_DEFINES gsize ws_buffer_length(Buffer* buffer) { g_assert(buffer); return buffer->first_free - buffer->start; } #endif #ifndef SOME_FUNCTIONS_ARE_DEFINES guint8 * ws_buffer_start_ptr(Buffer* buffer) { g_assert(buffer); return buffer->data + buffer->start; } #endif #ifndef SOME_FUNCTIONS_ARE_DEFINES guint8 * ws_buffer_end_ptr(Buffer* buffer) { g_assert(buffer); return buffer->data + buffer->first_free; } #endif #ifndef SOME_FUNCTIONS_ARE_DEFINES void ws_buffer_append_buffer(Buffer* buffer, Buffer* src_buffer) { g_assert(buffer); ws_buffer_append(buffer, ws_buffer_start_ptr(src_buffer), ws_buffer_length(src_buffer)); } #endif void ws_buffer_cleanup(void) { if (small_buffers) { g_ptr_array_set_free_func(small_buffers, g_free); g_ptr_array_free(small_buffers, TRUE); small_buffers = NULL; } } /* * Editor modelines - http://www.wireshark.org/tools/modelines.html * * Local variables: * c-basic-offset: 8 * tab-width: 8 * indent-tabs-mode: t * End: * * vi: set shiftwidth=8 tabstop=8 noexpandtab: * :indentSize=8:tabSize=8:noTabs=false: */