/* Copyright (c) 2012-2014, Matthias Schiffer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** \file Buffer management */ #pragma once #include "log.h" /** A buffer descriptor */ struct fastd_buffer { void *base; /**< The beginning of the allocated memory area */ size_t base_len; /**< The size of the allocated memory area */ void *data; /**< The beginning of the actual data in the buffer */ size_t len; /**< The data length */ }; /** Allocate a new buffer A buffer can have head and tail space which allows changing with data size without moving the data. The buffer is always allocated aligned to 16 bytes to allow efficient access for SIMD instructions etc. in crypto implementations */ static inline fastd_buffer_t fastd_buffer_alloc(const size_t len, size_t head_space, size_t tail_space) { size_t base_len = head_space+len+tail_space; void *ptr; int err = posix_memalign(&ptr, 16, base_len); if (err) exit_error("posix_memalign: %s", strerror(err)); return (fastd_buffer_t){ .base = ptr, .base_len = base_len, .data = ptr+head_space, .len = len }; } /** Duplicates a buffer */ static inline fastd_buffer_t fastd_buffer_dup(const fastd_buffer_t buffer, size_t head_space, size_t tail_space) { fastd_buffer_t new_buffer = fastd_buffer_alloc(buffer.len, head_space, tail_space); memcpy(new_buffer.data, buffer.data, buffer.len); return new_buffer; } /** Frees a buffer */ static inline void fastd_buffer_free(fastd_buffer_t buffer) { free(buffer.base); } /** Pulls the data head (decreases the head space) */ static inline void fastd_buffer_pull_head(fastd_buffer_t *buffer, size_t len) { if (len > (size_t)(buffer->data - buffer->base)) exit_bug("tried to pull buffer across base"); buffer->data -= len; buffer->len += len; } /** Pulls the data head and fills with zeroes */ static inline void fastd_buffer_pull_head_zero(fastd_buffer_t *buffer, size_t len) { fastd_buffer_pull_head(buffer, len); memset(buffer->data, 0, len); } /** Pulls the data head and copies data into the new space */ static inline void fastd_buffer_pull_head_from(fastd_buffer_t *buffer, const void *data, size_t len) { fastd_buffer_pull_head(buffer, len); memcpy(buffer->data, data, len); } /** Pushes the buffer head (increases the head space) */ static inline void fastd_buffer_push_head(fastd_buffer_t *buffer, size_t len) { if (buffer->len < len) exit_bug("tried to push buffer across tail"); buffer->data += len; buffer->len -= len; } /** Pushes the buffer head, copying the removed buffer data somewhere else */ static inline void fastd_buffer_push_head_to(fastd_buffer_t *buffer, void *data, size_t len) { memcpy(data, buffer->data, len); fastd_buffer_push_head(buffer, len); }