Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-24 Thread Vincent Stehlé
On Fri, Jun 21, 2024 at 07:11:28PM +0200, Caleb Connolly wrote:
> On Fri, 21 Jun 2024, 19:06 Vincent Stehlé,  wrote:
> 
> > On Fri, Jun 21, 2024 at 01:00:51PM +0200, Heinrich Schuchardt wrote:
> > (..)
> > > The current specification is in RFC 9562, 4.1, "Variant field"
> > >
> > > "The variant field consists of a variable number of the most significant
> > > bits of octet 8 of the UUID.
> > >
> > > ...
> > >
> > > Specifically for UUIDs in this document, bits 64 and 65 of the UUID
> > > (bits 0 and 1 of octet 8) MUST be set to 1 and 0 as specified in row 2
> > > of Table 1."
> > >
> > > This reference to byte 8 does not depend on endianness.
> >
> > Hi Heinrich,
> >
> > Agreed, variant is not concerned by the endianness.
> >
> > >
> > > U-Boot's include/uuid.h has:
> > >
> > > /* This is structure is in big-endian */
> > > struct uuid {
> > >
> > > The field time_hi_and_version needs to be stored in big-endian fashion.
> >
> > Thanks! I thought this structure was used to hold either a big-endian UUID
> > or a
> > little-endian GUID, but now you have convinced me.
> >
> > This confirms that the generation of the dynamic GUID is missing something:
> >
> > gen_uuid_v5(,
> > (struct uuid *)_array[i].image_type_id,
> > compatible, strlen(compatible),
> > fw_array[i].fw_name, u16_strsize(fw_array[i].fw_name)
> > - sizeof(uint16_t),
> > NULL);
> >
> > It is not possible to cast the little-endian efi_guid_t .image_type_id as
> > the
> > big-endian struct uuid output of gen_uuid_v5() like this; we need to
> > convert the
> > three time fields from big to little endianness.
> >
> 
> I'm inclined to disagree, the comment above struct uuid in include/uuid.h
> state clearly that the format in memory is always big endian, but that a
> GUID when printed has some fields converted to little endian.

Hi Caleb,

I read the comments above struct uuid differently: the GUID has some fields
little-endian when stored in memory (and can thus not be stored in a struct
uuid after Heinrich's comments).

This is consistent with how it is done in U-Boot in various locations; for
example, the EFI_GUID() macro stores a GUID with its time fields little-endian
in memory. Similarly, the callers of uuid_str_to_bin() or uuid_bin_to_str() with
format UUID_STR_FORMAT_GUID have indeed a little-endian GUID in memory (most
often an efi_guid_t). This is also consistent with the UEFI specification's
16-byte buffer format. [1]

When you have a big-endian UUID in memory, the version field is stored in byte
6, which is consistent with the RFC 9562. [2]
If you convert this big-endian UUID with uuid_bin_to_str() and
UUID_STR_FORMAT_GUID as in genguid, the "time high and version" field's bytes
will be printed with byte 7 first and then byte 6, as per guid_char_order[].

This is in contradiction with the RFC, which shows that the version field ("M")
should be printed first.

If you print the UUID with format 'STD, you will indeed have byte 6 containing
the version field printed first as it should (uuid_char_order[]).

This is confirmed by "uuid -d".

Best regards,
Vincent.

[1] https://uefi.org/specs/UEFI/2.10/Apx_A_GUID_and_Time_Formats.html
[2] https://www.rfc-editor.org/rfc/rfc9562

> 
> 
> > >
> > >
> > > tools/genguid uses UUID_STR_FORMAT_GUID which prints low-endian which is
> > > typical in the EFI context but not understood by 'uuid -d'. Maybe we
> > > should add a parameter for the output format.
> >
> > My understanding is that there is a single universal string format for both
> > UUIDs and GUIDs, which uuid -d understands, and which has no notion of
> > endianness. (Only the structures in memory have an endianness.)
> > This means we do not need an output format parameter.
> >
> > genguid is calling the new gen_uuid_v5() function, which outputs a
> > big-endian
> > struct uuid. Therefore, genguid should print it with 'STD format, not
> > 'GUID.
> >
> > Best regards,
> > Vincent.
> >
> > >
> > > Best regards
> > >
> > > Heinrich
> >


Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Caleb Connolly
On Fri, 21 Jun 2024, 19:06 Vincent Stehlé,  wrote:

> On Fri, Jun 21, 2024 at 01:00:51PM +0200, Heinrich Schuchardt wrote:
> (..)
> > The current specification is in RFC 9562, 4.1, "Variant field"
> >
> > "The variant field consists of a variable number of the most significant
> > bits of octet 8 of the UUID.
> >
> > ...
> >
> > Specifically for UUIDs in this document, bits 64 and 65 of the UUID
> > (bits 0 and 1 of octet 8) MUST be set to 1 and 0 as specified in row 2
> > of Table 1."
> >
> > This reference to byte 8 does not depend on endianness.
>
> Hi Heinrich,
>
> Agreed, variant is not concerned by the endianness.
>
> >
> > U-Boot's include/uuid.h has:
> >
> > /* This is structure is in big-endian */
> > struct uuid {
> >
> > The field time_hi_and_version needs to be stored in big-endian fashion.
>
> Thanks! I thought this structure was used to hold either a big-endian UUID
> or a
> little-endian GUID, but now you have convinced me.
>
> This confirms that the generation of the dynamic GUID is missing something:
>
> gen_uuid_v5(,
> (struct uuid *)_array[i].image_type_id,
> compatible, strlen(compatible),
> fw_array[i].fw_name, u16_strsize(fw_array[i].fw_name)
> - sizeof(uint16_t),
> NULL);
>
> It is not possible to cast the little-endian efi_guid_t .image_type_id as
> the
> big-endian struct uuid output of gen_uuid_v5() like this; we need to
> convert the
> three time fields from big to little endianness.
>

I'm inclined to disagree, the comment above struct uuid in include/uuid.h
state clearly that the format in memory is always big endian, but that a
GUID when printed has some fields converted to little endian.


> >
> >
> > tools/genguid uses UUID_STR_FORMAT_GUID which prints low-endian which is
> > typical in the EFI context but not understood by 'uuid -d'. Maybe we
> > should add a parameter for the output format.
>
> My understanding is that there is a single universal string format for both
> UUIDs and GUIDs, which uuid -d understands, and which has no notion of
> endianness. (Only the structures in memory have an endianness.)
> This means we do not need an output format parameter.
>
> genguid is calling the new gen_uuid_v5() function, which outputs a
> big-endian
> struct uuid. Therefore, genguid should print it with 'STD format, not
> 'GUID.
>
> Best regards,
> Vincent.
>
> >
> > Best regards
> >
> > Heinrich
>


Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Vincent Stehlé
On Fri, Jun 21, 2024 at 01:00:51PM +0200, Heinrich Schuchardt wrote:
(..)
> The current specification is in RFC 9562, 4.1, "Variant field"
> 
> "The variant field consists of a variable number of the most significant
> bits of octet 8 of the UUID.
> 
> ...
> 
> Specifically for UUIDs in this document, bits 64 and 65 of the UUID
> (bits 0 and 1 of octet 8) MUST be set to 1 and 0 as specified in row 2
> of Table 1."
> 
> This reference to byte 8 does not depend on endianness.

Hi Heinrich,

Agreed, variant is not concerned by the endianness.

> 
> U-Boot's include/uuid.h has:
> 
> /* This is structure is in big-endian */
> struct uuid {
> 
> The field time_hi_and_version needs to be stored in big-endian fashion.

Thanks! I thought this structure was used to hold either a big-endian UUID or a
little-endian GUID, but now you have convinced me.

This confirms that the generation of the dynamic GUID is missing something:

gen_uuid_v5(,
(struct uuid *)_array[i].image_type_id,
compatible, strlen(compatible),
fw_array[i].fw_name, u16_strsize(fw_array[i].fw_name)
- sizeof(uint16_t),
NULL);

It is not possible to cast the little-endian efi_guid_t .image_type_id as the
big-endian struct uuid output of gen_uuid_v5() like this; we need to convert the
three time fields from big to little endianness.

> 
> 
> tools/genguid uses UUID_STR_FORMAT_GUID which prints low-endian which is
> typical in the EFI context but not understood by 'uuid -d'. Maybe we
> should add a parameter for the output format.

My understanding is that there is a single universal string format for both
UUIDs and GUIDs, which uuid -d understands, and which has no notion of
endianness. (Only the structures in memory have an endianness.)
This means we do not need an output format parameter.

genguid is calling the new gen_uuid_v5() function, which outputs a big-endian
struct uuid. Therefore, genguid should print it with 'STD format, not 'GUID.

Best regards,
Vincent.

> 
> Best regards
> 
> Heinrich


Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Heinrich Schuchardt

On 21.06.24 13:25, Ilias Apalodimas wrote:

On Fri, 21 Jun 2024 at 14:01, Ilias Apalodimas
 wrote:


Hi Vincent,

[...]


   $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
   encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
   SIV: 195894493536133784175416063449172723213
   decode: variant: reserved (Microsoft GUID)
   version: 4 (random data based)
   content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
(no semantics: random data only)

A reserved Microsoft GUID variant does not look right.


This seems like an existing bug. RFC4122 defines the MS reserved GUIDs
in the variant as
1 1 0Reserved, Microsoft Corporation backward
compatibility and the existing UUID_VARIANT_MASK is defined as 0xc0...


I think the variant mask 0xc0 is correct:

- The variant field is in the top three bits of the "clock seq high and
   reserved" byte, but...
- The variant we want is 1 0 x (do not care for bit 5, a.k.a. "Msb2").

With the mask 0xc0 we can clear the top two bits as we set the top most bit just
after anyway.

...the mask needs to be used correctly, though; see below.


Ah yes, the current code is using it in clrsetbits_8, which inverts it
internally, so it's indeed correct.





The patch below should work for you (on top of Calebs')

diff --git a/include/uuid.h b/include/uuid.h
index b38b20d957ef..78ed5839d2d6 100644
--- a/include/uuid.h
+++ b/include/uuid.h
@@ -81,7 +81,7 @@ struct uuid {
  #define UUID_VERSION_SHIFT 12
  #define UUID_VERSION   0x4

-#define UUID_VARIANT_MASK  0xc0
+#define UUID_VARIANT_MASK  0xb0
  #define UUID_VARIANT_SHIFT 7
  #define UUID_VARIANT   0x1

diff --git a/lib/uuid.c b/lib/uuid.c
index 89911b06ccc0..73251eaa397e 100644
--- a/lib/uuid.c
+++ b/lib/uuid.c
@@ -411,9 +411,9 @@ void gen_uuid_v5(const struct uuid *namespace,
struct uuid *uuid, ...)
 memcpy(uuid, hash, sizeof(*uuid));

 /* Configure variant/version bits */
-   tmp = be32_to_cpu(uuid->time_hi_and_version);
+   tmp = uuid->time_hi_and_version;


Not caring for the endianness at all does not look right.
Indeed, while this does work on my side in little-endian, this does not work on
on big-endian simulators.


Yes, we need the conversions


Also, this is a 16b quantity, not 32b; we need to redefine tmp to uint16_t and
use the be16 functions.



Yep I already pointed that out earlier.


 tmp = (tmp & ~UUID_VERSION_MASK) | (5 << UUID_VERSION_SHIFT);
-   uuid->time_hi_and_version = cpu_to_be32(tmp);
+   uuid->time_hi_and_version = tmp;

 uuid->clock_seq_hi_and_reserved &= UUID_VARIANT_MASK;


We need to mask with ~UUID_VARIANT_MASK, I think.


 uuid->clock_seq_hi_and_reserved |= UUID_VARIANT << UUID_VARIANT_SHIFT;

Can you give it a shot?


This does indeed work on my little-endian machines, but not on big-endian
simulators.
For testing on big-endian, I suggest using only genguid as the sandbox will not
help there:

   $ make sandbox_defconfig
   $ make tools-only
   $ ./tools/genguid 2a5aa852-b856-4d97-baa9-5c5f4421551f \
 -c "qcom,qrb4210-rb2" \
 QUALCOMM-UBOOT

...and feed the resulting UUID to `uuid -d'.
(The genguid command is the online help example.)


What I am afraid of is breaking existing use cases using a different
variant mask
If that's the case we might need to keep the buggy existing
UUID_VARIANT_MASK and use the new one only on v5 and newer code


I tried to debug further and I suspect that:

- Operations on 8b clock_seq_hi_and_reserved might need further casts.

- My understanding is that we are generating the v5 UUID as big-endian in
   memory; if this is indeed the case, genguid should not print it with the GUID
   byte order.


RFC4122 says that
"put name space ID in network byte order so it hashes the same no
matter what endian machine we're on "
the EFI spec says
"It should also be noted that TimeLow, TimeMid, TimeHighAndVersion
fields in the EFI are encoded as little endian. The following table
defines the format of an EFI GUID (128 bits)."

Which is lovely



But this brings up something that Heinrich also mentioned. Since the
efi spec and RFC4122 interpret the endianess differently, how do you
expect uuid -d to work?


The binary format does depend on endianness:

$ echo -n -e
"\\xF8\\x1D\\x4F\\xAE\\x7D\\xEC\\x51\\xD0\\xA7\\x65\\x00\\xA0\\xC9\\x1E\\x6B\\xF6"
\
> | uuid -d -F BIN -
encode: STR: f81d4fae-7dec-51d0-a765-00a0c91e6bf6
SIV: 329800735698586931527096882168799849462
decode: variant: DCE 1.1, ISO/IEC 11578:1996
version: 5 (name based, SHA-1)
content: F8:1D:4F:AE:7D:EC:01:D0:27:65:00:A0:C9:1E:6B:F6
 (not decipherable: truncated SHA-1 message digest only)

Best regards

Heinrich



Thanks
/Ilias

I'll send a patch with the changes

Regards
/Ilias


For the moment I am unable to make the code work in all the following cases:

- genguid on little-endian
- genguid on big-endian
- 

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Ilias Apalodimas
On Fri, 21 Jun 2024 at 14:01, Ilias Apalodimas
 wrote:
>
> Hi Vincent,
>
> [...]
>
> > > >   $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
> > > >   encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
> > > >   SIV: 195894493536133784175416063449172723213
> > > >   decode: variant: reserved (Microsoft GUID)
> > > >   version: 4 (random data based)
> > > >   content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
> > > >(no semantics: random data only)
> > > >
> > > > A reserved Microsoft GUID variant does not look right.
> > >
> > > This seems like an existing bug. RFC4122 defines the MS reserved GUIDs
> > > in the variant as
> > > 1 1 0Reserved, Microsoft Corporation backward
> > > compatibility and the existing UUID_VARIANT_MASK is defined as 0xc0...
> >
> > I think the variant mask 0xc0 is correct:
> >
> > - The variant field is in the top three bits of the "clock seq high and
> >   reserved" byte, but...
> > - The variant we want is 1 0 x (do not care for bit 5, a.k.a. "Msb2").
> >
> > With the mask 0xc0 we can clear the top two bits as we set the top most bit 
> > just
> > after anyway.
> >
> > ...the mask needs to be used correctly, though; see below.
>
> Ah yes, the current code is using it in clrsetbits_8, which inverts it
> internally, so it's indeed correct.
>
> >
> > >
> > > The patch below should work for you (on top of Calebs')
> > >
> > > diff --git a/include/uuid.h b/include/uuid.h
> > > index b38b20d957ef..78ed5839d2d6 100644
> > > --- a/include/uuid.h
> > > +++ b/include/uuid.h
> > > @@ -81,7 +81,7 @@ struct uuid {
> > >  #define UUID_VERSION_SHIFT 12
> > >  #define UUID_VERSION   0x4
> > >
> > > -#define UUID_VARIANT_MASK  0xc0
> > > +#define UUID_VARIANT_MASK  0xb0
> > >  #define UUID_VARIANT_SHIFT 7
> > >  #define UUID_VARIANT   0x1
> > >
> > > diff --git a/lib/uuid.c b/lib/uuid.c
> > > index 89911b06ccc0..73251eaa397e 100644
> > > --- a/lib/uuid.c
> > > +++ b/lib/uuid.c
> > > @@ -411,9 +411,9 @@ void gen_uuid_v5(const struct uuid *namespace,
> > > struct uuid *uuid, ...)
> > > memcpy(uuid, hash, sizeof(*uuid));
> > >
> > > /* Configure variant/version bits */
> > > -   tmp = be32_to_cpu(uuid->time_hi_and_version);
> > > +   tmp = uuid->time_hi_and_version;
> >
> > Not caring for the endianness at all does not look right.
> > Indeed, while this does work on my side in little-endian, this does not 
> > work on
> > on big-endian simulators.
>
> Yes, we need the conversions
>
> > Also, this is a 16b quantity, not 32b; we need to redefine tmp to uint16_t 
> > and
> > use the be16 functions.
> >
>
> Yep I already pointed that out earlier.
>
> > > tmp = (tmp & ~UUID_VERSION_MASK) | (5 << UUID_VERSION_SHIFT);
> > > -   uuid->time_hi_and_version = cpu_to_be32(tmp);
> > > +   uuid->time_hi_and_version = tmp;
> > >
> > > uuid->clock_seq_hi_and_reserved &= UUID_VARIANT_MASK;
> >
> > We need to mask with ~UUID_VARIANT_MASK, I think.
> >
> > > uuid->clock_seq_hi_and_reserved |= UUID_VARIANT << 
> > > UUID_VARIANT_SHIFT;
> > >
> > > Can you give it a shot?
> >
> > This does indeed work on my little-endian machines, but not on big-endian
> > simulators.
> > For testing on big-endian, I suggest using only genguid as the sandbox will 
> > not
> > help there:
> >
> >   $ make sandbox_defconfig
> >   $ make tools-only
> >   $ ./tools/genguid 2a5aa852-b856-4d97-baa9-5c5f4421551f \
> > -c "qcom,qrb4210-rb2" \
> > QUALCOMM-UBOOT
> >
> > ...and feed the resulting UUID to `uuid -d'.
> > (The genguid command is the online help example.)
> >
> > > What I am afraid of is breaking existing use cases using a different
> > > variant mask
> > > If that's the case we might need to keep the buggy existing
> > > UUID_VARIANT_MASK and use the new one only on v5 and newer code
> >
> > I tried to debug further and I suspect that:
> >
> > - Operations on 8b clock_seq_hi_and_reserved might need further casts.
> >
> > - My understanding is that we are generating the v5 UUID as big-endian in
> >   memory; if this is indeed the case, genguid should not print it with the 
> > GUID
> >   byte order.
>
> RFC4122 says that
> "put name space ID in network byte order so it hashes the same no
> matter what endian machine we're on "
> the EFI spec says
> "It should also be noted that TimeLow, TimeMid, TimeHighAndVersion
> fields in the EFI are encoded as little endian. The following table
> defines the format of an EFI GUID (128 bits)."
>
> Which is lovely
>

But this brings up something that Heinrich also mentioned. Since the
efi spec and RFC4122 interpret the endianess differently, how do you
expect uuid -d to work?

Thanks
/Ilias
> I'll send a patch with the changes
>
> Regards
> /Ilias
> >
> > For the moment I am unable to make the code work in all the following cases:
> >
> > - genguid on little-endian
> > - genguid on big-endian
> > - sandbox ESRT on 

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Ilias Apalodimas
Hi Vincent,

[...]

> > >   $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
> > >   encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
> > >   SIV: 195894493536133784175416063449172723213
> > >   decode: variant: reserved (Microsoft GUID)
> > >   version: 4 (random data based)
> > >   content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
> > >(no semantics: random data only)
> > >
> > > A reserved Microsoft GUID variant does not look right.
> >
> > This seems like an existing bug. RFC4122 defines the MS reserved GUIDs
> > in the variant as
> > 1 1 0Reserved, Microsoft Corporation backward
> > compatibility and the existing UUID_VARIANT_MASK is defined as 0xc0...
>
> I think the variant mask 0xc0 is correct:
>
> - The variant field is in the top three bits of the "clock seq high and
>   reserved" byte, but...
> - The variant we want is 1 0 x (do not care for bit 5, a.k.a. "Msb2").
>
> With the mask 0xc0 we can clear the top two bits as we set the top most bit 
> just
> after anyway.
>
> ...the mask needs to be used correctly, though; see below.

Ah yes, the current code is using it in clrsetbits_8, which inverts it
internally, so it's indeed correct.

>
> >
> > The patch below should work for you (on top of Calebs')
> >
> > diff --git a/include/uuid.h b/include/uuid.h
> > index b38b20d957ef..78ed5839d2d6 100644
> > --- a/include/uuid.h
> > +++ b/include/uuid.h
> > @@ -81,7 +81,7 @@ struct uuid {
> >  #define UUID_VERSION_SHIFT 12
> >  #define UUID_VERSION   0x4
> >
> > -#define UUID_VARIANT_MASK  0xc0
> > +#define UUID_VARIANT_MASK  0xb0
> >  #define UUID_VARIANT_SHIFT 7
> >  #define UUID_VARIANT   0x1
> >
> > diff --git a/lib/uuid.c b/lib/uuid.c
> > index 89911b06ccc0..73251eaa397e 100644
> > --- a/lib/uuid.c
> > +++ b/lib/uuid.c
> > @@ -411,9 +411,9 @@ void gen_uuid_v5(const struct uuid *namespace,
> > struct uuid *uuid, ...)
> > memcpy(uuid, hash, sizeof(*uuid));
> >
> > /* Configure variant/version bits */
> > -   tmp = be32_to_cpu(uuid->time_hi_and_version);
> > +   tmp = uuid->time_hi_and_version;
>
> Not caring for the endianness at all does not look right.
> Indeed, while this does work on my side in little-endian, this does not work 
> on
> on big-endian simulators.

Yes, we need the conversions

> Also, this is a 16b quantity, not 32b; we need to redefine tmp to uint16_t and
> use the be16 functions.
>

Yep I already pointed that out earlier.

> > tmp = (tmp & ~UUID_VERSION_MASK) | (5 << UUID_VERSION_SHIFT);
> > -   uuid->time_hi_and_version = cpu_to_be32(tmp);
> > +   uuid->time_hi_and_version = tmp;
> >
> > uuid->clock_seq_hi_and_reserved &= UUID_VARIANT_MASK;
>
> We need to mask with ~UUID_VARIANT_MASK, I think.
>
> > uuid->clock_seq_hi_and_reserved |= UUID_VARIANT << 
> > UUID_VARIANT_SHIFT;
> >
> > Can you give it a shot?
>
> This does indeed work on my little-endian machines, but not on big-endian
> simulators.
> For testing on big-endian, I suggest using only genguid as the sandbox will 
> not
> help there:
>
>   $ make sandbox_defconfig
>   $ make tools-only
>   $ ./tools/genguid 2a5aa852-b856-4d97-baa9-5c5f4421551f \
> -c "qcom,qrb4210-rb2" \
> QUALCOMM-UBOOT
>
> ...and feed the resulting UUID to `uuid -d'.
> (The genguid command is the online help example.)
>
> > What I am afraid of is breaking existing use cases using a different
> > variant mask
> > If that's the case we might need to keep the buggy existing
> > UUID_VARIANT_MASK and use the new one only on v5 and newer code
>
> I tried to debug further and I suspect that:
>
> - Operations on 8b clock_seq_hi_and_reserved might need further casts.
>
> - My understanding is that we are generating the v5 UUID as big-endian in
>   memory; if this is indeed the case, genguid should not print it with the 
> GUID
>   byte order.

RFC4122 says that
"put name space ID in network byte order so it hashes the same no
matter what endian machine we're on "
the EFI spec says
"It should also be noted that TimeLow, TimeMid, TimeHighAndVersion
fields in the EFI are encoded as little endian. The following table
defines the format of an EFI GUID (128 bits)."

Which is lovely

I'll send a patch with the changes

Regards
/Ilias
>
> For the moment I am unable to make the code work in all the following cases:
>
> - genguid on little-endian
> - genguid on big-endian
> - sandbox ESRT on little-endian
>
> I will let you and Caleb know if I make any progress.
>
> Best regards,
> Vincent.
>
> >
> > Thanks
> > /Ilias


Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Heinrich Schuchardt

On 21.06.24 11:12, Vincent Stehlé wrote:

On Wed, Jun 19, 2024 at 10:15:32PM +0300, Ilias Apalodimas wrote:

Allô Vincent,


Hi Ilias :)



Thanks for testing!

On Wed, 19 Jun 2024 at 17:02, Vincent Stehlé  wrote:


On Fri, May 31, 2024 at 03:50:34PM +0200, Caleb Connolly wrote:

As more boards adopt support for the EFI CapsuleUpdate mechanism, there
is a growing issue of being able to target updates to them properly. The
current mechanism of hardcoding UUIDs for each board at compile time is
unsustainable, and maintaining lists of GUIDs is similarly cumbersome.

In this series, I propose that we adopt v5 GUIDs, these are generated
by using a well-known salt GUID as well as board specific information
(like the model/revision), these are hashed together and the result is
truncated to form a new UUID.


Dear Caleb,

Thank you for working on this proposal, this looks very useful.
Indeed, we found out during SystemReady certifications that it is easy for
unique ids to be inadvertently re-used, making them thus non-unique.

I have a doubt regarding the format of the generated UUIDs, which end up in the
ESRT, though.

Here is a quick experiment on the sandbox booting with a DTB using the efidebug
command.

With the patch series, rebased on the master branch:

   $ make sandbox_defconfig
   $ make
   $ ./u-boot --default_fdt
   ...
   U-Boot 2024.07-rc4-00028-g1c96225b0b3 (Jun 19 2024 - 15:29:04 +0200)
   ...
   Model: sandbox
   ...
   Hit any key to stop autoboot:  0
   => efidebug capsule esrt
   ...
   
   ESRT: fw_resource_count=2
   ESRT: fw_resource_count_max=2
   ESRT: fw_resource_version=1
   [entry 0]==
   ESRT: fw_class=FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
   ...
   [entry 1]==
   ESRT: fw_class=935FE837-FAC8-4394-C008-737D8852C60D
   ...
   

   $ uuid -d FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
   encode: STR: fd5db83c-12f3-a46b-80a9-e3007c7ff56e
   SIV: 336781303264349553179461347850802165102
   decode: variant: DCE 1.1, ISO/IEC 11578:1996
   version: 10 (unknown)
   content: FD:5D:B8:3C:12:F3:04:6B:00:A9:E3:00:7C:7F:F5:6E
(not decipherable: unknown UUID version)

Version 10 does not look right.


So, this seems to be an endianess problem.
Looking at RFC4122 only the space ID needs to be in BE.



   $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
   encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
   SIV: 195894493536133784175416063449172723213
   decode: variant: reserved (Microsoft GUID)
   version: 4 (random data based)
   content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
(no semantics: random data only)

A reserved Microsoft GUID variant does not look right.


This seems like an existing bug. RFC4122 defines the MS reserved GUIDs
in the variant as
1 1 0Reserved, Microsoft Corporation backward
compatibility and the existing UUID_VARIANT_MASK is defined as 0xc0...


I think the variant mask 0xc0 is correct:

- The variant field is in the top three bits of the "clock seq high and
   reserved" byte, but...
- The variant we want is 1 0 x (do not care for bit 5, a.k.a. "Msb2").

With the mask 0xc0 we can clear the top two bits as we set the top most bit just
after anyway.

...the mask needs to be used correctly, though; see below.



The patch below should work for you (on top of Calebs')

diff --git a/include/uuid.h b/include/uuid.h
index b38b20d957ef..78ed5839d2d6 100644
--- a/include/uuid.h
+++ b/include/uuid.h
@@ -81,7 +81,7 @@ struct uuid {
  #define UUID_VERSION_SHIFT 12
  #define UUID_VERSION   0x4

-#define UUID_VARIANT_MASK  0xc0
+#define UUID_VARIANT_MASK  0xb0
  #define UUID_VARIANT_SHIFT 7
  #define UUID_VARIANT   0x1

diff --git a/lib/uuid.c b/lib/uuid.c
index 89911b06ccc0..73251eaa397e 100644
--- a/lib/uuid.c
+++ b/lib/uuid.c
@@ -411,9 +411,9 @@ void gen_uuid_v5(const struct uuid *namespace,
struct uuid *uuid, ...)
 memcpy(uuid, hash, sizeof(*uuid));

 /* Configure variant/version bits */
-   tmp = be32_to_cpu(uuid->time_hi_and_version);
+   tmp = uuid->time_hi_and_version;


Not caring for the endianness at all does not look right.
Indeed, while this does work on my side in little-endian, this does not work on
on big-endian simulators.
Also, this is a 16b quantity, not 32b; we need to redefine tmp to uint16_t and
use the be16 functions.


 tmp = (tmp & ~UUID_VERSION_MASK) | (5 << UUID_VERSION_SHIFT);
-   uuid->time_hi_and_version = cpu_to_be32(tmp);
+   uuid->time_hi_and_version = tmp;

 uuid->clock_seq_hi_and_reserved &= UUID_VARIANT_MASK;


We need to mask with ~UUID_VARIANT_MASK, I think.


 uuid->clock_seq_hi_and_reserved |= UUID_VARIANT << UUID_VARIANT_SHIFT;

Can you give it a shot?


This does indeed work on my little-endian machines, but 

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-21 Thread Vincent Stehlé
On Wed, Jun 19, 2024 at 10:15:32PM +0300, Ilias Apalodimas wrote:
> Allô Vincent,

Hi Ilias :)

> 
> Thanks for testing!
> 
> On Wed, 19 Jun 2024 at 17:02, Vincent Stehlé  wrote:
> >
> > On Fri, May 31, 2024 at 03:50:34PM +0200, Caleb Connolly wrote:
> > > As more boards adopt support for the EFI CapsuleUpdate mechanism, there
> > > is a growing issue of being able to target updates to them properly. The
> > > current mechanism of hardcoding UUIDs for each board at compile time is
> > > unsustainable, and maintaining lists of GUIDs is similarly cumbersome.
> > >
> > > In this series, I propose that we adopt v5 GUIDs, these are generated
> > > by using a well-known salt GUID as well as board specific information
> > > (like the model/revision), these are hashed together and the result is
> > > truncated to form a new UUID.
> >
> > Dear Caleb,
> >
> > Thank you for working on this proposal, this looks very useful.
> > Indeed, we found out during SystemReady certifications that it is easy for
> > unique ids to be inadvertently re-used, making them thus non-unique.
> >
> > I have a doubt regarding the format of the generated UUIDs, which end up in 
> > the
> > ESRT, though.
> >
> > Here is a quick experiment on the sandbox booting with a DTB using the 
> > efidebug
> > command.
> >
> > With the patch series, rebased on the master branch:
> >
> >   $ make sandbox_defconfig
> >   $ make
> >   $ ./u-boot --default_fdt
> >   ...
> >   U-Boot 2024.07-rc4-00028-g1c96225b0b3 (Jun 19 2024 - 15:29:04 +0200)
> >   ...
> >   Model: sandbox
> >   ...
> >   Hit any key to stop autoboot:  0
> >   => efidebug capsule esrt
> >   ...
> >   
> >   ESRT: fw_resource_count=2
> >   ESRT: fw_resource_count_max=2
> >   ESRT: fw_resource_version=1
> >   [entry 0]==
> >   ESRT: fw_class=FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
> >   ...
> >   [entry 1]==
> >   ESRT: fw_class=935FE837-FAC8-4394-C008-737D8852C60D
> >   ...
> >   
> >
> >   $ uuid -d FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
> >   encode: STR: fd5db83c-12f3-a46b-80a9-e3007c7ff56e
> >   SIV: 336781303264349553179461347850802165102
> >   decode: variant: DCE 1.1, ISO/IEC 11578:1996
> >   version: 10 (unknown)
> >   content: FD:5D:B8:3C:12:F3:04:6B:00:A9:E3:00:7C:7F:F5:6E
> >(not decipherable: unknown UUID version)
> >
> > Version 10 does not look right.
> 
> So, this seems to be an endianess problem.
> Looking at RFC4122 only the space ID needs to be in BE.
> 
> >
> >   $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
> >   encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
> >   SIV: 195894493536133784175416063449172723213
> >   decode: variant: reserved (Microsoft GUID)
> >   version: 4 (random data based)
> >   content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
> >(no semantics: random data only)
> >
> > A reserved Microsoft GUID variant does not look right.
> 
> This seems like an existing bug. RFC4122 defines the MS reserved GUIDs
> in the variant as
> 1 1 0Reserved, Microsoft Corporation backward
> compatibility and the existing UUID_VARIANT_MASK is defined as 0xc0...

I think the variant mask 0xc0 is correct:

- The variant field is in the top three bits of the "clock seq high and
  reserved" byte, but...
- The variant we want is 1 0 x (do not care for bit 5, a.k.a. "Msb2").

With the mask 0xc0 we can clear the top two bits as we set the top most bit just
after anyway.

...the mask needs to be used correctly, though; see below.

> 
> The patch below should work for you (on top of Calebs')
> 
> diff --git a/include/uuid.h b/include/uuid.h
> index b38b20d957ef..78ed5839d2d6 100644
> --- a/include/uuid.h
> +++ b/include/uuid.h
> @@ -81,7 +81,7 @@ struct uuid {
>  #define UUID_VERSION_SHIFT 12
>  #define UUID_VERSION   0x4
> 
> -#define UUID_VARIANT_MASK  0xc0
> +#define UUID_VARIANT_MASK  0xb0
>  #define UUID_VARIANT_SHIFT 7
>  #define UUID_VARIANT   0x1
> 
> diff --git a/lib/uuid.c b/lib/uuid.c
> index 89911b06ccc0..73251eaa397e 100644
> --- a/lib/uuid.c
> +++ b/lib/uuid.c
> @@ -411,9 +411,9 @@ void gen_uuid_v5(const struct uuid *namespace,
> struct uuid *uuid, ...)
> memcpy(uuid, hash, sizeof(*uuid));
> 
> /* Configure variant/version bits */
> -   tmp = be32_to_cpu(uuid->time_hi_and_version);
> +   tmp = uuid->time_hi_and_version;

Not caring for the endianness at all does not look right.
Indeed, while this does work on my side in little-endian, this does not work on
on big-endian simulators.
Also, this is a 16b quantity, not 32b; we need to redefine tmp to uint16_t and
use the be16 functions.

> tmp = (tmp & ~UUID_VERSION_MASK) | (5 << UUID_VERSION_SHIFT);
> -   uuid->time_hi_and_version = cpu_to_be32(tmp);
> +   uuid->time_hi_and_version = tmp;
> 
>   

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-19 Thread Ilias Apalodimas
Allô Vincent,

Thanks for testing!

On Wed, 19 Jun 2024 at 17:02, Vincent Stehlé  wrote:
>
> On Fri, May 31, 2024 at 03:50:34PM +0200, Caleb Connolly wrote:
> > As more boards adopt support for the EFI CapsuleUpdate mechanism, there
> > is a growing issue of being able to target updates to them properly. The
> > current mechanism of hardcoding UUIDs for each board at compile time is
> > unsustainable, and maintaining lists of GUIDs is similarly cumbersome.
> >
> > In this series, I propose that we adopt v5 GUIDs, these are generated
> > by using a well-known salt GUID as well as board specific information
> > (like the model/revision), these are hashed together and the result is
> > truncated to form a new UUID.
>
> Dear Caleb,
>
> Thank you for working on this proposal, this looks very useful.
> Indeed, we found out during SystemReady certifications that it is easy for
> unique ids to be inadvertently re-used, making them thus non-unique.
>
> I have a doubt regarding the format of the generated UUIDs, which end up in 
> the
> ESRT, though.
>
> Here is a quick experiment on the sandbox booting with a DTB using the 
> efidebug
> command.
>
> With the patch series, rebased on the master branch:
>
>   $ make sandbox_defconfig
>   $ make
>   $ ./u-boot --default_fdt
>   ...
>   U-Boot 2024.07-rc4-00028-g1c96225b0b3 (Jun 19 2024 - 15:29:04 +0200)
>   ...
>   Model: sandbox
>   ...
>   Hit any key to stop autoboot:  0
>   => efidebug capsule esrt
>   ...
>   
>   ESRT: fw_resource_count=2
>   ESRT: fw_resource_count_max=2
>   ESRT: fw_resource_version=1
>   [entry 0]==
>   ESRT: fw_class=FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
>   ...
>   [entry 1]==
>   ESRT: fw_class=935FE837-FAC8-4394-C008-737D8852C60D
>   ...
>   
>
>   $ uuid -d FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
>   encode: STR: fd5db83c-12f3-a46b-80a9-e3007c7ff56e
>   SIV: 336781303264349553179461347850802165102
>   decode: variant: DCE 1.1, ISO/IEC 11578:1996
>   version: 10 (unknown)
>   content: FD:5D:B8:3C:12:F3:04:6B:00:A9:E3:00:7C:7F:F5:6E
>(not decipherable: unknown UUID version)
>
> Version 10 does not look right.

So, this seems to be an endianess problem.
Looking at RFC4122 only the space ID needs to be in BE.

>
>   $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
>   encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
>   SIV: 195894493536133784175416063449172723213
>   decode: variant: reserved (Microsoft GUID)
>   version: 4 (random data based)
>   content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
>(no semantics: random data only)
>
> A reserved Microsoft GUID variant does not look right.

This seems like an existing bug. RFC4122 defines the MS reserved GUIDs
in the variant as
1 1 0Reserved, Microsoft Corporation backward
compatibility and the existing UUID_VARIANT_MASK is defined as 0xc0...

The patch below should work for you (on top of Calebs')

diff --git a/include/uuid.h b/include/uuid.h
index b38b20d957ef..78ed5839d2d6 100644
--- a/include/uuid.h
+++ b/include/uuid.h
@@ -81,7 +81,7 @@ struct uuid {
 #define UUID_VERSION_SHIFT 12
 #define UUID_VERSION   0x4

-#define UUID_VARIANT_MASK  0xc0
+#define UUID_VARIANT_MASK  0xb0
 #define UUID_VARIANT_SHIFT 7
 #define UUID_VARIANT   0x1

diff --git a/lib/uuid.c b/lib/uuid.c
index 89911b06ccc0..73251eaa397e 100644
--- a/lib/uuid.c
+++ b/lib/uuid.c
@@ -411,9 +411,9 @@ void gen_uuid_v5(const struct uuid *namespace,
struct uuid *uuid, ...)
memcpy(uuid, hash, sizeof(*uuid));

/* Configure variant/version bits */
-   tmp = be32_to_cpu(uuid->time_hi_and_version);
+   tmp = uuid->time_hi_and_version;
tmp = (tmp & ~UUID_VERSION_MASK) | (5 << UUID_VERSION_SHIFT);
-   uuid->time_hi_and_version = cpu_to_be32(tmp);
+   uuid->time_hi_and_version = tmp;

uuid->clock_seq_hi_and_reserved &= UUID_VARIANT_MASK;
uuid->clock_seq_hi_and_reserved |= UUID_VARIANT << UUID_VARIANT_SHIFT;

Can you give it a shot?
What I am afraid of is breaking existing use cases using a different
variant mask
If that's the case we might need to keep the buggy existing
UUID_VARIANT_MASK and use the new one only on v5 and newer code

Thanks
/Ilias


>
> With the master branch, the (hardcoded) GUIDs are ok:
>
>   $ ./u-boot --default_fdt
>   ...
>   U-Boot 2024.07-rc4-00021-gfe2ce09a075 (Jun 19 2024 - 15:35:08 +0200)
>   ...
>   Model: sandbox
>   ...
>   => efidebug capsule esrt
>   ...
>   
>   ESRT: fw_resource_count=2
>   ESRT: fw_resource_count_max=2
>   ESRT: fw_resource_version=1
>   [entry 0]==
>   ESRT: fw_class=09D7CF52-0720-4710-91D1-08469B7FE9C8
>   ...
>   [entry 1]==
>   ESRT: 

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-19 Thread Vincent Stehlé
On Fri, May 31, 2024 at 03:50:34PM +0200, Caleb Connolly wrote:
> As more boards adopt support for the EFI CapsuleUpdate mechanism, there
> is a growing issue of being able to target updates to them properly. The
> current mechanism of hardcoding UUIDs for each board at compile time is
> unsustainable, and maintaining lists of GUIDs is similarly cumbersome.
> 
> In this series, I propose that we adopt v5 GUIDs, these are generated
> by using a well-known salt GUID as well as board specific information
> (like the model/revision), these are hashed together and the result is
> truncated to form a new UUID.

Dear Caleb,

Thank you for working on this proposal, this looks very useful.
Indeed, we found out during SystemReady certifications that it is easy for
unique ids to be inadvertently re-used, making them thus non-unique.

I have a doubt regarding the format of the generated UUIDs, which end up in the
ESRT, though.

Here is a quick experiment on the sandbox booting with a DTB using the efidebug
command.

With the patch series, rebased on the master branch:

  $ make sandbox_defconfig
  $ make
  $ ./u-boot --default_fdt
  ...
  U-Boot 2024.07-rc4-00028-g1c96225b0b3 (Jun 19 2024 - 15:29:04 +0200)
  ...
  Model: sandbox
  ...
  Hit any key to stop autoboot:  0
  => efidebug capsule esrt
  ...
  
  ESRT: fw_resource_count=2
  ESRT: fw_resource_count_max=2
  ESRT: fw_resource_version=1
  [entry 0]==
  ESRT: fw_class=FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
  ...
  [entry 1]==
  ESRT: fw_class=935FE837-FAC8-4394-C008-737D8852C60D
  ...
  

  $ uuid -d FD5DB83C-12F3-A46B-80A9-E3007C7FF56E
  encode: STR: fd5db83c-12f3-a46b-80a9-e3007c7ff56e
  SIV: 336781303264349553179461347850802165102
  decode: variant: DCE 1.1, ISO/IEC 11578:1996
  version: 10 (unknown)
  content: FD:5D:B8:3C:12:F3:04:6B:00:A9:E3:00:7C:7F:F5:6E
   (not decipherable: unknown UUID version)

Version 10 does not look right.

  $ uuid -d 935FE837-FAC8-4394-C008-737D8852C60D
  encode: STR: 935fe837-fac8-4394-c008-737d8852c60d
  SIV: 195894493536133784175416063449172723213
  decode: variant: reserved (Microsoft GUID)
  version: 4 (random data based)
  content: 93:5F:E8:37:FA:C8:03:94:00:08:73:7D:88:52:C6:0D
   (no semantics: random data only)

A reserved Microsoft GUID variant does not look right.

With the master branch, the (hardcoded) GUIDs are ok:

  $ ./u-boot --default_fdt
  ...
  U-Boot 2024.07-rc4-00021-gfe2ce09a075 (Jun 19 2024 - 15:35:08 +0200)
  ...
  Model: sandbox
  ...
  => efidebug capsule esrt
  ...
  
  ESRT: fw_resource_count=2
  ESRT: fw_resource_count_max=2
  ESRT: fw_resource_version=1
  [entry 0]==
  ESRT: fw_class=09D7CF52-0720-4710-91D1-08469B7FE9C8
  ...
  [entry 1]==
  ESRT: fw_class=5A7021F5-FEF2-48B4-AABA-832E777418C0
  ...
  

  $ uuid -d 09D7CF52-0720-4710-91D1-08469B7FE9C8
  encode: STR: 09d7cf52-0720-4710-91d1-08469b7fe9c8
  SIV: 13083600744351929150374221048734280136
  decode: variant: DCE 1.1, ISO/IEC 11578:1996
  version: 4 (random data based)
  content: 09:D7:CF:52:07:20:07:10:11:D1:08:46:9B:7F:E9:C8
   (no semantics: random data only)

  $ uuid -d 5A7021F5-FEF2-48B4-AABA-832E777418C0
  encode: STR: 5a7021f5-fef2-48b4-aaba-832e777418c0
  SIV: 120212745678117161641696128857923655872
  decode: variant: DCE 1.1, ISO/IEC 11578:1996
  version: 4 (random data based)
  content: 5A:70:21:F5:FE:F2:08:B4:2A:BA:83:2E:77:74:18:C0
   (no semantics: random data only)

Also, this is what to expect for a v5 UUID [1]:

  $ uuid -d a8f6ae40-d8a7-58f0-be05-a22f94eca9ec
  encode: STR: a8f6ae40-d8a7-58f0-be05-a22f94eca9ec
  SIV: 224591142595989943290477237735758014956
  decode: variant: DCE 1.1, ISO/IEC 11578:1996
  version: 5 (name based, SHA-1)
  content: A8:F6:AE:40:D8:A7:08:F0:3E:05:A2:2F:94:EC:A9:EC
   (not decipherable: truncated SHA-1 message digest only)

Best regards,
Vincent.

[1] https://uuid.ramsey.dev/en/stable/rfc4122/version5.html

> 
> The well-known salt GUID can be specific to the architecture (SoC
> vendor), or OEM. It is defined in the board defconfig so that vendors
> can easily bring their own.
> 
> Specifically, the following fields are used to generate a GUID for a
> particular fw_image:
> 
> * namespace salt
> * board compatible (usually the first entry in the dt root compatible
>   array).
> * fw_image name (the string identifying the specific image, especially
>   relevant for board that can update multiple images).
> 
> == Usage ==
> 
> Boards can integrate dynamic UUID support as follows:
> 
> 1. Adjust 

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-05 Thread Caleb Connolly




On 05/06/2024 07:59, Heinrich Schuchardt wrote:

On 5/31/24 15:50, Caleb Connolly wrote:

As more boards adopt support for the EFI CapsuleUpdate mechanism, there
is a growing issue of being able to target updates to them properly. The
current mechanism of hardcoding UUIDs for each board at compile time is
unsustainable, and maintaining lists of GUIDs is similarly cumbersome.

In this series, I propose that we adopt v5 GUIDs, these are generated
by using a well-known salt GUID as well as board specific information
(like the model/revision), these are hashed together and the result is
truncated to form a new UUID.

The well-known salt GUID can be specific to the architecture (SoC
vendor), or OEM. It is defined in the board defconfig so that vendors
can easily bring their own.

Specifically, the following fields are used to generate a GUID for a
particular fw_image:

* namespace salt
* board compatible (usually the first entry in the dt root compatible
   array).
* fw_image name (the string identifying the specific image, especially
   relevant for board that can update multiple images).

== Usage ==

Boards can integrate dynamic UUID support as follows:

1. Adjust Kconfig to depend on EFI_CAPSULE_DYNAMIC_UUIDS if
    EFI_HAVE_CAPSULE_SUPPORT.
2. Skip setting the fw_images image_type_id property.
3. Generate a UUID and set CONFIG_EFI_CAPSULE_NAMESPACE_UUID in your
    defconfig.


Why should we have two alternatives?

If we have the dynamic UUIDs, please, get rid of static ones.


I don't think this is possible to do without the risk of breaking some 
boards. Can we assume that ALL existing capsule update image GUIDs are 
safe to just scrap?




== Limitations ==

* Changing GUIDs

The primary limitation with this approach is that if any of the source
fields change, so will the GUID for the board. It is therefore pretty
important to ensure that GUID changes are caught during development.

* Supporting multiple boards with a single image

This now requires having an entry with the GUID for every board which
might lead to larger UpdateCapsule images.


Do we have a test case were a capsule contains images that shall not be
installed?



== Tooling ==

This series introduces a new tool: genguid. This can be used to generate
the same GUIDs that the board would at runtime.


     the GUIDs that the board requires at runtime.

Best regards

Heinrich



This series follows a related discussion started by Ilias:
https://lore.kernel.org/u-boot/cac_iwjjnha4gmf897mqyzndbgjfg8k4kwgstxwuy72wkyli...@mail.gmail.com/

---
Changes in v3:
- Add manpage for genguid
- Add dedicated CONFIG_TOOLS_GENGUID option
- Minor code fixes addressing v2 feedback
- Link to v2: 
https://lore.kernel.org/r/20240529-b4-dynamic-uuid-v2-0-c26f31057...@linaro.org


Changes in v2:
- Move namespace UUID to be defined in defconfig
- Add tests and tooling
- Only use the first board compatible to generate UUID.
- Link to v1: 
https://lore.kernel.org/r/20240426-b4-dynamic-uuid-v1-0-e8154e00e...@linaro.org


---
Caleb Connolly (7):
   lib: uuid: add UUID v5 support
   efi: add a helper to generate dynamic UUIDs
   doc: uefi: document dynamic UUID generation
   sandbox: switch to dynamic UUIDs
   lib: uuid: supporting building as part of host tools
   tools: add genguid tool
   test: lib/uuid: add unit tests for dynamic UUIDs

  arch/Kconfig   |   1 +
  board/sandbox/sandbox.c    |  16 ---
  configs/sandbox_defconfig  |   1 +
  configs/sandbox_flattree_defconfig |   1 +
  doc/develop/uefi/uefi.rst  |  31 +
  doc/genguid.1  |  52 +++
  include/sandbox_efi_capsule.h  |   6 +-
  include/uuid.h |  21 ++-
  lib/Kconfig    |   8 ++
  lib/efi_loader/Kconfig |  23 +++
  lib/efi_loader/efi_capsule.c   |   1 +
  lib/efi_loader/efi_firmware.c  |  66 +
  lib/uuid.c |  81 +--
  test/lib/uuid.c    |  88 
  .../test_efi_capsule/test_capsule_firmware_fit.py  |   2 +-
  .../test_efi_capsule/test_capsule_firmware_raw.py  |   8 +-
  .../test_capsule_firmware_signed_fit.py    |   2 +-
  .../test_capsule_firmware_signed_raw.py    |   4 +-
  test/py/tests/test_efi_capsule/version.dts |   6 +-
  tools/Kconfig  |   7 +
  tools/Makefile |   3 +
  tools/binman/etype/efi_capsule.py  |   2 +-
  tools/binman/ftest.py  |   2 +-
  tools/genguid.c    | 154 
+

  24 files changed, 538 insertions(+), 48 deletions(-)
---
change-id: 

Re: [PATCH v3 0/7] efi: CapsuleUpdate: support for dynamic UUIDs

2024-06-04 Thread Heinrich Schuchardt

On 5/31/24 15:50, Caleb Connolly wrote:

As more boards adopt support for the EFI CapsuleUpdate mechanism, there
is a growing issue of being able to target updates to them properly. The
current mechanism of hardcoding UUIDs for each board at compile time is
unsustainable, and maintaining lists of GUIDs is similarly cumbersome.

In this series, I propose that we adopt v5 GUIDs, these are generated
by using a well-known salt GUID as well as board specific information
(like the model/revision), these are hashed together and the result is
truncated to form a new UUID.

The well-known salt GUID can be specific to the architecture (SoC
vendor), or OEM. It is defined in the board defconfig so that vendors
can easily bring their own.

Specifically, the following fields are used to generate a GUID for a
particular fw_image:

* namespace salt
* board compatible (usually the first entry in the dt root compatible
   array).
* fw_image name (the string identifying the specific image, especially
   relevant for board that can update multiple images).

== Usage ==

Boards can integrate dynamic UUID support as follows:

1. Adjust Kconfig to depend on EFI_CAPSULE_DYNAMIC_UUIDS if
EFI_HAVE_CAPSULE_SUPPORT.
2. Skip setting the fw_images image_type_id property.
3. Generate a UUID and set CONFIG_EFI_CAPSULE_NAMESPACE_UUID in your
defconfig.


Why should we have two alternatives?

If we have the dynamic UUIDs, please, get rid of static ones.



== Limitations ==

* Changing GUIDs

The primary limitation with this approach is that if any of the source
fields change, so will the GUID for the board. It is therefore pretty
important to ensure that GUID changes are caught during development.

* Supporting multiple boards with a single image

This now requires having an entry with the GUID for every board which
might lead to larger UpdateCapsule images.


Do we have a test case were a capsule contains images that shall not be
installed?



== Tooling ==

This series introduces a new tool: genguid. This can be used to generate
the same GUIDs that the board would at runtime.


the GUIDs that the board requires at runtime.

Best regards

Heinrich



This series follows a related discussion started by Ilias:
https://lore.kernel.org/u-boot/cac_iwjjnha4gmf897mqyzndbgjfg8k4kwgstxwuy72wkyli...@mail.gmail.com/

---
Changes in v3:
- Add manpage for genguid
- Add dedicated CONFIG_TOOLS_GENGUID option
- Minor code fixes addressing v2 feedback
- Link to v2: 
https://lore.kernel.org/r/20240529-b4-dynamic-uuid-v2-0-c26f31057...@linaro.org

Changes in v2:
- Move namespace UUID to be defined in defconfig
- Add tests and tooling
- Only use the first board compatible to generate UUID.
- Link to v1: 
https://lore.kernel.org/r/20240426-b4-dynamic-uuid-v1-0-e8154e00e...@linaro.org

---
Caleb Connolly (7):
   lib: uuid: add UUID v5 support
   efi: add a helper to generate dynamic UUIDs
   doc: uefi: document dynamic UUID generation
   sandbox: switch to dynamic UUIDs
   lib: uuid: supporting building as part of host tools
   tools: add genguid tool
   test: lib/uuid: add unit tests for dynamic UUIDs

  arch/Kconfig   |   1 +
  board/sandbox/sandbox.c|  16 ---
  configs/sandbox_defconfig  |   1 +
  configs/sandbox_flattree_defconfig |   1 +
  doc/develop/uefi/uefi.rst  |  31 +
  doc/genguid.1  |  52 +++
  include/sandbox_efi_capsule.h  |   6 +-
  include/uuid.h |  21 ++-
  lib/Kconfig|   8 ++
  lib/efi_loader/Kconfig |  23 +++
  lib/efi_loader/efi_capsule.c   |   1 +
  lib/efi_loader/efi_firmware.c  |  66 +
  lib/uuid.c |  81 +--
  test/lib/uuid.c|  88 
  .../test_efi_capsule/test_capsule_firmware_fit.py  |   2 +-
  .../test_efi_capsule/test_capsule_firmware_raw.py  |   8 +-
  .../test_capsule_firmware_signed_fit.py|   2 +-
  .../test_capsule_firmware_signed_raw.py|   4 +-
  test/py/tests/test_efi_capsule/version.dts |   6 +-
  tools/Kconfig  |   7 +
  tools/Makefile |   3 +
  tools/binman/etype/efi_capsule.py  |   2 +-
  tools/binman/ftest.py  |   2 +-
  tools/genguid.c| 154 +
  24 files changed, 538 insertions(+), 48 deletions(-)
---
change-id: 20240422-b4-dynamic-uuid-1a5ab1486c27
base-commit: 2e682a4a406fc81ef32e05c28542cc8067f1e15f

// Caleb (they/them)