[PATCH v3 0/4] xen/x86: add testing for self modifying code and livepatch

Roger Pau Monne posted 4 patches 4 months, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20231214101719.18770-1-roger.pau@citrix.com
There is a newer version of this series
automation/gitlab-ci/build.yaml               |  9 +++
automation/gitlab-ci/test.yaml                |  8 ++
automation/scripts/build-livepatch            | 27 +++++++
.../scripts/qemu-alpine-x86_64-livepatch.sh   | 68 ++++++++++++++++
tools/include/xenctrl.h                       |  2 +
tools/libs/ctrl/xc_misc.c                     | 14 ++++
tools/misc/xen-livepatch.c                    | 29 +++++++
xen/Kconfig                                   | 18 +++++
xen/Makefile                                  |  3 +
xen/arch/arm/livepatch.c                      |  2 +
xen/arch/arm/xen.lds.S                        |  4 +
xen/arch/x86/Makefile                         |  1 +
xen/arch/x86/include/asm/test-smoc.h          | 22 ++++++
xen/arch/x86/livepatch.c                      |  4 +
xen/arch/x86/setup.c                          |  3 +
xen/arch/x86/sysctl.c                         |  9 +++
xen/arch/x86/test/Makefile                    |  3 +
xen/arch/x86/test/smoc-lp-alt.c               | 24 ++++++
xen/arch/x86/test/smoc-lp.c                   | 24 ++++++
xen/arch/x86/test/smoc.c                      | 77 +++++++++++++++++++
xen/arch/x86/xen.lds.S                        |  4 +
xen/common/Kconfig                            |  5 +-
xen/common/kernel.c                           |  5 +-
xen/include/public/sysctl.h                   | 14 ++++
xen/include/xen/lib.h                         |  1 +
25 files changed, 377 insertions(+), 3 deletions(-)
create mode 100755 automation/scripts/build-livepatch
create mode 100755 automation/scripts/qemu-alpine-x86_64-livepatch.sh
create mode 100644 xen/arch/x86/include/asm/test-smoc.h
create mode 100644 xen/arch/x86/test/Makefile
create mode 100644 xen/arch/x86/test/smoc-lp-alt.c
create mode 100644 xen/arch/x86/test/smoc-lp.c
create mode 100644 xen/arch/x86/test/smoc.c
[PATCH v3 0/4] xen/x86: add testing for self modifying code and livepatch
Posted by Roger Pau Monne 4 months, 3 weeks ago
Hello,

The following series contains a misc set of fixes and improvements.

There's one improvement for the hypervisor to set function alignment for
livepatch builds in order to make sure there's always enough space in a
function to be live-patched.

Following patches attempt to introduce a set of tests for self modifying
code, currently one test using the alternatives framework, and one test
for livepatch.

Last patch hooks the newly introduced livepatch test into the gitlab CI
using QEMU and an Alpine Linux dom0:

https://gitlab.com/xen-project/people/royger/xen/-/pipelines/1106713873

Roger Pau Monne (4):
  x86/livepatch: align functions to ensure minimal distance between
    entry points
  xen/x86: introduce self modifying code test
  x86/livepatch: introduce a basic live patch test to gitlab CI
  automation: add x86-64 livepatching test

 automation/gitlab-ci/build.yaml               |  9 +++
 automation/gitlab-ci/test.yaml                |  8 ++
 automation/scripts/build-livepatch            | 27 +++++++
 .../scripts/qemu-alpine-x86_64-livepatch.sh   | 68 ++++++++++++++++
 tools/include/xenctrl.h                       |  2 +
 tools/libs/ctrl/xc_misc.c                     | 14 ++++
 tools/misc/xen-livepatch.c                    | 29 +++++++
 xen/Kconfig                                   | 18 +++++
 xen/Makefile                                  |  3 +
 xen/arch/arm/livepatch.c                      |  2 +
 xen/arch/arm/xen.lds.S                        |  4 +
 xen/arch/x86/Makefile                         |  1 +
 xen/arch/x86/include/asm/test-smoc.h          | 22 ++++++
 xen/arch/x86/livepatch.c                      |  4 +
 xen/arch/x86/setup.c                          |  3 +
 xen/arch/x86/sysctl.c                         |  9 +++
 xen/arch/x86/test/Makefile                    |  3 +
 xen/arch/x86/test/smoc-lp-alt.c               | 24 ++++++
 xen/arch/x86/test/smoc-lp.c                   | 24 ++++++
 xen/arch/x86/test/smoc.c                      | 77 +++++++++++++++++++
 xen/arch/x86/xen.lds.S                        |  4 +
 xen/common/Kconfig                            |  5 +-
 xen/common/kernel.c                           |  5 +-
 xen/include/public/sysctl.h                   | 14 ++++
 xen/include/xen/lib.h                         |  1 +
 25 files changed, 377 insertions(+), 3 deletions(-)
 create mode 100755 automation/scripts/build-livepatch
 create mode 100755 automation/scripts/qemu-alpine-x86_64-livepatch.sh
 create mode 100644 xen/arch/x86/include/asm/test-smoc.h
 create mode 100644 xen/arch/x86/test/Makefile
 create mode 100644 xen/arch/x86/test/smoc-lp-alt.c
 create mode 100644 xen/arch/x86/test/smoc-lp.c
 create mode 100644 xen/arch/x86/test/smoc.c

-- 
2.43.0