/* Copyright (c) 2020. The YARA Authors. 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. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 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. */ #include #include #include #include "util.h" static void basic_tests() { YR_ARENA* arena; yr_initialize(); // Create arena with 1 buffers of 10 bytes of initial size assert_true_expr(yr_arena_create(2, 10, &arena) == ERROR_SUCCESS); YR_ARENA_REF ref; // Allocate 5 bytes. assert_true_expr( yr_arena_allocate_memory(arena, 0, 5, &ref) == ERROR_SUCCESS); // Offset should be 0 as this is the first write. assert_true_expr(ref.offset == 0); // Write 16 bytes, "123456789ABCDEF" + null terminator. This forces a // reallocation. assert_true_expr( yr_arena_write_string(arena, 0, "123456789ABCDEF", &ref) == ERROR_SUCCESS); // Offset should be 5 as this was written after the first 5-bytes write. assert_true_expr(ref.offset == 5); // Write 4 bytes, "bar" + null terminator. assert_true_expr( yr_arena_write_string(arena, 0, "123456789ABCDEF", &ref) == ERROR_SUCCESS); // Offset should be 21. assert_true_expr(ref.offset == 21); yr_arena_release(arena); yr_finalize(); } typedef struct TEST_STRUCT TEST_STRUCT; struct TEST_STRUCT { DECLARE_REFERENCE(char*, str1); DECLARE_REFERENCE(char*, str2); }; static void advanced_tests() { YR_ARENA* arena; yr_initialize(); // Create arena with 3 buffers of 10 bytes of initial size. Only the first // two are used, the third one is left empty on purpose. int result = yr_arena_create(3, 10, &arena); assert_true_expr(result == ERROR_SUCCESS); YR_ARENA_REF ref; // Allocate a struct in buffer 0 indicating that the field "str" is a // relocatable pointer. result = yr_arena_allocate_struct( arena, 0, sizeof(TEST_STRUCT), &ref, offsetof(TEST_STRUCT, str1), offsetof(TEST_STRUCT, str2), EOL); assert_true_expr(result == ERROR_SUCCESS); // Get the struct address, this pointer is valid as longs as we don't call // any other function that allocates memory in buffer 0. TEST_STRUCT* s = (TEST_STRUCT*) yr_arena_ref_to_ptr(arena, &ref); // Write a string in buffer 1. yr_arena_write_string(arena, 1, "foo", &ref); // Get the string's address and store it in the struct's "str" field. s->str1 = (char*) yr_arena_ref_to_ptr(arena, &ref); // Write another string in buffer 1. yr_arena_write_string(arena, 1, "bar", &ref); // Get the string's address and store it in the struct's "str" field. s->str2 = (char*) yr_arena_ref_to_ptr(arena, &ref); // The arena should have two reloc entries for the "str1" and "str2" fields. assert_true_expr(arena->reloc_list_head != NULL); assert_true_expr(arena->reloc_list_tail != NULL); assert_true_expr(arena->reloc_list_head->buffer_id == 0); assert_true_expr(arena->reloc_list_tail->buffer_id == 0); assert_true_expr( arena->reloc_list_head->offset == offsetof(TEST_STRUCT, str1)); assert_true_expr( arena->reloc_list_tail->offset == offsetof(TEST_STRUCT, str2)); // Write another string in buffer 1 that causes a buffer reallocation. yr_arena_write_string(arena, 1, "aaaaaaaaaaa", NULL); assert_true_expr(strcmp(s->str1, "foo") == 0); assert_true_expr(strcmp(s->str2, "bar") == 0); YR_STREAM stream; FILE* fh = fopen("test-arena-stream", "w+"); assert_true_expr(fh != NULL); stream.user_data = fh; stream.write = (YR_STREAM_WRITE_FUNC) fwrite; stream.read = (YR_STREAM_READ_FUNC) fread; if (yr_arena_save_stream(arena, &stream) != ERROR_SUCCESS) exit(EXIT_FAILURE); fflush(fh); fseek(fh, 0, SEEK_SET); assert_true_expr(strcmp(s->str1, "foo") == 0); assert_true_expr(strcmp(s->str2, "bar") == 0); yr_arena_release(arena); result = yr_arena_load_stream(&stream, &arena); assert_true_expr(result == ERROR_SUCCESS); ref.buffer_id = 0; ref.offset = 0; s = (TEST_STRUCT*) yr_arena_ref_to_ptr(arena, &ref); assert_true_expr(strcmp(s->str1, "foo") == 0); assert_true_expr(strcmp(s->str2, "bar") == 0); fclose(fh); yr_arena_release(arena); yr_finalize(); } int main(int argc, char** argv) { int result = 0; YR_DEBUG_INITIALIZE(); YR_DEBUG_FPRINTF(1, stderr, "+ %s() { // in %s\n", __FUNCTION__, argv[0]); basic_tests(); advanced_tests(); YR_DEBUG_FPRINTF( 1, stderr, "} = %d // %s() in %s\n", result, __FUNCTION__, argv[0]); return result; }