* [PATCH] greybus: operation: Fix NULL pointer dereference in gb_operation_message_alloc()
@ 2026-08-25 9:23 Yang Zi
2026-08-25 14:12 ` Johan Hovold
0 siblings, 1 reply; 2+ messages in thread
From: Yang Zi @ 2026-08-25 9:23 UTC (permalink / raw)
To: johan, elder, gregkh, greybus-dev; +Cc: linux-kernel
gb_connection_recv() reads msg_size from the received message header but
only rejects it when it is larger than the received buffer
("size < msg_size"); it does not reject msg_size smaller than the message
header itself. A malicious or corrupted header.size of 0 passes that
check and is forwarded to gb_operation_create_incoming() with size 0.
There, request_size = size - sizeof(struct gb_operation_msg_hdr)
underflows to SIZE_MAX - 7, and in gb_operation_message_alloc()
message_size = payload_size + sizeof(*header) wraps back around to 0.
The "message_size > hd->buffer_size_max" check is therefore bypassed,
kzalloc(0) returns ZERO_SIZE_PTR, and gb_operation_message_init() writes
header->size to that pointer.
KASAN report:
BUG: KASAN: null-ptr-deref in gb_operation_message_init drivers/greybus/operation.c:340 [inline] [greybus]
BUG: KASAN: null-ptr-deref in gb_operation_message_alloc+0xab4/0xdb0 drivers/greybus/operation.c:385 [greybus]
Write of size 2 at addr 0000000000000010 by task syz.0.1/1100
Fix this by rejecting messages whose claimed size is smaller than the
message header in gb_connection_recv(), and additionally make
gb_operation_message_alloc() overflow-safe by comparing the payload size
against hd->buffer_size_max - sizeof(*header) before adding the header
size.
Signed-off-by: Yang Zi <2959243019@qq.com>
---
drivers/greybus/operation.c | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/drivers/greybus/operation.c b/drivers/greybus/operation.c
index 7e12ffb2dd60..c3d51176c373 100644
--- a/drivers/greybus/operation.c
+++ b/drivers/greybus/operation.c
@@ -364,14 +364,21 @@ gb_operation_message_alloc(struct gb_host_device *hd, u8 type,
{
struct gb_message *message;
struct gb_operation_msg_hdr *header;
- size_t message_size = payload_size + sizeof(*header);
+ size_t message_size;
- if (message_size > hd->buffer_size_max) {
+ /*
+ * Reject a payload size that would make the total message size
+ * overflow, before it wraps around and bypasses the maximum
+ * buffer size check.
+ */
+ if (payload_size > hd->buffer_size_max - sizeof(*header)) {
dev_warn(&hd->dev, "requested message size too big (%zu > %zu)\n",
- message_size, hd->buffer_size_max);
+ payload_size, hd->buffer_size_max - sizeof(*header));
return NULL;
}
+ message_size = payload_size + sizeof(*header);
+
/* Allocate the message structure and buffer. */
message = kmem_cache_zalloc(gb_message_cache, gfp_flags);
if (!message)
@@ -1047,6 +1054,11 @@ void gb_connection_recv(struct gb_connection *connection,
/* Use memcpy as data may be unaligned */
memcpy(&header, data, sizeof(header));
msg_size = le16_to_cpu(header.size);
+ if (msg_size < sizeof(header)) {
+ dev_err_ratelimited(dev, "%s: short message received (%zu < %zu)\n",
+ connection->name, msg_size, sizeof(header));
+ return;
+ }
if (size < msg_size) {
dev_err_ratelimited(dev,
"%s: incomplete message 0x%04x of type 0x%02x received (%zu < %zu)\n",
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] greybus: operation: Fix NULL pointer dereference in gb_operation_message_alloc()
2026-08-25 9:23 [PATCH] greybus: operation: Fix NULL pointer dereference in gb_operation_message_alloc() Yang Zi
@ 2026-08-25 14:12 ` Johan Hovold
0 siblings, 0 replies; 2+ messages in thread
From: Johan Hovold @ 2026-08-25 14:12 UTC (permalink / raw)
To: Yang Zi; +Cc: elder, gregkh, greybus-dev, linux-kernel
On Tue, Aug 25, 2026 at 05:23:09PM +0800, Yang Zi wrote:
> gb_connection_recv() reads msg_size from the received message header but
> only rejects it when it is larger than the received buffer
> ("size < msg_size"); it does not reject msg_size smaller than the message
> header itself. A malicious or corrupted header.size of 0 passes that
> check and is forwarded to gb_operation_create_incoming() with size 0.
>
> There, request_size = size - sizeof(struct gb_operation_msg_hdr)
> underflows to SIZE_MAX - 7, and in gb_operation_message_alloc()
> message_size = payload_size + sizeof(*header) wraps back around to 0.
> The "message_size > hd->buffer_size_max" check is therefore bypassed,
> kzalloc(0) returns ZERO_SIZE_PTR, and gb_operation_message_init() writes
> header->size to that pointer.
>
> KASAN report:
>
> BUG: KASAN: null-ptr-deref in gb_operation_message_init drivers/greybus/operation.c:340 [inline] [greybus]
> BUG: KASAN: null-ptr-deref in gb_operation_message_alloc+0xab4/0xdb0 drivers/greybus/operation.c:385 [greybus]
> Write of size 2 at addr 0000000000000010 by task syz.0.1/1100
>
> Fix this by rejecting messages whose claimed size is smaller than the
> message header in gb_connection_recv(), and additionally make
> gb_operation_message_alloc() overflow-safe by comparing the payload size
> against hd->buffer_size_max - sizeof(*header) before adding the header
> size.
>
> Signed-off-by: Yang Zi <2959243019@qq.com>
How was this issue found and fixed? Did you use an LLM and are missing
an Assisted-by tag?
Based on a quick glance, this look correct, but your patch is corrupt
and cannot be applied. (This appears to be the case with all the 30+
patches you sent out today.)
Please fix your mail setup and send a v2 (try sending it to yourself
first and make sure you can apply it and run checkpatch on it). You
should look into using git-send-email.
Johan
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-25 14:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-25 9:23 [PATCH] greybus: operation: Fix NULL pointer dereference in gb_operation_message_alloc() Yang Zi
2026-08-25 14:12 ` Johan Hovold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®