blob: e59b5766e7283f8f6c17a114576cead82ef8a710 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +00002/*
3 * Copyright (C) 2017 Linaro
4 * Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +00005 */
6
7#include <common.h>
Simon Glass8e8ccfe2019-12-28 10:45:03 -07008#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Heiko Stuebner6ccb05e2019-10-23 16:46:40 +020010#include <malloc.h>
11#include <linux/libfdt.h>
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +000012#include <tee/optee.h>
13
Bryan O'Donoghue6ffc4202018-03-13 16:50:34 +000014#define optee_hdr_err_msg \
15 "OPTEE verification error:" \
16 "\n\thdr=%p image=0x%08lx magic=0x%08x tzdram 0x%08lx-0x%08lx " \
17 "\n\theader lo=0x%08x hi=0x%08x size=0x%08lx arch=0x%08x" \
18 "\n\tuimage params 0x%08lx-0x%08lx\n"
19
Bryan O'Donoghue32ce6172018-03-13 16:50:27 +000020int optee_verify_image(struct optee_header *hdr, unsigned long tzdram_start,
21 unsigned long tzdram_len, unsigned long image_len)
22{
23 unsigned long tzdram_end = tzdram_start + tzdram_len;
24 uint32_t tee_file_size;
25
26 tee_file_size = hdr->init_size + hdr->paged_size +
27 sizeof(struct optee_header);
28
29 if (hdr->magic != OPTEE_MAGIC ||
30 hdr->version != OPTEE_VERSION ||
31 hdr->init_load_addr_hi > tzdram_end ||
32 hdr->init_load_addr_lo < tzdram_start ||
33 tee_file_size > tzdram_len ||
34 tee_file_size != image_len ||
35 (hdr->init_load_addr_lo + tee_file_size) > tzdram_end) {
36 return -EINVAL;
37 }
38
39 return 0;
40}
Bryan O'Donoghuec5a6e8b2018-03-13 16:50:33 +000041
42int optee_verify_bootm_image(unsigned long image_addr,
43 unsigned long image_load_addr,
44 unsigned long image_len)
45{
46 struct optee_header *hdr = (struct optee_header *)image_addr;
47 unsigned long tzdram_start = CONFIG_OPTEE_TZDRAM_BASE;
48 unsigned long tzdram_len = CONFIG_OPTEE_TZDRAM_SIZE;
49
50 int ret;
51
52 ret = optee_verify_image(hdr, tzdram_start, tzdram_len, image_len);
53 if (ret)
Bryan O'Donoghue6ffc4202018-03-13 16:50:34 +000054 goto error;
Bryan O'Donoghuec5a6e8b2018-03-13 16:50:33 +000055
Bryan O'Donoghue6ffc4202018-03-13 16:50:34 +000056 if (image_load_addr + sizeof(*hdr) != hdr->init_load_addr_lo) {
Bryan O'Donoghuec5a6e8b2018-03-13 16:50:33 +000057 ret = -EINVAL;
Bryan O'Donoghue6ffc4202018-03-13 16:50:34 +000058 goto error;
59 }
60
61 return ret;
62error:
63 printf(optee_hdr_err_msg, hdr, image_addr, hdr->magic, tzdram_start,
64 tzdram_start + tzdram_len, hdr->init_load_addr_lo,
65 hdr->init_load_addr_hi, image_len, hdr->arch, image_load_addr,
66 image_load_addr + image_len);
Bryan O'Donoghuec5a6e8b2018-03-13 16:50:33 +000067
68 return ret;
69}
Heiko Stuebner6ccb05e2019-10-23 16:46:40 +020070
71#if defined(CONFIG_OF_LIBFDT)
72static int optee_copy_firmware_node(const void *old_blob, void *fdt_blob)
73{
74 int old_offs, offs, ret, len;
75 const void *prop;
76
77 old_offs = fdt_path_offset(old_blob, "/firmware/optee");
78 if (old_offs < 0) {
79 debug("Original OP-TEE Device Tree node not found");
80 return old_offs;
81 }
82
83 offs = fdt_path_offset(fdt_blob, "/firmware");
84 if (offs < 0) {
85 offs = fdt_path_offset(fdt_blob, "/");
86 if (offs < 0)
87 return offs;
88
89 offs = fdt_add_subnode(fdt_blob, offs, "firmware");
90 if (offs < 0)
91 return offs;
92 }
93
94 offs = fdt_add_subnode(fdt_blob, offs, "optee");
95 if (offs < 0)
Christoph Müllner0f97e922020-01-26 23:20:54 +010096 return offs;
Heiko Stuebner6ccb05e2019-10-23 16:46:40 +020097
98 /* copy the compatible property */
99 prop = fdt_getprop(old_blob, old_offs, "compatible", &len);
100 if (!prop) {
101 debug("missing OP-TEE compatible property");
102 return -EINVAL;
103 }
104
105 ret = fdt_setprop(fdt_blob, offs, "compatible", prop, len);
106 if (ret < 0)
107 return ret;
108
109 /* copy the method property */
110 prop = fdt_getprop(old_blob, old_offs, "method", &len);
111 if (!prop) {
112 debug("missing OP-TEE method property");
113 return -EINVAL;
114 }
115
116 ret = fdt_setprop(fdt_blob, offs, "method", prop, len);
117 if (ret < 0)
118 return ret;
119
120 return 0;
121}
122
123int optee_copy_fdt_nodes(const void *old_blob, void *new_blob)
124{
125 int nodeoffset, subnode, ret;
126 struct fdt_resource res;
127
128 if (fdt_check_header(old_blob))
129 return -EINVAL;
130
131 if (fdt_check_header(new_blob))
132 return -EINVAL;
133
134 /* only proceed if there is an /firmware/optee node */
135 if (fdt_path_offset(old_blob, "/firmware/optee") < 0) {
136 debug("No OP-TEE firmware node in old fdt, nothing to do");
137 return 0;
138 }
139
140 /*
141 * Do not proceed if the target dt already has an OP-TEE node.
142 * In this case assume that the system knows better somehow,
143 * so do not interfere.
144 */
145 if (fdt_path_offset(new_blob, "/firmware/optee") >= 0) {
146 debug("OP-TEE Device Tree node already exists in target");
147 return 0;
148 }
149
150 ret = optee_copy_firmware_node(old_blob, new_blob);
151 if (ret < 0) {
152 printf("Failed to add OP-TEE firmware node\n");
153 return ret;
154 }
155
156 /* optee inserts its memory regions as reserved-memory nodes */
157 nodeoffset = fdt_subnode_offset(old_blob, 0, "reserved-memory");
158 if (nodeoffset >= 0) {
159 subnode = fdt_first_subnode(old_blob, nodeoffset);
160 while (subnode >= 0) {
161 const char *name = fdt_get_name(old_blob,
162 subnode, NULL);
163 if (!name)
164 return -EINVAL;
165
166 /* only handle optee reservations */
167 if (strncmp(name, "optee", 5))
168 continue;
169
170 /* check if this subnode has a reg property */
171 ret = fdt_get_resource(old_blob, subnode, "reg", 0,
172 &res);
173 if (!ret) {
174 struct fdt_memory carveout = {
175 .start = res.start,
176 .end = res.end,
177 };
178 char *oldname, *nodename, *tmp;
179
180 oldname = strdup(name);
181 if (!oldname)
182 return -ENOMEM;
183
184 tmp = oldname;
185 nodename = strsep(&tmp, "@");
186 if (!nodename) {
187 free(oldname);
188 return -EINVAL;
189 }
190
191 ret = fdtdec_add_reserved_memory(new_blob,
192 nodename,
193 &carveout,
194 NULL);
195 free(oldname);
196
197 if (ret < 0)
198 return ret;
199 }
200
201 subnode = fdt_next_subnode(old_blob, subnode);
202 }
203 }
204
205 return 0;
206}
207#endif