All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
@ 2021-07-01 14:24 ` Michael J. Ruhl
  0 siblings, 0 replies; 10+ messages in thread
From: Michael J. Ruhl @ 2021-07-01 14:24 UTC (permalink / raw)
  To: michael.j.ruhl, daniel, thomas.hellstrom, ckoenig.leichtzumerken,
	intel-gfx, dri-devel, matthew.auld, maarten.lankhorst

From: Thomas Hellström <thomas.hellstrom@linux.intel.com>

If our exported dma-bufs are imported by another instance of our driver,
that instance will typically have the imported dma-bufs locked during
dma_buf_map_attachment(). But the exporter also locks the same reservation
object in the map_dma_buf() callback, which leads to recursive locking.

So taking the lock inside _pin_pages_unlocked() is incorrect.

Additionally, the current pinning code path is contrary to the defined
way that pinning should occur.

Remove the explicit pin/unpin from the map/umap functions and move them
to the attach/detach allowing correct locking to occur, and to match
the static dma-buf drm_prime pattern.

Add a live selftest to exercise both dynamic and non-dynamic
exports.

v2:
- Extend the selftest with a fake dynamic importer.
- Provide real pin and unpin callbacks to not abuse the interface.
v3: (ruhl)
- Remove the dynamic export support and move the pinning into the
  attach/detach path.

Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 ++++++--
 .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 111 +++++++++++++++++-
 2 files changed, 143 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
index 616c3a2f1baf..00338c8d3739 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
@@ -12,6 +12,8 @@
 #include "i915_gem_object.h"
 #include "i915_scatterlist.h"
 
+I915_SELFTEST_DECLARE(static bool force_different_devices;)
+
 static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
 {
 	return to_intel_bo(buf->priv);
@@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
 	struct scatterlist *src, *dst;
 	int ret, i;
 
-	ret = i915_gem_object_pin_pages_unlocked(obj);
-	if (ret)
-		goto err;
-
 	/* Copy sg so that we make an independent mapping */
 	st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
 	if (st == NULL) {
 		ret = -ENOMEM;
-		goto err_unpin_pages;
+		goto err;
 	}
 
 	ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
@@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
 	sg_free_table(st);
 err_free:
 	kfree(st);
-err_unpin_pages:
-	i915_gem_object_unpin_pages(obj);
 err:
 	return ERR_PTR(ret);
 }
@@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
 				   struct sg_table *sg,
 				   enum dma_data_direction dir)
 {
-	struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
-
 	dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
 	sg_free_table(sg);
 	kfree(sg);
-
-	i915_gem_object_unpin_pages(obj);
 }
 
 static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
@@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
 	return err;
 }
 
+/**
+ * i915_gem_dmabuf_attach - Do any extra attach work necessary
+ * @dmabuf: imported dma-buf
+ * @attach: new attach to do work on
+ *
+ */
+static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
+				  struct dma_buf_attachment *attach)
+{
+	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+
+	assert_object_held(obj);
+	return i915_gem_object_pin_pages(obj);
+}
+
+static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
+				  struct dma_buf_attachment *attach)
+{
+	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+
+	i915_gem_object_unpin_pages(obj);
+}
+
 static const struct dma_buf_ops i915_dmabuf_ops =  {
+	.attach = i915_gem_dmabuf_attach,
+	.detach = i915_gem_dmabuf_detach,
 	.map_dma_buf = i915_gem_map_dma_buf,
 	.unmap_dma_buf = i915_gem_unmap_dma_buf,
 	.release = drm_gem_dmabuf_release,
@@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
 	struct sg_table *pages;
 	unsigned int sg_page_sizes;
 
+	assert_object_held(obj);
+
 	pages = dma_buf_map_attachment(obj->base.import_attach,
 				       DMA_BIDIRECTIONAL);
 	if (IS_ERR(pages))
@@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
 static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
 					     struct sg_table *pages)
 {
+	assert_object_held(obj);
+
 	dma_buf_unmap_attachment(obj->base.import_attach, pages,
 				 DMA_BIDIRECTIONAL);
 }
@@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
 	if (dma_buf->ops == &i915_dmabuf_ops) {
 		obj = dma_buf_to_obj(dma_buf);
 		/* is it from our device? */
-		if (obj->base.dev == dev) {
+		if (obj->base.dev == dev &&
+		    !I915_SELFTEST_ONLY(force_differnt_devices)) {
 			/*
 			 * Importing dmabuf exported from out own gem increases
 			 * refcount on gem itself instead of f_count of dmabuf.
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
index dd74bc09ec88..10a113cc00a5 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
@@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
 static int igt_dmabuf_import_self(void *arg)
 {
 	struct drm_i915_private *i915 = arg;
-	struct drm_i915_gem_object *obj;
+	struct drm_i915_gem_object *obj, *import_obj;
 	struct drm_gem_object *import;
 	struct dma_buf *dmabuf;
 	int err;
@@ -65,14 +65,120 @@ static int igt_dmabuf_import_self(void *arg)
 		err = -EINVAL;
 		goto out_import;
 	}
+	import_obj = to_intel_bo(import);
+
+	i915_gem_object_lock(import_obj, NULL);
+	err = ____i915_gem_object_get_pages(import_obj);
+	i915_gem_object_unlock(import_obj);
+	if (err) {
+		pr_err("Same object dma-buf get_pages failed!\n");
+		goto out_import;
+	}
 
 	err = 0;
 out_import:
-	i915_gem_object_put(to_intel_bo(import));
+	i915_gem_object_put(import_obj);
+out_dmabuf:
+	dma_buf_put(dmabuf);
+out:
+	i915_gem_object_put(obj);
+	return err;
+}
+
+static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
+	.move_notify = igt_dmabuf_move_notify,
+};
+
+static int igt_dmabuf_import_same_driver(void *arg)
+{
+	struct drm_i915_private *i915 = arg;
+	struct drm_i915_gem_object *obj, *import_obj;
+	struct drm_gem_object *import;
+	struct dma_buf *dmabuf;
+	struct dma_buf_attachment *import_attach;
+	struct sg_table *st;
+	long timeout;
+	int err;
+
+	force_different_devices = true;
+	obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
+	if (IS_ERR(obj))
+		goto out_ret;
+
+	dmabuf = i915_gem_prime_export(&obj->base, 0);
+	if (IS_ERR(dmabuf)) {
+		pr_err("i915_gem_prime_export failed with err=%d\n",
+		       (int)PTR_ERR(dmabuf));
+		err = PTR_ERR(dmabuf);
+		goto out;
+	}
+
+	import = i915_gem_prime_import(&i915->drm, dmabuf);
+	if (IS_ERR(import)) {
+		pr_err("i915_gem_prime_import failed with err=%d\n",
+		       (int)PTR_ERR(import));
+		err = PTR_ERR(import);
+		goto out_dmabuf;
+	}
+
+	if (import == &obj->base) {
+		pr_err("i915_gem_prime_import reused gem object!\n");
+		err = -EINVAL;
+		goto out_import;
+	}
+
+	import_obj = to_intel_bo(import);
+
+	i915_gem_object_lock(import_obj, NULL);
+	err = ____i915_gem_object_get_pages(import_obj);
+	if (err) {
+		pr_err("Different objects dma-buf get_pages failed!\n");
+		i915_gem_object_unlock(import_obj);
+		goto out_import;
+	}
+
+	/*
+	 * If the exported object is not in system memory, something
+	 * weird is going on. TODO: When p2p is supported, this is no
+	 * longer considered weird.
+	 */
+	if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
+		pr_err("Exported dma-buf is not in system memory\n");
+		err = -EINVAL;
+	}
+
+	i915_gem_object_unlock(import_obj);
+
+	/* Now try a fake dynamic importer */
+	import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
+					       &igt_dmabuf_attach_ops,
+					       NULL);
+	if (IS_ERR(import_attach))
+		goto out_import;
+
+	dma_resv_lock(dmabuf->resv, NULL);
+	st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
+	dma_resv_unlock(dmabuf->resv);
+	if (IS_ERR(st))
+		goto out_detach;
+
+	timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
+	if (!timeout) {
+		pr_err("dmabuf wait for exclusive fence timed out.\n");
+		timeout = -ETIME;
+	}
+	err = timeout > 0 ? 0 : timeout;
+	dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
+out_detach:
+	dma_buf_detach(dmabuf, import_attach);
+out_import:
+	i915_gem_object_put(import_obj);
 out_dmabuf:
 	dma_buf_put(dmabuf);
 out:
 	i915_gem_object_put(obj);
+out_ret:
+	force_different_devices = false;
 	return err;
 }
 
@@ -286,6 +392,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
 {
 	static const struct i915_subtest tests[] = {
 		SUBTEST(igt_dmabuf_export),
+		SUBTEST(igt_dmabuf_import_same_driver),
 	};
 
 	return i915_subtests(tests, i915);
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Intel-gfx] [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
@ 2021-07-01 14:24 ` Michael J. Ruhl
  0 siblings, 0 replies; 10+ messages in thread
From: Michael J. Ruhl @ 2021-07-01 14:24 UTC (permalink / raw)
  To: michael.j.ruhl, daniel, thomas.hellstrom, ckoenig.leichtzumerken,
	intel-gfx, dri-devel, matthew.auld, maarten.lankhorst

From: Thomas Hellström <thomas.hellstrom@linux.intel.com>

If our exported dma-bufs are imported by another instance of our driver,
that instance will typically have the imported dma-bufs locked during
dma_buf_map_attachment(). But the exporter also locks the same reservation
object in the map_dma_buf() callback, which leads to recursive locking.

So taking the lock inside _pin_pages_unlocked() is incorrect.

Additionally, the current pinning code path is contrary to the defined
way that pinning should occur.

Remove the explicit pin/unpin from the map/umap functions and move them
to the attach/detach allowing correct locking to occur, and to match
the static dma-buf drm_prime pattern.

Add a live selftest to exercise both dynamic and non-dynamic
exports.

v2:
- Extend the selftest with a fake dynamic importer.
- Provide real pin and unpin callbacks to not abuse the interface.
v3: (ruhl)
- Remove the dynamic export support and move the pinning into the
  attach/detach path.

Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 ++++++--
 .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 111 +++++++++++++++++-
 2 files changed, 143 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
index 616c3a2f1baf..00338c8d3739 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
@@ -12,6 +12,8 @@
 #include "i915_gem_object.h"
 #include "i915_scatterlist.h"
 
+I915_SELFTEST_DECLARE(static bool force_different_devices;)
+
 static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
 {
 	return to_intel_bo(buf->priv);
@@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
 	struct scatterlist *src, *dst;
 	int ret, i;
 
-	ret = i915_gem_object_pin_pages_unlocked(obj);
-	if (ret)
-		goto err;
-
 	/* Copy sg so that we make an independent mapping */
 	st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
 	if (st == NULL) {
 		ret = -ENOMEM;
-		goto err_unpin_pages;
+		goto err;
 	}
 
 	ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
@@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
 	sg_free_table(st);
 err_free:
 	kfree(st);
-err_unpin_pages:
-	i915_gem_object_unpin_pages(obj);
 err:
 	return ERR_PTR(ret);
 }
@@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
 				   struct sg_table *sg,
 				   enum dma_data_direction dir)
 {
-	struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
-
 	dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
 	sg_free_table(sg);
 	kfree(sg);
-
-	i915_gem_object_unpin_pages(obj);
 }
 
 static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
@@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
 	return err;
 }
 
+/**
+ * i915_gem_dmabuf_attach - Do any extra attach work necessary
+ * @dmabuf: imported dma-buf
+ * @attach: new attach to do work on
+ *
+ */
+static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
+				  struct dma_buf_attachment *attach)
+{
+	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+
+	assert_object_held(obj);
+	return i915_gem_object_pin_pages(obj);
+}
+
+static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
+				  struct dma_buf_attachment *attach)
+{
+	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+
+	i915_gem_object_unpin_pages(obj);
+}
+
 static const struct dma_buf_ops i915_dmabuf_ops =  {
+	.attach = i915_gem_dmabuf_attach,
+	.detach = i915_gem_dmabuf_detach,
 	.map_dma_buf = i915_gem_map_dma_buf,
 	.unmap_dma_buf = i915_gem_unmap_dma_buf,
 	.release = drm_gem_dmabuf_release,
@@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
 	struct sg_table *pages;
 	unsigned int sg_page_sizes;
 
+	assert_object_held(obj);
+
 	pages = dma_buf_map_attachment(obj->base.import_attach,
 				       DMA_BIDIRECTIONAL);
 	if (IS_ERR(pages))
@@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
 static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
 					     struct sg_table *pages)
 {
+	assert_object_held(obj);
+
 	dma_buf_unmap_attachment(obj->base.import_attach, pages,
 				 DMA_BIDIRECTIONAL);
 }
@@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
 	if (dma_buf->ops == &i915_dmabuf_ops) {
 		obj = dma_buf_to_obj(dma_buf);
 		/* is it from our device? */
-		if (obj->base.dev == dev) {
+		if (obj->base.dev == dev &&
+		    !I915_SELFTEST_ONLY(force_differnt_devices)) {
 			/*
 			 * Importing dmabuf exported from out own gem increases
 			 * refcount on gem itself instead of f_count of dmabuf.
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
index dd74bc09ec88..10a113cc00a5 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
@@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
 static int igt_dmabuf_import_self(void *arg)
 {
 	struct drm_i915_private *i915 = arg;
-	struct drm_i915_gem_object *obj;
+	struct drm_i915_gem_object *obj, *import_obj;
 	struct drm_gem_object *import;
 	struct dma_buf *dmabuf;
 	int err;
@@ -65,14 +65,120 @@ static int igt_dmabuf_import_self(void *arg)
 		err = -EINVAL;
 		goto out_import;
 	}
+	import_obj = to_intel_bo(import);
+
+	i915_gem_object_lock(import_obj, NULL);
+	err = ____i915_gem_object_get_pages(import_obj);
+	i915_gem_object_unlock(import_obj);
+	if (err) {
+		pr_err("Same object dma-buf get_pages failed!\n");
+		goto out_import;
+	}
 
 	err = 0;
 out_import:
-	i915_gem_object_put(to_intel_bo(import));
+	i915_gem_object_put(import_obj);
+out_dmabuf:
+	dma_buf_put(dmabuf);
+out:
+	i915_gem_object_put(obj);
+	return err;
+}
+
+static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
+	.move_notify = igt_dmabuf_move_notify,
+};
+
+static int igt_dmabuf_import_same_driver(void *arg)
+{
+	struct drm_i915_private *i915 = arg;
+	struct drm_i915_gem_object *obj, *import_obj;
+	struct drm_gem_object *import;
+	struct dma_buf *dmabuf;
+	struct dma_buf_attachment *import_attach;
+	struct sg_table *st;
+	long timeout;
+	int err;
+
+	force_different_devices = true;
+	obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
+	if (IS_ERR(obj))
+		goto out_ret;
+
+	dmabuf = i915_gem_prime_export(&obj->base, 0);
+	if (IS_ERR(dmabuf)) {
+		pr_err("i915_gem_prime_export failed with err=%d\n",
+		       (int)PTR_ERR(dmabuf));
+		err = PTR_ERR(dmabuf);
+		goto out;
+	}
+
+	import = i915_gem_prime_import(&i915->drm, dmabuf);
+	if (IS_ERR(import)) {
+		pr_err("i915_gem_prime_import failed with err=%d\n",
+		       (int)PTR_ERR(import));
+		err = PTR_ERR(import);
+		goto out_dmabuf;
+	}
+
+	if (import == &obj->base) {
+		pr_err("i915_gem_prime_import reused gem object!\n");
+		err = -EINVAL;
+		goto out_import;
+	}
+
+	import_obj = to_intel_bo(import);
+
+	i915_gem_object_lock(import_obj, NULL);
+	err = ____i915_gem_object_get_pages(import_obj);
+	if (err) {
+		pr_err("Different objects dma-buf get_pages failed!\n");
+		i915_gem_object_unlock(import_obj);
+		goto out_import;
+	}
+
+	/*
+	 * If the exported object is not in system memory, something
+	 * weird is going on. TODO: When p2p is supported, this is no
+	 * longer considered weird.
+	 */
+	if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
+		pr_err("Exported dma-buf is not in system memory\n");
+		err = -EINVAL;
+	}
+
+	i915_gem_object_unlock(import_obj);
+
+	/* Now try a fake dynamic importer */
+	import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
+					       &igt_dmabuf_attach_ops,
+					       NULL);
+	if (IS_ERR(import_attach))
+		goto out_import;
+
+	dma_resv_lock(dmabuf->resv, NULL);
+	st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
+	dma_resv_unlock(dmabuf->resv);
+	if (IS_ERR(st))
+		goto out_detach;
+
+	timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
+	if (!timeout) {
+		pr_err("dmabuf wait for exclusive fence timed out.\n");
+		timeout = -ETIME;
+	}
+	err = timeout > 0 ? 0 : timeout;
+	dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
+out_detach:
+	dma_buf_detach(dmabuf, import_attach);
+out_import:
+	i915_gem_object_put(import_obj);
 out_dmabuf:
 	dma_buf_put(dmabuf);
 out:
 	i915_gem_object_put(obj);
+out_ret:
+	force_different_devices = false;
 	return err;
 }
 
@@ -286,6 +392,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
 {
 	static const struct i915_subtest tests[] = {
 		SUBTEST(igt_dmabuf_export),
+		SUBTEST(igt_dmabuf_import_same_driver),
 	};
 
 	return i915_subtests(tests, i915);
-- 
2.31.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/2] drm/i915/gem: Migrate to system at dma-buf attach time
  2021-07-01 14:24 ` [Intel-gfx] " Michael J. Ruhl
@ 2021-07-01 14:24   ` Michael J. Ruhl
  -1 siblings, 0 replies; 10+ messages in thread
From: Michael J. Ruhl @ 2021-07-01 14:24 UTC (permalink / raw)
  To: michael.j.ruhl, daniel, thomas.hellstrom, ckoenig.leichtzumerken,
	intel-gfx, dri-devel, matthew.auld, maarten.lankhorst

From: Thomas Hellström <thomas.hellstrom@linux.intel.com>

Until we support p2p dma or as a complement to that, migrate data
to system memory at dma-buf attach time if possible.

v2:
- Rebase on dynamic exporter. Update the igt_dmabuf_import_same_driver
  selftest to migrate if we are LMEM capable.
v3:
- Migrate also in the pin() callback.
v4:
- Migrate in attach

Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c           | 12 +++++++++++-
 drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c |  4 +++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
index 00338c8d3739..406016aeb200 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
@@ -170,9 +170,19 @@ static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
 				  struct dma_buf_attachment *attach)
 {
 	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+	int ret;
 
 	assert_object_held(obj);
-	return i915_gem_object_pin_pages(obj);
+
+	if (!i915_gem_object_can_migrate(obj, INTEL_REGION_SMEM))
+		return -EOPNOTSUPP;
+	ret = i915_gem_object_migrate(obj, NULL, INTEL_REGION_SMEM);
+	if (!ret)
+		ret = i915_gem_object_wait_migration(obj, 0);
+	if (!ret)
+		ret = i915_gem_object_pin_pages(obj);
+
+	return ret;
 }
 
 static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
index 10a113cc00a5..6feac1a14281 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
@@ -101,7 +101,9 @@ static int igt_dmabuf_import_same_driver(void *arg)
 	int err;
 
 	force_different_devices = true;
-	obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
+	obj = i915_gem_object_create_lmem(i915, PAGE_SIZE, 0);
+	if (IS_ERR(obj))
+		obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
 	if (IS_ERR(obj))
 		goto out_ret;
 
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Intel-gfx] [PATCH 2/2] drm/i915/gem: Migrate to system at dma-buf attach time
@ 2021-07-01 14:24   ` Michael J. Ruhl
  0 siblings, 0 replies; 10+ messages in thread
From: Michael J. Ruhl @ 2021-07-01 14:24 UTC (permalink / raw)
  To: michael.j.ruhl, daniel, thomas.hellstrom, ckoenig.leichtzumerken,
	intel-gfx, dri-devel, matthew.auld, maarten.lankhorst

From: Thomas Hellström <thomas.hellstrom@linux.intel.com>

Until we support p2p dma or as a complement to that, migrate data
to system memory at dma-buf attach time if possible.

v2:
- Rebase on dynamic exporter. Update the igt_dmabuf_import_same_driver
  selftest to migrate if we are LMEM capable.
v3:
- Migrate also in the pin() callback.
v4:
- Migrate in attach

Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c           | 12 +++++++++++-
 drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c |  4 +++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
index 00338c8d3739..406016aeb200 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
@@ -170,9 +170,19 @@ static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
 				  struct dma_buf_attachment *attach)
 {
 	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+	int ret;
 
 	assert_object_held(obj);
-	return i915_gem_object_pin_pages(obj);
+
+	if (!i915_gem_object_can_migrate(obj, INTEL_REGION_SMEM))
+		return -EOPNOTSUPP;
+	ret = i915_gem_object_migrate(obj, NULL, INTEL_REGION_SMEM);
+	if (!ret)
+		ret = i915_gem_object_wait_migration(obj, 0);
+	if (!ret)
+		ret = i915_gem_object_pin_pages(obj);
+
+	return ret;
 }
 
 static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
index 10a113cc00a5..6feac1a14281 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
@@ -101,7 +101,9 @@ static int igt_dmabuf_import_same_driver(void *arg)
 	int err;
 
 	force_different_devices = true;
-	obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
+	obj = i915_gem_object_create_lmem(i915, PAGE_SIZE, 0);
+	if (IS_ERR(obj))
+		obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
 	if (IS_ERR(obj))
 		goto out_ret;
 
-- 
2.31.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Intel-gfx] ✗ Fi.CI.BUILD: failure for series starting with [1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
  2021-07-01 14:24 ` [Intel-gfx] " Michael J. Ruhl
  (?)
  (?)
@ 2021-07-01 14:52 ` Patchwork
  -1 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2021-07-01 14:52 UTC (permalink / raw)
  To: Michael J. Ruhl; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
URL   : https://patchwork.freedesktop.org/series/92109/
State : failure

== Summary ==

CALL    scripts/checksyscalls.sh
  CALL    scripts/atomic/check-atomics.sh
  DESCEND objtool
  CHK     include/generated/compile.h
  CC [M]  drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o
In file included from ./include/linux/init.h:5,
                 from ./include/linux/io.h:10,
                 from ./include/linux/dma-buf-map.h:9,
                 from ./include/linux/dma-buf.h:16,
                 from drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c:7:
drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c: In function ‘i915_gem_prime_import’:
drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c:276:27: error: ‘force_differnt_devices’ undeclared (first use in this function); did you mean ‘force_different_devices’?
       !I915_SELFTEST_ONLY(force_differnt_devices)) {
                           ^~~~~~~~~~~~~~~~~~~~~~
./include/linux/compiler.h:78:42: note: in definition of macro ‘unlikely’
 # define unlikely(x) __builtin_expect(!!(x), 0)
                                          ^
drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c:276:8: note: in expansion of macro ‘I915_SELFTEST_ONLY’
       !I915_SELFTEST_ONLY(force_differnt_devices)) {
        ^~~~~~~~~~~~~~~~~~
drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c:276:27: note: each undeclared identifier is reported only once for each function it appears in
       !I915_SELFTEST_ONLY(force_differnt_devices)) {
                           ^~~~~~~~~~~~~~~~~~~~~~
./include/linux/compiler.h:78:42: note: in definition of macro ‘unlikely’
 # define unlikely(x) __builtin_expect(!!(x), 0)
                                          ^
drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c:276:8: note: in expansion of macro ‘I915_SELFTEST_ONLY’
       !I915_SELFTEST_ONLY(force_differnt_devices)) {
        ^~~~~~~~~~~~~~~~~~
In file included from drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c:327:
drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c: At top level:
drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c:89:17: error: ‘igt_dmabuf_move_notify’ undeclared here (not in a function); did you mean ‘dma_buf_move_notify’?
  .move_notify = igt_dmabuf_move_notify,
                 ^~~~~~~~~~~~~~~~~~~~~~
                 dma_buf_move_notify
scripts/Makefile.build:272: recipe for target 'drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o' failed
make[4]: *** [drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o] Error 1
scripts/Makefile.build:515: recipe for target 'drivers/gpu/drm/i915' failed
make[3]: *** [drivers/gpu/drm/i915] Error 2
scripts/Makefile.build:515: recipe for target 'drivers/gpu/drm' failed
make[2]: *** [drivers/gpu/drm] Error 2
scripts/Makefile.build:515: recipe for target 'drivers/gpu' failed
make[1]: *** [drivers/gpu] Error 2
Makefile:1847: recipe for target 'drivers' failed
make: *** [drivers] Error 2


_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
  2021-07-01 14:24 ` [Intel-gfx] " Michael J. Ruhl
@ 2021-07-02 17:09   ` Daniel Vetter
  -1 siblings, 0 replies; 10+ messages in thread
From: Daniel Vetter @ 2021-07-02 17:09 UTC (permalink / raw)
  To: Michael J. Ruhl
  Cc: Thomas Hellström, Christian König, intel-gfx,
	dri-devel, Matthew Auld

On Thu, Jul 1, 2021 at 4:24 PM Michael J. Ruhl <michael.j.ruhl@intel.com> wrote:
>
> From: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>
> If our exported dma-bufs are imported by another instance of our driver,
> that instance will typically have the imported dma-bufs locked during
> dma_buf_map_attachment(). But the exporter also locks the same reservation
> object in the map_dma_buf() callback, which leads to recursive locking.
>
> So taking the lock inside _pin_pages_unlocked() is incorrect.
>
> Additionally, the current pinning code path is contrary to the defined
> way that pinning should occur.
>
> Remove the explicit pin/unpin from the map/umap functions and move them
> to the attach/detach allowing correct locking to occur, and to match
> the static dma-buf drm_prime pattern.
>
> Add a live selftest to exercise both dynamic and non-dynamic
> exports.
>
> v2:
> - Extend the selftest with a fake dynamic importer.
> - Provide real pin and unpin callbacks to not abuse the interface.
> v3: (ruhl)
> - Remove the dynamic export support and move the pinning into the
>   attach/detach path.
>
> Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>

CI splat is because I got the locking rules wrong, I thought
->attach/detach are called under the dma_resv_lock, because when we
used the old dma_buf->lock those calls where protected by that lock
under the same critical section as adding/removing from the list. But
we changed that in

f45f57cce584 ("dma-buf: stop using the dmabuf->lock so much v2")
15fd552d186c ("dma-buf: change DMA-buf locking convention v3")

Because keeping dma_resv_lock over ->attach/detach would go boom on
all the ttm drivers, which pin/unpin the buffer in there. Iow we need
the unlocked version there, but also having this split up is a bit
awkward and might be good to patch up so that it's atomic again. Would
mean updating a bunch of drivers. Christian, any thoughts?

Mike, for now I'd just keep using the _unlocked variants and we should be fine.
-Daniel

> ---
>  drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 ++++++--
>  .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 111 +++++++++++++++++-
>  2 files changed, 143 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
> index 616c3a2f1baf..00338c8d3739 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
> @@ -12,6 +12,8 @@
>  #include "i915_gem_object.h"
>  #include "i915_scatterlist.h"
>
> +I915_SELFTEST_DECLARE(static bool force_different_devices;)
> +
>  static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
>  {
>         return to_intel_bo(buf->priv);
> @@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>         struct scatterlist *src, *dst;
>         int ret, i;
>
> -       ret = i915_gem_object_pin_pages_unlocked(obj);
> -       if (ret)
> -               goto err;
> -
>         /* Copy sg so that we make an independent mapping */
>         st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
>         if (st == NULL) {
>                 ret = -ENOMEM;
> -               goto err_unpin_pages;
> +               goto err;
>         }
>
>         ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
> @@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>         sg_free_table(st);
>  err_free:
>         kfree(st);
> -err_unpin_pages:
> -       i915_gem_object_unpin_pages(obj);
>  err:
>         return ERR_PTR(ret);
>  }
> @@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
>                                    struct sg_table *sg,
>                                    enum dma_data_direction dir)
>  {
> -       struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
> -
>         dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
>         sg_free_table(sg);
>         kfree(sg);
> -
> -       i915_gem_object_unpin_pages(obj);
>  }
>
>  static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
> @@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
>         return err;
>  }
>
> +/**
> + * i915_gem_dmabuf_attach - Do any extra attach work necessary
> + * @dmabuf: imported dma-buf
> + * @attach: new attach to do work on
> + *
> + */
> +static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
> +                                 struct dma_buf_attachment *attach)
> +{
> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
> +
> +       assert_object_held(obj);
> +       return i915_gem_object_pin_pages(obj);
> +}
> +
> +static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
> +                                 struct dma_buf_attachment *attach)
> +{
> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
> +
> +       i915_gem_object_unpin_pages(obj);
> +}
> +
>  static const struct dma_buf_ops i915_dmabuf_ops =  {
> +       .attach = i915_gem_dmabuf_attach,
> +       .detach = i915_gem_dmabuf_detach,
>         .map_dma_buf = i915_gem_map_dma_buf,
>         .unmap_dma_buf = i915_gem_unmap_dma_buf,
>         .release = drm_gem_dmabuf_release,
> @@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>         struct sg_table *pages;
>         unsigned int sg_page_sizes;
>
> +       assert_object_held(obj);
> +
>         pages = dma_buf_map_attachment(obj->base.import_attach,
>                                        DMA_BIDIRECTIONAL);
>         if (IS_ERR(pages))
> @@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>  static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
>                                              struct sg_table *pages)
>  {
> +       assert_object_held(obj);
> +
>         dma_buf_unmap_attachment(obj->base.import_attach, pages,
>                                  DMA_BIDIRECTIONAL);
>  }
> @@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
>         if (dma_buf->ops == &i915_dmabuf_ops) {
>                 obj = dma_buf_to_obj(dma_buf);
>                 /* is it from our device? */
> -               if (obj->base.dev == dev) {
> +               if (obj->base.dev == dev &&
> +                   !I915_SELFTEST_ONLY(force_differnt_devices)) {
>                         /*
>                          * Importing dmabuf exported from out own gem increases
>                          * refcount on gem itself instead of f_count of dmabuf.
> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> index dd74bc09ec88..10a113cc00a5 100644
> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> @@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
>  static int igt_dmabuf_import_self(void *arg)
>  {
>         struct drm_i915_private *i915 = arg;
> -       struct drm_i915_gem_object *obj;
> +       struct drm_i915_gem_object *obj, *import_obj;
>         struct drm_gem_object *import;
>         struct dma_buf *dmabuf;
>         int err;
> @@ -65,14 +65,120 @@ static int igt_dmabuf_import_self(void *arg)
>                 err = -EINVAL;
>                 goto out_import;
>         }
> +       import_obj = to_intel_bo(import);
> +
> +       i915_gem_object_lock(import_obj, NULL);
> +       err = ____i915_gem_object_get_pages(import_obj);
> +       i915_gem_object_unlock(import_obj);
> +       if (err) {
> +               pr_err("Same object dma-buf get_pages failed!\n");
> +               goto out_import;
> +       }
>
>         err = 0;
>  out_import:
> -       i915_gem_object_put(to_intel_bo(import));
> +       i915_gem_object_put(import_obj);
> +out_dmabuf:
> +       dma_buf_put(dmabuf);
> +out:
> +       i915_gem_object_put(obj);
> +       return err;
> +}
> +
> +static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
> +       .move_notify = igt_dmabuf_move_notify,
> +};
> +
> +static int igt_dmabuf_import_same_driver(void *arg)
> +{
> +       struct drm_i915_private *i915 = arg;
> +       struct drm_i915_gem_object *obj, *import_obj;
> +       struct drm_gem_object *import;
> +       struct dma_buf *dmabuf;
> +       struct dma_buf_attachment *import_attach;
> +       struct sg_table *st;
> +       long timeout;
> +       int err;
> +
> +       force_different_devices = true;
> +       obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
> +       if (IS_ERR(obj))
> +               goto out_ret;
> +
> +       dmabuf = i915_gem_prime_export(&obj->base, 0);
> +       if (IS_ERR(dmabuf)) {
> +               pr_err("i915_gem_prime_export failed with err=%d\n",
> +                      (int)PTR_ERR(dmabuf));
> +               err = PTR_ERR(dmabuf);
> +               goto out;
> +       }
> +
> +       import = i915_gem_prime_import(&i915->drm, dmabuf);
> +       if (IS_ERR(import)) {
> +               pr_err("i915_gem_prime_import failed with err=%d\n",
> +                      (int)PTR_ERR(import));
> +               err = PTR_ERR(import);
> +               goto out_dmabuf;
> +       }
> +
> +       if (import == &obj->base) {
> +               pr_err("i915_gem_prime_import reused gem object!\n");
> +               err = -EINVAL;
> +               goto out_import;
> +       }
> +
> +       import_obj = to_intel_bo(import);
> +
> +       i915_gem_object_lock(import_obj, NULL);
> +       err = ____i915_gem_object_get_pages(import_obj);
> +       if (err) {
> +               pr_err("Different objects dma-buf get_pages failed!\n");
> +               i915_gem_object_unlock(import_obj);
> +               goto out_import;
> +       }
> +
> +       /*
> +        * If the exported object is not in system memory, something
> +        * weird is going on. TODO: When p2p is supported, this is no
> +        * longer considered weird.
> +        */
> +       if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
> +               pr_err("Exported dma-buf is not in system memory\n");
> +               err = -EINVAL;
> +       }
> +
> +       i915_gem_object_unlock(import_obj);
> +
> +       /* Now try a fake dynamic importer */
> +       import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
> +                                              &igt_dmabuf_attach_ops,
> +                                              NULL);
> +       if (IS_ERR(import_attach))
> +               goto out_import;
> +
> +       dma_resv_lock(dmabuf->resv, NULL);
> +       st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
> +       dma_resv_unlock(dmabuf->resv);
> +       if (IS_ERR(st))
> +               goto out_detach;
> +
> +       timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
> +       if (!timeout) {
> +               pr_err("dmabuf wait for exclusive fence timed out.\n");
> +               timeout = -ETIME;
> +       }
> +       err = timeout > 0 ? 0 : timeout;
> +       dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
> +out_detach:
> +       dma_buf_detach(dmabuf, import_attach);
> +out_import:
> +       i915_gem_object_put(import_obj);
>  out_dmabuf:
>         dma_buf_put(dmabuf);
>  out:
>         i915_gem_object_put(obj);
> +out_ret:
> +       force_different_devices = false;
>         return err;
>  }
>
> @@ -286,6 +392,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
>  {
>         static const struct i915_subtest tests[] = {
>                 SUBTEST(igt_dmabuf_export),
> +               SUBTEST(igt_dmabuf_import_same_driver),
>         };
>
>         return i915_subtests(tests, i915);
> --
> 2.31.1
>


-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx] [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
@ 2021-07-02 17:09   ` Daniel Vetter
  0 siblings, 0 replies; 10+ messages in thread
From: Daniel Vetter @ 2021-07-02 17:09 UTC (permalink / raw)
  To: Michael J. Ruhl
  Cc: Thomas Hellström, Christian König, intel-gfx,
	dri-devel, Matthew Auld

On Thu, Jul 1, 2021 at 4:24 PM Michael J. Ruhl <michael.j.ruhl@intel.com> wrote:
>
> From: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>
> If our exported dma-bufs are imported by another instance of our driver,
> that instance will typically have the imported dma-bufs locked during
> dma_buf_map_attachment(). But the exporter also locks the same reservation
> object in the map_dma_buf() callback, which leads to recursive locking.
>
> So taking the lock inside _pin_pages_unlocked() is incorrect.
>
> Additionally, the current pinning code path is contrary to the defined
> way that pinning should occur.
>
> Remove the explicit pin/unpin from the map/umap functions and move them
> to the attach/detach allowing correct locking to occur, and to match
> the static dma-buf drm_prime pattern.
>
> Add a live selftest to exercise both dynamic and non-dynamic
> exports.
>
> v2:
> - Extend the selftest with a fake dynamic importer.
> - Provide real pin and unpin callbacks to not abuse the interface.
> v3: (ruhl)
> - Remove the dynamic export support and move the pinning into the
>   attach/detach path.
>
> Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>

CI splat is because I got the locking rules wrong, I thought
->attach/detach are called under the dma_resv_lock, because when we
used the old dma_buf->lock those calls where protected by that lock
under the same critical section as adding/removing from the list. But
we changed that in

f45f57cce584 ("dma-buf: stop using the dmabuf->lock so much v2")
15fd552d186c ("dma-buf: change DMA-buf locking convention v3")

Because keeping dma_resv_lock over ->attach/detach would go boom on
all the ttm drivers, which pin/unpin the buffer in there. Iow we need
the unlocked version there, but also having this split up is a bit
awkward and might be good to patch up so that it's atomic again. Would
mean updating a bunch of drivers. Christian, any thoughts?

Mike, for now I'd just keep using the _unlocked variants and we should be fine.
-Daniel

> ---
>  drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 ++++++--
>  .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 111 +++++++++++++++++-
>  2 files changed, 143 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
> index 616c3a2f1baf..00338c8d3739 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
> @@ -12,6 +12,8 @@
>  #include "i915_gem_object.h"
>  #include "i915_scatterlist.h"
>
> +I915_SELFTEST_DECLARE(static bool force_different_devices;)
> +
>  static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
>  {
>         return to_intel_bo(buf->priv);
> @@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>         struct scatterlist *src, *dst;
>         int ret, i;
>
> -       ret = i915_gem_object_pin_pages_unlocked(obj);
> -       if (ret)
> -               goto err;
> -
>         /* Copy sg so that we make an independent mapping */
>         st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
>         if (st == NULL) {
>                 ret = -ENOMEM;
> -               goto err_unpin_pages;
> +               goto err;
>         }
>
>         ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
> @@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>         sg_free_table(st);
>  err_free:
>         kfree(st);
> -err_unpin_pages:
> -       i915_gem_object_unpin_pages(obj);
>  err:
>         return ERR_PTR(ret);
>  }
> @@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
>                                    struct sg_table *sg,
>                                    enum dma_data_direction dir)
>  {
> -       struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
> -
>         dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
>         sg_free_table(sg);
>         kfree(sg);
> -
> -       i915_gem_object_unpin_pages(obj);
>  }
>
>  static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
> @@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
>         return err;
>  }
>
> +/**
> + * i915_gem_dmabuf_attach - Do any extra attach work necessary
> + * @dmabuf: imported dma-buf
> + * @attach: new attach to do work on
> + *
> + */
> +static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
> +                                 struct dma_buf_attachment *attach)
> +{
> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
> +
> +       assert_object_held(obj);
> +       return i915_gem_object_pin_pages(obj);
> +}
> +
> +static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
> +                                 struct dma_buf_attachment *attach)
> +{
> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
> +
> +       i915_gem_object_unpin_pages(obj);
> +}
> +
>  static const struct dma_buf_ops i915_dmabuf_ops =  {
> +       .attach = i915_gem_dmabuf_attach,
> +       .detach = i915_gem_dmabuf_detach,
>         .map_dma_buf = i915_gem_map_dma_buf,
>         .unmap_dma_buf = i915_gem_unmap_dma_buf,
>         .release = drm_gem_dmabuf_release,
> @@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>         struct sg_table *pages;
>         unsigned int sg_page_sizes;
>
> +       assert_object_held(obj);
> +
>         pages = dma_buf_map_attachment(obj->base.import_attach,
>                                        DMA_BIDIRECTIONAL);
>         if (IS_ERR(pages))
> @@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>  static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
>                                              struct sg_table *pages)
>  {
> +       assert_object_held(obj);
> +
>         dma_buf_unmap_attachment(obj->base.import_attach, pages,
>                                  DMA_BIDIRECTIONAL);
>  }
> @@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
>         if (dma_buf->ops == &i915_dmabuf_ops) {
>                 obj = dma_buf_to_obj(dma_buf);
>                 /* is it from our device? */
> -               if (obj->base.dev == dev) {
> +               if (obj->base.dev == dev &&
> +                   !I915_SELFTEST_ONLY(force_differnt_devices)) {
>                         /*
>                          * Importing dmabuf exported from out own gem increases
>                          * refcount on gem itself instead of f_count of dmabuf.
> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> index dd74bc09ec88..10a113cc00a5 100644
> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> @@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
>  static int igt_dmabuf_import_self(void *arg)
>  {
>         struct drm_i915_private *i915 = arg;
> -       struct drm_i915_gem_object *obj;
> +       struct drm_i915_gem_object *obj, *import_obj;
>         struct drm_gem_object *import;
>         struct dma_buf *dmabuf;
>         int err;
> @@ -65,14 +65,120 @@ static int igt_dmabuf_import_self(void *arg)
>                 err = -EINVAL;
>                 goto out_import;
>         }
> +       import_obj = to_intel_bo(import);
> +
> +       i915_gem_object_lock(import_obj, NULL);
> +       err = ____i915_gem_object_get_pages(import_obj);
> +       i915_gem_object_unlock(import_obj);
> +       if (err) {
> +               pr_err("Same object dma-buf get_pages failed!\n");
> +               goto out_import;
> +       }
>
>         err = 0;
>  out_import:
> -       i915_gem_object_put(to_intel_bo(import));
> +       i915_gem_object_put(import_obj);
> +out_dmabuf:
> +       dma_buf_put(dmabuf);
> +out:
> +       i915_gem_object_put(obj);
> +       return err;
> +}
> +
> +static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
> +       .move_notify = igt_dmabuf_move_notify,
> +};
> +
> +static int igt_dmabuf_import_same_driver(void *arg)
> +{
> +       struct drm_i915_private *i915 = arg;
> +       struct drm_i915_gem_object *obj, *import_obj;
> +       struct drm_gem_object *import;
> +       struct dma_buf *dmabuf;
> +       struct dma_buf_attachment *import_attach;
> +       struct sg_table *st;
> +       long timeout;
> +       int err;
> +
> +       force_different_devices = true;
> +       obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
> +       if (IS_ERR(obj))
> +               goto out_ret;
> +
> +       dmabuf = i915_gem_prime_export(&obj->base, 0);
> +       if (IS_ERR(dmabuf)) {
> +               pr_err("i915_gem_prime_export failed with err=%d\n",
> +                      (int)PTR_ERR(dmabuf));
> +               err = PTR_ERR(dmabuf);
> +               goto out;
> +       }
> +
> +       import = i915_gem_prime_import(&i915->drm, dmabuf);
> +       if (IS_ERR(import)) {
> +               pr_err("i915_gem_prime_import failed with err=%d\n",
> +                      (int)PTR_ERR(import));
> +               err = PTR_ERR(import);
> +               goto out_dmabuf;
> +       }
> +
> +       if (import == &obj->base) {
> +               pr_err("i915_gem_prime_import reused gem object!\n");
> +               err = -EINVAL;
> +               goto out_import;
> +       }
> +
> +       import_obj = to_intel_bo(import);
> +
> +       i915_gem_object_lock(import_obj, NULL);
> +       err = ____i915_gem_object_get_pages(import_obj);
> +       if (err) {
> +               pr_err("Different objects dma-buf get_pages failed!\n");
> +               i915_gem_object_unlock(import_obj);
> +               goto out_import;
> +       }
> +
> +       /*
> +        * If the exported object is not in system memory, something
> +        * weird is going on. TODO: When p2p is supported, this is no
> +        * longer considered weird.
> +        */
> +       if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
> +               pr_err("Exported dma-buf is not in system memory\n");
> +               err = -EINVAL;
> +       }
> +
> +       i915_gem_object_unlock(import_obj);
> +
> +       /* Now try a fake dynamic importer */
> +       import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
> +                                              &igt_dmabuf_attach_ops,
> +                                              NULL);
> +       if (IS_ERR(import_attach))
> +               goto out_import;
> +
> +       dma_resv_lock(dmabuf->resv, NULL);
> +       st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
> +       dma_resv_unlock(dmabuf->resv);
> +       if (IS_ERR(st))
> +               goto out_detach;
> +
> +       timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
> +       if (!timeout) {
> +               pr_err("dmabuf wait for exclusive fence timed out.\n");
> +               timeout = -ETIME;
> +       }
> +       err = timeout > 0 ? 0 : timeout;
> +       dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
> +out_detach:
> +       dma_buf_detach(dmabuf, import_attach);
> +out_import:
> +       i915_gem_object_put(import_obj);
>  out_dmabuf:
>         dma_buf_put(dmabuf);
>  out:
>         i915_gem_object_put(obj);
> +out_ret:
> +       force_different_devices = false;
>         return err;
>  }
>
> @@ -286,6 +392,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
>  {
>         static const struct i915_subtest tests[] = {
>                 SUBTEST(igt_dmabuf_export),
> +               SUBTEST(igt_dmabuf_import_same_driver),
>         };
>
>         return i915_subtests(tests, i915);
> --
> 2.31.1
>


-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
  2021-07-02 17:09   ` [Intel-gfx] " Daniel Vetter
@ 2021-07-07  6:42     ` Christian König
  -1 siblings, 0 replies; 10+ messages in thread
From: Christian König @ 2021-07-07  6:42 UTC (permalink / raw)
  To: Daniel Vetter, Michael J. Ruhl
  Cc: Thomas Hellström, intel-gfx, Matthew Auld, dri-devel



Am 02.07.21 um 19:09 schrieb Daniel Vetter:
> On Thu, Jul 1, 2021 at 4:24 PM Michael J. Ruhl <michael.j.ruhl@intel.com> wrote:
>> From: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>>
>> If our exported dma-bufs are imported by another instance of our driver,
>> that instance will typically have the imported dma-bufs locked during
>> dma_buf_map_attachment(). But the exporter also locks the same reservation
>> object in the map_dma_buf() callback, which leads to recursive locking.
>>
>> So taking the lock inside _pin_pages_unlocked() is incorrect.
>>
>> Additionally, the current pinning code path is contrary to the defined
>> way that pinning should occur.
>>
>> Remove the explicit pin/unpin from the map/umap functions and move them
>> to the attach/detach allowing correct locking to occur, and to match
>> the static dma-buf drm_prime pattern.
>>
>> Add a live selftest to exercise both dynamic and non-dynamic
>> exports.
>>
>> v2:
>> - Extend the selftest with a fake dynamic importer.
>> - Provide real pin and unpin callbacks to not abuse the interface.
>> v3: (ruhl)
>> - Remove the dynamic export support and move the pinning into the
>>    attach/detach path.
>>
>> Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> CI splat is because I got the locking rules wrong, I thought
> ->attach/detach are called under the dma_resv_lock, because when we
> used the old dma_buf->lock those calls where protected by that lock
> under the same critical section as adding/removing from the list. But
> we changed that in
>
> f45f57cce584 ("dma-buf: stop using the dmabuf->lock so much v2")
> 15fd552d186c ("dma-buf: change DMA-buf locking convention v3")
>
> Because keeping dma_resv_lock over ->attach/detach would go boom on
> all the ttm drivers, which pin/unpin the buffer in there. Iow we need
> the unlocked version there, but also having this split up is a bit
> awkward and might be good to patch up so that it's atomic again. Would
> mean updating a bunch of drivers. Christian, any thoughts?

Yeah, we already discussed that when we switched from dma_buf->lock to 
dma_resv->lock.

In general completely agree to do this and stopping using the 
dma_buf->lock was a first step towards this, but IIRC we postponed that 
switch till later.

Regards,
Christian.

PS: I'm currently on sick leave, so response might be delayed.

>
> Mike, for now I'd just keep using the _unlocked variants and we should be fine.
> -Daniel
>
>> ---
>>   drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 ++++++--
>>   .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 111 +++++++++++++++++-
>>   2 files changed, 143 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
>> index 616c3a2f1baf..00338c8d3739 100644
>> --- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
>> @@ -12,6 +12,8 @@
>>   #include "i915_gem_object.h"
>>   #include "i915_scatterlist.h"
>>
>> +I915_SELFTEST_DECLARE(static bool force_different_devices;)
>> +
>>   static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
>>   {
>>          return to_intel_bo(buf->priv);
>> @@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>>          struct scatterlist *src, *dst;
>>          int ret, i;
>>
>> -       ret = i915_gem_object_pin_pages_unlocked(obj);
>> -       if (ret)
>> -               goto err;
>> -
>>          /* Copy sg so that we make an independent mapping */
>>          st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
>>          if (st == NULL) {
>>                  ret = -ENOMEM;
>> -               goto err_unpin_pages;
>> +               goto err;
>>          }
>>
>>          ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
>> @@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>>          sg_free_table(st);
>>   err_free:
>>          kfree(st);
>> -err_unpin_pages:
>> -       i915_gem_object_unpin_pages(obj);
>>   err:
>>          return ERR_PTR(ret);
>>   }
>> @@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
>>                                     struct sg_table *sg,
>>                                     enum dma_data_direction dir)
>>   {
>> -       struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
>> -
>>          dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
>>          sg_free_table(sg);
>>          kfree(sg);
>> -
>> -       i915_gem_object_unpin_pages(obj);
>>   }
>>
>>   static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
>> @@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
>>          return err;
>>   }
>>
>> +/**
>> + * i915_gem_dmabuf_attach - Do any extra attach work necessary
>> + * @dmabuf: imported dma-buf
>> + * @attach: new attach to do work on
>> + *
>> + */
>> +static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
>> +                                 struct dma_buf_attachment *attach)
>> +{
>> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
>> +
>> +       assert_object_held(obj);
>> +       return i915_gem_object_pin_pages(obj);
>> +}
>> +
>> +static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
>> +                                 struct dma_buf_attachment *attach)
>> +{
>> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
>> +
>> +       i915_gem_object_unpin_pages(obj);
>> +}
>> +
>>   static const struct dma_buf_ops i915_dmabuf_ops =  {
>> +       .attach = i915_gem_dmabuf_attach,
>> +       .detach = i915_gem_dmabuf_detach,
>>          .map_dma_buf = i915_gem_map_dma_buf,
>>          .unmap_dma_buf = i915_gem_unmap_dma_buf,
>>          .release = drm_gem_dmabuf_release,
>> @@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>>          struct sg_table *pages;
>>          unsigned int sg_page_sizes;
>>
>> +       assert_object_held(obj);
>> +
>>          pages = dma_buf_map_attachment(obj->base.import_attach,
>>                                         DMA_BIDIRECTIONAL);
>>          if (IS_ERR(pages))
>> @@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>>   static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
>>                                               struct sg_table *pages)
>>   {
>> +       assert_object_held(obj);
>> +
>>          dma_buf_unmap_attachment(obj->base.import_attach, pages,
>>                                   DMA_BIDIRECTIONAL);
>>   }
>> @@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
>>          if (dma_buf->ops == &i915_dmabuf_ops) {
>>                  obj = dma_buf_to_obj(dma_buf);
>>                  /* is it from our device? */
>> -               if (obj->base.dev == dev) {
>> +               if (obj->base.dev == dev &&
>> +                   !I915_SELFTEST_ONLY(force_differnt_devices)) {
>>                          /*
>>                           * Importing dmabuf exported from out own gem increases
>>                           * refcount on gem itself instead of f_count of dmabuf.
>> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> index dd74bc09ec88..10a113cc00a5 100644
>> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> @@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
>>   static int igt_dmabuf_import_self(void *arg)
>>   {
>>          struct drm_i915_private *i915 = arg;
>> -       struct drm_i915_gem_object *obj;
>> +       struct drm_i915_gem_object *obj, *import_obj;
>>          struct drm_gem_object *import;
>>          struct dma_buf *dmabuf;
>>          int err;
>> @@ -65,14 +65,120 @@ static int igt_dmabuf_import_self(void *arg)
>>                  err = -EINVAL;
>>                  goto out_import;
>>          }
>> +       import_obj = to_intel_bo(import);
>> +
>> +       i915_gem_object_lock(import_obj, NULL);
>> +       err = ____i915_gem_object_get_pages(import_obj);
>> +       i915_gem_object_unlock(import_obj);
>> +       if (err) {
>> +               pr_err("Same object dma-buf get_pages failed!\n");
>> +               goto out_import;
>> +       }
>>
>>          err = 0;
>>   out_import:
>> -       i915_gem_object_put(to_intel_bo(import));
>> +       i915_gem_object_put(import_obj);
>> +out_dmabuf:
>> +       dma_buf_put(dmabuf);
>> +out:
>> +       i915_gem_object_put(obj);
>> +       return err;
>> +}
>> +
>> +static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
>> +       .move_notify = igt_dmabuf_move_notify,
>> +};
>> +
>> +static int igt_dmabuf_import_same_driver(void *arg)
>> +{
>> +       struct drm_i915_private *i915 = arg;
>> +       struct drm_i915_gem_object *obj, *import_obj;
>> +       struct drm_gem_object *import;
>> +       struct dma_buf *dmabuf;
>> +       struct dma_buf_attachment *import_attach;
>> +       struct sg_table *st;
>> +       long timeout;
>> +       int err;
>> +
>> +       force_different_devices = true;
>> +       obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
>> +       if (IS_ERR(obj))
>> +               goto out_ret;
>> +
>> +       dmabuf = i915_gem_prime_export(&obj->base, 0);
>> +       if (IS_ERR(dmabuf)) {
>> +               pr_err("i915_gem_prime_export failed with err=%d\n",
>> +                      (int)PTR_ERR(dmabuf));
>> +               err = PTR_ERR(dmabuf);
>> +               goto out;
>> +       }
>> +
>> +       import = i915_gem_prime_import(&i915->drm, dmabuf);
>> +       if (IS_ERR(import)) {
>> +               pr_err("i915_gem_prime_import failed with err=%d\n",
>> +                      (int)PTR_ERR(import));
>> +               err = PTR_ERR(import);
>> +               goto out_dmabuf;
>> +       }
>> +
>> +       if (import == &obj->base) {
>> +               pr_err("i915_gem_prime_import reused gem object!\n");
>> +               err = -EINVAL;
>> +               goto out_import;
>> +       }
>> +
>> +       import_obj = to_intel_bo(import);
>> +
>> +       i915_gem_object_lock(import_obj, NULL);
>> +       err = ____i915_gem_object_get_pages(import_obj);
>> +       if (err) {
>> +               pr_err("Different objects dma-buf get_pages failed!\n");
>> +               i915_gem_object_unlock(import_obj);
>> +               goto out_import;
>> +       }
>> +
>> +       /*
>> +        * If the exported object is not in system memory, something
>> +        * weird is going on. TODO: When p2p is supported, this is no
>> +        * longer considered weird.
>> +        */
>> +       if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
>> +               pr_err("Exported dma-buf is not in system memory\n");
>> +               err = -EINVAL;
>> +       }
>> +
>> +       i915_gem_object_unlock(import_obj);
>> +
>> +       /* Now try a fake dynamic importer */
>> +       import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
>> +                                              &igt_dmabuf_attach_ops,
>> +                                              NULL);
>> +       if (IS_ERR(import_attach))
>> +               goto out_import;
>> +
>> +       dma_resv_lock(dmabuf->resv, NULL);
>> +       st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
>> +       dma_resv_unlock(dmabuf->resv);
>> +       if (IS_ERR(st))
>> +               goto out_detach;
>> +
>> +       timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
>> +       if (!timeout) {
>> +               pr_err("dmabuf wait for exclusive fence timed out.\n");
>> +               timeout = -ETIME;
>> +       }
>> +       err = timeout > 0 ? 0 : timeout;
>> +       dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
>> +out_detach:
>> +       dma_buf_detach(dmabuf, import_attach);
>> +out_import:
>> +       i915_gem_object_put(import_obj);
>>   out_dmabuf:
>>          dma_buf_put(dmabuf);
>>   out:
>>          i915_gem_object_put(obj);
>> +out_ret:
>> +       force_different_devices = false;
>>          return err;
>>   }
>>
>> @@ -286,6 +392,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
>>   {
>>          static const struct i915_subtest tests[] = {
>>                  SUBTEST(igt_dmabuf_export),
>> +               SUBTEST(igt_dmabuf_import_same_driver),
>>          };
>>
>>          return i915_subtests(tests, i915);
>> --
>> 2.31.1
>>
>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx] [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
@ 2021-07-07  6:42     ` Christian König
  0 siblings, 0 replies; 10+ messages in thread
From: Christian König @ 2021-07-07  6:42 UTC (permalink / raw)
  To: Daniel Vetter, Michael J. Ruhl
  Cc: Thomas Hellström, intel-gfx, Matthew Auld, dri-devel



Am 02.07.21 um 19:09 schrieb Daniel Vetter:
> On Thu, Jul 1, 2021 at 4:24 PM Michael J. Ruhl <michael.j.ruhl@intel.com> wrote:
>> From: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>>
>> If our exported dma-bufs are imported by another instance of our driver,
>> that instance will typically have the imported dma-bufs locked during
>> dma_buf_map_attachment(). But the exporter also locks the same reservation
>> object in the map_dma_buf() callback, which leads to recursive locking.
>>
>> So taking the lock inside _pin_pages_unlocked() is incorrect.
>>
>> Additionally, the current pinning code path is contrary to the defined
>> way that pinning should occur.
>>
>> Remove the explicit pin/unpin from the map/umap functions and move them
>> to the attach/detach allowing correct locking to occur, and to match
>> the static dma-buf drm_prime pattern.
>>
>> Add a live selftest to exercise both dynamic and non-dynamic
>> exports.
>>
>> v2:
>> - Extend the selftest with a fake dynamic importer.
>> - Provide real pin and unpin callbacks to not abuse the interface.
>> v3: (ruhl)
>> - Remove the dynamic export support and move the pinning into the
>>    attach/detach path.
>>
>> Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
>> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>> Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
> CI splat is because I got the locking rules wrong, I thought
> ->attach/detach are called under the dma_resv_lock, because when we
> used the old dma_buf->lock those calls where protected by that lock
> under the same critical section as adding/removing from the list. But
> we changed that in
>
> f45f57cce584 ("dma-buf: stop using the dmabuf->lock so much v2")
> 15fd552d186c ("dma-buf: change DMA-buf locking convention v3")
>
> Because keeping dma_resv_lock over ->attach/detach would go boom on
> all the ttm drivers, which pin/unpin the buffer in there. Iow we need
> the unlocked version there, but also having this split up is a bit
> awkward and might be good to patch up so that it's atomic again. Would
> mean updating a bunch of drivers. Christian, any thoughts?

Yeah, we already discussed that when we switched from dma_buf->lock to 
dma_resv->lock.

In general completely agree to do this and stopping using the 
dma_buf->lock was a first step towards this, but IIRC we postponed that 
switch till later.

Regards,
Christian.

PS: I'm currently on sick leave, so response might be delayed.

>
> Mike, for now I'd just keep using the _unlocked variants and we should be fine.
> -Daniel
>
>> ---
>>   drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 ++++++--
>>   .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 111 +++++++++++++++++-
>>   2 files changed, 143 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
>> index 616c3a2f1baf..00338c8d3739 100644
>> --- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
>> @@ -12,6 +12,8 @@
>>   #include "i915_gem_object.h"
>>   #include "i915_scatterlist.h"
>>
>> +I915_SELFTEST_DECLARE(static bool force_different_devices;)
>> +
>>   static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
>>   {
>>          return to_intel_bo(buf->priv);
>> @@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>>          struct scatterlist *src, *dst;
>>          int ret, i;
>>
>> -       ret = i915_gem_object_pin_pages_unlocked(obj);
>> -       if (ret)
>> -               goto err;
>> -
>>          /* Copy sg so that we make an independent mapping */
>>          st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
>>          if (st == NULL) {
>>                  ret = -ENOMEM;
>> -               goto err_unpin_pages;
>> +               goto err;
>>          }
>>
>>          ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
>> @@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
>>          sg_free_table(st);
>>   err_free:
>>          kfree(st);
>> -err_unpin_pages:
>> -       i915_gem_object_unpin_pages(obj);
>>   err:
>>          return ERR_PTR(ret);
>>   }
>> @@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
>>                                     struct sg_table *sg,
>>                                     enum dma_data_direction dir)
>>   {
>> -       struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
>> -
>>          dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
>>          sg_free_table(sg);
>>          kfree(sg);
>> -
>> -       i915_gem_object_unpin_pages(obj);
>>   }
>>
>>   static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
>> @@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
>>          return err;
>>   }
>>
>> +/**
>> + * i915_gem_dmabuf_attach - Do any extra attach work necessary
>> + * @dmabuf: imported dma-buf
>> + * @attach: new attach to do work on
>> + *
>> + */
>> +static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
>> +                                 struct dma_buf_attachment *attach)
>> +{
>> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
>> +
>> +       assert_object_held(obj);
>> +       return i915_gem_object_pin_pages(obj);
>> +}
>> +
>> +static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
>> +                                 struct dma_buf_attachment *attach)
>> +{
>> +       struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
>> +
>> +       i915_gem_object_unpin_pages(obj);
>> +}
>> +
>>   static const struct dma_buf_ops i915_dmabuf_ops =  {
>> +       .attach = i915_gem_dmabuf_attach,
>> +       .detach = i915_gem_dmabuf_detach,
>>          .map_dma_buf = i915_gem_map_dma_buf,
>>          .unmap_dma_buf = i915_gem_unmap_dma_buf,
>>          .release = drm_gem_dmabuf_release,
>> @@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>>          struct sg_table *pages;
>>          unsigned int sg_page_sizes;
>>
>> +       assert_object_held(obj);
>> +
>>          pages = dma_buf_map_attachment(obj->base.import_attach,
>>                                         DMA_BIDIRECTIONAL);
>>          if (IS_ERR(pages))
>> @@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
>>   static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
>>                                               struct sg_table *pages)
>>   {
>> +       assert_object_held(obj);
>> +
>>          dma_buf_unmap_attachment(obj->base.import_attach, pages,
>>                                   DMA_BIDIRECTIONAL);
>>   }
>> @@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
>>          if (dma_buf->ops == &i915_dmabuf_ops) {
>>                  obj = dma_buf_to_obj(dma_buf);
>>                  /* is it from our device? */
>> -               if (obj->base.dev == dev) {
>> +               if (obj->base.dev == dev &&
>> +                   !I915_SELFTEST_ONLY(force_differnt_devices)) {
>>                          /*
>>                           * Importing dmabuf exported from out own gem increases
>>                           * refcount on gem itself instead of f_count of dmabuf.
>> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> index dd74bc09ec88..10a113cc00a5 100644
>> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> @@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
>>   static int igt_dmabuf_import_self(void *arg)
>>   {
>>          struct drm_i915_private *i915 = arg;
>> -       struct drm_i915_gem_object *obj;
>> +       struct drm_i915_gem_object *obj, *import_obj;
>>          struct drm_gem_object *import;
>>          struct dma_buf *dmabuf;
>>          int err;
>> @@ -65,14 +65,120 @@ static int igt_dmabuf_import_self(void *arg)
>>                  err = -EINVAL;
>>                  goto out_import;
>>          }
>> +       import_obj = to_intel_bo(import);
>> +
>> +       i915_gem_object_lock(import_obj, NULL);
>> +       err = ____i915_gem_object_get_pages(import_obj);
>> +       i915_gem_object_unlock(import_obj);
>> +       if (err) {
>> +               pr_err("Same object dma-buf get_pages failed!\n");
>> +               goto out_import;
>> +       }
>>
>>          err = 0;
>>   out_import:
>> -       i915_gem_object_put(to_intel_bo(import));
>> +       i915_gem_object_put(import_obj);
>> +out_dmabuf:
>> +       dma_buf_put(dmabuf);
>> +out:
>> +       i915_gem_object_put(obj);
>> +       return err;
>> +}
>> +
>> +static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
>> +       .move_notify = igt_dmabuf_move_notify,
>> +};
>> +
>> +static int igt_dmabuf_import_same_driver(void *arg)
>> +{
>> +       struct drm_i915_private *i915 = arg;
>> +       struct drm_i915_gem_object *obj, *import_obj;
>> +       struct drm_gem_object *import;
>> +       struct dma_buf *dmabuf;
>> +       struct dma_buf_attachment *import_attach;
>> +       struct sg_table *st;
>> +       long timeout;
>> +       int err;
>> +
>> +       force_different_devices = true;
>> +       obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
>> +       if (IS_ERR(obj))
>> +               goto out_ret;
>> +
>> +       dmabuf = i915_gem_prime_export(&obj->base, 0);
>> +       if (IS_ERR(dmabuf)) {
>> +               pr_err("i915_gem_prime_export failed with err=%d\n",
>> +                      (int)PTR_ERR(dmabuf));
>> +               err = PTR_ERR(dmabuf);
>> +               goto out;
>> +       }
>> +
>> +       import = i915_gem_prime_import(&i915->drm, dmabuf);
>> +       if (IS_ERR(import)) {
>> +               pr_err("i915_gem_prime_import failed with err=%d\n",
>> +                      (int)PTR_ERR(import));
>> +               err = PTR_ERR(import);
>> +               goto out_dmabuf;
>> +       }
>> +
>> +       if (import == &obj->base) {
>> +               pr_err("i915_gem_prime_import reused gem object!\n");
>> +               err = -EINVAL;
>> +               goto out_import;
>> +       }
>> +
>> +       import_obj = to_intel_bo(import);
>> +
>> +       i915_gem_object_lock(import_obj, NULL);
>> +       err = ____i915_gem_object_get_pages(import_obj);
>> +       if (err) {
>> +               pr_err("Different objects dma-buf get_pages failed!\n");
>> +               i915_gem_object_unlock(import_obj);
>> +               goto out_import;
>> +       }
>> +
>> +       /*
>> +        * If the exported object is not in system memory, something
>> +        * weird is going on. TODO: When p2p is supported, this is no
>> +        * longer considered weird.
>> +        */
>> +       if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
>> +               pr_err("Exported dma-buf is not in system memory\n");
>> +               err = -EINVAL;
>> +       }
>> +
>> +       i915_gem_object_unlock(import_obj);
>> +
>> +       /* Now try a fake dynamic importer */
>> +       import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
>> +                                              &igt_dmabuf_attach_ops,
>> +                                              NULL);
>> +       if (IS_ERR(import_attach))
>> +               goto out_import;
>> +
>> +       dma_resv_lock(dmabuf->resv, NULL);
>> +       st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
>> +       dma_resv_unlock(dmabuf->resv);
>> +       if (IS_ERR(st))
>> +               goto out_detach;
>> +
>> +       timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
>> +       if (!timeout) {
>> +               pr_err("dmabuf wait for exclusive fence timed out.\n");
>> +               timeout = -ETIME;
>> +       }
>> +       err = timeout > 0 ? 0 : timeout;
>> +       dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
>> +out_detach:
>> +       dma_buf_detach(dmabuf, import_attach);
>> +out_import:
>> +       i915_gem_object_put(import_obj);
>>   out_dmabuf:
>>          dma_buf_put(dmabuf);
>>   out:
>>          i915_gem_object_put(obj);
>> +out_ret:
>> +       force_different_devices = false;
>>          return err;
>>   }
>>
>> @@ -286,6 +392,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
>>   {
>>          static const struct i915_subtest tests[] = {
>>                  SUBTEST(igt_dmabuf_export),
>> +               SUBTEST(igt_dmabuf_import_same_driver),
>>          };
>>
>>          return i915_subtests(tests, i915);
>> --
>> 2.31.1
>>
>

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf
@ 2021-07-01 15:47 Michael J. Ruhl
  0 siblings, 0 replies; 10+ messages in thread
From: Michael J. Ruhl @ 2021-07-01 15:47 UTC (permalink / raw)
  To: michael.j.ruhl, daniel, thomas.hellstrom, ckoenig.leichtzumerken,
	intel-gfx, dri-devel, matthew.auld, maarten.lankhorst

From: Thomas Hellström <thomas.hellstrom@linux.intel.com>

If our exported dma-bufs are imported by another instance of our driver,
that instance will typically have the imported dma-bufs locked during
dma_buf_map_attachment(). But the exporter also locks the same reservation
object in the map_dma_buf() callback, which leads to recursive locking.

So taking the lock inside _pin_pages_unlocked() is incorrect.

Additionally, the current pinning code path is contrary to the defined
way that pinning should occur.

Remove the explicit pin/unpin from the map/umap functions and move them
to the attach/detach allowing correct locking to occur, and to match
the static dma-buf drm_prime pattern.

Add a live selftest to exercise both dynamic and non-dynamic
exports.

v2:
- Extend the selftest with a fake dynamic importer.
- Provide real pin and unpin callbacks to not abuse the interface.
v3: (ruhl)
- Remove the dynamic export support and move the pinning into the
  attach/detach path.

Reported-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c    |  46 +++++--
 .../drm/i915/gem/selftests/i915_gem_dmabuf.c  | 116 +++++++++++++++++-
 2 files changed, 148 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
index 616c3a2f1baf..8c528b693a30 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
@@ -12,6 +12,8 @@
 #include "i915_gem_object.h"
 #include "i915_scatterlist.h"
 
+I915_SELFTEST_DECLARE(static bool force_different_devices;)
+
 static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
 {
 	return to_intel_bo(buf->priv);
@@ -25,15 +27,11 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
 	struct scatterlist *src, *dst;
 	int ret, i;
 
-	ret = i915_gem_object_pin_pages_unlocked(obj);
-	if (ret)
-		goto err;
-
 	/* Copy sg so that we make an independent mapping */
 	st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
 	if (st == NULL) {
 		ret = -ENOMEM;
-		goto err_unpin_pages;
+		goto err;
 	}
 
 	ret = sg_alloc_table(st, obj->mm.pages->nents, GFP_KERNEL);
@@ -58,8 +56,6 @@ static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachme
 	sg_free_table(st);
 err_free:
 	kfree(st);
-err_unpin_pages:
-	i915_gem_object_unpin_pages(obj);
 err:
 	return ERR_PTR(ret);
 }
@@ -68,13 +64,9 @@ static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
 				   struct sg_table *sg,
 				   enum dma_data_direction dir)
 {
-	struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
-
 	dma_unmap_sgtable(attachment->dev, sg, dir, DMA_ATTR_SKIP_CPU_SYNC);
 	sg_free_table(sg);
 	kfree(sg);
-
-	i915_gem_object_unpin_pages(obj);
 }
 
 static int i915_gem_dmabuf_vmap(struct dma_buf *dma_buf, struct dma_buf_map *map)
@@ -168,7 +160,32 @@ static int i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direct
 	return err;
 }
 
+/**
+ * i915_gem_dmabuf_attach - Do any extra attach work necessary
+ * @dmabuf: imported dma-buf
+ * @attach: new attach to do work on
+ *
+ */
+static int i915_gem_dmabuf_attach(struct dma_buf *dmabuf,
+				  struct dma_buf_attachment *attach)
+{
+	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+
+	assert_object_held(obj);
+	return i915_gem_object_pin_pages(obj);
+}
+
+static void i915_gem_dmabuf_detach(struct dma_buf *dmabuf,
+				   struct dma_buf_attachment *attach)
+{
+	struct drm_i915_gem_object *obj = dma_buf_to_obj(dmabuf);
+
+	i915_gem_object_unpin_pages(obj);
+}
+
 static const struct dma_buf_ops i915_dmabuf_ops =  {
+	.attach = i915_gem_dmabuf_attach,
+	.detach = i915_gem_dmabuf_detach,
 	.map_dma_buf = i915_gem_map_dma_buf,
 	.unmap_dma_buf = i915_gem_unmap_dma_buf,
 	.release = drm_gem_dmabuf_release,
@@ -204,6 +221,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
 	struct sg_table *pages;
 	unsigned int sg_page_sizes;
 
+	assert_object_held(obj);
+
 	pages = dma_buf_map_attachment(obj->base.import_attach,
 				       DMA_BIDIRECTIONAL);
 	if (IS_ERR(pages))
@@ -219,6 +238,8 @@ static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
 static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj,
 					     struct sg_table *pages)
 {
+	assert_object_held(obj);
+
 	dma_buf_unmap_attachment(obj->base.import_attach, pages,
 				 DMA_BIDIRECTIONAL);
 }
@@ -241,7 +262,8 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
 	if (dma_buf->ops == &i915_dmabuf_ops) {
 		obj = dma_buf_to_obj(dma_buf);
 		/* is it from our device? */
-		if (obj->base.dev == dev) {
+		if (obj->base.dev == dev &&
+		    !I915_SELFTEST_ONLY(force_different_devices)) {
 			/*
 			 * Importing dmabuf exported from out own gem increases
 			 * refcount on gem itself instead of f_count of dmabuf.
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
index dd74bc09ec88..868b3469ecbd 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
@@ -35,7 +35,7 @@ static int igt_dmabuf_export(void *arg)
 static int igt_dmabuf_import_self(void *arg)
 {
 	struct drm_i915_private *i915 = arg;
-	struct drm_i915_gem_object *obj;
+	struct drm_i915_gem_object *obj, *import_obj;
 	struct drm_gem_object *import;
 	struct dma_buf *dmabuf;
 	int err;
@@ -65,14 +65,125 @@ static int igt_dmabuf_import_self(void *arg)
 		err = -EINVAL;
 		goto out_import;
 	}
+	import_obj = to_intel_bo(import);
+
+	i915_gem_object_lock(import_obj, NULL);
+	err = ____i915_gem_object_get_pages(import_obj);
+	i915_gem_object_unlock(import_obj);
+	if (err) {
+		pr_err("Same object dma-buf get_pages failed!\n");
+		goto out_import;
+	}
 
 	err = 0;
 out_import:
-	i915_gem_object_put(to_intel_bo(import));
+	i915_gem_object_put(import_obj);
+out_dmabuf:
+	dma_buf_put(dmabuf);
+out:
+	i915_gem_object_put(obj);
+	return err;
+}
+
+static void igt_dmabuf_move_notify(struct dma_buf_attachment *attach)
+{
+	GEM_WARN_ON(1);
+}
+
+static const struct dma_buf_attach_ops igt_dmabuf_attach_ops = {
+	.move_notify = igt_dmabuf_move_notify,
+};
+
+static int igt_dmabuf_import_same_driver(void *arg)
+{
+	struct drm_i915_private *i915 = arg;
+	struct drm_i915_gem_object *obj, *import_obj;
+	struct drm_gem_object *import;
+	struct dma_buf *dmabuf;
+	struct dma_buf_attachment *import_attach;
+	struct sg_table *st;
+	long timeout;
+	int err;
+
+	force_different_devices = true;
+	obj = i915_gem_object_create_shmem(i915, PAGE_SIZE);
+	if (IS_ERR(obj))
+		goto out_ret;
+
+	dmabuf = i915_gem_prime_export(&obj->base, 0);
+	if (IS_ERR(dmabuf)) {
+		pr_err("i915_gem_prime_export failed with err=%d\n",
+		       (int)PTR_ERR(dmabuf));
+		err = PTR_ERR(dmabuf);
+		goto out;
+	}
+
+	import = i915_gem_prime_import(&i915->drm, dmabuf);
+	if (IS_ERR(import)) {
+		pr_err("i915_gem_prime_import failed with err=%d\n",
+		       (int)PTR_ERR(import));
+		err = PTR_ERR(import);
+		goto out_dmabuf;
+	}
+
+	if (import == &obj->base) {
+		pr_err("i915_gem_prime_import reused gem object!\n");
+		err = -EINVAL;
+		goto out_import;
+	}
+
+	import_obj = to_intel_bo(import);
+
+	i915_gem_object_lock(import_obj, NULL);
+	err = ____i915_gem_object_get_pages(import_obj);
+	if (err) {
+		pr_err("Different objects dma-buf get_pages failed!\n");
+		i915_gem_object_unlock(import_obj);
+		goto out_import;
+	}
+
+	/*
+	 * If the exported object is not in system memory, something
+	 * weird is going on. TODO: When p2p is supported, this is no
+	 * longer considered weird.
+	 */
+	if (obj->mm.region != i915->mm.regions[INTEL_REGION_SMEM]) {
+		pr_err("Exported dma-buf is not in system memory\n");
+		err = -EINVAL;
+	}
+
+	i915_gem_object_unlock(import_obj);
+
+	/* Now try a fake dynamic importer */
+	import_attach = dma_buf_dynamic_attach(dmabuf, obj->base.dev->dev,
+					       &igt_dmabuf_attach_ops,
+					       NULL);
+	if (IS_ERR(import_attach))
+		goto out_import;
+
+	dma_resv_lock(dmabuf->resv, NULL);
+	st = dma_buf_map_attachment(import_attach, DMA_BIDIRECTIONAL);
+	dma_resv_unlock(dmabuf->resv);
+	if (IS_ERR(st))
+		goto out_detach;
+
+	timeout = dma_resv_wait_timeout(dmabuf->resv, false, true, 5 * HZ);
+	if (!timeout) {
+		pr_err("dmabuf wait for exclusive fence timed out.\n");
+		timeout = -ETIME;
+	}
+	err = timeout > 0 ? 0 : timeout;
+	dma_buf_unmap_attachment(import_attach, st, DMA_BIDIRECTIONAL);
+out_detach:
+	dma_buf_detach(dmabuf, import_attach);
+out_import:
+	i915_gem_object_put(import_obj);
 out_dmabuf:
 	dma_buf_put(dmabuf);
 out:
 	i915_gem_object_put(obj);
+out_ret:
+	force_different_devices = false;
 	return err;
 }
 
@@ -286,6 +397,7 @@ int i915_gem_dmabuf_live_selftests(struct drm_i915_private *i915)
 {
 	static const struct i915_subtest tests[] = {
 		SUBTEST(igt_dmabuf_export),
+		SUBTEST(igt_dmabuf_import_same_driver),
 	};
 
 	return i915_subtests(tests, i915);
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-07-07 11:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-01 14:24 [PATCH 1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf Michael J. Ruhl
2021-07-01 14:24 ` [Intel-gfx] " Michael J. Ruhl
2021-07-01 14:24 ` [PATCH 2/2] drm/i915/gem: Migrate to system at dma-buf attach time Michael J. Ruhl
2021-07-01 14:24   ` [Intel-gfx] " Michael J. Ruhl
2021-07-01 14:52 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for series starting with [1/2] drm/i915/gem: Correct the locking and pin pattern for dma-buf Patchwork
2021-07-02 17:09 ` [PATCH 1/2] " Daniel Vetter
2021-07-02 17:09   ` [Intel-gfx] " Daniel Vetter
2021-07-07  6:42   ` Christian König
2021-07-07  6:42     ` [Intel-gfx] " Christian König
2021-07-01 15:47 Michael J. Ruhl

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.