From: Sascha Hauer <s.hauer@pengutronix.de>
To: Fabian Pflug <f.pflug@pengutronix.de>
Cc: BAREBOX <barebox@lists.infradead.org>
Subject: Re: [PATCH 4/4] security: kernel_pinctrl: fixup pinctrl in kernel dts
Date: Fri, 13 Mar 2026 15:10:44 +0100 [thread overview]
Message-ID: <abQa5OokmldJNiTi@pengutronix.de> (raw)
In-Reply-To: <20260312-v2026-02-0-topic-sconfig_console-v1-4-4c3fccafab1e@pengutronix.de>
On Thu, Mar 12, 2026 at 10:16:45AM +0100, Fabian Pflug wrote:
> Going through the kernel dts and replacing
> barebox,policy-<active_policy> with default in order to change pinctrl
> not only for barebox, but also for kernel when booting with security
> profiles.
>
> Signed-off-by: Fabian Pflug <f.pflug@pengutronix.de>
> ---
> security/Makefile | 1 +
> security/kernel_pinctrl.c | 70 +++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 71 insertions(+)
>
> diff --git a/security/Makefile b/security/Makefile
> index 1096cbfb9b..2e8cdfe7c2 100644
> --- a/security/Makefile
> +++ b/security/Makefile
> @@ -2,6 +2,7 @@
>
> obj-$(CONFIG_SECURITY_POLICY) += policy.o
> obj-$(CONFIG_SECURITY_POLICY_NAMES) += sconfig_names.o
> +obj-$(CONFIG_SECURITY_POLICY_PINCTRL) += kernel_pinctrl.o
> obj-$(CONFIG_CRYPTO_KEYSTORE) += keystore.o
> obj-$(CONFIG_JWT) += jwt.o
> obj-pbl-$(CONFIG_HAVE_OPTEE) += optee.o
> diff --git a/security/kernel_pinctrl.c b/security/kernel_pinctrl.c
> new file mode 100644
> index 0000000000..6ad75eb113
> --- /dev/null
> +++ b/security/kernel_pinctrl.c
> @@ -0,0 +1,70 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +
> +#include <common.h>
> +#include <linux/printk.h>
> +#include <pinctrl.h>
> +#include <security/policy.h>
> +#include <security/config.h>
> +
> +#define NUM_NAMES 10
> +
> +
> +/**
> + * Replace 'default' with 'old_default' and 'barebox,policy-<active_policy>'
> + * with 'default', if both are found in pinctrl.
> + */
> +static void kernel_of_fixup_pinctrl(struct device_node *node, char *policy_name)
> +{
> + struct device_node *n;
> + const char *names[NUM_NAMES];
> + int num_read = of_property_read_string_array(node, "pinctrl-names", names, NUM_NAMES);
> + struct property *prop = of_find_property(node, "pinctrl-names", NULL);
> + int pos_default = -1, pos_policy = -1;
> +
> + for (int i = 0; i < num_read; i++) {
> + if (strcmp(policy_name, names[i]) == 0)
> + pos_policy = i;
> + if (strcmp("default", names[i]) == 0)
> + pos_default = i;
> + }
> + if (pos_default >= 0 && pos_policy >= 0) {
> + // old_default is shorter then barebox,policy-*
> + char *val = malloc(prop->length);
> + char *cur = val;
> + const char *src;
> + int len;
> +
> + for (int i = 0; i < num_read; i++) {
> + if (i == pos_policy)
> + src = "default";
> + else if (i == pos_default)
> + src = "old_default";
> + else
> + src = names[i];
> + len = strlen(src);
> + memcpy(cur, src, len);
A multistring property in the device tree has multiple strings with '\0'
om between, so I believe you have to copy (and add to cur) len + 1 bytes to make
this work.
However, how about a of_property_write_string_array() function instead?
It might be useful elsewhere and could make this code more readable.
> + cur += len;
> + }
> + of_set_property(node, "pinctrl-names", val, cur - val, false);
> + }
> +
> + list_for_each_entry(n, &node->children, parent_list) {
> + kernel_of_fixup_pinctrl(n, policy_name);
> + }
No need to do this recursively. All nodes in a device tree are on a
list, see the of_tree_for_each_node_from macro.
Sascha
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
prev parent reply other threads:[~2026-03-13 14:11 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-12 9:16 [PATCH 0/4] Add helper for security policies Fabian Pflug
2026-03-12 9:16 ` [PATCH 1/4] common: bootm: add policy to commandline Fabian Pflug
2026-03-13 13:36 ` Sascha Hauer
2026-03-13 14:26 ` Fabian Pflug
2026-03-13 14:30 ` Sascha Hauer
2026-03-12 9:16 ` [PATCH 2/4] security: policy: set active policy on boot Fabian Pflug
2026-03-12 9:16 ` [PATCH 3/4] security: configure pinctrl based on policy name Fabian Pflug
2026-03-12 9:16 ` [PATCH 4/4] security: kernel_pinctrl: fixup pinctrl in kernel dts Fabian Pflug
2026-03-13 14:10 ` Sascha Hauer [this message]
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=abQa5OokmldJNiTi@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=f.pflug@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