/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* util/support/t_k5buf.c - Test the k5buf string buffer module */ /* * Copyright 2008 Massachusetts Institute of Technology. * All Rights Reserved. * * Export of this software from the United States of America may * require a specific license from the United States Government. * It is the responsibility of any person or organization contemplating * export to obtain such a license before exporting. * * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and * distribute this software and its documentation for any purpose and * without fee is hereby granted, provided that the above copyright * notice appear in all copies and that both that copyright notice and * this permission notice appear in supporting documentation, and that * the name of M.I.T. not be used in advertising or publicity pertaining * to distribution of the software without specific, written prior * permission. Furthermore if you modify this software you must label * your software as modified software and not distribute it in such a * fashion that it might be confused with the original M.I.T. software. * M.I.T. makes no representations about the suitability of * this software for any purpose. It is provided "as is" without express * or implied warranty. */ #include "k5buf-int.h" #include #include static void fail_if(int condition, const char *name) { if (condition) { fprintf(stderr, "%s failed\n", name); exit(1); } } /* Test the invariants of a buffer. */ static void check_buf(struct k5buf *buf, const char *name) { fail_if(buf->buftype != BUFTYPE_FIXED && buf->buftype != BUFTYPE_DYNAMIC && buf->buftype != BUFTYPE_ERROR, name); if (buf->buftype == BUFTYPE_ERROR) return; fail_if(buf->space == 0, name); fail_if(buf->space > SPACE_MAX, name); fail_if(buf->len >= buf->space, name); fail_if(buf->data[buf->len] != 0, name); } static void test_basic() { struct k5buf buf; char storage[1024], *s; ssize_t len; k5_buf_init_fixed(&buf, storage, sizeof(storage)); k5_buf_add(&buf, "Hello "); k5_buf_add_len(&buf, "world", 5); check_buf(&buf, "basic fixed"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || strcmp(s, "Hello world") != 0 || len != 11, "basic fixed"); k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, "Hello", 5); k5_buf_add(&buf, " world"); check_buf(&buf, "basic dynamic"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || strcmp(s, "Hello world") != 0 || len != 11, "basic dynamic"); k5_free_buf(&buf); } static void test_realloc() { struct k5buf buf; char data[1024], *s; ssize_t len; size_t i; for (i = 0; i < sizeof(data); i++) data[i] = 'a'; /* Cause the buffer size to double from 128 to 256 bytes. */ k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, data, 10); k5_buf_add_len(&buf, data, 128); fail_if(buf.space != 256, "realloc 1"); check_buf(&buf, "realloc 1"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 138 || memcmp(s, data, len) != 0, "realloc 1"); /* Cause the same buffer to double in size to 512 bytes. */ k5_buf_add_len(&buf, data, 128); fail_if(buf.space != 512, "realloc 2"); check_buf(&buf, "realloc 2"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 266 || memcmp(s, data, len) != 0, "realloc 2"); k5_free_buf(&buf); /* Cause a buffer to increase from 128 to 512 bytes directly. */ k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, data, 10); k5_buf_add_len(&buf, data, 256); fail_if(buf.space != 512, "realloc 3"); check_buf(&buf, "realloc 3"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 266 || memcmp(s, data, len) != 0, "realloc 3"); k5_free_buf(&buf); /* Cause a buffer to increase from 128 to 1024 bytes directly. */ k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, data, 10); k5_buf_add_len(&buf, data, 512); fail_if(buf.space != 1024, "realloc 4"); check_buf(&buf, "realloc 4"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 522 || memcmp(s, data, len) != 0, "realloc 4"); k5_free_buf(&buf); /* Cause a reallocation to fail by exceeding SPACE_MAX. */ k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, data, 10); k5_buf_add_len(&buf, NULL, SPACE_MAX); check_buf(&buf, "realloc 5"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(buf.buftype != BUFTYPE_ERROR || s != NULL || len != -1, "realloc 5"); k5_free_buf(&buf); /* Cause a reallocation to fail by integer overflow. */ k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, data, 100); k5_buf_add_len(&buf, NULL, SPACE_MAX * 2); check_buf(&buf, "realloc 6"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(buf.buftype != BUFTYPE_ERROR || s != NULL || len != -1, "realloc 6"); k5_free_buf(&buf); } static void test_overflow() { struct k5buf buf; char storage[10], *s; ssize_t len; /* Cause a fixed-sized buffer overflow. */ k5_buf_init_fixed(&buf, storage, sizeof(storage)); k5_buf_add(&buf, "12345"); k5_buf_add(&buf, "12345"); check_buf(&buf, "overflow 1"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(buf.buftype != BUFTYPE_ERROR || s != NULL || len != -1, "overflow 1"); /* Cause a fixed-sized buffer overflow with integer overflow. */ k5_buf_init_fixed(&buf, storage, sizeof(storage)); k5_buf_add(&buf, "12345"); k5_buf_add_len(&buf, NULL, SPACE_MAX * 2); check_buf(&buf, "overflow 2"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(buf.buftype != BUFTYPE_ERROR || s != NULL || len != -1, "overflow 2"); } static void test_error() { struct k5buf buf; char storage[1]; /* Cause an overflow and then perform actions afterwards. */ k5_buf_init_fixed(&buf, storage, sizeof(storage)); k5_buf_add(&buf, "1"); fail_if(buf.buftype != BUFTYPE_ERROR, "error"); check_buf(&buf, "error"); k5_buf_add(&buf, "test"); check_buf(&buf, "error"); k5_buf_add_len(&buf, "test", 4); check_buf(&buf, "error"); k5_buf_truncate(&buf, 3); check_buf(&buf, "error"); fail_if(buf.buftype != BUFTYPE_ERROR, "error"); } static void test_truncate() { struct k5buf buf; char *s; ssize_t len; k5_buf_init_dynamic(&buf); k5_buf_add(&buf, "abcde"); k5_buf_add(&buf, "fghij"); k5_buf_truncate(&buf, 7); check_buf(&buf, "truncate"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 7 || strcmp(s, "abcdefg") != 0, "truncate"); k5_free_buf(&buf); } static void test_binary() { struct k5buf buf; char *s, data[] = { 'a', 0, 'b' }; ssize_t len; k5_buf_init_dynamic(&buf); k5_buf_add_len(&buf, data, 3); k5_buf_add_len(&buf, data, 3); check_buf(&buf, "binary"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 6, "binary"); fail_if(s[0] != 'a' || s[1] != 0 || s[2] != 'b', "binary"); fail_if(s[3] != 'a' || s[4] != 0 || s[5] != 'b', "binary"); k5_free_buf(&buf); } static void test_fmt() { struct k5buf buf; char *s, storage[10], data[1024]; ssize_t len; size_t i; for (i = 0; i < sizeof(data) - 1; i++) data[i] = 'a'; data[i] = '\0'; /* Format some text into a non-empty fixed buffer. */ k5_buf_init_fixed(&buf, storage, sizeof(storage)); k5_buf_add(&buf, "foo"); k5_buf_add_fmt(&buf, " %d ", 3); check_buf(&buf, "fmt 1"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 6 || strcmp(s, "foo 3 ") != 0, "fmt 1"); /* Overflow the same buffer with formatted text. */ k5_buf_add_fmt(&buf, "%d%d%d%d", 1, 2, 3, 4); check_buf(&buf, "fmt 2"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(buf.buftype != BUFTYPE_ERROR || s != NULL || len != -1, "fmt 2"); /* Format some text into a non-empty dynamic buffer. */ k5_buf_init_dynamic(&buf); k5_buf_add(&buf, "foo"); k5_buf_add_fmt(&buf, " %d ", 3); check_buf(&buf, "fmt 3"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 6 || strcmp(s, "foo 3 ") != 0, "fmt 3"); /* Format more text into the same buffer, causing a big resize. */ k5_buf_add_fmt(&buf, "%s", data); check_buf(&buf, "fmt 4"); fail_if(buf.space != 2048, "fmt 4"); s = k5_buf_data(&buf); len = k5_buf_len(&buf); fail_if(!s || len != 1029 || strcmp(s + 6, data) != 0, "fmt 4"); k5_free_buf(&buf); } int main() { test_basic(); test_realloc(); test_overflow(); test_error(); test_truncate(); test_binary(); test_fmt(); return 0; }