blob: 73b6bdc2567b6099deba995611e64ff24c3bce5b (
plain) (
blame)
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
|
#include "assertions.h"
#include "cbor.h"
static size_t generate_overflow_data(unsigned char **overflow_data) {
int i;
*overflow_data = (unsigned char *)malloc(CBOR_MAX_STACK_SIZE + 3);
for (i = 0; i < CBOR_MAX_STACK_SIZE + 1; i++) {
(*overflow_data)[i] = 0xC2; // tag of positive bignum
}
(*overflow_data)[CBOR_MAX_STACK_SIZE + 1] = 0x41; // bytestring of length 1
(*overflow_data)[CBOR_MAX_STACK_SIZE + 2] = 0x01; // a bignum of value 1
return CBOR_MAX_STACK_SIZE + 3;
}
static void test_stack_over_limit(void **_CBOR_UNUSED(_state)) {
unsigned char *overflow_data;
size_t overflow_data_len;
struct cbor_load_result res;
overflow_data_len = generate_overflow_data(&overflow_data);
assert_null(cbor_load(overflow_data, overflow_data_len, &res));
free(overflow_data);
assert_size_equal(res.error.code, CBOR_ERR_MEMERROR);
}
int main(void) {
const struct CMUnitTest tests[] = {cmocka_unit_test(test_stack_over_limit)};
return cmocka_run_group_tests(tests, NULL, NULL);
}
|