aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/vpd/vpd_decode.c
blob: 944e21b2a7f4612fb53d05cad270b5fdc2bfe5e1 (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
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
/* SPDX-License-Identifier: BSD-3-Clause */

/*
 * This is a copy from upstream:
 * https://chromium.googlesource.com/chromiumos/platform/vpd/+/master/lib/vpd_decode.c
 */
#include "vpd_decode.h"

static int vpd_decode_len(
		const u32 max_len, const u8 *in, u32 *length, u32 *decoded_len)
{
	u8 more;
	int i = 0;

	if (!length || !decoded_len)
		return VPD_DECODE_FAIL;

	*length = 0;
	do {
		if (i >= max_len)
			return VPD_DECODE_FAIL;

		more = in[i] & 0x80;
		*length <<= 7;
		*length |= in[i] & 0x7f;
		++i;
	} while (more);

	*decoded_len = i;
	return VPD_DECODE_OK;
}

static int vpd_decode_entry(
		const u32 max_len, const u8 *input_buf, u32 *consumed,
		const u8 **entry, u32 *entry_len)
{
	u32 decoded_len;

	if (vpd_decode_len(max_len - *consumed, &input_buf[*consumed],
			   entry_len, &decoded_len) != VPD_DECODE_OK)
		return VPD_DECODE_FAIL;
	if (max_len - *consumed < decoded_len)
		return VPD_DECODE_FAIL;

	*consumed += decoded_len;
	*entry = input_buf + *consumed;

	/* entry_len is untrusted data and must be checked again. */
	if (max_len - *consumed < *entry_len)
		return VPD_DECODE_FAIL;

	*consumed += *entry_len;
	return VPD_DECODE_OK;
}

int vpd_decode_string(
		const u32 max_len, const u8 *input_buf, u32 *consumed,
		vpd_decode_callback callback, void *callback_arg)
{
	int type;
	u32 key_len;
	u32 value_len;
	const u8 *key;
	const u8 *value;

	/* type */
	if (*consumed >= max_len)
		return VPD_DECODE_FAIL;

	type = input_buf[*consumed];

	switch (type) {
	case VPD_TYPE_INFO:
	case VPD_TYPE_STRING:
		(*consumed)++;

		if (vpd_decode_entry(max_len, input_buf, consumed, &key,
				     &key_len) != VPD_DECODE_OK)
			return VPD_DECODE_FAIL;

		if (vpd_decode_entry(max_len, input_buf, consumed, &value,
				     &value_len) != VPD_DECODE_OK)
			return VPD_DECODE_FAIL;

		if (type == VPD_TYPE_STRING)
			return callback(key, key_len, value, value_len,
					callback_arg);
		break;

	default:
		return VPD_DECODE_FAIL;
	}

	return VPD_DECODE_OK;
}