[PATCH v5 0/3] ui/console: Private QemuDmaBuf struct

dongwon.kim@intel.com posted 3 patches 1 week, 6 days ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240415230724.9573-1-dongwon.kim@intel.com
Maintainers: "Marc-André Lureau" <marcandre.lureau@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Alex Williamson <alex.williamson@redhat.com>, "Cédric Le Goater" <clg@redhat.com>
There is a newer version of this series
include/hw/vfio/vfio-common.h   |   2 +-
include/hw/virtio/virtio-gpu.h  |   4 +-
include/ui/console.h            |  28 +++++
hw/display/vhost-user-gpu.c     |  32 +++---
hw/display/virtio-gpu-udmabuf.c |  27 ++---
hw/vfio/display.c               |  35 ++++---
ui/console.c                    | 180 +++++++++++++++++++++++++++++++-
ui/dbus-console.c               |   9 +-
ui/dbus-listener.c              |  71 +++++++------
ui/egl-headless.c               |  23 ++--
ui/egl-helpers.c                |  59 ++++++-----
ui/gtk-egl.c                    |  52 +++++----
ui/gtk-gl-area.c                |  41 +++++---
ui/gtk.c                        |   8 +-
ui/spice-display.c              |  50 +++++----
15 files changed, 449 insertions(+), 172 deletions(-)
[PATCH v5 0/3] ui/console: Private QemuDmaBuf struct
Posted by dongwon.kim@intel.com 1 week, 6 days ago
From: Dongwon Kim <dongwon.kim@intel.com>

This series introduces privacy enhancements to the QemuDmaBuf struct
and its contained data to bolster security. it accomplishes this by
introducing of helper functions for allocating, deallocating, and
accessing individual fields within the struct and replacing all direct
references to individual fields in the struct with methods using helpers
throughout the codebase. 

This change was made based on a suggestion from Marc-André Lureau
<marcandre.lureau@redhat.com> 

(Resumitting same patch series with this new cover-leter)

Dongwon Kim (3):
  ui/console: Introduce dpy_gl_qemu_dmabuf_get_..() helpers
  ui/console: Introduce dpy_gl_qemu_dmabuf_set_..() helpers
  ui/console: Introduce dpy_gl_qemu_dmabuf_new() and free() helpers

 include/hw/vfio/vfio-common.h   |   2 +-
 include/hw/virtio/virtio-gpu.h  |   4 +-
 include/ui/console.h            |  28 +++++
 hw/display/vhost-user-gpu.c     |  32 +++---
 hw/display/virtio-gpu-udmabuf.c |  27 ++---
 hw/vfio/display.c               |  35 ++++---
 ui/console.c                    | 180 +++++++++++++++++++++++++++++++-
 ui/dbus-console.c               |   9 +-
 ui/dbus-listener.c              |  71 +++++++------
 ui/egl-headless.c               |  23 ++--
 ui/egl-helpers.c                |  59 ++++++-----
 ui/gtk-egl.c                    |  52 +++++----
 ui/gtk-gl-area.c                |  41 +++++---
 ui/gtk.c                        |   8 +-
 ui/spice-display.c              |  50 +++++----
 15 files changed, 449 insertions(+), 172 deletions(-)

-- 
2.34.1