From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B906A1C860C for ; Wed, 26 Feb 2025 01:59:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740535188; cv=none; b=NTl+peequlwyfNhE2+7ho4TeSTP0qbs6DgDzNdoPJI/sFs5MM/stcu+/k/q2+7ivP0Qeh348ujP9wV+pMtPZ38D0S+eUNLGcL7Ng4ics8kKBe6P0ZOzHwuPFPFSsZCdbJL9K9I0ofH61q9FMdhmyxaeVoMuzE0wzcrP2ki57nAo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740535188; c=relaxed/simple; bh=RfBmxx3tVGbgfcrkOY96NnW5kEyKYKJ7+PsVSBi29Ys=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=eoH22jeGI4mMd80aUBuhTvgv1r2agQuzuyRk2EjRMsVEsUAuAiIocdtvWBGOSplObSINSll/zRmFOadDqOK3EC4y1bHcv9RW1ZEibejvG94d7OPttTSoo9N74lSGZkDh1DwPG5rt5eMxsqjpwqaS51LeKN4q4424gJzLWyWazqE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TMqiDYvc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="TMqiDYvc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 85C7DC4CEE7; Wed, 26 Feb 2025 01:59:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1740535188; bh=RfBmxx3tVGbgfcrkOY96NnW5kEyKYKJ7+PsVSBi29Ys=; h=From:To:Cc:Subject:Date:Reply-to:From; b=TMqiDYvcS6HA7JPd5nmeGsrkPysBKlVAXWwn8zhDL6Qa//SyqK6Q4ftOx3IzADaP+ Dxqc0JSXa6ZMwsOzmsxg8UaETTdACs/vWCX0+/eyTjHUOEGn7sC5qyARAxmE1BHhqM CJnlTaEIdfQGQr1AU80/0k9euZ079InhLx4s+DOE= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2022-49232: drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes() Date: Wed, 26 Feb 2025 02:57:17 +0100 Message-ID: <2025022623-CVE-2022-49232-bf6c@gregkh> X-Mailer: git-send-email 2.48.1 Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Reply-to: , X-Developer-Signature: v=1; a=openpgp-sha256; l=3554; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=RfBmxx3tVGbgfcrkOY96NnW5kEyKYKJ7+PsVSBi29Ys=; b=kA0DAAIRMUfUDdst+ykByyZiAGe+dE+jaORSuqBZH5DOiZi060hLc8GjMbrKLdr1oOrpjRXrH 4hdBAARAgAdFiEE9LYMxb94wiFKMT3LMUfUDdst+ykFAme+dE8ACgkQMUfUDdst+ykOPQCggVu0 ucJldDUMN9DN4pwNXB8IHxcAn1hE/wcNse1+1RixAyg2ig7+3FNJ X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit Description =========== In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes() In amdgpu_dm_connector_add_common_modes(), amdgpu_dm_create_common_mode() is assigned to mode and is passed to drm_mode_probed_add() directly after that. drm_mode_probed_add() passes &mode->head to list_add_tail(), and there is a dereference of it in list_add_tail() without recoveries, which could lead to NULL pointer dereference on failure of amdgpu_dm_create_common_mode(). Fix this by adding a NULL check of mode. This bug was found by a static analyzer. Builds with 'make allyesconfig' show no new warnings, and our static analyzer no longer warns about this code. The Linux kernel CVE team has assigned CVE-2022-49232 to this issue. Affected and fixed versions =========================== Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 4.19.238 with commit 2c729dec8c1e3e2892fde5ce8181553860914e74 Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 5.4.189 with commit 57f4ad5e286fe4599c8fc63cf89f85f9eec7f9c9 Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 5.10.110 with commit 19a7eba284790cfbba2945deb2363cf03ce41648 Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 5.15.33 with commit bdc7429708a0772d90c208975694f7c2133b1202 Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 5.16.19 with commit f4eaa999fec78dec2a9c2d797438e05cbffb125b Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 5.17.2 with commit 639b3b9def0a6a3f316a195d705d14113236e89c Issue introduced in 4.15 with commit e7b07ceef2a650e5ed8ca37997689e086c680daf and fixed in 5.18 with commit 588a70177df3b1777484267584ef38ab2ca899a2 Please see https://www.kernel.org for a full list of currently supported kernel versions by the kernel community. Unaffected versions might change over time as fixes are backported to older supported kernel versions. The official CVE entry at https://cve.org/CVERecord/?id=CVE-2022-49232 will be updated if fixes are backported, please check that for the most up to date information about this issue. Affected files ============== The file(s) affected by this issue are: drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c Mitigation ========== The Linux kernel CVE team recommends that you update to the latest stable kernel version for this, and many other bugfixes. Individual changes are never tested alone, but rather are part of a larger kernel release. Cherry-picking individual commits is not recommended or supported by the Linux kernel community at all. If however, updating to the latest release is impossible, the individual changes to resolve this issue can be found at these commits: https://git.kernel.org/stable/c/2c729dec8c1e3e2892fde5ce8181553860914e74 https://git.kernel.org/stable/c/57f4ad5e286fe4599c8fc63cf89f85f9eec7f9c9 https://git.kernel.org/stable/c/19a7eba284790cfbba2945deb2363cf03ce41648 https://git.kernel.org/stable/c/bdc7429708a0772d90c208975694f7c2133b1202 https://git.kernel.org/stable/c/f4eaa999fec78dec2a9c2d797438e05cbffb125b https://git.kernel.org/stable/c/639b3b9def0a6a3f316a195d705d14113236e89c https://git.kernel.org/stable/c/588a70177df3b1777484267584ef38ab2ca899a2