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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
/*
* Copyright (c) 2019-2021, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <assert.h>
#include <lib/debugfs.h>
#include <limits.h>
#include <plat/arm/common/plat_arm.h>
#include <stdlib.h>
#include <string.h>
#include <tools_share/firmware_image_package.h>
#include "dev.h"
#define NR_FIPS 1
#define STOC_HEADER (sizeof(fip_toc_header_t))
#define STOC_ENTRY (sizeof(fip_toc_entry_t))
struct fipfile {
chan_t *c;
long offset[NR_FILES];
long size[NR_FILES];
};
struct fip_entry {
uuid_t uuid;
long long offset_address;
long long size;
long long flags;
};
struct uuidnames {
const char name[NAMELEN];
const uuid_t uuid;
};
/*******************************************************************************
* This array links the FIP file names to their UUID.
* The elements are ordered according to the image number stored in
* tbbr_img_def.h, starting at index 1.
*
* TODO: this name to uuid binding will preferably be done using
* the coming Property Access Layer / Firmware CONFiguration feature.
******************************************************************************/
static const struct uuidnames uuidnames[] = {
{"", { {0}, {0}, {0}, 0, 0, {0} } },
{"bl2.bin", UUID_TRUSTED_BOOT_FIRMWARE_BL2},
{"scp-bl2.bin", UUID_SCP_FIRMWARE_SCP_BL2},
{"bl31.bin", UUID_EL3_RUNTIME_FIRMWARE_BL31},
{"bl32.bin", UUID_SECURE_PAYLOAD_BL32},
{"bl33.bin", UUID_NON_TRUSTED_FIRMWARE_BL33},
{"tb-fw.crt", UUID_TRUSTED_BOOT_FW_CERT},
{"trstd-k.crt", UUID_TRUSTED_KEY_CERT},
{"scp-fw-k.crt", UUID_SCP_FW_KEY_CERT},
{"soc-fw-k.crt", UUID_SOC_FW_KEY_CERT},
{"tos-fw-k.crt", UUID_TRUSTED_OS_FW_KEY_CERT},
{"nt-fw-k.crt", UUID_NON_TRUSTED_FW_KEY_CERT},
{"scp-fw-c.crt", UUID_SCP_FW_CONTENT_CERT},
{"soc-fw-c.crt", UUID_SOC_FW_CONTENT_CERT},
{"tos-fw-c.crt", UUID_TRUSTED_OS_FW_CONTENT_CERT},
{"nt-fw-c.crt", UUID_NON_TRUSTED_FW_CONTENT_CERT},
{ },
{"fwu.crt", UUID_TRUSTED_FWU_CERT},
{"scp-bl2u.bin", UUID_TRUSTED_UPDATE_FIRMWARE_SCP_BL2U},
{"bl2u.bin", UUID_TRUSTED_UPDATE_FIRMWARE_BL2U},
{"ns-bl2u.bin", UUID_TRUSTED_UPDATE_FIRMWARE_NS_BL2U},
{"bl32-xtr1.bin", UUID_SECURE_PAYLOAD_BL32_EXTRA1},
{"bl32-xtr2.bin", UUID_SECURE_PAYLOAD_BL32_EXTRA2},
{"hw.cfg", UUID_HW_CONFIG},
{"tb-fw.cfg", UUID_TB_FW_CONFIG},
{"soc-fw.cfg", UUID_SOC_FW_CONFIG},
{"tos-fw.cfg", UUID_TOS_FW_CONFIG},
{"nt-fw.cfg", UUID_NT_FW_CONFIG},
{"fw.cfg", UUID_FW_CONFIG},
{"rot-k.crt", UUID_ROT_KEY_CERT},
{"nt-k.crt", UUID_NON_TRUSTED_WORLD_KEY_CERT},
{"sip-sp.crt", UUID_SIP_SECURE_PARTITION_CONTENT_CERT},
{"plat-sp.crt", UUID_PLAT_SECURE_PARTITION_CONTENT_CERT}
};
/*******************************************************************************
* This array contains all the available FIP files.
******************************************************************************/
static struct fipfile archives[NR_FIPS];
/*******************************************************************************
* This variable stores the current number of registered FIP files.
******************************************************************************/
static int nfips;
/*******************************************************************************
* This function parses the ToC of the FIP.
******************************************************************************/
static int get_entry(chan_t *c, struct fip_entry *entry)
{
int n;
n = devtab[c->index]->read(c, entry, sizeof(struct fip_entry));
if (n <= 0) {
return n;
}
if (n != sizeof(struct fip_entry)) {
return -1;
}
if (entry->size == 0) {
return 0;
}
return 1;
}
/*******************************************************************************
* This function exposes the FIP images as files.
******************************************************************************/
static int fipgen(chan_t *c, const dirtab_t *tab, int ntab, int n, dir_t *dir)
{
int i, r;
long off;
chan_t nc;
struct fip_entry entry;
struct fipfile *fip;
static const char unk[] = "unknown";
if (c->dev >= nfips) {
panic();
}
if (clone(archives[c->dev].c, &nc) == NULL) {
panic();
}
fip = &archives[nc.dev];
off = STOC_HEADER;
for (i = 0; i <= n; i++) {
if (fip->offset[i] == -1) {
return 0;
}
if (devtab[nc.index]->seek(&nc, off, KSEEK_SET) < 0) {
return -1;
}
r = get_entry(&nc, &entry);
if (r <= 0) {
return r;
}
off += sizeof(entry);
}
for (i = 1; i < NELEM(uuidnames); i++) {
if (memcmp(&uuidnames[i].uuid,
&entry.uuid, sizeof(uuid_t)) == 0) {
break;
}
}
if (i < NELEM(uuidnames)) {
make_dir_entry(c, dir, uuidnames[i].name,
entry.size, n, O_READ);
} else {
// TODO: set name depending on uuid node value
make_dir_entry(c, dir, unk, entry.size, n, O_READ);
}
return 1;
}
static int fipwalk(chan_t *c, const char *name)
{
return devwalk(c, name, NULL, 0, fipgen);
}
static int fipstat(chan_t *c, const char *file, dir_t *dir)
{
return devstat(c, file, dir, NULL, 0, fipgen);
}
/*******************************************************************************
* This function copies at most n bytes of the FIP image referred by c into
* buf.
******************************************************************************/
static int fipread(chan_t *c, void *buf, int n)
{
long off;
chan_t cs;
struct fipfile *fip;
long size;
/* Only makes sense when using debug language */
assert(c->qid != CHDIR);
if ((c->dev >= nfips) || ((c->qid & CHDIR) != 0)) {
panic();
}
fip = &archives[c->dev];
if ((c->qid >= NR_FILES) || (fip->offset[c->qid] < 0)) {
panic();
}
if (clone(fip->c, &cs) == NULL) {
panic();
}
size = fip->size[c->qid];
if (c->offset >= size) {
return 0;
}
if (n < 0) {
return -1;
}
if (n > (size - c->offset)) {
n = size - c->offset;
}
off = fip->offset[c->qid] + c->offset;
if (devtab[cs.index]->seek(&cs, off, KSEEK_SET) < 0) {
return -1;
}
n = devtab[cs.index]->read(&cs, buf, n);
if (n > 0) {
c->offset += n;
}
return n;
}
/*******************************************************************************
* This function parses the FIP spec and registers its images in order to
* expose them as files in the driver namespace.
* It acts as an initialization function for the FIP driver.
* It returns a pointer to the newly created channel.
******************************************************************************/
static chan_t *fipmount(chan_t *c, const char *spec)
{
int r, n, t;
chan_t *cspec;
uint32_t hname;
struct fip_entry entry;
struct fipfile *fip;
dir_t dir;
if (nfips == NR_FIPS) {
return NULL;
}
fip = &archives[nfips];
for (n = 0; n < NR_FILES; n++) {
fip->offset[n] = -1;
}
cspec = path_to_channel(spec, O_READ);
if (cspec == NULL) {
return NULL;
}
fip->c = cspec;
r = devtab[cspec->index]->read(cspec, &hname, sizeof(hname));
if (r < 0) {
goto err;
}
if ((r != sizeof(hname)) || (hname != TOC_HEADER_NAME)) {
goto err;
}
if (stat(spec, &dir) < 0) {
goto err;
}
t = cspec->index;
if (devtab[t]->seek(cspec, STOC_HEADER, KSEEK_SET) < 0) {
goto err;
}
for (n = 0; n < NR_FILES; n++) {
switch (get_entry(cspec, &entry)) {
case 0:
return attach('F', nfips++);
case -1:
goto err;
default:
if ((entry.offset_address + entry.size) > dir.length) {
goto err;
}
fip->offset[n] = entry.offset_address;
fip->size[n] = entry.size;
break;
}
}
err:
channel_close(cspec);
return NULL;
}
const dev_t fipdevtab = {
.id = 'F',
.stat = fipstat,
.clone = devclone,
.attach = devattach,
.walk = fipwalk,
.read = fipread,
.write = deverrwrite,
.mount = fipmount,
.seek = devseek
};
|