[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20241104154043.GDZyjq-4Kt-IXTrf3y@fat_crate.local>
Date: Mon, 4 Nov 2024 16:40:43 +0100
From: Borislav Petkov <bp@...en8.de>
To: Tero Kristo <tero.kristo@...ux.intel.com>
Cc: Ma Ke <make24@...as.ac.cn>, kristo@...nel.org, tony.luck@...el.com,
james.morse@....com, mchehab@...nel.org, rric@...nel.org,
akpm@...ux-foundation.org, linux-edac@...r.kernel.org,
linux-kernel@...r.kernel.org, kernel test robot <lkp@...el.com>
Subject: Re: [PATCH v5 RESEND] EDAC/ti: Fix possible null pointer dereference
in _emif_get_id()
Hi Tero,
ack/nak?
Is your MAINTAINERS entry for this driver still valid/current or should
I orphan it?
Thx.
On Sat, Aug 24, 2024 at 07:26:43PM +0800, Ma Ke wrote:
> In _emif_get_id(), of_get_address() may return NULL which is later
> dereferenced. Fix this bug by adding NULL check.
>
> Found by code review.
>
> Cc: stable@...r.kernel.org
> Fixes: 86a18ee21e5e ("EDAC, ti: Add support for TI keystone and DRA7xx EDAC")
> Reported-by: kernel test robot <lkp@...el.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202408160935.A6QFliqt-lkp@intel.com/
> Signed-off-by: Ma Ke <make24@...as.ac.cn>
> ---
> Changes in v5:
> - According to the developer's suggestion, added an inspection of function
> of_translate_address(). However, kernel test robot reported a build
> warning, so the inspection is removed here, reverting to the modification
> solution of patch v3.
> Changes in v4:
> - added the check of of_translate_address() as suggestions.
> Changes in v3:
> - added the patch operations omitted in PATCH v2 RESEND compared to PATCH
> v2. Sorry for my oversight.
> Changes in v2:
> - added Cc stable line.
> ---
> drivers/edac/ti_edac.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/edac/ti_edac.c b/drivers/edac/ti_edac.c
> index 29723c9592f7..6f3da8d99eab 100644
> --- a/drivers/edac/ti_edac.c
> +++ b/drivers/edac/ti_edac.c
> @@ -207,6 +207,9 @@ static int _emif_get_id(struct device_node *node)
> int my_id = 0;
>
> addrp = of_get_address(node, 0, NULL, NULL);
> + if (!addrp)
> + return -EINVAL;
> +
> my_addr = (u32)of_translate_address(node, addrp);
>
> for_each_matching_node(np, ti_edac_of_match) {
> @@ -214,6 +217,9 @@ static int _emif_get_id(struct device_node *node)
> continue;
>
> addrp = of_get_address(np, 0, NULL, NULL);
> + if (!addrp)
> + return -EINVAL;
> +
> addr = (u32)of_translate_address(np, addrp);
>
> edac_printk(KERN_INFO, EDAC_MOD_NAME,
> --
> 2.25.1
>
>
--
Regards/Gruss,
Boris.
https://people.kernel.org/tglx/notes-about-netiquette
Powered by blists - more mailing lists