Commit 14ef2eb2 authored by Alex Hung's avatar Alex Hung Committed by Gu Bowen
Browse files

drm/amd/display: Check stream before comparing them

stable inclusion
from stable-v5.10.227
commit 0167d570f6a0b38689c4a0e50bf79c518d827500
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/IAYR9N
CVE: CVE-2024-49896

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=0167d570f6a0b38689c4a0e50bf79c518d827500



--------------------------------

[ Upstream commit 35ff747c86767937ee1e0ca987545b7eed7a0810 ]

[WHAT & HOW]
amdgpu_dm can pass a null stream to dc_is_stream_unchanged. It is
necessary to check for null before dereferencing them.

This fixes 1 FORWARD_NULL issue reported by Coverity.

Reviewed-by: default avatarRodrigo Siqueira <rodrigo.siqueira@amd.com>
Signed-off-by: default avatarJerry Zuo <jerry.zuo@amd.com>
Signed-off-by: default avatarAlex Hung <alex.hung@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarGu Bowen <gubowen5@huawei.com>
parent 6c173ff8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1697,6 +1697,8 @@ static bool are_stream_backends_same(
bool dc_is_stream_unchanged(
	struct dc_stream_state *old_stream, struct dc_stream_state *stream)
{
	if (!old_stream || !stream)
		return false;

	if (!are_stream_backends_same(old_stream, stream))
		return false;