Commit 7a467e02 authored by Jason Gunthorpe's avatar Jason Gunthorpe

iommufd/selftest: Return the real idev id from selftest mock_domain

Now that we actually call iommufd_device_bind() we can return the
idev_id from that function to userspace for use in other APIs.

Link: https://lore.kernel.org/r/18-v8-6659224517ea+532-iommufd_alloc_jgg@nvidia.comReviewed-by: default avatarKevin Tian <kevin.tian@intel.com>
Tested-by: default avatarNicolin Chen <nicolinc@nvidia.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent 7074d7bd
...@@ -52,6 +52,8 @@ struct iommu_test_cmd { ...@@ -52,6 +52,8 @@ struct iommu_test_cmd {
struct { struct {
__u32 out_stdev_id; __u32 out_stdev_id;
__u32 out_hwpt_id; __u32 out_hwpt_id;
/* out_idev_id is the standard iommufd_bind object */
__u32 out_idev_id;
} mock_domain; } mock_domain;
struct { struct {
__u32 pt_id; __u32 pt_id;
......
...@@ -443,6 +443,7 @@ static int iommufd_test_mock_domain(struct iommufd_ucmd *ucmd, ...@@ -443,6 +443,7 @@ static int iommufd_test_mock_domain(struct iommufd_ucmd *ucmd,
/* Userspace must destroy the device_id to destroy the object */ /* Userspace must destroy the device_id to destroy the object */
cmd->mock_domain.out_hwpt_id = pt_id; cmd->mock_domain.out_hwpt_id = pt_id;
cmd->mock_domain.out_stdev_id = sobj->obj.id; cmd->mock_domain.out_stdev_id = sobj->obj.id;
cmd->mock_domain.out_idev_id = idev_id;
iommufd_object_finalize(ucmd->ictx, &sobj->obj); iommufd_object_finalize(ucmd->ictx, &sobj->obj);
return iommufd_ucmd_respond(ucmd, sizeof(*cmd)); return iommufd_ucmd_respond(ucmd, sizeof(*cmd));
......
...@@ -211,7 +211,7 @@ FIXTURE_SETUP(iommufd_ioas) ...@@ -211,7 +211,7 @@ FIXTURE_SETUP(iommufd_ioas)
for (i = 0; i != variant->mock_domains; i++) { for (i = 0; i != variant->mock_domains; i++) {
test_cmd_mock_domain(self->ioas_id, &self->stdev_id, test_cmd_mock_domain(self->ioas_id, &self->stdev_id,
&self->hwpt_id); &self->hwpt_id, NULL);
self->base_iova = MOCK_APERTURE_START; self->base_iova = MOCK_APERTURE_START;
} }
} }
...@@ -262,7 +262,7 @@ TEST_F(iommufd_ioas, hwpt_attach) ...@@ -262,7 +262,7 @@ TEST_F(iommufd_ioas, hwpt_attach)
{ {
/* Create a device attached directly to a hwpt */ /* Create a device attached directly to a hwpt */
if (self->stdev_id) { if (self->stdev_id) {
test_cmd_mock_domain(self->hwpt_id, NULL, NULL); test_cmd_mock_domain(self->hwpt_id, NULL, NULL, NULL);
} else { } else {
test_err_mock_domain(ENOENT, self->hwpt_id, NULL, NULL); test_err_mock_domain(ENOENT, self->hwpt_id, NULL, NULL);
} }
...@@ -681,7 +681,7 @@ TEST_F(iommufd_ioas, access_pin) ...@@ -681,7 +681,7 @@ TEST_F(iommufd_ioas, access_pin)
_IOMMU_TEST_CMD(IOMMU_TEST_OP_ACCESS_PAGES), _IOMMU_TEST_CMD(IOMMU_TEST_OP_ACCESS_PAGES),
&access_cmd)); &access_cmd));
test_cmd_mock_domain(self->ioas_id, &mock_stdev_id, test_cmd_mock_domain(self->ioas_id, &mock_stdev_id,
&mock_hwpt_id); &mock_hwpt_id, NULL);
check_map_cmd.id = mock_hwpt_id; check_map_cmd.id = mock_hwpt_id;
ASSERT_EQ(0, ioctl(self->fd, ASSERT_EQ(0, ioctl(self->fd,
_IOMMU_TEST_CMD(IOMMU_TEST_OP_MD_CHECK_MAP), _IOMMU_TEST_CMD(IOMMU_TEST_OP_MD_CHECK_MAP),
...@@ -836,7 +836,7 @@ TEST_F(iommufd_ioas, fork_gone) ...@@ -836,7 +836,7 @@ TEST_F(iommufd_ioas, fork_gone)
* If a domain already existed then everything was pinned within * If a domain already existed then everything was pinned within
* the fork, so this copies from one domain to another. * the fork, so this copies from one domain to another.
*/ */
test_cmd_mock_domain(self->ioas_id, NULL, NULL); test_cmd_mock_domain(self->ioas_id, NULL, NULL, NULL);
check_access_rw(_metadata, self->fd, access_id, check_access_rw(_metadata, self->fd, access_id,
MOCK_APERTURE_START, 0); MOCK_APERTURE_START, 0);
...@@ -885,7 +885,7 @@ TEST_F(iommufd_ioas, fork_present) ...@@ -885,7 +885,7 @@ TEST_F(iommufd_ioas, fork_present)
ASSERT_EQ(8, read(efd, &tmp, sizeof(tmp))); ASSERT_EQ(8, read(efd, &tmp, sizeof(tmp)));
/* Read pages from the remote process */ /* Read pages from the remote process */
test_cmd_mock_domain(self->ioas_id, NULL, NULL); test_cmd_mock_domain(self->ioas_id, NULL, NULL, NULL);
check_access_rw(_metadata, self->fd, access_id, MOCK_APERTURE_START, 0); check_access_rw(_metadata, self->fd, access_id, MOCK_APERTURE_START, 0);
ASSERT_EQ(0, close(pipefds[1])); ASSERT_EQ(0, close(pipefds[1]));
...@@ -1033,6 +1033,7 @@ FIXTURE(iommufd_mock_domain) ...@@ -1033,6 +1033,7 @@ FIXTURE(iommufd_mock_domain)
uint32_t hwpt_id; uint32_t hwpt_id;
uint32_t hwpt_ids[2]; uint32_t hwpt_ids[2];
uint32_t stdev_ids[2]; uint32_t stdev_ids[2];
uint32_t idev_ids[2];
int mmap_flags; int mmap_flags;
size_t mmap_buf_size; size_t mmap_buf_size;
}; };
...@@ -1055,7 +1056,7 @@ FIXTURE_SETUP(iommufd_mock_domain) ...@@ -1055,7 +1056,7 @@ FIXTURE_SETUP(iommufd_mock_domain)
for (i = 0; i != variant->mock_domains; i++) for (i = 0; i != variant->mock_domains; i++)
test_cmd_mock_domain(self->ioas_id, &self->stdev_ids[i], test_cmd_mock_domain(self->ioas_id, &self->stdev_ids[i],
&self->hwpt_ids[i]); &self->hwpt_ids[i], &self->idev_ids[i]);
self->hwpt_id = self->hwpt_ids[0]; self->hwpt_id = self->hwpt_ids[0];
self->mmap_flags = MAP_SHARED | MAP_ANONYMOUS; self->mmap_flags = MAP_SHARED | MAP_ANONYMOUS;
...@@ -1249,7 +1250,7 @@ TEST_F(iommufd_mock_domain, all_aligns_copy) ...@@ -1249,7 +1250,7 @@ TEST_F(iommufd_mock_domain, all_aligns_copy)
/* Add and destroy a domain while the area exists */ /* Add and destroy a domain while the area exists */
old_id = self->hwpt_ids[1]; old_id = self->hwpt_ids[1];
test_cmd_mock_domain(self->ioas_id, &mock_stdev_id, test_cmd_mock_domain(self->ioas_id, &mock_stdev_id,
&self->hwpt_ids[1]); &self->hwpt_ids[1], NULL);
check_mock_iova(buf + start, iova, length); check_mock_iova(buf + start, iova, length);
check_refs(buf + start / PAGE_SIZE * PAGE_SIZE, check_refs(buf + start / PAGE_SIZE * PAGE_SIZE,
...@@ -1458,7 +1459,7 @@ FIXTURE_SETUP(vfio_compat_mock_domain) ...@@ -1458,7 +1459,7 @@ FIXTURE_SETUP(vfio_compat_mock_domain)
/* Create what VFIO would consider a group */ /* Create what VFIO would consider a group */
test_ioctl_ioas_alloc(&self->ioas_id); test_ioctl_ioas_alloc(&self->ioas_id);
test_cmd_mock_domain(self->ioas_id, NULL, NULL); test_cmd_mock_domain(self->ioas_id, NULL, NULL, NULL);
/* Attach it to the vfio compat */ /* Attach it to the vfio compat */
vfio_ioas_cmd.ioas_id = self->ioas_id; vfio_ioas_cmd.ioas_id = self->ioas_id;
......
...@@ -315,7 +315,7 @@ TEST_FAIL_NTH(basic_fail_nth, map_domain) ...@@ -315,7 +315,7 @@ TEST_FAIL_NTH(basic_fail_nth, map_domain)
fail_nth_enable(); fail_nth_enable();
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id, NULL))
return -1; return -1;
if (_test_ioctl_ioas_map(self->fd, ioas_id, buffer, 262144, &iova, if (_test_ioctl_ioas_map(self->fd, ioas_id, buffer, 262144, &iova,
...@@ -326,7 +326,7 @@ TEST_FAIL_NTH(basic_fail_nth, map_domain) ...@@ -326,7 +326,7 @@ TEST_FAIL_NTH(basic_fail_nth, map_domain)
if (_test_ioctl_destroy(self->fd, stdev_id)) if (_test_ioctl_destroy(self->fd, stdev_id))
return -1; return -1;
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id, NULL))
return -1; return -1;
return 0; return 0;
} }
...@@ -350,12 +350,13 @@ TEST_FAIL_NTH(basic_fail_nth, map_two_domains) ...@@ -350,12 +350,13 @@ TEST_FAIL_NTH(basic_fail_nth, map_two_domains)
if (_test_ioctl_set_temp_memory_limit(self->fd, 32)) if (_test_ioctl_set_temp_memory_limit(self->fd, 32))
return -1; return -1;
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id, NULL))
return -1; return -1;
fail_nth_enable(); fail_nth_enable();
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id2, &hwpt_id2)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id2, &hwpt_id2,
NULL))
return -1; return -1;
if (_test_ioctl_ioas_map(self->fd, ioas_id, buffer, 262144, &iova, if (_test_ioctl_ioas_map(self->fd, ioas_id, buffer, 262144, &iova,
...@@ -369,9 +370,10 @@ TEST_FAIL_NTH(basic_fail_nth, map_two_domains) ...@@ -369,9 +370,10 @@ TEST_FAIL_NTH(basic_fail_nth, map_two_domains)
if (_test_ioctl_destroy(self->fd, stdev_id2)) if (_test_ioctl_destroy(self->fd, stdev_id2))
return -1; return -1;
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id, NULL))
return -1; return -1;
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id2, &hwpt_id2)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id2, &hwpt_id2,
NULL))
return -1; return -1;
return 0; return 0;
} }
...@@ -528,7 +530,7 @@ TEST_FAIL_NTH(basic_fail_nth, access_pin_domain) ...@@ -528,7 +530,7 @@ TEST_FAIL_NTH(basic_fail_nth, access_pin_domain)
if (_test_ioctl_set_temp_memory_limit(self->fd, 32)) if (_test_ioctl_set_temp_memory_limit(self->fd, 32))
return -1; return -1;
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, &hwpt_id, NULL))
return -1; return -1;
if (_test_ioctl_ioas_map(self->fd, ioas_id, buffer, BUFFER_SIZE, &iova, if (_test_ioctl_ioas_map(self->fd, ioas_id, buffer, BUFFER_SIZE, &iova,
...@@ -603,7 +605,7 @@ TEST_FAIL_NTH(basic_fail_nth, device) ...@@ -603,7 +605,7 @@ TEST_FAIL_NTH(basic_fail_nth, device)
fail_nth_enable(); fail_nth_enable();
if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, NULL)) if (_test_cmd_mock_domain(self->fd, ioas_id, &stdev_id, NULL, NULL))
return -1; return -1;
if (_test_cmd_mock_domain_replace(self->fd, stdev_id, ioas_id2, NULL)) if (_test_cmd_mock_domain_replace(self->fd, stdev_id, ioas_id2, NULL))
......
...@@ -41,7 +41,7 @@ static unsigned long PAGE_SIZE; ...@@ -41,7 +41,7 @@ static unsigned long PAGE_SIZE;
}) })
static int _test_cmd_mock_domain(int fd, unsigned int ioas_id, __u32 *stdev_id, static int _test_cmd_mock_domain(int fd, unsigned int ioas_id, __u32 *stdev_id,
__u32 *hwpt_id) __u32 *hwpt_id, __u32 *idev_id)
{ {
struct iommu_test_cmd cmd = { struct iommu_test_cmd cmd = {
.size = sizeof(cmd), .size = sizeof(cmd),
...@@ -59,14 +59,16 @@ static int _test_cmd_mock_domain(int fd, unsigned int ioas_id, __u32 *stdev_id, ...@@ -59,14 +59,16 @@ static int _test_cmd_mock_domain(int fd, unsigned int ioas_id, __u32 *stdev_id,
assert(cmd.id != 0); assert(cmd.id != 0);
if (hwpt_id) if (hwpt_id)
*hwpt_id = cmd.mock_domain.out_hwpt_id; *hwpt_id = cmd.mock_domain.out_hwpt_id;
if (idev_id)
*idev_id = cmd.mock_domain.out_idev_id;
return 0; return 0;
} }
#define test_cmd_mock_domain(ioas_id, stdev_id, hwpt_id) \ #define test_cmd_mock_domain(ioas_id, stdev_id, hwpt_id, idev_id) \
ASSERT_EQ(0, \ ASSERT_EQ(0, _test_cmd_mock_domain(self->fd, ioas_id, stdev_id, \
_test_cmd_mock_domain(self->fd, ioas_id, stdev_id, hwpt_id)) hwpt_id, idev_id))
#define test_err_mock_domain(_errno, ioas_id, stdev_id, hwpt_id) \ #define test_err_mock_domain(_errno, ioas_id, stdev_id, hwpt_id) \
EXPECT_ERRNO(_errno, _test_cmd_mock_domain(self->fd, ioas_id, \ EXPECT_ERRNO(_errno, _test_cmd_mock_domain(self->fd, ioas_id, \
stdev_id, hwpt_id)) stdev_id, hwpt_id, NULL))
static int _test_cmd_mock_domain_replace(int fd, __u32 stdev_id, __u32 pt_id, static int _test_cmd_mock_domain_replace(int fd, __u32 stdev_id, __u32 pt_id,
__u32 *hwpt_id) __u32 *hwpt_id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment