From: Fabian Pflug <f.pflug@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>,
BAREBOX <barebox@lists.infradead.org>
Cc: Fabian Pflug <f.pflug@pengutronix.de>
Subject: [PATCH 1/2] common: misc: add soc_uid_bin to globalvar
Date: Mon, 30 Mar 2026 14:24:15 +0200 [thread overview]
Message-ID: <20260330-v2026-03-0-topic-soc_bin_id-v1-1-11292f75b196@pengutronix.de> (raw)
In-Reply-To: <20260330-v2026-03-0-topic-soc_bin_id-v1-0-11292f75b196@pengutronix.de>
uidstr and uidbuf could be the same, but don't have to be. This results
in uncertainty on what exactly is the current UID used for
machine_set_hashable and to compare against with TLV.
Add an additional global var, that represents a binary representation
of the soc_uid_bin variable.
This can now be used to feed as data for bound-soc-uid into
`bareboxtlv-generator.py` or as the value for
`CONFIG_HABV4_CSF_UNLOCK_UID`
Signed-off-by: Fabian Pflug <f.pflug@pengutronix.de>
---
common/misc.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/common/misc.c b/common/misc.c
index ecf9574f7a..f18c8b5825 100644
--- a/common/misc.c
+++ b/common/misc.c
@@ -268,6 +268,7 @@ const uuid_t *barebox_get_product_uuid(void)
BAREBOX_MAGICVAR(global.product.uuid, "SMBIOS-reported product UUID");
static char *soc_uid_str;
+static char *soc_uid_bin_str;
static void *soc_uid;
static size_t soc_uid_len;
@@ -295,16 +296,19 @@ void barebox_set_soc_uid(const char *uidstr, const void *uidbuf, size_t len)
soc_uid = xmemdup(uidbuf, len);
soc_uid_len = len;
+ soc_uid_bin_str = xzalloc(len * 2 + 1);
+ bin2hex(soc_uid_bin_str, uidbuf, len);
+
if (uidstr) {
soc_uid_str = xstrdup(uidstr);
} else {
- soc_uid_str = xzalloc(len * 2 + 1);
- bin2hex(soc_uid_str, uidbuf, len);
+ soc_uid_str = soc_uid_bin_str;
}
machine_id_set_hashable(uidbuf, len);
globalvar_add_simple_string("soc_uid", &soc_uid_str);
+ globalvar_add_simple_string("soc_uid_bin", &soc_uid_bin_str);
}
BAREBOX_MAGICVAR(global.soc_uid, "SoC Unique ID");
--
2.47.3
next prev parent reply other threads:[~2026-03-30 12:25 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-30 12:24 [PATCH 0/2] Add additional globalvar for soc_uid Fabian Pflug
2026-03-30 12:24 ` Fabian Pflug [this message]
2026-03-30 12:24 ` [PATCH 2/2] i.MX: HAB: update text for HABV4_CSF_UNLOCK_UID Fabian Pflug
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=20260330-v2026-03-0-topic-soc_bin_id-v1-1-11292f75b196@pengutronix.de \
--to=f.pflug@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@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