From: Robin Murphy <robin.murphy@arm.com>
To: Jiasheng Jiang <jiasheng@iscas.ac.cn>,
liviu.dudau@arm.com, brian.starkey@arm.com, airlied@gmail.com,
daniel@ffwll.ch
Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm: mali-dp: Add check for kzalloc
Date: Wed, 7 Dec 2022 13:59:04 +0000 [thread overview]
Message-ID: <17efaae0-9b6c-86ea-5fec-568d024d229f@arm.com> (raw)
In-Reply-To: <20221207092118.20603-1-jiasheng@iscas.ac.cn>
On 2022-12-07 09:21, Jiasheng Jiang wrote:
> As kzalloc may fail and return NULL pointer, it should be better to check
> the return value in order to avoid the NULL pointer dereference in
> __drm_atomic_helper_connector_reset.
This commit message is nonsense; if
__drm_atomic_helper_connector_reset() would dereference the NULL implied
by &mw_state->base, it would equally still dereference the explicit NULL
pointer passed after this patch.
The current code works out OK because "base" is the first member of
struct malidp_mw_connector_state, thus if mw_state is NULL then
&mw_state->base == NULL + 0 == NULL. Now you *could* argue that this
isn't robust if the layout of struct malidp_mw_connector_state ever
changes, and that could be a valid justification for making this change,
but the reason given certainly isn't.
Arithmetic on a (potentially) NULL pointer may well be a sign that it's
worth a closer look to check whether it really is what the code intended
to do, but don't automatically assume it has to be a bug. Otherwise,
good luck with "fixing" every user of container_of() throughout the
entire kernel.
Thanks,
Robin.
> Fixes: 8cbc5caf36ef ("drm: mali-dp: Add writeback connector")
> Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
> ---
> drivers/gpu/drm/arm/malidp_mw.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/arm/malidp_mw.c b/drivers/gpu/drm/arm/malidp_mw.c
> index ef76d0e6ee2f..fe4474c2ddcf 100644
> --- a/drivers/gpu/drm/arm/malidp_mw.c
> +++ b/drivers/gpu/drm/arm/malidp_mw.c
> @@ -72,7 +72,11 @@ static void malidp_mw_connector_reset(struct drm_connector *connector)
> __drm_atomic_helper_connector_destroy_state(connector->state);
>
> kfree(connector->state);
> - __drm_atomic_helper_connector_reset(connector, &mw_state->base);
> +
> + if (mw_state)
> + __drm_atomic_helper_connector_reset(connector, &mw_state->base);
> + else
> + __drm_atomic_helper_connector_reset(connector, NULL);
> }
>
> static enum drm_connector_status
next prev parent reply other threads:[~2022-12-07 13:59 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-07 9:21 Jiasheng Jiang
2022-12-07 10:00 ` Liviu Dudau
2022-12-07 13:59 ` Robin Murphy [this message]
2022-12-07 15:29 ` Liviu Dudau
2022-12-07 19:23 ` Robin Murphy
2022-12-08 2:12 Jiasheng Jiang
2022-12-08 2:15 Jiasheng Jiang
2022-12-08 3:15 Jiasheng Jiang
2022-12-08 3:16 Jiasheng Jiang
2022-12-08 11:42 ` Liviu Dudau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=17efaae0-9b6c-86ea-5fec-568d024d229f@arm.com \
--to=robin.murphy@arm.com \
--cc=airlied@gmail.com \
--cc=brian.starkey@arm.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=jiasheng@iscas.ac.cn \
--cc=linux-kernel@vger.kernel.org \
--cc=liviu.dudau@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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®