All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: "Anand K. Mistry" <amistry@google.com>
Cc: David Airlie <airlied@linux.ie>,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	nartemiev@google.com
Subject: Re: [PATCH] drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap
Date: Wed, 3 Nov 2021 09:55:44 +0100	[thread overview]
Message-ID: <d2d40c58-8b4e-a838-4987-e9e90bd4b4ff@suse.de> (raw)
In-Reply-To: <CAATStaMSFu=27LdxNOabtARGaRq7rm_k2BHSsZ9+M-fF+nnk7Q@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 2757 bytes --]

Hi

Am 03.11.21 um 01:12 schrieb Anand K. Mistry:
> Any movement on merging this patch? Not urgent on my end (we have this
> patch in our tree), but I think other amd users might run into this
> UAF.

Thanks for reminding. I've merged your patch into drm-misc-fixes.

Best regards
Thomas

> 
> On Thu, 30 Sept 2021 at 17:21, Thomas Zimmermann <tzimmermann@suse.de> wrote:
>>
>> Hi
>>
>> Am 30.09.21 um 01:00 schrieb Anand K Mistry:
>>> drm_gem_ttm_mmap() drops a reference to the gem object on success. If
>>> the gem object's refcount == 1 on entry to drm_gem_prime_mmap(), that
>>> drop will free the gem object, and the subsequent drm_gem_object_get()
>>> will be a UAF. Fix by grabbing a reference before calling the mmap
>>> helper.
>>>
>>> This issue was forseen when the reference dropping was adding in
>>> commit 9786b65bc61ac ("drm/ttm: fix mmap refcounting"):
>>>     "For that to work properly the drm_gem_object_get() call in
>>>     drm_gem_ttm_mmap() must be moved so it happens before calling
>>>     obj->funcs->mmap(), otherwise the gem refcount would go down
>>>     to zero."
>>>
>>> Signed-off-by: Anand K Mistry <amistry@google.com>
>>
>> Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
>>
>> This looks fine to me, but it affects many drivers. Let's maybe wait a
>> bit if more reviews come it.
>>
>> Best regards
>> Thomas
>>
>>> ---
>>>
>>>    drivers/gpu/drm/drm_prime.c | 6 ++++--
>>>    1 file changed, 4 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c
>>> index 2a54f86856af..e1854fd24bb0 100644
>>> --- a/drivers/gpu/drm/drm_prime.c
>>> +++ b/drivers/gpu/drm/drm_prime.c
>>> @@ -719,11 +719,13 @@ int drm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
>>>        if (obj->funcs && obj->funcs->mmap) {
>>>                vma->vm_ops = obj->funcs->vm_ops;
>>>
>>> +             drm_gem_object_get(obj);
>>>                ret = obj->funcs->mmap(obj, vma);
>>> -             if (ret)
>>> +             if (ret) {
>>> +                     drm_gem_object_put(obj);
>>>                        return ret;
>>> +             }
>>>                vma->vm_private_data = obj;
>>> -             drm_gem_object_get(obj);
>>>                return 0;
>>>        }
>>>
>>>
>>
>> --
>> Thomas Zimmermann
>> Graphics Driver Developer
>> SUSE Software Solutions Germany GmbH
>> Maxfeldstr. 5, 90409 Nürnberg, Germany
>> (HRB 36809, AG Nürnberg)
>> Geschäftsführer: Felix Imendörffer
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

      reply	other threads:[~2021-11-03  8:55 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-29 23:00 [PATCH] drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap Anand K Mistry
2021-09-29 23:00 ` Anand K Mistry
2021-09-30  7:21 ` Thomas Zimmermann
2021-11-03  0:12   ` Anand K. Mistry
2021-11-03  0:12     ` Anand K. Mistry
2021-11-03  8:55     ` Thomas Zimmermann [this message]

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=d2d40c58-8b4e-a838-4987-e9e90bd4b4ff@suse.de \
    --to=tzimmermann@suse.de \
    --cc=airlied@linux.ie \
    --cc=amistry@google.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nartemiev@google.com \
    /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 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.