Add a viommu_cache test function to cover the new IOMMU_VIOMMU_INVALIDATE
ioctl with similar postive and negative cases to the existing iotlb ones.

Signed-off-by: Nicolin Chen <nicol...@nvidia.com>
---
 tools/testing/selftests/iommu/iommufd.c       | 190 ++++++++++++++++++
 tools/testing/selftests/iommu/iommufd_utils.h |  32 +++
 2 files changed, 222 insertions(+)

diff --git a/tools/testing/selftests/iommu/iommufd.c 
b/tools/testing/selftests/iommu/iommufd.c
index ce2e8c9ede9e..b8f20eeddd5b 100644
--- a/tools/testing/selftests/iommu/iommufd.c
+++ b/tools/testing/selftests/iommu/iommufd.c
@@ -622,6 +622,196 @@ TEST_F(iommufd_ioas, viommu_default)
        }
 }
 
+TEST_F(iommufd_ioas, viommu_dev_cache)
+{
+       struct iommu_viommu_invalidate_selftest inv_reqs[2] = {};
+       struct iommu_hwpt_selftest data = {
+               .iotlb = IOMMU_TEST_IOTLB_DEFAULT,
+       };
+       uint32_t nested_hwpt_id = 0, hwpt_id = 0;
+       uint32_t dev_id = self->device_id;
+       uint32_t viommu_id = 0;
+       uint32_t num_inv;
+
+       if (dev_id) {
+               test_cmd_hwpt_alloc(dev_id, self->ioas_id,
+                                   IOMMU_HWPT_ALLOC_NEST_PARENT, &hwpt_id);
+               test_cmd_viommu_alloc(dev_id, hwpt_id,
+                                     IOMMU_VIOMMU_TYPE_DEFAULT, &viommu_id);
+               test_cmd_hwpt_alloc_nested(self->device_id, viommu_id, 0,
+                                          &nested_hwpt_id,
+                                          IOMMU_HWPT_DATA_SELFTEST, &data,
+                                          sizeof(data));
+               test_cmd_mock_domain_replace(self->stdev_id, nested_hwpt_id);
+               test_cmd_viommu_set_vdev_id(viommu_id, dev_id, 0x99);
+
+               test_cmd_dev_check_cache_all(dev_id,
+                                            IOMMU_TEST_DEV_CACHE_DEFAULT);
+
+               /* Check data_type by passing zero-length array */
+               num_inv = 0;
+               test_cmd_viommu_invalidate(viommu_id, inv_reqs,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: Invalid data_type */
+               num_inv = 1;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST_INVALID,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: structure size sanity */
+               num_inv = 1;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs) + 1, &num_inv);
+               assert(!num_inv);
+
+               num_inv = 1;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          1, &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: invalid flag is passed */
+               num_inv = 1;
+               inv_reqs[0].flags = 0xffffffff;
+               inv_reqs[0].vdev_id = 0x99;
+               test_err_viommu_invalidate(EOPNOTSUPP, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: invalid data_uptr when array is not empty */
+               num_inv = 1;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               test_err_viommu_invalidate(EINVAL, viommu_id, NULL,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: invalid entry_len when array is not empty */
+               num_inv = 1;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          0, &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: invalid cache_id */
+               num_inv = 1;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               inv_reqs[0].cache_id = MOCK_DEV_CACHE_ID_MAX + 1;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(!num_inv);
+
+               /* Negative test: invalid vdev_id */
+               num_inv = 1;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x9;
+               inv_reqs[0].cache_id = 0;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(!num_inv);
+
+               /*
+                * Invalidate the 1st cache entry but fail the 2nd request
+                * due to invalid flags configuration in the 2nd request.
+                */
+               num_inv = 2;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               inv_reqs[0].cache_id = 0;
+               inv_reqs[1].flags = 0xffffffff;
+               inv_reqs[1].vdev_id = 0x99;
+               inv_reqs[1].cache_id = 1;
+               test_err_viommu_invalidate(EOPNOTSUPP, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(num_inv == 1);
+               test_cmd_dev_check_cache(dev_id, 0, 0);
+               test_cmd_dev_check_cache(dev_id, 1,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+               test_cmd_dev_check_cache(dev_id, 2,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+               test_cmd_dev_check_cache(dev_id, 3,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+
+               /*
+                * Invalidate the 1st cache entry but fail the 2nd request
+                * due to invalid cache_id configuration in the 2nd request.
+                */
+               num_inv = 2;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               inv_reqs[0].cache_id = 0;
+               inv_reqs[1].flags = 0;
+               inv_reqs[1].vdev_id = 0x99;
+               inv_reqs[1].cache_id = MOCK_DEV_CACHE_ID_MAX + 1;
+               test_err_viommu_invalidate(EINVAL, viommu_id, inv_reqs,
+                                          
IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(num_inv == 1);
+               test_cmd_dev_check_cache(dev_id, 0, 0);
+               test_cmd_dev_check_cache(dev_id, 1,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+               test_cmd_dev_check_cache(dev_id, 2,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+               test_cmd_dev_check_cache(dev_id, 3,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+
+               /* Invalidate the 2nd cache entry and verify */
+               num_inv = 1;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               inv_reqs[0].cache_id = 1;
+               test_cmd_viommu_invalidate(viommu_id, inv_reqs,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(num_inv == 1);
+               test_cmd_dev_check_cache(dev_id, 0, 0);
+               test_cmd_dev_check_cache(dev_id, 1, 0);
+               test_cmd_dev_check_cache(dev_id, 2,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+               test_cmd_dev_check_cache(dev_id, 3,
+                                        IOMMU_TEST_DEV_CACHE_DEFAULT);
+
+               /* Invalidate the 3rd and 4th cache entries and verify */
+               num_inv = 2;
+               inv_reqs[0].flags = 0;
+               inv_reqs[0].vdev_id = 0x99;
+               inv_reqs[0].cache_id = 2;
+               inv_reqs[1].flags = 0;
+               inv_reqs[1].vdev_id = 0x99;
+               inv_reqs[1].cache_id = 3;
+               test_cmd_viommu_invalidate(viommu_id, inv_reqs,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(num_inv == 2);
+               test_cmd_dev_check_cache_all(dev_id, 0);
+
+               /* Invalidate all cache entries for nested_dev_id[1] and verify 
*/
+               num_inv = 1;
+               inv_reqs[0].vdev_id = 0x99;
+               inv_reqs[0].flags = IOMMU_TEST_INVALIDATE_FLAG_ALL;
+               test_cmd_viommu_invalidate(viommu_id, inv_reqs,
+                                          sizeof(*inv_reqs), &num_inv);
+               assert(num_inv == 1);
+               test_cmd_dev_check_cache_all(dev_id, 0);
+
+               test_cmd_mock_domain_replace(self->stdev_id, hwpt_id);
+               test_ioctl_destroy(nested_hwpt_id);
+               test_cmd_mock_domain_replace(self->stdev_id, self->ioas_id);
+               test_ioctl_destroy(viommu_id);
+               test_ioctl_destroy(hwpt_id);
+       }
+}
+
 TEST_F(iommufd_ioas, hwpt_attach)
 {
        /* Create a device attached directly to a hwpt */
diff --git a/tools/testing/selftests/iommu/iommufd_utils.h 
b/tools/testing/selftests/iommu/iommufd_utils.h
index a2b9a6bbcfcc..69c51151238a 100644
--- a/tools/testing/selftests/iommu/iommufd_utils.h
+++ b/tools/testing/selftests/iommu/iommufd_utils.h
@@ -298,6 +298,38 @@ static int _test_cmd_hwpt_invalidate(int fd, __u32 
hwpt_id, void *reqs,
                                             data_type, lreq, nreqs));   \
        })
 
+static int _test_cmd_viommu_invalidate(int fd, __u32 viommu_id, void *reqs,
+                                      uint32_t data_type, uint32_t lreq,
+                                      uint32_t *nreqs)
+{
+       struct iommu_viommu_invalidate cmd = {
+               .size = sizeof(cmd),
+               .viommu_id = viommu_id,
+               .data_type = data_type,
+               .data_uptr = (uint64_t)reqs,
+               .entry_len = lreq,
+               .entry_num = *nreqs,
+       };
+       int rc = ioctl(fd, IOMMU_VIOMMU_INVALIDATE, &cmd);
+       *nreqs = cmd.entry_num;
+       return rc;
+}
+
+#define test_cmd_viommu_invalidate(viommu, reqs, lreq, nreqs)                  
\
+       ({                                                                     \
+               ASSERT_EQ(0,                                                   \
+                         _test_cmd_viommu_invalidate(self->fd, viommu, reqs,  \
+                                       IOMMU_VIOMMU_INVALIDATE_DATA_SELFTEST, \
+                                       lreq, nreqs));                         \
+       })
+#define test_err_viommu_invalidate(_errno, viommu_id, reqs, data_type, lreq,   
\
+                                nreqs)                                        \
+       ({                                                                     \
+               EXPECT_ERRNO(_errno, _test_cmd_viommu_invalidate(              \
+                                            self->fd, viommu_id, reqs,        \
+                                            data_type, lreq, nreqs));         \
+       })
+
 static int _test_cmd_access_replace_ioas(int fd, __u32 access_id,
                                         unsigned int ioas_id)
 {
-- 
2.43.0


Reply via email to