From: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
To: Thomas Zimmermann <tzimmermann@suse.de>,
Nam Cao <namcao@linutronix.de>, Jaya Kumar <jayalk@intworks.biz>,
Daniel Vetter <daniel@ffwll.ch>, Helge Deller <deller@gmx.de>,
Javier Martinez Canillas <javierm@redhat.com>,
linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org
Cc: tiwai@suse.de, bigeasy@linutronix.de,
patrik.r.jakobsson@gmail.com,
Vegard Nossum <vegard.nossum@oracle.com>,
George Kennedy <george.kennedy@oracle.com>,
Darren Kenny <darren.kenny@oracle.com>,
chuansheng.liu@intel.com, stable@vger.kernel.org
Subject: Re: [PATCH v2] fbdev: fix incorrect address computation in deferred IO
Date: Tue, 23 Apr 2024 18:56:52 +0530 [thread overview]
Message-ID: <c2bf36b5-3145-491b-b272-d5afae73db7f@oracle.com> (raw)
In-Reply-To: <1722c1b6-59a5-429d-905c-bc1951a68a68@suse.de>
Hi,
On 23/04/24 18:37, Thomas Zimmermann wrote:
> Hi
>
> Am 23.04.24 um 13:50 schrieb Nam Cao:
>> With deferred IO enabled, a page fault happens when data is written to
>> the
>> framebuffer device. Then driver determines which page is being updated by
>> calculating the offset of the written virtual address within the virtual
>> memory area, and uses this offset to get the updated page within the
>> internal buffer. This page is later copied to hardware (thus the name
>> "deferred IO").
>>
>> This offset calculation is only correct if the virtual memory area is
>> mapped to the beginning of the internal buffer. Otherwise this is wrong.
>> For example, if users do:
>> mmap(ptr, 4096, PROT_WRITE, MAP_FIXED | MAP_SHARED, fd, 0xff000);
>>
>> Then the virtual memory area will mapped at offset 0xff000 within the
>> internal buffer. This offset 0xff000 is not accounted for, and wrong page
>> is updated.
>>
>> Correct the calculation by using vmf->pgoff instead. With this change,
>> the
>> variable "offset" will no longer hold the exact offset value, but it is
>> rounded down to multiples of PAGE_SIZE. But this is still correct,
>> because
>> this variable is only used to calculate the page offset.
>>
>> Reported-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
>> Closes:
>> https://lore.kernel.org/linux-fbdev/271372d6-e665-4e7f-b088-dee5f4ab341a@oracle.com
>> Fixes: 56c134f7f1b5 ("fbdev: Track deferred-I/O pages in pageref struct")
>> Cc: <stable@vger.kernel.org>
>> Signed-off-by: Nam Cao <namcao@linutronix.de>
>
> Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
>
Thanks everyone!
I have tested the patched kernel with the syzkaller reproducer and
couldn't see a problem.
Regards,
Harshit
> Thank you so much. I'll take care of merging the patch later this week.
>
> Best regards
> Thomas
>
>> ---
>> v2:
>> - simplify the patch by using vfg->pgoff
>> - remove tested-by tag, as the patch is now different
>>
>> drivers/video/fbdev/core/fb_defio.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/video/fbdev/core/fb_defio.c
>> b/drivers/video/fbdev/core/fb_defio.c
>> index 1ae1d35a5942..b9607d5a370d 100644
>> --- a/drivers/video/fbdev/core/fb_defio.c
>> +++ b/drivers/video/fbdev/core/fb_defio.c
>> @@ -196,7 +196,7 @@ static vm_fault_t fb_deferred_io_track_page(struct
>> fb_info *info, unsigned long
>> */
>> static vm_fault_t fb_deferred_io_page_mkwrite(struct fb_info *info,
>> struct vm_fault *vmf)
>> {
>> - unsigned long offset = vmf->address - vmf->vma->vm_start;
>> + unsigned long offset = vmf->pgoff << PAGE_SHIFT;
>> struct page *page = vmf->page;
>> file_update_time(vmf->vma->vm_file);
>
next prev parent reply other threads:[~2024-04-23 13:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-23 11:50 [PATCH v2] fbdev: fix incorrect address computation in deferred IO Nam Cao
2024-04-23 13:07 ` Thomas Zimmermann
2024-04-23 13:26 ` Harshit Mogalapalli [this message]
2024-04-23 13:34 ` Nam Cao
2024-04-23 13:49 ` Harshit Mogalapalli
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=c2bf36b5-3145-491b-b272-d5afae73db7f@oracle.com \
--to=harshit.m.mogalapalli@oracle.com \
--cc=bigeasy@linutronix.de \
--cc=chuansheng.liu@intel.com \
--cc=daniel@ffwll.ch \
--cc=darren.kenny@oracle.com \
--cc=deller@gmx.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=george.kennedy@oracle.com \
--cc=javierm@redhat.com \
--cc=jayalk@intworks.biz \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=namcao@linutronix.de \
--cc=patrik.r.jakobsson@gmail.com \
--cc=stable@vger.kernel.org \
--cc=tiwai@suse.de \
--cc=tzimmermann@suse.de \
--cc=vegard.nossum@oracle.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox