drm/amdgpu: reserve the root PD while freeing PASIDs
Free the pasid only while the root PD is reserved. This prevents use after free in the page fault handling. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
061468c405
commit
b65709a921
1 changed files with 9 additions and 11 deletions
|
@ -2945,18 +2945,26 @@ void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
|
||||||
struct amdgpu_bo_va_mapping *mapping, *tmp;
|
struct amdgpu_bo_va_mapping *mapping, *tmp;
|
||||||
bool prt_fini_needed = !!adev->gmc.gmc_funcs->set_prt;
|
bool prt_fini_needed = !!adev->gmc.gmc_funcs->set_prt;
|
||||||
struct amdgpu_bo *root;
|
struct amdgpu_bo *root;
|
||||||
int i, r;
|
int i;
|
||||||
|
|
||||||
amdgpu_amdkfd_gpuvm_destroy_cb(adev, vm);
|
amdgpu_amdkfd_gpuvm_destroy_cb(adev, vm);
|
||||||
|
|
||||||
|
root = amdgpu_bo_ref(vm->root.base.bo);
|
||||||
|
amdgpu_bo_reserve(root, true);
|
||||||
if (vm->pasid) {
|
if (vm->pasid) {
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
|
spin_lock_irqsave(&adev->vm_manager.pasid_lock, flags);
|
||||||
idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
|
idr_remove(&adev->vm_manager.pasid_idr, vm->pasid);
|
||||||
spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
|
spin_unlock_irqrestore(&adev->vm_manager.pasid_lock, flags);
|
||||||
|
vm->pasid = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
amdgpu_vm_free_pts(adev, vm, NULL);
|
||||||
|
amdgpu_bo_unreserve(root);
|
||||||
|
amdgpu_bo_unref(&root);
|
||||||
|
WARN_ON(vm->root.base.bo);
|
||||||
|
|
||||||
drm_sched_entity_destroy(&vm->direct);
|
drm_sched_entity_destroy(&vm->direct);
|
||||||
drm_sched_entity_destroy(&vm->delayed);
|
drm_sched_entity_destroy(&vm->delayed);
|
||||||
|
|
||||||
|
@ -2981,16 +2989,6 @@ void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)
|
||||||
amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
|
amdgpu_vm_free_mapping(adev, vm, mapping, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
root = amdgpu_bo_ref(vm->root.base.bo);
|
|
||||||
r = amdgpu_bo_reserve(root, true);
|
|
||||||
if (r) {
|
|
||||||
dev_err(adev->dev, "Leaking page tables because BO reservation failed\n");
|
|
||||||
} else {
|
|
||||||
amdgpu_vm_free_pts(adev, vm, NULL);
|
|
||||||
amdgpu_bo_unreserve(root);
|
|
||||||
}
|
|
||||||
amdgpu_bo_unref(&root);
|
|
||||||
WARN_ON(vm->root.base.bo);
|
|
||||||
dma_fence_put(vm->last_update);
|
dma_fence_put(vm->last_update);
|
||||||
for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
|
for (i = 0; i < AMDGPU_MAX_VMHUBS; i++)
|
||||||
amdgpu_vmid_free_reserved(adev, vm, i);
|
amdgpu_vmid_free_reserved(adev, vm, i);
|
||||||
|
|
Loading…
Add table
Reference in a new issue