From: "Thomas Hellström (VMware)" <thomas_os@shipmail.org>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: "Thomas Hellstrom" <thellstrom@vmware.com>,
"Tomeu Vizoso" <tomeu.vizoso@collabora.com>,
"Daniel Vetter" <daniel.vetter@ffwll.ch>,
"Intel Graphics Development" <intel-gfx@lists.freedesktop.org>,
"DRI Development" <dri-devel@lists.freedesktop.org>,
"VMware Graphics" <linux-graphics-maintainer@vmware.com>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"Dave Airlie" <airlied@redhat.com>,
"Alex Deucher" <alexander.deucher@amd.com>,
"Daniel Vetter" <daniel.vetter@intel.com>,
"Christian König" <christian.koenig@amd.com>,
"Ben Skeggs" <bskeggs@redhat.com>
Subject: Re: [PATCH 1/3] dma_resv: prime lockdep annotations
Date: Wed, 21 Aug 2019 19:06:28 +0200 [thread overview]
Message-ID: <20d98d9a-9fcf-287d-e245-123d5d1ef536@shipmail.org> (raw)
In-Reply-To: <20190821163453.GQ11147@phenom.ffwll.local>
On 8/21/19 6:34 PM, Daniel Vetter wrote:
> On Wed, Aug 21, 2019 at 05:54:27PM +0200, Thomas Hellström (VMware) wrote:
>> On 8/20/19 4:53 PM, Daniel Vetter wrote:
>>> Full audit of everyone:
>>>
>>> - i915, radeon, amdgpu should be clean per their maintainers.
>>>
>>> - vram helpers should be fine, they don't do command submission, so
>>> really no business holding struct_mutex while doing copy_*_user. But
>>> I haven't checked them all.
>>>
>>> - panfrost seems to dma_resv_lock only in panfrost_job_push, which
>>> looks clean.
>>>
>>> - v3d holds dma_resv locks in the tail of its v3d_submit_cl_ioctl(),
>>> copying from/to userspace happens all in v3d_lookup_bos which is
>>> outside of the critical section.
>>>
>>> - vmwgfx has a bunch of ioctls that do their own copy_*_user:
>>> - vmw_execbuf_process: First this does some copies in
>>> vmw_execbuf_cmdbuf() and also in the vmw_execbuf_process() itself.
>>> Then comes the usual ttm reserve/validate sequence, then actual
>>> submission/fencing, then unreserving, and finally some more
>>> copy_to_user in vmw_execbuf_copy_fence_user. Glossing over tons of
>>> details, but looks all safe.
>>> - vmw_fence_event_ioctl: No ttm_reserve/dma_resv_lock anywhere to be
>>> seen, seems to only create a fence and copy it out.
>>> - a pile of smaller ioctl in vmwgfx_ioctl.c, no reservations to be
>>> found there.
>>> Summary: vmwgfx seems to be fine too.
>>>
>>> - virtio: There's virtio_gpu_execbuffer_ioctl, which does all the
>>> copying from userspace before even looking up objects through their
>>> handles, so safe. Plus the getparam/getcaps ioctl, also both safe.
>>>
>>> - qxl only has qxl_execbuffer_ioctl, which calls into
>>> qxl_process_single_command. There's a lovely comment before the
>>> __copy_from_user_inatomic that the slowpath should be copied from
>>> i915, but I guess that never happened. Try not to be unlucky and get
>>> your CS data evicted between when it's written and the kernel tries
>>> to read it. The only other copy_from_user is for relocs, but those
>>> are done before qxl_release_reserve_list(), which seems to be the
>>> only thing reserving buffers (in the ttm/dma_resv sense) in that
>>> code. So looks safe.
>>>
>>> - A debugfs file in nouveau_debugfs_pstate_set() and the usif ioctl in
>>> usif_ioctl() look safe. nouveau_gem_ioctl_pushbuf() otoh breaks this
>>> everywhere and needs to be fixed up.
>>>
>>> Cc: Alex Deucher <alexander.deucher@amd.com>
>>> Cc: Christian König <christian.koenig@amd.com>
>>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>>> Cc: Thomas Zimmermann <tzimmermann@suse.de>
>>> Cc: Rob Herring <robh@kernel.org>
>>> Cc: Tomeu Vizoso <tomeu.vizoso@collabora.com>
>>> Cc: Eric Anholt <eric@anholt.net>
>>> Cc: Dave Airlie <airlied@redhat.com>
>>> Cc: Gerd Hoffmann <kraxel@redhat.com>
>>> Cc: Ben Skeggs <bskeggs@redhat.com>
>>> Cc: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
>>> Cc: Thomas Hellstrom <thellstrom@vmware.com>
>>> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
>>> ---
>>> drivers/dma-buf/dma-resv.c | 12 ++++++++++++
>>> 1 file changed, 12 insertions(+)
>>>
>>> diff --git a/drivers/dma-buf/dma-resv.c b/drivers/dma-buf/dma-resv.c
>>> index 42a8f3f11681..3edca10d3faf 100644
>>> --- a/drivers/dma-buf/dma-resv.c
>>> +++ b/drivers/dma-buf/dma-resv.c
>>> @@ -34,6 +34,7 @@
>>> #include <linux/dma-resv.h>
>>> #include <linux/export.h>
>>> +#include <linux/sched/mm.h>
>>> /**
>>> * DOC: Reservation Object Overview
>>> @@ -107,6 +108,17 @@ void dma_resv_init(struct dma_resv *obj)
>>> &reservation_seqcount_class);
>>> RCU_INIT_POINTER(obj->fence, NULL);
>>> RCU_INIT_POINTER(obj->fence_excl, NULL);
>>> +
>>> + if (IS_ENABLED(CONFIG_LOCKDEP)) {
>>> + if (current->mm)
>>> + down_read(¤t->mm->mmap_sem);
>>> + ww_mutex_lock(&obj->lock, NULL);
>>> + fs_reclaim_acquire(GFP_KERNEL);
>>> + fs_reclaim_release(GFP_KERNEL);
>>> + ww_mutex_unlock(&obj->lock);
>>> + if (current->mm)
>>> + up_read(¤t->mm->mmap_sem);
>>> + }
>>> }
>>> EXPORT_SYMBOL(dma_resv_init);
>> I assume if this would have been easily done and maintainable using only
>> lockdep annotation instead of actually acquiring the locks, that would have
>> been done?
> There's might_lock(), plus a pile of macros, but they don't map obviuosly,
> so pretty good chances I accidentally end up with the wrong type of
> annotation. Easier to just take the locks quickly, and stuff that all into
> a lockdep-only section to avoid overhead.
>
>> Otherwise LGTM.
>>
>> Reviewed-by: Thomas Hellström <thellstrom@vmware.com>
>>
>> Will test this and let you know if it trips on vmwgfx, but it really
>> shouldn't.
> Thanks, Daniel
One thing that strikes me is that this puts restrictions on where you
can actually initialize a dma_resv, even if locking orders are otherwise
obeyed. But that might not be a big problem.
/Thomas
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2019-08-21 17:06 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-20 14:53 [PATCH 0/3] RFC/T: dma_resv vs. mmap_sem Daniel Vetter
2019-08-20 14:53 ` [PATCH 1/3] dma_resv: prime lockdep annotations Daniel Vetter
2019-08-20 14:56 ` Koenig, Christian
2019-08-21 15:44 ` Daniel Vetter
2019-08-20 14:58 ` Chris Wilson
2019-08-21 15:54 ` Thomas Hellström (VMware)
2019-08-21 16:34 ` Daniel Vetter
2019-08-21 17:06 ` Thomas Hellström (VMware) [this message]
2019-08-21 18:11 ` Daniel Vetter
2019-08-21 18:27 ` Thomas Hellström (VMware)
2019-08-21 19:51 ` Daniel Vetter
2019-08-22 6:42 ` Thomas Hellström (VMware)
2019-08-22 6:47 ` Daniel Vetter
2019-08-20 14:53 ` [PATCH 2/3] drm/nouveau: slowpath for pushbuf ioctl Daniel Vetter
2019-08-20 14:53 ` [PATCH 3/3] drm/ttm: remove ttm_bo_wait_unreserved Daniel Vetter
2019-08-20 15:16 ` Koenig, Christian
2019-08-20 15:21 ` Daniel Vetter
2019-08-20 15:34 ` Koenig, Christian
2019-08-20 15:41 ` Daniel Vetter
2019-08-20 15:45 ` Koenig, Christian
2019-08-21 12:40 ` Thomas Hellström (VMware)
2019-08-21 12:47 ` Thomas Hellström (VMware)
2019-08-21 14:09 ` Daniel Vetter
2019-08-21 14:27 ` Thomas Hellström (VMware)
2019-08-21 14:47 ` Daniel Vetter
2019-08-21 15:03 ` Thomas Hellström (VMware)
2019-08-21 15:14 ` Daniel Vetter
2019-08-21 15:19 ` Thomas Hellström (VMware)
2019-08-21 15:22 ` Daniel Vetter
2019-08-21 15:34 ` Thomas Hellström (VMware)
2019-08-21 15:07 ` Koenig, Christian
2019-08-21 13:16 ` Thomas Hellström (VMware)
2019-08-21 14:10 ` Daniel Vetter
2019-08-21 14:30 ` Thomas Hellström (VMware)
2019-08-21 14:42 ` Daniel Vetter
2019-08-21 15:33 ` [PATCH] " Daniel Vetter
2019-08-20 18:35 ` ✗ Fi.CI.CHECKPATCH: warning for RFC/T: dma_resv vs. mmap_sem Patchwork
2019-08-20 19:06 ` ✗ Fi.CI.BAT: failure " Patchwork
2019-08-21 16:22 ` ✗ Fi.CI.CHECKPATCH: warning for RFC/T: dma_resv vs. mmap_sem (rev2) Patchwork
2019-08-21 16:47 ` ✗ Fi.CI.BAT: failure " Patchwork
2019-08-21 18:52 ` ✗ Fi.CI.BAT: failure for RFC/T: dma_resv vs. mmap_sem (rev3) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2019-08-21 18:31 [PATCH 1/3] dma_resv: prime lockdep annotations Koenig, Christian
2019-08-21 21:50 Daniel Vetter
2019-08-21 22:20 ` Chris Wilson
2019-10-21 14:50 [PATCH 0/3] dma_resv lockdep annotations/priming Daniel Vetter
2019-10-21 14:50 ` [PATCH 1/3] dma_resv: prime lockdep annotations Daniel Vetter
2019-10-21 16:56 ` Thomas Hellstrom
2019-10-22 7:55 ` kbuild test robot
2019-11-04 17:37 Daniel Vetter
2019-11-04 17:48 ` Daniel Vetter
2019-11-04 20:01 ` Koenig, Christian
2019-11-04 20:55 ` Daniel Vetter
2019-11-11 13:11 ` Steven Price
2019-11-11 15:42 ` Daniel Vetter
2019-11-14 11:50 ` Steven Price
2019-11-20 10:51 ` Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20d98d9a-9fcf-287d-e245-123d5d1ef536@shipmail.org \
--to=thomas_os@shipmail.org \
--cc=airlied@redhat.com \
--cc=alexander.deucher@amd.com \
--cc=bskeggs@redhat.com \
--cc=christian.koenig@amd.com \
--cc=daniel.vetter@ffwll.ch \
--cc=daniel.vetter@intel.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=kraxel@redhat.com \
--cc=linux-graphics-maintainer@vmware.com \
--cc=thellstrom@vmware.com \
--cc=tomeu.vizoso@collabora.com \
--cc=tzimmermann@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox