1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single UDP port, with support for SSL/TLS-based
* session authentication and key exchange,
* packet encryption, packet authentication, and
* packet compression.
*
* Copyright (C) 2016-2021 Fox Crypto B.V. <openvpn@foxcrypto.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#elif defined(_MSC_VER)
#include "config-msvc.h"
#endif
#include "syshead.h"
#include <setjmp.h>
#include <cmocka.h>
#include "buffer.h"
#include "buffer.c"
static void
test_buffer_strprefix(void **state)
{
assert_true(strprefix("123456", "123456"));
assert_true(strprefix("123456", "123"));
assert_true(strprefix("123456", ""));
assert_false(strprefix("123456", "456"));
assert_false(strprefix("12", "123"));
}
#define testsep ","
#define testnosep ""
#define teststr1 "one"
#define teststr2 "two"
#define teststr3 "three"
#define teststr4 "four"
#define assert_buf_equals_str(buf, str) \
assert_int_equal(BLEN(buf), strlen(str)); \
assert_memory_equal(BPTR(buf), str, BLEN(buf));
struct test_buffer_list_aggregate_ctx {
struct buffer_list *empty;
struct buffer_list *one_two_three;
struct buffer_list *zero_length_strings;
struct buffer_list *empty_buffers;
};
static int
test_buffer_list_setup(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = calloc(1, sizeof(*ctx));
ctx->empty = buffer_list_new();
ctx->one_two_three = buffer_list_new();
buffer_list_push(ctx->one_two_three, teststr1);
buffer_list_push(ctx->one_two_three, teststr2);
buffer_list_push(ctx->one_two_three, teststr3);
ctx->zero_length_strings = buffer_list_new();
buffer_list_push(ctx->zero_length_strings, "");
buffer_list_push(ctx->zero_length_strings, "");
ctx->empty_buffers = buffer_list_new();
uint8_t data = 0;
buffer_list_push_data(ctx->empty_buffers, &data, 0);
buffer_list_push_data(ctx->empty_buffers, &data, 0);
*state = ctx;
return 0;
}
static int
test_buffer_list_teardown(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
buffer_list_free(ctx->empty);
buffer_list_free(ctx->one_two_three);
buffer_list_free(ctx->zero_length_strings);
buffer_list_free(ctx->empty_buffers);
free(ctx);
return 0;
}
static void
test_buffer_list_aggregate_separator_empty(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
/* aggregating an empty buffer list results in an empty buffer list */
buffer_list_aggregate_separator(ctx->empty, 3, testsep);
assert_null(ctx->empty->head);
}
static void
test_buffer_list_aggregate_separator_noop(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
/* With a max length of 2, no aggregation should take place */
buffer_list_aggregate_separator(ctx->one_two_three, 2, testsep);
assert_int_equal(ctx->one_two_three->size, 3);
struct buffer *buf = buffer_list_peek(ctx->one_two_three);
assert_buf_equals_str(buf, teststr1);
}
static void
test_buffer_list_aggregate_separator_two(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
const char *expected = teststr1 testsep teststr2 testsep;
/* Aggregate the first two elements
* (add 1 to max_len to test if "three" is not sneaked in too)
*/
buffer_list_aggregate_separator(ctx->one_two_three, strlen(expected) + 1,
testsep);
assert_int_equal(ctx->one_two_three->size, 2);
struct buffer *buf = buffer_list_peek(ctx->one_two_three);
assert_buf_equals_str(buf, expected);
}
static void
test_buffer_list_aggregate_separator_all(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
/* Aggregate all */
buffer_list_aggregate_separator(ctx->one_two_three, 1<<16, testsep);
assert_int_equal(ctx->one_two_three->size, 1);
struct buffer *buf = buffer_list_peek(ctx->one_two_three);
assert_buf_equals_str(buf,
teststr1 testsep teststr2 testsep teststr3 testsep);
}
static void
test_buffer_list_aggregate_separator_nosep(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
/* Aggregate all */
buffer_list_aggregate_separator(ctx->one_two_three, 1<<16, testnosep);
assert_int_equal(ctx->one_two_three->size, 1);
struct buffer *buf = buffer_list_peek(ctx->one_two_three);
assert_buf_equals_str(buf, teststr1 teststr2 teststr3);
}
static void
test_buffer_list_aggregate_separator_zerolen(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
struct buffer_list *bl_zerolen = ctx->zero_length_strings;
/* Aggregate all */
buffer_list_aggregate_separator(bl_zerolen, 1<<16, testnosep);
assert_int_equal(bl_zerolen->size, 1);
struct buffer *buf = buffer_list_peek(bl_zerolen);
assert_buf_equals_str(buf, "");
}
static void
test_buffer_list_aggregate_separator_emptybuffers(void **state)
{
struct test_buffer_list_aggregate_ctx *ctx = *state;
struct buffer_list *bl_emptybuffers = ctx->empty_buffers;
/* Aggregate all */
buffer_list_aggregate_separator(bl_emptybuffers, 1<<16, testnosep);
assert_int_equal(bl_emptybuffers->size, 1);
struct buffer *buf = buffer_list_peek(bl_emptybuffers);
assert_int_equal(BLEN(buf), 0);
}
static void
test_buffer_free_gc_one(void **state)
{
struct gc_arena gc = gc_new();
struct buffer buf = alloc_buf_gc(1024, &gc);
assert_ptr_equal(gc.list + 1, buf.data);
free_buf_gc(&buf, &gc);
assert_null(gc.list);
gc_free(&gc);
}
static void
test_buffer_free_gc_two(void **state)
{
struct gc_arena gc = gc_new();
struct buffer buf1 = alloc_buf_gc(1024, &gc);
struct buffer buf2 = alloc_buf_gc(1024, &gc);
struct buffer buf3 = alloc_buf_gc(1024, &gc);
struct gc_entry *e;
e = gc.list;
assert_ptr_equal(e + 1, buf3.data);
assert_ptr_equal(e->next + 1, buf2.data);
assert_ptr_equal(e->next->next + 1, buf1.data);
free_buf_gc(&buf2, &gc);
assert_non_null(gc.list);
while (e)
{
assert_ptr_not_equal(e + 1, buf2.data);
e = e->next;
}
gc_free(&gc);
}
static void
test_buffer_gc_realloc(void **state)
{
struct gc_arena gc = gc_new();
void *p1 = gc_realloc(NULL, 512, &gc);
void *p2 = gc_realloc(NULL, 512, &gc);
assert_ptr_not_equal(p1, p2);
memset(p1, '1', 512);
memset(p2, '2', 512);
p1 = gc_realloc(p1, 512, &gc);
/* allocate 512kB to ensure the pointer needs to change */
void *p1new = gc_realloc(p1, 512ul * 1024, &gc);
assert_ptr_not_equal(p1, p1new);
void *p2new = gc_realloc(p2, 512ul * 1024, &gc);
assert_ptr_not_equal(p2, p2new);
void *p3 = gc_realloc(NULL, 512, &gc);
memset(p3, '3', 512);
gc_free(&gc);
}
static void
test_character_class(void **state)
{
char buf[256];
strcpy(buf, "There is \x01 a nice 1234 year old tr\x7f ee!");
assert_false(string_mod(buf, CC_PRINT, 0, '@'));
assert_string_equal(buf, "There is @ a nice 1234 year old tr@ ee!");
strcpy(buf, "There is \x01 a nice 1234 year old tr\x7f ee!");
assert_true(string_mod(buf, CC_ANY, 0, '@'));
assert_string_equal(buf, "There is \x01 a nice 1234 year old tr\x7f ee!");
/* 0 as replace removes characters */
strcpy(buf, "There is \x01 a nice 1234 year old tr\x7f ee!");
assert_false(string_mod(buf, CC_PRINT, 0, '\0'));
assert_string_equal(buf, "There is a nice 1234 year old tr ee!");
strcpy(buf, "There is \x01 a nice 1234 year old tr\x7f ee!");
assert_false(string_mod(buf, CC_PRINT, CC_DIGIT, '@'));
assert_string_equal(buf, "There is @ a nice @@@@ year old tr@ ee!");
strcpy(buf, "There is \x01 a nice 1234 year old tr\x7f ee!");
assert_false(string_mod(buf, CC_ALPHA, CC_DIGIT, '.'));
assert_string_equal(buf, "There.is...a.nice......year.old.tr..ee.");
strcpy(buf, "There is \x01 a 'nice' \"1234\"\n year old \ntr\x7f ee!");
assert_false(string_mod(buf, CC_ALPHA|CC_DIGIT|CC_NEWLINE|CC_SINGLE_QUOTE, CC_DOUBLE_QUOTE|CC_BLANK, '.'));
assert_string_equal(buf, "There.is...a.'nice'..1234.\n.year.old.\ntr..ee.");
strcpy(buf, "There is a \\'nice\\' \"1234\" [*] year old \ntree!");
assert_false(string_mod(buf, CC_PRINT, CC_BACKSLASH|CC_ASTERISK, '.'));
assert_string_equal(buf, "There is a .'nice.' \"1234\" [.] year old .tree!");
}
static void
test_character_string_mod_buf(void **state)
{
struct gc_arena gc = gc_new();
struct buffer buf = alloc_buf_gc(1024, &gc);
const char test1[] = "There is a nice 1234\x00 year old tree!";
buf_write(&buf, test1, sizeof(test1));
/* allow the null bytes and string but not the ! */
assert_false(string_check_buf(&buf, CC_ALNUM | CC_SPACE | CC_NULL, 0));
/* remove final ! and null byte to pass */
buf_inc_len(&buf, -2);
assert_true(string_check_buf(&buf, CC_ALNUM | CC_SPACE | CC_NULL, 0));
/* Check excluding digits works */
assert_false(string_check_buf(&buf, CC_ALNUM | CC_SPACE | CC_NULL, CC_DIGIT));
gc_free(&gc);
}
static void
test_snprintf(void **state)
{
/* we used to have a custom openvpn_snprintf function because some
* OS (the comment did not specify which) did not always put the
* null byte there. So we unit test this to be sure.
*
* This probably refers to the MSVC behaviour, see also
* https://stackoverflow.com/questions/7706936/is-snprintf-always-null-terminating
*/
/* Instead of trying to trick the compiler here, disable the warnings
* for this unit test. We know that the results will be truncated
* and we want to test that */
#if defined(__GNUC__)
/* some clang version do not understand -Wformat-truncation, so ignore the
* warning to avoid warnings/errors (-Werror) about unknown pragma/option */
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunknown-warning-option"
#endif
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-truncation"
#endif
char buf[10] = { 'a' };
int ret = 0;
ret = snprintf(buf, sizeof(buf), "0123456789abcde");
assert_int_equal(ret, 15);
assert_int_equal(buf[9], '\0');
memset(buf, 'b', sizeof(buf));
ret = snprintf(buf, sizeof(buf), "- %d - %d -", 77, 88);
assert_int_equal(ret, 11);
assert_int_equal(buf[9], '\0');
memset(buf, 'c', sizeof(buf));
ret = snprintf(buf, sizeof(buf), "- %8.2f", 77.8899);
assert_int_equal(ret, 10);
assert_int_equal(buf[9], '\0');
#if defined(__GNUC__)
#pragma GCC diagnostic pop
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
#endif
}
int
main(void)
{
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_buffer_strprefix),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_empty,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_noop,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_two,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_all,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_nosep,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_zerolen,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test_setup_teardown(test_buffer_list_aggregate_separator_emptybuffers,
test_buffer_list_setup,
test_buffer_list_teardown),
cmocka_unit_test(test_buffer_free_gc_one),
cmocka_unit_test(test_buffer_free_gc_two),
cmocka_unit_test(test_buffer_gc_realloc),
cmocka_unit_test(test_character_class),
cmocka_unit_test(test_character_string_mod_buf),
cmocka_unit_test(test_snprintf)
};
return cmocka_run_group_tests_name("buffer", tests, NULL, NULL);
}
|