remoteproc: imx_rproc: Skip over memory region when node value is NULL

commit 2fa26ca8b786888673689ccc9da6094150939982 upstream.

In imx_rproc_addr_init() "nph = of_count_phandle_with_args()" just counts
number of phandles. But phandles may be empty. So of_parse_phandle() in
the parsing loop (0 < a < nph) may return NULL which is later dereferenced.
Adjust this issue by adding NULL-return check.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: a0ff4aa6f0 ("remoteproc: imx_rproc: add a NXP/Freescale imx_rproc driver")
Signed-off-by: Aleksandr Mishin <amishin@t-argos.ru>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20240606075204.12354-1-amishin@t-argos.ru
[Fixed title to fit within the prescribed 70-75 charcters]
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Aleksandr Mishin 2024-06-06 10:52:04 +03:00 коммит произвёл Greg Kroah-Hartman
Родитель d627cc333c
Коммит 4e13b7c239
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -588,6 +588,8 @@ static int imx_rproc_addr_init(struct imx_rproc *priv,
struct resource res; struct resource res;
node = of_parse_phandle(np, "memory-region", a); node = of_parse_phandle(np, "memory-region", a);
if (!node)
continue;
/* Not map vdevbuffer, vdevring region */ /* Not map vdevbuffer, vdevring region */
if (!strncmp(node->name, "vdev", strlen("vdev"))) { if (!strncmp(node->name, "vdev", strlen("vdev"))) {
of_node_put(node); of_node_put(node);