Skip to content

Commit 0c64e87

Browse files
committed
drivers/amd/pm: fix a use-after-free in kv_parse_power_table
jira LE-1907 cve CVE-2023-52469 Rebuild_History Non-Buildable kernel-4.18.0-553.16.1.el8_10 commit-author Zhipeng Lu <[email protected]> commit 28dd788 When ps allocated by kzalloc equals to NULL, kv_parse_power_table frees adev->pm.dpm.ps that allocated before. However, after the control flow goes through the following call chains: kv_parse_power_table |-> kv_dpm_init |-> kv_dpm_sw_init |-> kv_dpm_fini The adev->pm.dpm.ps is used in the for loop of kv_dpm_fini after its first free in kv_parse_power_table and causes a use-after-free bug. Fixes: a2e73f5 ("drm/amdgpu: Add support for CIK parts") Signed-off-by: Zhipeng Lu <[email protected]> Signed-off-by: Alex Deucher <[email protected]> (cherry picked from commit 28dd788) Signed-off-by: Jonathan Maple <[email protected]>
1 parent 940ed87 commit 0c64e87

File tree

1 file changed

+1
-3
lines changed
  • drivers/gpu/drm/amd/pm/legacy-dpm

1 file changed

+1
-3
lines changed

drivers/gpu/drm/amd/pm/legacy-dpm/kv_dpm.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2748,10 +2748,8 @@ static int kv_parse_power_table(struct amdgpu_device *adev)
27482748
non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *)
27492749
&non_clock_info_array->nonClockInfo[non_clock_array_index];
27502750
ps = kzalloc(sizeof(struct kv_ps), GFP_KERNEL);
2751-
if (ps == NULL) {
2752-
kfree(adev->pm.dpm.ps);
2751+
if (ps == NULL)
27532752
return -ENOMEM;
2754-
}
27552753
adev->pm.dpm.ps[i].ps_priv = ps;
27562754
k = 0;
27572755
idx = (u8 *)&power_state->v2.clockInfoIndex[0];

0 commit comments

Comments
 (0)