summaryrefslogtreecommitdiff
path: root/tests/vb2_host_key_tests.c
blob: 82dd35725b06bdf2e82eacfa7c83956f955969a4 (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
/* Copyright 2019 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * Tests for host library vboot2 key functions
 */

#include "2common.h"
#include "host_common.h"
#include "test_common.h"

/* Public key utility functions */
static void public_key_tests(void)
{
	struct vb2_packed_key k[3];
	struct vb2_packed_key j[5];

	/* Fill some bits of the public key data */
	memset(j, 0, sizeof(j));
	memset(k, 0x42, sizeof(k));
	k[1].key_size = 12345;
	k[2].key_version = 67;

	vb2_init_packed_key(k, (uint8_t*)(k + 1),
			    2 * sizeof(struct vb2_packed_key));
	TEST_EQ(k->key_offset, sizeof(struct vb2_packed_key),
		"vb2_init_packed_key key_offset");
	TEST_EQ(k->key_size, 2 * sizeof(struct vb2_packed_key),
		"vb2_init_packed_key key_size");
	TEST_EQ(k->algorithm, VB2_ALG_COUNT, "vb2_init_packed_key algorithm");
	TEST_EQ(k->key_version, 0, "vb2_init_packed_key key_version");

	/* Set algorithm and version, so we can tell if they get copied */
	k->algorithm = 3;
	k->key_version = 21;

	/* Copying to a smaller destination should fail */
	vb2_init_packed_key(j, (uint8_t*)(j + 1),
		      2 * sizeof(struct vb2_packed_key) - 1);
	TEST_NEQ(0, vb2_copy_packed_key(j, k), "vb2_copy_packed_key too small");

	/* Copying to same or larger size should succeed */
	vb2_init_packed_key(j, (uint8_t*)(j + 2),
		      2 * sizeof(struct vb2_packed_key) + 1);
	TEST_EQ(0, vb2_copy_packed_key(j, k), "vb2_copy_packed_key same");
	/* Offset in destination shouldn't have been modified */
	TEST_EQ(j->key_offset, 2 * sizeof(struct vb2_packed_key),
		"vb2_copy_packed_key key_offset");
	/* Size should have been reduced to match the source */
	TEST_EQ(k->key_size, 2 * sizeof(struct vb2_packed_key),
		"vb2_copy_packed_key key_size");
	/* Other fields should have been copied */
	TEST_EQ(k->algorithm, j->algorithm, "vb2_copy_packed_key algorithm");
	TEST_EQ(k->key_version, j->key_version,
		"vb2_copy_packed_key key_version");
	/* Data should have been copied */
	TEST_EQ(0,
		memcmp(vb2_packed_key_data(k),
		       vb2_packed_key_data(j), k->key_size),
		"vb2_copy_packed_key data");
}

int main(int argc, char* argv[])
{
	public_key_tests();

	return gTestSuccess ? 0 : 255;
}