From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753229AbcEWHIq (ORCPT ); Mon, 23 May 2016 03:08:46 -0400 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:1265 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752857AbcEWHIp (ORCPT ); Mon, 23 May 2016 03:08:45 -0400 X-Greylist: delayed 12177 seconds by postgrey-1.27 at vger.kernel.org; Mon, 23 May 2016 03:08:44 EDT Message-Id: <201605230345.u4N3hUYr043556@mx0a-001b2d01.pphosted.com> X-IBM-Helo: d28dlp01.in.ibm.com X-IBM-MailFrom: xyjxie@linux.vnet.ibm.com X-IBM-RcptTo: kvm@vger.kernel.org;linux-kernel@vger.kernel.org;linux-pci@vger.kernel.org Subject: Re: [PATCH v3] vfio-pci: Allow to mmap sub-page MMIO BARs if the mmio page is exclusive To: Alex Williamson References: <1463048451-7086-1-git-send-email-xyjxie@linux.vnet.ibm.com> <20160519163319.0fdaf76a@ul30vt.home> Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, bhelgaas@google.com, aik@ozlabs.ru, benh@kernel.crashing.org, paulus@samba.org, mpe@ellerman.id.au, warrier@linux.vnet.ibm.com, zhong@linux.vnet.ibm.com, nikunj@linux.vnet.ibm.com, gwshan@linux.vnet.ibm.com, kevin.tian@intel.com From: Yongji Xie Date: Mon, 23 May 2016 11:45:34 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: <20160519163319.0fdaf76a@ul30vt.home> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 16052303-0012-0000-0000-0000027F3FEA X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 16052303-0013-0000-0000-00000CBCA026 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2016-05-23_01:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=8 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1604210000 definitions=main-1605230043 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2016/5/20 6:33, Alex Williamson wrote: > On Thu, 12 May 2016 18:20:51 +0800 > Yongji Xie wrote: > >> Current vfio-pci implementation disallows to mmap >> sub-page(size < PAGE_SIZE) MMIO BARs because these BARs' mmio >> page may be shared with other BARs. This will cause some >> performance issues when we passthrough a PCI device with >> this kind of BARs. Guest will be not able to handle the mmio >> accesses to the BARs which leads to mmio emulations in host. >> >> However, not all sub-page BARs will share page with other BARs. >> We should allow to mmap the sub-page MMIO BARs which we can >> make sure will not share page with other BARs. >> >> This patch adds support for this case. And we try to add a >> dummy resource to reserve the remainder of the page which >> hot-add device's BAR might be assigned into. But it's not >> necessary to handle the case when the BAR is not page aligned. >> Because we can't expect the BAR will be assigned into the same >> location in a page in guest when we passthrough the BAR. And >> it's hard to access this BAR in userspace because we have >> no way to get the BAR's location in a page. >> >> Signed-off-by: Yongji Xie >> --- >> drivers/vfio/pci/vfio_pci.c | 70 +++++++++++++++++++++++++++++++---- >> drivers/vfio/pci/vfio_pci_private.h | 8 ++++ >> 2 files changed, 71 insertions(+), 7 deletions(-) >> >> diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c >> index 188b1ff..253c22f 100644 >> --- a/drivers/vfio/pci/vfio_pci.c >> +++ b/drivers/vfio/pci/vfio_pci.c >> @@ -110,6 +110,50 @@ static inline bool vfio_pci_is_vga(struct pci_dev *pdev) >> return (pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA; >> } >> >> +static bool vfio_pci_bar_mmap_supported(struct vfio_pci_device *vdev, int index) >> +{ >> + struct resource *res = vdev->pdev->resource + index; >> + struct vfio_pci_dummy_resource *dummy_res = NULL; >> + >> + if (!IS_ENABLED(CONFIG_VFIO_PCI_MMAP)) >> + return false; >> + >> + if (!(res->flags & IORESOURCE_MEM)) >> + return false; >> + >> + /* >> + * The PCI core shouldn't set up a resource with a type but >> + * zero size. But there may be bugs that cause us to do that. >> + */ >> + if (!resource_size(res)) >> + return false; >> + >> + if (resource_size(res) >= PAGE_SIZE) >> + return true; >> + >> + if (!(res->start & ~PAGE_MASK)) { >> + /* >> + * Add a dummy resource to reserve the remainder >> + * of the exclusive page in case that hot-add >> + * device's bar is assigned into it. >> + */ >> + dummy_res = kzalloc(sizeof(*dummy_res), GFP_KERNEL); >> + if (dummy_res == NULL) >> + return false; >> + dummy_res->resource.start = res->end + 1; >> + dummy_res->resource.end = res->start + PAGE_SIZE - 1; >> + dummy_res->resource.flags = res->flags; >> + if (request_resource(res->parent, &dummy_res->resource)) { >> + kfree(dummy_res); >> + return false; >> + } >> + dummy_res->index = index; >> + list_add(&dummy_res->res_next, &vdev->dummy_resources_list); >> + return true; >> + } >> + return false; >> +} > The name of this function is vfio_pci_bar_mmap_supported(), which > suggests we should be able to call it at any point to test if mmap is > supported, but that's not what it does. It's actually a one time setup > function, that also happens to return what it found or managed to > reserve. If we were to call this a second time, we might get a > different result. So I think this either needs to change to something > like: > > static void vfio_pci_probe_mmaps(struct vfio_pci_device *vdev) > > where it loops through all the BARs and results in a valid > bar_mmap_supported array, or the function should be made smart enough > to identify if the necessary resource has already been allocated such > that it can be call multiple times per BAR, at which point we could > remove the bar_mmap_supported array. Thanks for your comment. I would change the name of this function and reserve bar_mmap_supported array to cache the result. > A comment describing why we can only support sub-page mmaps for > resources aligned at the start of a page would also be helpful for > future maintenance here. OK. I will add this. >> + >> static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev); >> static void vfio_pci_disable(struct vfio_pci_device *vdev); >> >> @@ -145,10 +189,12 @@ static bool vfio_pci_nointx(struct pci_dev *pdev) >> static int vfio_pci_enable(struct vfio_pci_device *vdev) >> { >> struct pci_dev *pdev = vdev->pdev; >> - int ret; >> + int ret, bar; >> u16 cmd; >> u8 msix_pos; >> >> + INIT_LIST_HEAD(&vdev->dummy_resources_list); >> + >> pci_set_power_state(pdev, PCI_D0); >> >> /* Don't allow our initial saved state to include busmaster */ >> @@ -218,12 +264,17 @@ static int vfio_pci_enable(struct vfio_pci_device *vdev) >> } >> } >> >> + for (bar = PCI_STD_RESOURCES; bar <= PCI_STD_RESOURCE_END; bar++) { >> + vdev->bar_mmap_supported[bar] = >> + vfio_pci_bar_mmap_supported(vdev, bar); >> + } >> return 0; >> } >> >> static void vfio_pci_disable(struct vfio_pci_device *vdev) >> { >> struct pci_dev *pdev = vdev->pdev; >> + struct vfio_pci_dummy_resource *dummy_res, *tmp; >> int i, bar; >> >> /* Stop the device from further DMA */ >> @@ -252,6 +303,13 @@ static void vfio_pci_disable(struct vfio_pci_device *vdev) >> vdev->barmap[bar] = NULL; >> } >> >> + list_for_each_entry_safe(dummy_res, tmp, >> + &vdev->dummy_resources_list, res_next) { >> + list_del(&dummy_res->res_next); >> + release_resource(&dummy_res->resource); >> + kfree(dummy_res); >> + } >> + >> vdev->needs_reset = true; >> >> /* >> @@ -623,9 +681,7 @@ static long vfio_pci_ioctl(void *device_data, >> >> info.flags = VFIO_REGION_INFO_FLAG_READ | >> VFIO_REGION_INFO_FLAG_WRITE; >> - if (IS_ENABLED(CONFIG_VFIO_PCI_MMAP) && >> - pci_resource_flags(pdev, info.index) & >> - IORESOURCE_MEM && info.size >= PAGE_SIZE) { >> + if (vdev->bar_mmap_supported[info.index]) { >> info.flags |= VFIO_REGION_INFO_FLAG_MMAP; >> if (info.index == vdev->msix_bar) { >> ret = msix_sparse_mmap_cap(vdev, &caps); >> @@ -1049,16 +1105,16 @@ static int vfio_pci_mmap(void *device_data, struct vm_area_struct *vma) >> return -EINVAL; >> if (index >= VFIO_PCI_ROM_REGION_INDEX) >> return -EINVAL; >> - if (!(pci_resource_flags(pdev, index) & IORESOURCE_MEM)) >> + if (!vdev->bar_mmap_supported[index]) >> return -EINVAL; >> >> - phys_len = pci_resource_len(pdev, index); >> + phys_len = PAGE_ALIGN(pci_resource_len(pdev, index)); >> req_len = vma->vm_end - vma->vm_start; >> pgoff = vma->vm_pgoff & >> ((1U << (VFIO_PCI_OFFSET_SHIFT - PAGE_SHIFT)) - 1); >> req_start = pgoff << PAGE_SHIFT; >> >> - if (phys_len < PAGE_SIZE || req_start + req_len > phys_len) >> + if (req_start + req_len > phys_len) >> return -EINVAL; > I'm only able to find your QEMU patch from last year, have you posted a > version making use of this latest proposal? Is the expectation still > that QEMU modify the BAR size as seen from the guest to the host page > size for sub-page regions exposing the MMAP flag? Does that result in > any known incompatibilities with drivers in the guest? Thanks, > > Alex I will post the latest version soon. In QEMU, we would change the size of MemoryRegion instead of VFIORegion. So guest will see the real size. The only limit is that BAR must be in a exclusive page in guest too. Otherwise, we would not allow to passthrough this BAR. On Power, we have changed the SLOF to enforce all BARs to be page aligned in guest. Thanks, Yongji