All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] vboot: Do not use hashed-strings offset
@ 2018-06-03 18:46 Teddy Reed
  2018-06-07 20:28 ` Simon Glass
  0 siblings, 1 reply; 3+ messages in thread
From: Teddy Reed @ 2018-06-03 18:46 UTC (permalink / raw)
  To: u-boot


The hashed-strings signature property includes two uint32_t values.
The first is unneeded as there should never be a start offset into the
strings region. The second, the size, is needed because the added
signature node appends to this region.

See tools/image-host.c, where a static 0 value is used for the offset.

Signed-off-by: Teddy Reed <teddy.reed@gmail.com>
---
 common/image-sig.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/common/image-sig.c b/common/image-sig.c
index f65d883..9b0a872 100644
--- a/common/image-sig.c
+++ b/common/image-sig.c
@@ -372,8 +372,7 @@ int fit_config_check_sig(const void *fit, int noffset, int required_keynode,
 	/* Add the strings */
 	strings = fdt_getprop(fit, noffset, "hashed-strings", NULL);
 	if (strings) {
-		fdt_regions[count].offset = fdt_off_dt_strings(fit) +
-				fdt32_to_cpu(strings[0]);
+		fdt_regions[count].offset = fdt_off_dt_strings(fit);
 		fdt_regions[count].size = fdt32_to_cpu(strings[1]);
 		count++;
 	}
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] vboot: Do not use hashed-strings offset
  2018-06-03 18:46 [U-Boot] [PATCH] vboot: Do not use hashed-strings offset Teddy Reed
@ 2018-06-07 20:28 ` Simon Glass
  2018-06-07 21:58   ` Teddy Reed
  0 siblings, 1 reply; 3+ messages in thread
From: Simon Glass @ 2018-06-07 20:28 UTC (permalink / raw)
  To: u-boot

Hi Teddy,

On 3 June 2018 at 10:46, Teddy Reed <teddy.reed@gmail.com> wrote:
>
> The hashed-strings signature property includes two uint32_t values.
> The first is unneeded as there should never be a start offset into the
> strings region. The second, the size, is needed because the added
> signature node appends to this region.
>
> See tools/image-host.c, where a static 0 value is used for the offset.
>
> Signed-off-by: Teddy Reed <teddy.reed@gmail.com>
> ---
>  common/image-sig.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/common/image-sig.c b/common/image-sig.c
> index f65d883..9b0a872 100644
> --- a/common/image-sig.c
> +++ b/common/image-sig.c
> @@ -372,8 +372,7 @@ int fit_config_check_sig(const void *fit, int noffset, int required_keynode,
>         /* Add the strings */
>         strings = fdt_getprop(fit, noffset, "hashed-strings", NULL);
>         if (strings) {
> -               fdt_regions[count].offset = fdt_off_dt_strings(fit) +
> -                               fdt32_to_cpu(strings[0]);
> +               fdt_regions[count].offset = fdt_off_dt_strings(fit);

Can you please add a comment here, and in image-host.c, so that we
keep these in sync?

>                 fdt_regions[count].size = fdt32_to_cpu(strings[1]);
>                 count++;
>         }
> --
> 2.7.4
>

Regards,
Simon

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] vboot: Do not use hashed-strings offset
  2018-06-07 20:28 ` Simon Glass
@ 2018-06-07 21:58   ` Teddy Reed
  0 siblings, 0 replies; 3+ messages in thread
From: Teddy Reed @ 2018-06-07 21:58 UTC (permalink / raw)
  To: u-boot

On Thu, Jun 7, 2018 at 4:28 PM, Simon Glass <sjg@chromium.org> wrote:
> Hi Teddy,
>
> On 3 June 2018 at 10:46, Teddy Reed <teddy.reed@gmail.com> wrote:
>>
>> The hashed-strings signature property includes two uint32_t values.
>> The first is unneeded as there should never be a start offset into the
>> strings region. The second, the size, is needed because the added
>> signature node appends to this region.
>>
>> See tools/image-host.c, where a static 0 value is used for the offset.
>>
>> Signed-off-by: Teddy Reed <teddy.reed@gmail.com>
>> ---
>>  common/image-sig.c | 3 +--
>>  1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/common/image-sig.c b/common/image-sig.c
>> index f65d883..9b0a872 100644
>> --- a/common/image-sig.c
>> +++ b/common/image-sig.c
>> @@ -372,8 +372,7 @@ int fit_config_check_sig(const void *fit, int noffset, int required_keynode,
>>         /* Add the strings */
>>         strings = fdt_getprop(fit, noffset, "hashed-strings", NULL);
>>         if (strings) {
>> -               fdt_regions[count].offset = fdt_off_dt_strings(fit) +
>> -                               fdt32_to_cpu(strings[0]);
>> +               fdt_regions[count].offset = fdt_off_dt_strings(fit);
>
> Can you please add a comment here, and in image-host.c, so that we
> keep these in sync?

Will do!

>
>>                 fdt_regions[count].size = fdt32_to_cpu(strings[1]);
>>                 count++;
>>         }
>> --
>> 2.7.4
>>
>
> Regards,
> Simon



-- 
Teddy Reed V

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-06-07 21:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-03 18:46 [U-Boot] [PATCH] vboot: Do not use hashed-strings offset Teddy Reed
2018-06-07 20:28 ` Simon Glass
2018-06-07 21:58   ` Teddy Reed

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.