-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfips_integrity.c
executable file
·214 lines (172 loc) · 5.09 KB
/
fips_integrity.c
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
/*
* Perform FIPS Integrity test on Kernel Crypto API
*
*/
#include <linux/crypto.h>
#include <linux/kallsyms.h>
#include <linux/err.h>
#include <linux/scatterlist.h>
#include <crypto/hash.h>
#include "internal.h"
/*
* This function return kernel offset.
* If CONFIG_RELOCATABLE_KERNEL is set
* Then the kernel will be placed into the random offset in memory
* At the build time, we write self address of the "crypto_buildtime_address"
* to the "crypto_buildtime_address" variable
*/
static __u64 get_kernel_offset(void)
{
static __u64 runtime_address = (__u64) &crypto_buildtime_address;
__u64 kernel_offset = abs(crypto_buildtime_address - runtime_address);
return kernel_offset;
}
struct sdesc {
struct shash_desc shash;
char ctx[];
};
static struct sdesc *init_hash(void)
{
struct crypto_shash *tfm = NULL;
struct sdesc *sdesc = NULL;
int size;
int ret = -1;
/* Same as build time */
const unsigned char *key = "The quick brown fox jumps over the lazy dog";
tfm = crypto_alloc_shash("hmac(sha256)", 0, 0);
if (IS_ERR(tfm)) {
pr_err("FIPS(%s): integ failed to allocate tfm %ld\n", __func__, PTR_ERR(tfm));
return ERR_PTR(-EINVAL);
}
ret = crypto_shash_setkey(tfm, key, strlen(key));
if (ret) {
pr_err("FIPS(%s): fail at crypto_hash_setkey\n", __func__);
return ERR_PTR(-EINVAL);
}
size = sizeof(struct shash_desc) + crypto_shash_descsize(tfm);
sdesc = kmalloc(size, GFP_KERNEL);
if (!sdesc)
return ERR_PTR(-ENOMEM);
sdesc->shash.tfm = tfm;
sdesc->shash.flags = 0x0;
ret = crypto_shash_init(&sdesc->shash);
if (ret) {
pr_err("FIPS(%s): fail at crypto_hash_init\n", __func__);
return ERR_PTR(-EINVAL);
}
return sdesc;
}
static int
finalize_hash(struct shash_desc *desc, unsigned char *out, unsigned int out_size)
{
int ret = -1;
if (!desc || !desc->tfm || !out || !out_size) {
pr_err("FIPS(%s): Invalid args\n", __func__);
return ret;
}
if (crypto_shash_digestsize(desc->tfm) > out_size) {
pr_err("FIPS(%s): Not enough space for digest\n", __func__);
return ret;
}
ret = crypto_shash_final(desc, out);
if (ret) {
pr_err("FIPS(%s): crypto_hash_final failed\n", __func__);
return -1;
}
return 0;
}
static int
update_hash(struct shash_desc *desc, unsigned char *start_addr, unsigned int size)
{
int ret = -1;
ret = crypto_shash_update(desc, start_addr, size);
if (ret) {
pr_err("FIPS(%s): crypto_hash_update failed\n", __func__);
return -1;
}
#ifdef CONFIG_CRYPTO_FIPS_FUNC_TEST
if (!strcmp("integrity", get_fips_functest_mode())) {
ret = crypto_shash_update(desc, start_addr, 4);
if (ret) {
pr_err("FIPS(%s): crypto_hash_update failed\n", __func__);
return -1;
}
}
#endif
return 0;
}
int
do_integrity_check(void)
{
int i, rows;
int err = -1;
unsigned long start_addr = 0;
unsigned long end_addr = 0;
unsigned char runtime_hmac[32];
struct sdesc *sdesc = NULL;
const char *builtime_hmac = 0;
unsigned int size = 0;
#ifdef FIPS_DEBUG_INTEGRITY
unsigned int covered = 0;
unsigned int num_addresses = 0;
#endif
sdesc = init_hash();
if (IS_ERR(sdesc)) {
pr_err("FIPS(%s) : init_hash failed\n", __func__);
return -1;
}
rows = (unsigned int) ARRAY_SIZE(integrity_crypto_addrs);
for (i = 0; integrity_crypto_addrs[i].first && i < rows; i++) {
start_addr = integrity_crypto_addrs[i].first + get_kernel_offset();
end_addr = integrity_crypto_addrs[i].last + get_kernel_offset();
/* Print addresses for HMAC calculation */
#ifdef FIPS_DEBUG_INTEGRITY
pr_info("FIPS_DEBUG_INTEGRITY : first last %08llux %08llulx\n",
integrity_crypto_addrs[i].first,
integrity_crypto_addrs[i].last);
covered += (end_addr - start_addr);
#endif
size = end_addr - start_addr;
err = update_hash(&sdesc->shash, (unsigned char *)start_addr, size);
if (err) {
pr_err("FIPS(%s) : Error to update hash\n", __func__);
crypto_free_shash(sdesc->shash.tfm);
kzfree(sdesc);
return -1;
}
}
/* Dump bytes for HMAC */
#ifdef FIPS_DEBUG_INTEGRITY
num_addresses = i;
for (i = 0; integrity_crypto_addrs[i].first && i < rows; i++) {
start_addr = integrity_crypto_addrs[i].first + get_kernel_offset();
end_addr = integrity_crypto_addrs[i].last + get_kernel_offset();
size = end_addr - start_addr;
print_hex_dump(KERN_INFO, "FIPS_DEBUG_INTEGRITY : bytes for HMAC = ", DUMP_PREFIX_NONE,
16, 1,
(char *)start_addr, size, false);
}
#endif
err = finalize_hash(&sdesc->shash, runtime_hmac, sizeof(runtime_hmac));
crypto_free_shash(sdesc->shash.tfm);
kzfree(sdesc);
if (err) {
pr_err("FIPS(%s) : Error in finalize\n", __func__);
return -1;
}
builtime_hmac = builtime_crypto_hmac;
#ifdef FIPS_DEBUG_INTEGRITY
pr_info("FIPS_DEBUG_INTEGRITY : %d bytes are covered, Address fragments (%d)", covered, num_addresses);
print_hex_dump(KERN_INFO, "FIPS_DEBUG_INTEGRITY : runtime hmac = ", DUMP_PREFIX_NONE,
16, 1,
runtime_hmac, sizeof(runtime_hmac), false);
print_hex_dump(KERN_INFO, "FIPS_DEBUG_INTEGRITY : builtime_hmac = ", DUMP_PREFIX_NONE,
16, 1,
builtime_hmac, sizeof(runtime_hmac), false);
#endif
if (!memcmp(builtime_hmac, runtime_hmac, sizeof(runtime_hmac)))
return 0;
else
return -1;
}
EXPORT_SYMBOL_GPL(do_integrity_check);