mm/hmm: check the device private page owner in hmm_range_fault()
authorChristoph Hellwig <hch@lst.de>
Mon, 16 Mar 2020 19:32:16 +0000 (20:32 +0100)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 26 Mar 2020 17:33:38 +0000 (14:33 -0300)
hmm_range_fault() will succeed for any kind of device private memory, even
if it doesn't belong to the calling entity.  While nouveau has some crude
checks for that, they are broken because they assume nouveau is the only
user of device private memory.  Fix this by passing in an expected pgmap
owner in the hmm_range_fault structure.

If a device_private page is found and doesn't match the owner then it is
treated as an non-present and non-faultable page.

This prevents a bug in amdgpu, where it doesn't know how to handle
device_private pages, but hmm_range_fault would return them anyhow.

Fixes: 4ef589dc9b10 ("mm/hmm/devmem: device memory hotplug using ZONE_DEVICE")
Link: https://lore.kernel.org/r/20200316193216.920734-5-hch@lst.de
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jason Gunthorpe <jgg@mellanox.com>
Reviewed-by: Ralph Campbell <rcampbell@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/gpu/drm/nouveau/nouveau_dmem.c
include/linux/hmm.h
mm/hmm.c

index edfd0805fba4a46cbbf547b7f519637e9814be66..ad89e09a0be39a1d28cae9e8dd00d252683b0ea9 100644 (file)
@@ -672,12 +672,6 @@ out:
        return ret;
 }
 
-static inline bool
-nouveau_dmem_page(struct nouveau_drm *drm, struct page *page)
-{
-       return is_device_private_page(page) && drm->dmem == page_to_dmem(page);
-}
-
 void
 nouveau_dmem_convert_pfn(struct nouveau_drm *drm,
                         struct hmm_range *range)
@@ -696,12 +690,6 @@ nouveau_dmem_convert_pfn(struct nouveau_drm *drm,
                if (!is_device_private_page(page))
                        continue;
 
-               if (!nouveau_dmem_page(drm, page)) {
-                       WARN(1, "Some unknown device memory !\n");
-                       range->pfns[i] = 0;
-                       continue;
-               }
-
                addr = nouveau_dmem_page_addr(page);
                range->pfns[i] &= ((1UL << range->pfn_shift) - 1);
                range->pfns[i] |= (addr >> PAGE_SHIFT) << range->pfn_shift;
index 5e6034f105c3ee70dd9153e58064b5797ddd7b58..bb6be4428633a836b1f9df337257a1c9cb9bc4a6 100644 (file)
@@ -132,6 +132,7 @@ enum hmm_pfn_value_e {
  * @pfn_flags_mask: allows to mask pfn flags so that only default_flags matter
  * @pfn_shifts: pfn shift value (should be <= PAGE_SHIFT)
  * @valid: pfns array did not change since it has been fill by an HMM function
+ * @dev_private_owner: owner of device private pages
  */
 struct hmm_range {
        struct mmu_interval_notifier *notifier;
@@ -144,6 +145,7 @@ struct hmm_range {
        uint64_t                default_flags;
        uint64_t                pfn_flags_mask;
        uint8_t                 pfn_shift;
+       void                    *dev_private_owner;
 };
 
 /*
index 613b34950c305f04cd66e1deaf516c3d93f7ee76..a491d9aaafe45d91f0138b8152f44cb2c50e429a 100644 (file)
--- a/mm/hmm.c
+++ b/mm/hmm.c
@@ -218,6 +218,14 @@ int hmm_vma_handle_pmd(struct mm_walk *walk, unsigned long addr,
                unsigned long end, uint64_t *pfns, pmd_t pmd);
 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
 
+static inline bool hmm_is_device_private_entry(struct hmm_range *range,
+               swp_entry_t entry)
+{
+       return is_device_private_entry(entry) &&
+               device_private_entry_to_page(entry)->pgmap->owner ==
+               range->dev_private_owner;
+}
+
 static inline uint64_t pte_to_hmm_pfn_flags(struct hmm_range *range, pte_t pte)
 {
        if (pte_none(pte) || !pte_present(pte) || pte_protnone(pte))
@@ -256,7 +264,7 @@ static int hmm_vma_handle_pte(struct mm_walk *walk, unsigned long addr,
                 * Never fault in device private pages pages, but just report
                 * the PFN even if not present.
                 */
-               if (is_device_private_entry(entry)) {
+               if (hmm_is_device_private_entry(range, entry)) {
                        *pfn = hmm_device_entry_from_pfn(range,
                                            swp_offset(entry));
                        *pfn |= range->flags[HMM_PFN_VALID];