From: Sascha Hauer <s.hauer@pengutronix.de>
To: Rouven Czerwinski <r.czerwinski@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 07/13] scripts: imx: support signing for i.MX8MQ
Date: Wed, 26 Jun 2019 09:51:00 +0200 [thread overview]
Message-ID: <20190626075100.jfgm4dpcplmur6tz@pengutronix.de> (raw)
In-Reply-To: <0a5e4f2477dbd296f8bb6fe49b3db882b0486cc1.1561525118.git-series.r.czerwinski@pengutronix.de>
On Wed, Jun 26, 2019 at 06:58:48AM +0200, Rouven Czerwinski wrote:
> quiet_cmd_kwb_image = KWB $@
> cmd_kwb_image = scripts/kwbimage -p $< $(OPTS_$(@F)) -o $@
> diff --git a/scripts/imx/imx-image.c b/scripts/imx/imx-image.c
> index a7f1421..7169bf7 100644
> --- a/scripts/imx/imx-image.c
> +++ b/scripts/imx/imx-image.c
> @@ -315,6 +315,17 @@ static size_t add_header_v2(const struct config_data *data, void *buf)
> uint32_t loadaddr = data->image_load_addr;
> uint32_t imagesize = data->load_size;
>
> + if (data->cpu_type == IMX_CPU_IMX8MQ) {
> + /*
> + * If singing is enabled on IMX8MQ, the linker script reserves a
Make sure singing is not enabled without a speaker connected ;)
> + * CSF_LEN aligned section directly after the PBL,
> + * only load and sign this area of the data.
> + */
> + imagesize = roundup(data->pbl_code_size + HEADER_LEN, 0x4);
> + if (data->csf)
> + imagesize = roundup(imagesize, 0x1000);
> + }
> +
> buf += offset;
> hdr = buf;
>
> @@ -333,14 +344,22 @@ static size_t add_header_v2(const struct config_data *data, void *buf)
> hdr->self = loadaddr + offset;
>
> hdr->boot_data.start = loadaddr;
> - if (data->max_load_size && imagesize > data->max_load_size)
> + if (!data->csf && data->max_load_size
> + && imagesize > data->max_load_size)
> hdr->boot_data.size = data->max_load_size;
> else
> hdr->boot_data.size = imagesize;
>
> - if (data->csf) {
> + if (data->sign_image) {
> hdr->csf = loadaddr + imagesize;
> hdr->boot_data.size += CSF_LEN;
> + } else if (data->cpu_type == IMX_CPU_IMX8MQ && data->csf) {
> + /*
> + * For i.MX8 the CSF space is added via the linker script, so
> + * the CSF length needs to be added if HABV4 is enabled but
> + * signing is not.
> + */
> + hdr->boot_data.size += CSF_LEN;
> }
>
> hdr->dcd_header.tag = TAG_DCD_HEADER;
> @@ -546,6 +565,7 @@ static int hab_sign(struct config_data *data)
> char *cst;
> void *buf;
> size_t csf_space = CSF_LEN;
> + unsigned int offset = 0;
>
> cst = getenv("CST");
> if (!cst)
> @@ -620,6 +640,9 @@ static int hab_sign(struct config_data *data)
> return -errno;
> }
>
> + printf("--- CSF START ---\n");
> + printf("%s\n", data->csf);
> + printf("--- CSF END ---\n");
> fwrite(data->csf, 1, strlen(data->csf) + 1, f);
>
> pclose(f);
> @@ -672,13 +695,36 @@ static int hab_sign(struct config_data *data)
> return -errno;
> }
>
> - outfd = open(data->outfile, O_WRONLY | O_APPEND);
> + /*
> + * For i.MX8, write into the reserved CSF section
> + */
> + if (data->cpu_type == IMX_CPU_IMX8MQ)
> + outfd = open(data->outfile, O_WRONLY);
> + else
> + outfd = open(data->outfile, O_WRONLY | O_APPEND);
> +
> if (outfd < 0) {
> fprintf(stderr, "Cannot open %s for writing: %s\n", data->outfile,
> strerror(errno));
> exit(1);
> }
>
> + if (data->cpu_type == IMX_CPU_IMX8MQ) {
> + /*
> + * For i.MX8 insert the CSF data into the reserved CSF area
> + * right behind the PBL
> + */
> + offset = roundup(data->header_gap + data->pbl_code_size +
> + HEADER_LEN, 0x1000);
> + if (data->signed_hdmi_firmware_file)
> + offset += PLUGIN_HDMI_SIZE;
> +
> + if (lseek(outfd, offset, SEEK_SET) < 0) {
> + perror("lseek");
> + exit(1);
> + }
> + }
> +
> ret = xwrite(outfd, buf, csf_space);
> if (ret < 0) {
> fprintf(stderr, "write failed: %s\n", strerror(errno));
> @@ -743,7 +789,6 @@ int main(int argc, char *argv[])
> int outfd;
> int dcd_only = 0;
> int now = 0;
> - int sign_image = 0;
> int i, header_copies;
> int add_barebox_header;
> uint32_t barebox_image_size = 0;
> @@ -760,7 +805,7 @@ int main(int argc, char *argv[])
>
> prgname = argv[0];
>
> - while ((opt = getopt(argc, argv, "c:hf:o:bduse")) != -1) {
> + while ((opt = getopt(argc, argv, "c:hf:o:p:bduse")) != -1) {
I'm missing the hunk for the usage() function ;)
> switch (opt) {
> case 'c':
> configfile = optarg;
> @@ -771,6 +816,9 @@ int main(int argc, char *argv[])
> case 'o':
> data.outfile = optarg;
> break;
> + case 'p':
> + data.pbl_code_size = strtoul(optarg, NULL, 0);
> + break;
> case 'b':
> add_barebox_header = 1;
> break;
> @@ -778,7 +826,7 @@ int main(int argc, char *argv[])
> dcd_only = 1;
> break;
> case 's':
> - sign_image = 1;
> + data.sign_image = 1;
Storing sign_image in struct config_data could be an extra patch to make
this one a bit smaller.
> break;
> case 'u':
> create_usb_image = 1;
> @@ -832,14 +880,12 @@ int main(int argc, char *argv[])
> if (ret)
> exit(1);
>
> - if (data.max_load_size && (sign_image || data.encrypt_image)) {
> + if (data.max_load_size && (data.encrypt_image || data.csf)
> + && data.cpu_type != IMX_CPU_IMX8MQ) {
> fprintf(stderr, "Specifying max_load_size is incompatible with HAB signing/encrypting\n");
> exit(1);
> }
>
> - if (!sign_image)
> - data.csf = NULL;
Why is this no longer necessary with this patch? Was it unnecessary
before aswell? Then this might be worth an extra patch.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2019-06-26 7:51 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-26 4:58 [PATCH 00/13] HAB " Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 01/13] hab: implement interface " Rouven Czerwinski
2019-06-26 7:31 ` Sascha Hauer
2019-06-26 10:26 ` Roland Hieber
2019-06-26 4:58 ` [PATCH 02/13] mach-imx: enable HAB on i.MX8MQ Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 03/13] arm: lib: add CSF section between PBL and piggy Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 04/13] esdhc-pbl: extract header parsing from image start Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 05/13] esdhc-pbl: add piggy load function Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 06/13] sections: fix macro for barebox_pbl_size Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 07/13] scripts: imx: support signing for i.MX8MQ Rouven Czerwinski
2019-06-26 7:51 ` Sascha Hauer [this message]
2019-07-02 5:47 ` Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 08/13] images: always build sha256sum into pbl Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 09/13] pbl: add sha256 and piggy verification to PBL Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 10/13] arm: uncompress: verify sha256 if enabled Rouven Czerwinski
2019-06-26 7:52 ` Sascha Hauer
2019-07-01 6:19 ` Rouven Czerwinski
2019-07-01 6:45 ` Sascha Hauer
2019-06-26 4:58 ` [PATCH 11/13] mach-imx: add gencsf header for i.MX8MQ Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 12/13] mach-imx: hab: select piggy verification for i.MX8 Rouven Czerwinski
2019-06-26 4:58 ` [PATCH 13/13] boards: nxp-mx8-evk: rework to different boot flow Rouven Czerwinski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190626075100.jfgm4dpcplmur6tz@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=r.czerwinski@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox