* [PATCH] lib/bootconfig: fix undefined behavior involving NULL pointer arithmetic
@ 2026-06-28 11:56 Bradley Morgan
2026-06-29 13:41 ` Breno Leitao
0 siblings, 1 reply; 4+ messages in thread
From: Bradley Morgan @ 2026-06-28 11:56 UTC (permalink / raw)
To: akpm, mhiramat
Cc: leitao, linux-kernel, linux-trace-kernel, Bradley Morgan, stable
When xbc_snprint_cmdline() is called during the size-probing phase
(with buf = NULL and size = 0), the function computes the end pointer
as 'buf + size' (NULL + 0) and repeatedly advances the pointer via
'buf += ret'.
Under the C standard, performing pointer arithmetic on a NULL pointer is
undefined behavior. While harmless inside the kernel, this code is also
compiled into the userspace host tool 'tools/bootconfig', where host
compilers with UBSan or FORTIFY_SOURCE enabled abort the build when they
detect NULL pointer arithmetic.
Fix this by tracking the running written length as an integer offset
('len') rather than advancing 'buf' directly. Only perform pointer
arithmetic if 'buf' is actually non-NULL.
Fixes: 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to lib/bootconfig.c")
Cc: stable@vger.kernel.org
Assisted-by: Gemini:gemini-3.5-flash
Signed-off-by: Bradley Morgan <include@grrlz.net>
---
lib/bootconfig.c | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/lib/bootconfig.c b/lib/bootconfig.c
index f445b7703fdd..0181459505b7 100644
--- a/lib/bootconfig.c
+++ b/lib/bootconfig.c
@@ -410,8 +410,6 @@ const char * __init xbc_node_find_next_key_value(struct xbc_node *root,
static char xbc_namebuf[XBC_KEYLEN_MAX] __initdata;
-#define rest(dst, end) ((end) > (dst) ? (end) - (dst) : 0)
-
/**
* xbc_snprint_cmdline() - Render bootconfig keys under @root as a cmdline string
* @buf: Destination buffer (may be NULL when @size is 0 to query the length)
@@ -427,8 +425,8 @@ static char xbc_namebuf[XBC_KEYLEN_MAX] __initdata;
int __init xbc_snprint_cmdline(char *buf, size_t size, struct xbc_node *root)
{
struct xbc_node *knode, *vnode;
- char *end = buf + size;
const char *val, *q;
+ size_t len = 0;
int ret;
xbc_node_for_each_key_value(root, knode, val) {
@@ -439,10 +437,12 @@ int __init xbc_snprint_cmdline(char *buf, size_t size, struct xbc_node *root)
vnode = xbc_node_get_child(knode);
if (!vnode) {
- ret = snprintf(buf, rest(buf, end), "%s ", xbc_namebuf);
+ ret = snprintf(buf ? buf + len : NULL,
+ size > len ? size - len : 0,
+ "%s ", xbc_namebuf);
if (ret < 0)
return ret;
- buf += ret;
+ len += ret;
continue;
}
xbc_array_for_each_value(vnode, val) {
@@ -452,17 +452,18 @@ int __init xbc_snprint_cmdline(char *buf, size_t size, struct xbc_node *root)
* whitespace.
*/
q = strpbrk(val, " \t\r\n") ? "\"" : "";
- ret = snprintf(buf, rest(buf, end), "%s=%s%s%s ",
+ ret = snprintf(buf ? buf + len : NULL,
+ size > len ? size - len : 0,
+ "%s=%s%s%s ",
xbc_namebuf, q, val, q);
if (ret < 0)
return ret;
- buf += ret;
+ len += ret;
}
}
- return buf - (end - size);
+ return len;
}
-#undef rest
/* XBC parse and tree build */
--
2.53.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] lib/bootconfig: fix undefined behavior involving NULL pointer arithmetic
2026-06-28 11:56 [PATCH] lib/bootconfig: fix undefined behavior involving NULL pointer arithmetic Bradley Morgan
@ 2026-06-29 13:41 ` Breno Leitao
2026-06-29 13:53 ` Bradley Morgan
0 siblings, 1 reply; 4+ messages in thread
From: Breno Leitao @ 2026-06-29 13:41 UTC (permalink / raw)
To: Bradley Morgan; +Cc: akpm, mhiramat, linux-kernel, linux-trace-kernel, stable
On Sun, Jun 28, 2026 at 11:56:16AM +0000, Bradley Morgan wrote:
> When xbc_snprint_cmdline() is called during the size-probing phase
> (with buf = NULL and size = 0), the function computes the end pointer
> as 'buf + size' (NULL + 0) and repeatedly advances the pointer via
> 'buf += ret'.
>
> Under the C standard, performing pointer arithmetic on a NULL pointer is
> undefined behavior. While harmless inside the kernel, this code is also
> compiled into the userspace host tool 'tools/bootconfig', where host
> compilers with UBSan or FORTIFY_SOURCE enabled abort the build when they
> detect NULL pointer arithmetic.
>
> Fix this by tracking the running written length as an integer offset
> ('len') rather than advancing 'buf' directly. Only perform pointer
> arithmetic if 'buf' is actually non-NULL.
>
> Fixes: 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to lib/bootconfig.c")
Isn't commit 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to
lib/bootconfig.c") just a code movement?
> xbc_node_for_each_key_value(root, knode, val) {
> @@ -439,10 +437,12 @@ int __init xbc_snprint_cmdline(char *buf, size_t size, struct xbc_node *root)
>
> vnode = xbc_node_get_child(knode);
> if (!vnode) {
> - ret = snprintf(buf, rest(buf, end), "%s ", xbc_namebuf);
> + ret = snprintf(buf ? buf + len : NULL,
> + size > len ? size - len : 0,
Why not keeping rest() and updating it, instead of open coding it?
Thanks for the fix.
--breno
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] lib/bootconfig: fix undefined behavior involving NULL pointer arithmetic
2026-06-29 13:41 ` Breno Leitao
@ 2026-06-29 13:53 ` Bradley Morgan
2026-06-30 0:46 ` Masami Hiramatsu
0 siblings, 1 reply; 4+ messages in thread
From: Bradley Morgan @ 2026-06-29 13:53 UTC (permalink / raw)
To: Breno Leitao; +Cc: akpm, mhiramat, linux-kernel, linux-trace-kernel, stable
On 29 June 2026 14:41:37 BST, Breno Leitao <leitao@debian.org> wrote:
>On Sun, Jun 28, 2026 at 11:56:16AM +0000, Bradley Morgan wrote:
>> When xbc_snprint_cmdline() is called during the size-probing phase
>> (with buf = NULL and size = 0), the function computes the end pointer
>> as 'buf + size' (NULL + 0) and repeatedly advances the pointer via
>> 'buf += ret'.
>>
>> Under the C standard, performing pointer arithmetic on a NULL pointer is
>> undefined behavior. While harmless inside the kernel, this code is also
>> compiled into the userspace host tool 'tools/bootconfig', where host
>> compilers with UBSan or FORTIFY_SOURCE enabled abort the build when they
>> detect NULL pointer arithmetic.
>>
>> Fix this by tracking the running written length as an integer offset
>> ('len') rather than advancing 'buf' directly. Only perform pointer
>> arithmetic if 'buf' is actually non-NULL.
>>
>> Fixes: 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to
>lib/bootconfig.c")
>
>Isn't commit 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to
>lib/bootconfig.c") just a code movement?
Ugh, Geminis bullcrap, you are right. I should've just manually looked
for the fixes tag (as I always do)
>> xbc_node_for_each_key_value(root, knode, val) {
>> @@ -439,10 +437,12 @@ int __init xbc_snprint_cmdline(char *buf, size_t
>size, struct xbc_node *root)
>>
>> vnode = xbc_node_get_child(knode);
>> if (!vnode) {
>> - ret = snprintf(buf, rest(buf, end), "%s ", xbc_namebuf);
>> + ret = snprintf(buf ? buf + len : NULL,
>> + size > len ? size - len : 0,
>
>Why not keeping rest() and updating it, instead of open coding it?
>
>Thanks for the fix.
sure I'll do V2, btw if u didn't read, gemini found and fixed this.
As in fully. :)
>--breno
>
Thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] lib/bootconfig: fix undefined behavior involving NULL pointer arithmetic
2026-06-29 13:53 ` Bradley Morgan
@ 2026-06-30 0:46 ` Masami Hiramatsu
0 siblings, 0 replies; 4+ messages in thread
From: Masami Hiramatsu @ 2026-06-30 0:46 UTC (permalink / raw)
To: Bradley Morgan
Cc: Breno Leitao, akpm, mhiramat, linux-kernel, linux-trace-kernel,
stable
On Mon, 29 Jun 2026 14:53:05 +0100
Bradley Morgan <include@grrlz.net> wrote:
> On 29 June 2026 14:41:37 BST, Breno Leitao <leitao@debian.org> wrote:
> >On Sun, Jun 28, 2026 at 11:56:16AM +0000, Bradley Morgan wrote:
> >> When xbc_snprint_cmdline() is called during the size-probing phase
> >> (with buf = NULL and size = 0), the function computes the end pointer
> >> as 'buf + size' (NULL + 0) and repeatedly advances the pointer via
> >> 'buf += ret'.
> >>
> >> Under the C standard, performing pointer arithmetic on a NULL pointer is
> >> undefined behavior. While harmless inside the kernel, this code is also
> >> compiled into the userspace host tool 'tools/bootconfig', where host
> >> compilers with UBSan or FORTIFY_SOURCE enabled abort the build when they
> >> detect NULL pointer arithmetic.
> >>
> >> Fix this by tracking the running written length as an integer offset
> >> ('len') rather than advancing 'buf' directly. Only perform pointer
> >> arithmetic if 'buf' is actually non-NULL.
> >>
> >> Fixes: 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to
> >lib/bootconfig.c")
> >
> >Isn't commit 5a643e462323 ("bootconfig: move xbc_snprint_cmdline() to
> >lib/bootconfig.c") just a code movement?
>
> Ugh, Geminis bullcrap, you are right. I should've just manually looked
> for the fixes tag (as I always do)
Yeah, please use the latest linus kernel. (v7.2-rc1, for now)
>
> >> xbc_node_for_each_key_value(root, knode, val) {
> >> @@ -439,10 +437,12 @@ int __init xbc_snprint_cmdline(char *buf, size_t
> >size, struct xbc_node *root)
> >>
> >> vnode = xbc_node_get_child(knode);
> >> if (!vnode) {
> >> - ret = snprintf(buf, rest(buf, end), "%s ", xbc_namebuf);
> >> + ret = snprintf(buf ? buf + len : NULL,
> >> + size > len ? size - len : 0,
> >
> >Why not keeping rest() and updating it, instead of open coding it?
> >
> >Thanks for the fix.
>
> sure I'll do V2, btw if u didn't read, gemini found and fixed this.
> As in fully. :)
Hint: for fixing an issue, please just focus on fixing the issue
and try minimizing the change for keeping backportability.
Thanks,
>
>
>
> >--breno
> >
>
> Thanks!
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-06-30 0:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-28 11:56 [PATCH] lib/bootconfig: fix undefined behavior involving NULL pointer arithmetic Bradley Morgan
2026-06-29 13:41 ` Breno Leitao
2026-06-29 13:53 ` Bradley Morgan
2026-06-30 0:46 ` Masami Hiramatsu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox