* [PATCH] hfsplus: Fix error pointer dereference
@ 2026-02-18 19:33 Ethan Tidmore
2026-02-18 20:44 ` Viacheslav Dubeyko
0 siblings, 1 reply; 2+ messages in thread
From: Ethan Tidmore @ 2026-02-18 19:33 UTC (permalink / raw)
To: Viacheslav Dubeyko, John Paul Adrian Glaubitz, Yangtao Li
Cc: linux-fsdevel, linux-kernel, Ethan Tidmore
The function hfs_bnode_find() can return an error pointer and is not
checked for one. Add error pointer check.
Detected by Smatch:
fs/hfsplus/brec.c:441 hfs_brec_update_parent() error:
'fd->bnode' dereferencing possible ERR_PTR()
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Ethan Tidmore <ethantidmore06@gmail.com>
---
fs/hfsplus/brec.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fs/hfsplus/brec.c b/fs/hfsplus/brec.c
index 6796c1a80e99..efe79a8f1d98 100644
--- a/fs/hfsplus/brec.c
+++ b/fs/hfsplus/brec.c
@@ -434,6 +434,9 @@ static int hfs_brec_update_parent(struct hfs_find_data *fd)
new_node->parent = tree->root;
}
fd->bnode = hfs_bnode_find(tree, new_node->parent);
+ if (IS_ERR(fd->bnode))
+ return PTR_ERR(fd->bnode);
+
/* create index key and entry */
hfs_bnode_read_key(new_node, fd->search_key, 14);
cnid = cpu_to_be32(new_node->this);
--
2.53.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] hfsplus: Fix error pointer dereference
2026-02-18 19:33 [PATCH] hfsplus: Fix error pointer dereference Ethan Tidmore
@ 2026-02-18 20:44 ` Viacheslav Dubeyko
0 siblings, 0 replies; 2+ messages in thread
From: Viacheslav Dubeyko @ 2026-02-18 20:44 UTC (permalink / raw)
To: ethantidmore06, glaubitz, frank.li, slava; +Cc: linux-fsdevel, linux-kernel
On Wed, 2026-02-18 at 13:33 -0600, Ethan Tidmore wrote:
> The function hfs_bnode_find() can return an error pointer and is not
> checked for one. Add error pointer check.
>
If we take a look into the hfs_brec_update_parent(), then we can see that parent
node is already found as valid node [1]. And new_node has been prepared with
parent node set in hfs_bnode_split() [2]. It's highly not possible to have not
valid pointer for this call. I don't think that we really need this check.
Thanks,
Slava.
> Detected by Smatch:
> fs/hfsplus/brec.c:441 hfs_brec_update_parent() error:
> 'fd->bnode' dereferencing possible ERR_PTR()
>
> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
> Signed-off-by: Ethan Tidmore <ethantidmore06@gmail.com>
> ---
> fs/hfsplus/brec.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/fs/hfsplus/brec.c b/fs/hfsplus/brec.c
> index 6796c1a80e99..efe79a8f1d98 100644
> --- a/fs/hfsplus/brec.c
> +++ b/fs/hfsplus/brec.c
> @@ -434,6 +434,9 @@ static int hfs_brec_update_parent(struct hfs_find_data *fd)
> new_node->parent = tree->root;
> }
> fd->bnode = hfs_bnode_find(tree, new_node->parent);
> + if (IS_ERR(fd->bnode))
> + return PTR_ERR(fd->bnode);
> +
> /* create index key and entry */
> hfs_bnode_read_key(new_node, fd->search_key, 14);
> cnid = cpu_to_be32(new_node->this);
[1] https://elixir.bootlin.com/linux/v6.19-rc5/source/fs/hfsplus/brec.c#L371
[2] https://elixir.bootlin.com/linux/v6.19-rc5/source/fs/hfsplus/brec.c#L253
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-02-18 20:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-18 19:33 [PATCH] hfsplus: Fix error pointer dereference Ethan Tidmore
2026-02-18 20:44 ` Viacheslav Dubeyko
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®