lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 14 Dec 2021 09:59:56 +0100
From:   Thomas Zimmermann <tzimmermann@...e.de>
To:     Jiasheng Jiang <jiasheng@...as.ac.cn>, airlied@...hat.com,
        airlied@...ux.ie, daniel@...ll.ch
Cc:     linux-kernel@...r.kernel.org, dri-devel@...ts.freedesktop.org
Subject: Re: [PATCH v2] drm/ast: potential dereference of null pointer

Hi

Am 14.12.21 um 02:41 schrieb Jiasheng Jiang:
> The return value of kzalloc() needs to be checked.
> To avoid use of null pointer '&ast_state->base' in case of the
> failure of alloc.
> 
> Fixes: f0adbc382b8b ("drm/ast: Allocate initial CRTC state of the correct size")
> Signed-off-by: Jiasheng Jiang <jiasheng@...as.ac.cn>

Thanks a lot. I've added you patch to drm-misc-fixes.

Best regards
Thomas

> ---
> Changelog:
> 
> v1 -> v2
> 
> *Change 1. Add the else statement that calling
> __drm_atomic_helper_crtc_reset() with a state of NULL.
> ---
>   drivers/gpu/drm/ast/ast_mode.c | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/ast/ast_mode.c b/drivers/gpu/drm/ast/ast_mode.c
> index 36d9575aa27b..65099f0359f9 100644
> --- a/drivers/gpu/drm/ast/ast_mode.c
> +++ b/drivers/gpu/drm/ast/ast_mode.c
> @@ -1120,7 +1120,10 @@ static void ast_crtc_reset(struct drm_crtc *crtc)
>   	if (crtc->state)
>   		crtc->funcs->atomic_destroy_state(crtc, crtc->state);
>   
> -	__drm_atomic_helper_crtc_reset(crtc, &ast_state->base);
> +	if (ast_state)
> +		__drm_atomic_helper_crtc_reset(crtc, &ast_state->base);
> +	else
> +		__drm_atomic_helper_crtc_reset(crtc, NULL);
>   }
>   
>   static struct drm_crtc_state *
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev

Download attachment "OpenPGP_signature" of type "application/pgp-signature" (841 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ