From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8K5x-0001Wa-JT for qemu-devel@nongnu.org; Thu, 02 Jun 2016 00:18:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8K5s-0007bt-Fy for qemu-devel@nongnu.org; Thu, 02 Jun 2016 00:18:56 -0400 Date: Thu, 2 Jun 2016 14:18:45 +1000 From: David Gibson Message-ID: <20160602041844.GB22347@voom.fritz.box> References: <1464771463-37214-1-git-send-email-aik@ozlabs.ru> <201606010900.u518wvH7046287@mx0a-001b2d01.pphosted.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EuxKj2iCbKjpUGkD" Content-Disposition: inline In-Reply-To: <201606010900.u518wvH7046287@mx0a-001b2d01.pphosted.com> Subject: Re: [Qemu-devel] [PATCH qemu v17 07/12] vfio: spapr: Add DMA memory preregistering (SPAPR IOMMU v2) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org, Alexander Graf , Alex Williamson --EuxKj2iCbKjpUGkD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 01, 2016 at 06:57:38PM +1000, Alexey Kardashevskiy wrote: > This makes use of the new "memory registering" feature. The idea is > to provide the userspace ability to notify the host kernel about pages > which are going to be used for DMA. Having this information, the host > kernel can pin them all once per user process, do locked pages > accounting (once) and not spent time on doing that in real time with > possible failures which cannot be handled nicely in some cases. >=20 > This adds a prereg memory listener which listens on address_space_memory > and notifies a VFIO container about memory which needs to be > pinned/unpinned. VFIO MMIO regions (i.e. "skip dump" regions) are skipped. >=20 > As there is no per-IOMMU-type release() callback anymore, this stores > the IOMMU type in the container so vfio_listener_release() can determine > if it needs to unregister @prereg_listener. >=20 > The feature is only enabled for SPAPR IOMMU v2. The host kernel changes > are required. Since v2 does not need/support VFIO_IOMMU_ENABLE, this does > not call it when v2 is detected and enabled. >=20 > This enforces guest RAM blocks to be host page size aligned; however > this is not new as KVM already requires memory slots to be host page > size aligned. >=20 > Signed-off-by: Alexey Kardashevskiy Reviewed-by: David Gibson Alex, do you think this is ready to go now? > --- > Changes: > v17: > * s/prereg\.c/spapr.c/ > * s/vfio_prereg_gpa_to_ua/vfio_prereg_gpa_to_vaddr/ > * vfio_prereg_listener_skipped_section does hw_error() on IOMMUs >=20 > v16: > * switched to 64bit math everywhere as there is no chance to see > region_add on RAM blocks even remotely close to 1<<64bytes. >=20 > v15: > * banned unaligned sections > * added an vfio_prereg_gpa_to_ua() helper >=20 > v14: > * s/free_container_exit/listener_release_exit/g > * added "if memory_region_is_iommu()" to vfio_prereg_listener_skipped_sec= tion > --- > hw/vfio/Makefile.objs | 1 + > hw/vfio/common.c | 38 +++++++++--- > hw/vfio/spapr.c | 137 ++++++++++++++++++++++++++++++++++++= ++++++ > include/hw/vfio/vfio-common.h | 4 ++ > trace-events | 2 + > 5 files changed, 172 insertions(+), 10 deletions(-) > create mode 100644 hw/vfio/spapr.c >=20 > diff --git a/hw/vfio/Makefile.objs b/hw/vfio/Makefile.objs > index ceddbb8..c25e32b 100644 > --- a/hw/vfio/Makefile.objs > +++ b/hw/vfio/Makefile.objs > @@ -4,4 +4,5 @@ obj-$(CONFIG_PCI) +=3D pci.o pci-quirks.o > obj-$(CONFIG_SOFTMMU) +=3D platform.o > obj-$(CONFIG_SOFTMMU) +=3D calxeda-xgmac.o > obj-$(CONFIG_SOFTMMU) +=3D amd-xgbe.o > +obj-$(CONFIG_SOFTMMU) +=3D spapr.o > endif > diff --git a/hw/vfio/common.c b/hw/vfio/common.c > index f1a12b0..770f630 100644 > --- a/hw/vfio/common.c > +++ b/hw/vfio/common.c > @@ -504,6 +504,9 @@ static const MemoryListener vfio_memory_listener =3D { > static void vfio_listener_release(VFIOContainer *container) > { > memory_listener_unregister(&container->listener); > + if (container->iommu_type =3D=3D VFIO_SPAPR_TCE_v2_IOMMU) { > + memory_listener_unregister(&container->prereg_listener); > + } > } > =20 > static struct vfio_info_cap_header * > @@ -862,8 +865,8 @@ static int vfio_connect_container(VFIOGroup *group, A= ddressSpace *as) > goto free_container_exit; > } > =20 > - ret =3D ioctl(fd, VFIO_SET_IOMMU, > - v2 ? VFIO_TYPE1v2_IOMMU : VFIO_TYPE1_IOMMU); > + container->iommu_type =3D v2 ? VFIO_TYPE1v2_IOMMU : VFIO_TYPE1_I= OMMU; > + ret =3D ioctl(fd, VFIO_SET_IOMMU, container->iommu_type); > if (ret) { > error_report("vfio: failed to set iommu for container: %m"); > ret =3D -errno; > @@ -888,8 +891,10 @@ static int vfio_connect_container(VFIOGroup *group, = AddressSpace *as) > if ((ret =3D=3D 0) && (info.flags & VFIO_IOMMU_INFO_PGSIZES)) { > container->iova_pgsizes =3D info.iova_pgsizes; > } > - } else if (ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_IOMMU)) { > + } else if (ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_IOMMU) || > + ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_v2_IOMMU))= { > struct vfio_iommu_spapr_tce_info info; > + bool v2 =3D !!ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_v2_= IOMMU); > =20 > ret =3D ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &fd); > if (ret) { > @@ -897,7 +902,9 @@ static int vfio_connect_container(VFIOGroup *group, A= ddressSpace *as) > ret =3D -errno; > goto free_container_exit; > } > - ret =3D ioctl(fd, VFIO_SET_IOMMU, VFIO_SPAPR_TCE_IOMMU); > + container->iommu_type =3D > + v2 ? VFIO_SPAPR_TCE_v2_IOMMU : VFIO_SPAPR_TCE_IOMMU; > + ret =3D ioctl(fd, VFIO_SET_IOMMU, container->iommu_type); > if (ret) { > error_report("vfio: failed to set iommu for container: %m"); > ret =3D -errno; > @@ -909,11 +916,22 @@ static int vfio_connect_container(VFIOGroup *group,= AddressSpace *as) > * when container fd is closed so we do not call it explicitly > * in this file. > */ > - ret =3D ioctl(fd, VFIO_IOMMU_ENABLE); > - if (ret) { > - error_report("vfio: failed to enable container: %m"); > - ret =3D -errno; > - goto free_container_exit; > + if (!v2) { > + ret =3D ioctl(fd, VFIO_IOMMU_ENABLE); > + if (ret) { > + error_report("vfio: failed to enable container: %m"); > + ret =3D -errno; > + goto free_container_exit; > + } > + } else { > + container->prereg_listener =3D vfio_prereg_listener; > + > + memory_listener_register(&container->prereg_listener, > + &address_space_memory); > + if (container->error) { > + error_report("vfio: RAM memory listener initialization f= ailed for container"); > + goto listener_release_exit; > + } > } > =20 > /* > @@ -926,7 +944,7 @@ static int vfio_connect_container(VFIOGroup *group, A= ddressSpace *as) > if (ret) { > error_report("vfio: VFIO_IOMMU_SPAPR_TCE_GET_INFO failed: %m= "); > ret =3D -errno; > - goto free_container_exit; > + goto listener_release_exit; > } > container->min_iova =3D info.dma32_window_start; > container->max_iova =3D container->min_iova + info.dma32_window_= size - 1; > diff --git a/hw/vfio/spapr.c b/hw/vfio/spapr.c > new file mode 100644 > index 0000000..f339472 > --- /dev/null > +++ b/hw/vfio/spapr.c > @@ -0,0 +1,137 @@ > +/* > + * DMA memory preregistration > + * > + * Authors: > + * Alexey Kardashevskiy > + * > + * This work is licensed under the terms of the GNU GPL, version 2. See > + * the COPYING file in the top-level directory. > + */ > + > +#include "qemu/osdep.h" > +#include "cpu.h" > +#include > +#include > + > +#include "hw/vfio/vfio-common.h" > +#include "hw/hw.h" > +#include "qemu/error-report.h" > +#include "trace.h" > + > +static bool vfio_prereg_listener_skipped_section(MemoryRegionSection *se= ction) > +{ > + if (memory_region_is_iommu(section->mr)) { > + hw_error("Cannot possibly preregister IOMMU memory"); > + } > + > + return !memory_region_is_ram(section->mr) || > + memory_region_is_skip_dump(section->mr); > +} > + > +static void *vfio_prereg_gpa_to_vaddr(MemoryRegionSection *section, hwad= dr gpa) > +{ > + return memory_region_get_ram_ptr(section->mr) + > + section->offset_within_region + > + (gpa - section->offset_within_address_space); > +} > + > +static void vfio_prereg_listener_region_add(MemoryListener *listener, > + MemoryRegionSection *section) > +{ > + VFIOContainer *container =3D container_of(listener, VFIOContainer, > + prereg_listener); > + const hwaddr gpa =3D section->offset_within_address_space; > + hwaddr end; > + int ret; > + hwaddr page_mask =3D qemu_real_host_page_mask; > + struct vfio_iommu_spapr_register_memory reg =3D { > + .argsz =3D sizeof(reg), > + .flags =3D 0, > + }; > + > + if (vfio_prereg_listener_skipped_section(section)) { > + trace_vfio_listener_region_add_skip( > + section->offset_within_address_space, > + section->offset_within_address_space + > + int128_get64(int128_sub(section->size, int128_one()))); > + return; > + } > + > + if (unlikely((section->offset_within_address_space & ~page_mask) || > + (section->offset_within_region & ~page_mask) || > + (int128_get64(section->size) & ~page_mask))) { > + error_report("%s received unaligned region", __func__); > + return; > + } > + > + end =3D section->offset_within_address_space + int128_get64(section-= >size); > + g_assert(gpa < end); > + > + memory_region_ref(section->mr); > + > + reg.vaddr =3D (__u64) vfio_prereg_gpa_to_vaddr(section, gpa); > + reg.size =3D end - gpa; > + > + ret =3D ioctl(container->fd, VFIO_IOMMU_SPAPR_REGISTER_MEMORY, ®); > + trace_vfio_ram_register(reg.vaddr, reg.size, ret ? -errno : 0); > + if (ret) { > + /* > + * On the initfn path, store the first error in the container so= we > + * can gracefully fail. Runtime, there's not much we can do oth= er > + * than throw a hardware error. > + */ > + if (!container->initialized) { > + if (!container->error) { > + container->error =3D ret; > + } > + } else { > + hw_error("vfio: Memory registering failed, unable to continu= e"); > + } > + } > +} > + > +static void vfio_prereg_listener_region_del(MemoryListener *listener, > + MemoryRegionSection *section) > +{ > + VFIOContainer *container =3D container_of(listener, VFIOContainer, > + prereg_listener); > + const hwaddr gpa =3D section->offset_within_address_space; > + hwaddr end; > + int ret; > + hwaddr page_mask =3D qemu_real_host_page_mask; > + struct vfio_iommu_spapr_register_memory reg =3D { > + .argsz =3D sizeof(reg), > + .flags =3D 0, > + }; > + > + if (vfio_prereg_listener_skipped_section(section)) { > + trace_vfio_listener_region_del_skip( > + section->offset_within_address_space, > + section->offset_within_address_space + > + int128_get64(int128_sub(section->size, int128_one()))); > + return; > + } > + > + if (unlikely((section->offset_within_address_space & ~page_mask) || > + (section->offset_within_region & ~page_mask) || > + (int128_get64(section->size) & ~page_mask))) { > + error_report("%s received unaligned region", __func__); > + return; > + } > + > + end =3D section->offset_within_address_space + int128_get64(section-= >size); > + if (gpa >=3D end) { > + return; > + } > + > + reg.vaddr =3D (__u64) vfio_prereg_gpa_to_vaddr(section, gpa); > + reg.size =3D end - gpa; > + > + ret =3D ioctl(container->fd, VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY, &re= g); > + trace_vfio_ram_unregister(reg.vaddr, reg.size, ret ? -errno : 0); > +} > + > +const MemoryListener vfio_prereg_listener =3D { > + .region_add =3D vfio_prereg_listener_region_add, > + .region_del =3D vfio_prereg_listener_region_del, > +}; > diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h > index 0610377..405c3b2 100644 > --- a/include/hw/vfio/vfio-common.h > +++ b/include/hw/vfio/vfio-common.h > @@ -73,6 +73,8 @@ typedef struct VFIOContainer { > VFIOAddressSpace *space; > int fd; /* /dev/vfio/vfio, empowered by the attached groups */ > MemoryListener listener; > + MemoryListener prereg_listener; > + unsigned iommu_type; > int error; > bool initialized; > /* > @@ -158,4 +160,6 @@ int vfio_get_region_info(VFIODevice *vbasedev, int in= dex, > int vfio_get_dev_region_info(VFIODevice *vbasedev, uint32_t type, > uint32_t subtype, struct vfio_region_info *= *info); > #endif > +extern const MemoryListener vfio_prereg_listener; > + > #endif /* !HW_VFIO_VFIO_COMMON_H */ > diff --git a/trace-events b/trace-events > index de42012..ddb8676 100644 > --- a/trace-events > +++ b/trace-events > @@ -1766,6 +1766,8 @@ vfio_region_mmaps_set_enabled(const char *name, boo= l enabled) "Region %s mmaps e > vfio_region_sparse_mmap_header(const char *name, int index, int nr_areas= ) "Device %s region %d: %d sparse mmap entries" > vfio_region_sparse_mmap_entry(int i, unsigned long start, unsigned long = end) "sparse entry %d [0x%lx - 0x%lx]" > vfio_get_dev_region(const char *name, int index, uint32_t type, uint32_t= subtype) "%s index %d, %08x/%0x8" > +vfio_ram_register(uint64_t va, uint64_t size, int ret) "va=3D%"PRIx64" s= ize=3D%"PRIx64" ret=3D%d" > +vfio_ram_unregister(uint64_t va, uint64_t size, int ret) "va=3D%"PRIx64"= size=3D%"PRIx64" ret=3D%d" > =20 > # hw/vfio/platform.c > vfio_platform_base_device_init(char *name, int groupid) "%s belongs to g= roup #%d" --=20 David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson --EuxKj2iCbKjpUGkD Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBAgAGBQJXT7OkAAoJEGw4ysog2bOS00kP+wdznXy5K8bXR8uvcDLCVdJG AgUYHGfGS+iyBsBHh58uBCjk0VMxBBKJQvPkuI3WOrjD0HdTOq2mwZr60I142Rsb koZKRgC0iVnzi6mOJ6G32GjqBtTQQAEI6DFjzuo3Y+1JJ2y3yL+MeQ0CnNSzlQ7q ggPr4kHToCJmr7ao2DXz6DzOOx0h233Iy6/uIddMMYeeFwKyahKTFrZS97Zi9pXZ VSwhu3NnMxevhms++vvqbOU1Bhb3dGls7/WYQxjZfIsCyB7sF8aH7gn39WT7sK4N k/EyfTj8m005Q0fIDL+Yp2kFDE/z6ZanU6bcipSFSQs+Hf0wGZQAQ2FTMl0jfpdN q4+Yl/G0R0nJYs4nx8YiYJgN28B83YBb+TKJOYBl+4hNjJ4pwfyIHNZpEpLlF7q4 3ubemBpOwwNvJVkktis4px8ZHxU0sHkjgTqaug4656RjLEHzKIZSSKtjOFgcoBbv c12W40jNoQ5olnskWJJnYGaOS+LBVxv3Dux7joUdPg/wjgvFqDsiSrbH13m3yWkj rBegxLAQ8KG3gpHglSnlEvlol6HOV08EsrAYKgZ/c2E4CFzkbvHPpuxz9nIBXCjQ ea7sj3dyF1QMeAwV/KauC4LSferZZAhVwzKEP0jSglS7643JzOwaYaH+MRtvtM42 /ro4JIZVfk+9gh6CH8y1 =EMTM -----END PGP SIGNATURE----- --EuxKj2iCbKjpUGkD--