All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V5 00/12] xen: Clean-up of mem_event subsystem
@ 2015-02-13 16:33 Tamas K Lengyel
  2015-02-13 16:33 ` [PATCH V5 01/12] xen/mem_event: Cleanup of mem_event structures Tamas K Lengyel
                   ` (11 more replies)
  0 siblings, 12 replies; 61+ messages in thread
From: Tamas K Lengyel @ 2015-02-13 16:33 UTC (permalink / raw)
  To: xen-devel
  Cc: kevin.tian, wei.liu2, ian.campbell, steve, stefano.stabellini,
	jun.nakajima, tim, ian.jackson, eddie.dong, andres, jbeulich,
	Tamas K Lengyel, rshriram, keir, dgdegra, yanghy

This patch series aims to clean up the mem_event subsystem within Xen. The
original use-case for this system was to allow external helper applications
running in privileged domains to control various memory operations performed
by Xen. Amongs these were paging, sharing and access control. The subsystem
has since been extended to also deliver non-memory related events, namely
various HVM debugging events (INT3, MTF, MOV-TO-CR, MOV-TO-MSR). The structures
and naming of related functions however has not caught up to these new
use-cases, thus leaving many ambiguities in the code. Furthermore, future
use-cases envisioned for this subsystem include PV domains and ARM domains,
thus there is a need to establish a common base to build on.

In this series we convert the mem_event system to vm_event in which we clearly
define the scope of information that is transmitted via the event
delivery mechanism. Afterwards, we clean up the naming of the structures and
related functions to more clearly be in line with their actual operations.
Finally, the control of monitor events is moved to a new domctl, monitor_op.

Each patch in the series has been build-tested on x86 and ARM, both with
and without XSM enabled.

This PATCH series is also available at:
https://github.com/tklengyel/xen/tree/mem_event_cleanup5

Tamas K Lengyel (12):
  xen/mem_event: Cleanup of mem_event structures
  xen/mem_event: Cleanup mem_event ring names and domctls
  xen/mem_paging: Convert mem_event_op to mem_paging_op
  xen: Rename mem_event to vm_event
  tools/tests: Clean-up tools/tests/xen-access
  x86/hvm: factor out and rename vm_event related functions
  xen: Introduce monitor_op domctl
  xen/vm_event: Check for VM_EVENT_FLAG_DUMMY only in Debug builds
  xen/vm_event: Decouple vm_event and mem_access.
  xen/vm_event: Relocate memop checks
  xen/xsm: Split vm_event_op into three separate labels
  xen/vm_event: Add RESUME option to vm_event_op domctl

 MAINTAINERS                                   |   4 +-
 docs/misc/xsm-flask.txt                       |   2 +-
 tools/libxc/Makefile                          |   3 +-
 tools/libxc/include/xenctrl.h                 |  41 ++-
 tools/libxc/xc_domain_restore.c               |  14 +-
 tools/libxc/xc_domain_save.c                  |   4 +-
 tools/libxc/xc_hvm_build_x86.c                |   2 +-
 tools/libxc/xc_mem_access.c                   |  32 --
 tools/libxc/xc_mem_paging.c                   |  52 ++-
 tools/libxc/xc_memshr.c                       |  29 +-
 tools/libxc/xc_monitor.c                      | 140 ++++++++
 tools/libxc/xc_private.h                      |  15 +-
 tools/libxc/{xc_mem_event.c => xc_vm_event.c} |  59 ++-
 tools/libxc/xg_save_restore.h                 |   2 +-
 tools/tests/xen-access/xen-access.c           | 252 +++++--------
 tools/xenpaging/pagein.c                      |   2 +-
 tools/xenpaging/xenpaging.c                   | 157 ++++----
 tools/xenpaging/xenpaging.h                   |   8 +-
 xen/arch/x86/Makefile                         |   1 +
 xen/arch/x86/domain.c                         |   2 +-
 xen/arch/x86/domctl.c                         |   4 +-
 xen/arch/x86/hvm/Makefile                     |   3 +-
 xen/arch/x86/hvm/emulate.c                    |   9 +-
 xen/arch/x86/hvm/event.c                      | 190 ++++++++++
 xen/arch/x86/hvm/hvm.c                        | 192 +---------
 xen/arch/x86/hvm/vmx/vmcs.c                   |  10 +-
 xen/arch/x86/hvm/vmx/vmx.c                    |   9 +-
 xen/arch/x86/mm/hap/nested_ept.c              |   4 +-
 xen/arch/x86/mm/hap/nested_hap.c              |   4 +-
 xen/arch/x86/mm/mem_paging.c                  |  58 +--
 xen/arch/x86/mm/mem_sharing.c                 | 136 ++++---
 xen/arch/x86/mm/p2m-pod.c                     |   4 +-
 xen/arch/x86/mm/p2m-pt.c                      |   4 +-
 xen/arch/x86/mm/p2m.c                         | 269 +++++++-------
 xen/arch/x86/monitor.c                        | 210 +++++++++++
 xen/arch/x86/x86_64/compat/mm.c               |  26 +-
 xen/arch/x86/x86_64/mm.c                      |  26 +-
 xen/common/Makefile                           |  18 +-
 xen/common/domain.c                           |  12 +-
 xen/common/domctl.c                           |  17 +-
 xen/common/mem_access.c                       |  47 +--
 xen/common/{mem_event.c => vm_event.c}        | 495 ++++++++++++++------------
 xen/drivers/passthrough/pci.c                 |   2 +-
 xen/include/asm-arm/monitor.h                 |  13 +
 xen/include/asm-arm/p2m.h                     |   6 +-
 xen/include/asm-x86/domain.h                  |  32 +-
 xen/include/asm-x86/hvm/domain.h              |   1 -
 xen/include/asm-x86/hvm/emulate.h             |   2 +-
 xen/include/asm-x86/hvm/event.h               |  40 +++
 xen/include/asm-x86/hvm/hvm.h                 |  11 -
 xen/include/asm-x86/mem_paging.h              |   7 +-
 xen/include/asm-x86/mem_sharing.h             |   5 +-
 xen/include/asm-x86/monitor.h                 |  30 ++
 xen/include/asm-x86/p2m.h                     |  18 +-
 xen/include/public/domctl.h                   | 115 ++++--
 xen/include/public/hvm/params.h               |  17 +-
 xen/include/public/mem_event.h                | 134 -------
 xen/include/public/memory.h                   |  36 +-
 xen/include/public/vm_event.h                 | 222 ++++++++++++
 xen/include/xen/mem_access.h                  |  18 +-
 xen/include/xen/mem_event.h                   | 143 --------
 xen/include/xen/p2m-common.h                  |   4 +-
 xen/include/xen/sched.h                       |  28 +-
 xen/include/xen/vm_event.h                    |  88 +++++
 xen/include/xsm/dummy.h                       |  22 +-
 xen/include/xsm/xsm.h                         |  35 +-
 xen/xsm/dummy.c                               |  13 +-
 xen/xsm/flask/hooks.c                         |  66 ++--
 xen/xsm/flask/policy/access_vectors           |  12 +-
 69 files changed, 2099 insertions(+), 1589 deletions(-)
 create mode 100644 tools/libxc/xc_monitor.c
 rename tools/libxc/{xc_mem_event.c => xc_vm_event.c} (70%)
 create mode 100644 xen/arch/x86/hvm/event.c
 create mode 100644 xen/arch/x86/monitor.c
 rename xen/common/{mem_event.c => vm_event.c} (52%)
 create mode 100644 xen/include/asm-arm/monitor.h
 create mode 100644 xen/include/asm-x86/hvm/event.h
 create mode 100644 xen/include/asm-x86/monitor.h
 delete mode 100644 xen/include/public/mem_event.h
 create mode 100644 xen/include/public/vm_event.h
 delete mode 100644 xen/include/xen/mem_event.h
 create mode 100644 xen/include/xen/vm_event.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 61+ messages in thread

end of thread, other threads:[~2015-02-18 12:18 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-13 16:33 [PATCH V5 00/12] xen: Clean-up of mem_event subsystem Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 01/12] xen/mem_event: Cleanup of mem_event structures Tamas K Lengyel
2015-02-13 17:23   ` Andrew Cooper
2015-02-13 18:03     ` Tamas K Lengyel
2015-02-13 18:09       ` Andrew Cooper
2015-02-13 18:13         ` Tamas K Lengyel
2015-02-17 11:48         ` Jan Beulich
2015-02-13 16:33 ` [PATCH V5 02/12] xen/mem_event: Cleanup mem_event ring names and domctls Tamas K Lengyel
2015-02-13 17:53   ` Andrew Cooper
2015-02-13 18:06     ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 03/12] xen/mem_paging: Convert mem_event_op to mem_paging_op Tamas K Lengyel
2015-02-13 18:17   ` Andrew Cooper
2015-02-13 18:30     ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 04/12] xen: Rename mem_event to vm_event Tamas K Lengyel
2015-02-13 18:31   ` Andrew Cooper
2015-02-13 16:33 ` [PATCH V5 05/12] tools/tests: Clean-up tools/tests/xen-access Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 06/12] x86/hvm: factor out and rename vm_event related functions Tamas K Lengyel
2015-02-13 18:41   ` Andrew Cooper
2015-02-17 11:56   ` Jan Beulich
2015-02-17 17:37     ` Tamas K Lengyel
2015-02-18  9:07       ` Jan Beulich
2015-02-18 12:09         ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 07/12] xen: Introduce monitor_op domctl Tamas K Lengyel
2015-02-13 20:09   ` Andrew Cooper
2015-02-17 14:02   ` Jan Beulich
2015-02-17 18:20     ` Tamas K Lengyel
2015-02-17 18:37       ` Andrew Cooper
2015-02-17 18:48         ` Tamas K Lengyel
2015-02-17 22:59       ` Tamas K Lengyel
2015-02-18  9:26       ` Jan Beulich
2015-02-18 12:11         ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 08/12] xen/vm_event: Check for VM_EVENT_FLAG_DUMMY only in Debug builds Tamas K Lengyel
2015-02-13 20:14   ` Andrew Cooper
2015-02-13 22:48     ` Tamas K Lengyel
2015-02-13 22:53       ` Tamas K Lengyel
2015-02-13 23:00         ` Andrew Cooper
2015-02-13 23:02           ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 09/12] xen/vm_event: Decouple vm_event and mem_access Tamas K Lengyel
2015-02-13 21:05   ` Andrew Cooper
2015-02-13 23:00     ` Tamas K Lengyel
2015-02-17 14:17   ` Jan Beulich
2015-02-17 18:30     ` Tamas K Lengyel
2015-02-17 18:34       ` Andrew Cooper
2015-02-17 18:49         ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 10/12] xen/vm_event: Relocate memop checks Tamas K Lengyel
2015-02-13 21:23   ` Andrew Cooper
2015-02-13 23:20     ` Tamas K Lengyel
2015-02-13 23:24       ` Tamas K Lengyel
2015-02-17 14:25   ` Jan Beulich
2015-02-17 18:47     ` Tamas K Lengyel
2015-02-18  9:29       ` Jan Beulich
2015-02-18 12:13         ` Tamas K Lengyel
2015-02-13 16:33 ` [PATCH V5 11/12] xen/xsm: Split vm_event_op into three separate labels Tamas K Lengyel
2015-02-13 21:25   ` Andrew Cooper
2015-02-13 16:33 ` [PATCH V5 12/12] xen/vm_event: Add RESUME option to vm_event_op domctl Tamas K Lengyel
2015-02-13 21:44   ` Andrew Cooper
2015-02-13 23:10     ` Tamas K Lengyel
2015-02-17 14:31   ` Jan Beulich
2015-02-17 18:32     ` Tamas K Lengyel
2015-02-18  9:31       ` Jan Beulich
2015-02-18 12:18         ` Tamas K Lengyel

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.