summaryrefslogtreecommitdiff
path: root/tests/truncated_string.c
blob: d7454147ba724d61f9d9a95e4db035658eafa191 (plain)
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
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
 * libfdt - Flat Device Tree manipulation
 *	Testcase for misbehaviour on a truncated string
 * Copyright (C) 2018 David Gibson, IBM Corporation.
 */

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>

#include <libfdt.h>

#include "tests.h"
#include "testdata.h"

int main(int argc, char *argv[])
{
	void *fdt = &truncated_string;
	const struct fdt_property *good, *bad;
	int off, len;
	const char *name;

	test_init(argc, argv);

	vg_prepare_blob(fdt, fdt_totalsize(fdt));

	off = fdt_first_property_offset(fdt, 0);
	good = fdt_get_property_by_offset(fdt, off, NULL);

	off = fdt_next_property_offset(fdt, off);
	bad = fdt_get_property_by_offset(fdt, off, NULL);

	if (fdt32_to_cpu(good->len) != 0)
		FAIL("Unexpected length for good property");
	name = fdt_get_string(fdt, fdt32_to_cpu(good->nameoff), &len);
	if (!name)
		FAIL("fdt_get_string() failed on good property: %s",
		     fdt_strerror(len));
	if (len != 4)
		FAIL("fdt_get_string() returned length %d (not 4) on good property",
		     len);
	if (!streq(name, "good"))
		FAIL("fdt_get_string() returned \"%s\" (not \"good\") on good property",
		     name);

	if (fdt32_to_cpu(bad->len) != 0)
		FAIL("Unexpected length for bad property\n");
	name = fdt_get_string(fdt, fdt32_to_cpu(bad->nameoff), &len);
	if (name)
		FAIL("fdt_get_string() succeeded incorrectly on bad property");
	else if (len != -FDT_ERR_TRUNCATED)
		FAIL("fdt_get_string() gave unexpected error on bad property: %s",
		     fdt_strerror(len));

	/* Make sure the 'good' property breaks correctly if we
	 * truncate the strings section */
	fdt_set_size_dt_strings(fdt, fdt32_to_cpu(good->nameoff) + 4);
	name = fdt_get_string(fdt, fdt32_to_cpu(good->nameoff), &len);
	if (name)
		FAIL("fdt_get_string() succeeded incorrectly on mangled property");
	else if (len != -FDT_ERR_TRUNCATED)
		FAIL("fdt_get_string() gave unexpected error on mangled property: %s",
		     fdt_strerror(len));

	PASS();
}