123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- /*
- * 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
- };
|