From: Oliver Upton <oliver.upton@linux.dev>
To: Marc Zyngier <maz@kernel.org>, James Morse <james.morse@arm.com>,
Alexandru Elisei <alexandru.elisei@arm.com>
Cc: kvmarm@lists.cs.columbia.edu,
linux-arm-kernel@lists.infradead.org, kvm@vger.kernel.org
Subject: Re: [PATCH v2 0/7] KVM: arm64: Use visibility hook to treat ID regs as RAZ
Date: Fri, 2 Sep 2022 15:52:48 +0000 [thread overview]
Message-ID: <YxIm0GE7LA6cvB12@google.com> (raw)
In-Reply-To: <20220902154804.1939819-1-oliver.upton@linux.dev>
Lol, mess up my own copypasta:
On Fri, Sep 02, 2022 at 03:47:56PM +0000, Oliver Upton wrote:
> For reasons unknown, the Arm architecture defines the 64-bit views of
> the 32-bit ID registers as UNKNOWN [1]. This combines poorly with the
^ on AArch64-only systems.
> fact that KVM unconditionally exposes these registers to userspace,
> which could throw a wrench in migration between 64-bit only systems.
>
> This series reworks KVM's definition of these registers to RAZ/WI with
> the goal of providing consistent register values across 64-bit machines.
>
> Patches 1-3 clean up the ID register accessors, taking advantage of the
> fact that the generic accessors know how to handle RAZ.
>
> Patches 4-6 start switch the handling of potentially nonzero AArch32 ID
> registers to RAZ/WI. RAZ covers up the architecturally UNKNOWN values,
> and WI allows for migration off of kernels that may provide garbage.
> Note that hidden AArch32 ID registers continue to have RAZ behavior with
> the additional expectation of invariance.
>
> Lastly, patch 7 includes a small test for the issue.
>
> Applies to 6.0-rc3. Tested with KVM selftests under the fast model w/
> asymmetric 32 bit support and no 32 bit support whatsoever.
[1]: DDI0487H.a Table D12-2 'Instruction encodings for non-Debug System Register accesses'
v1: https://lore.kernel.org/kvmarm/20220817214818.3243383-1-oliver.upton@linux.dev/
--
Thanks,
Oliver
> v1 -> v2:
> - Collect Reiji's r-b tags (thanks!)
> - Call sysreg_visible_as_raz() from read_id_reg() (Reiji)
> - Hoist sysreg_user_write_ignore() into kvm_sys_reg_set_user() (Reiji)
>
> Oliver Upton (7):
> KVM: arm64: Use visibility hook to treat ID regs as RAZ
> KVM: arm64: Remove internal accessor helpers for id regs
> KVM: arm64: Drop raz parameter from read_id_reg()
> KVM: arm64: Spin off helper for calling visibility hook
> KVM: arm64: Add a visibility bit to ignore user writes
> KVM: arm64: Treat 32bit ID registers as RAZ/WI on 64bit-only system
> KVM: selftests: Add test for RAZ/WI AArch32 ID registers
>
> arch/arm64/kvm/sys_regs.c | 150 +++++++++---------
> arch/arm64/kvm/sys_regs.h | 24 ++-
> tools/testing/selftests/kvm/.gitignore | 1 +
> tools/testing/selftests/kvm/Makefile | 1 +
> .../kvm/aarch64/aarch64_only_id_regs.c | 135 ++++++++++++++++
> 5 files changed, 225 insertions(+), 86 deletions(-)
> create mode 100644 tools/testing/selftests/kvm/aarch64/aarch64_only_id_regs.c
>
>
> base-commit: b90cb1053190353cc30f0fef0ef1f378ccc063c5
> --
> 2.37.2.789.g6183377224-goog
>
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: Oliver Upton <oliver.upton@linux.dev>
To: Marc Zyngier <maz@kernel.org>, James Morse <james.morse@arm.com>,
Alexandru Elisei <alexandru.elisei@arm.com>
Cc: linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org,
Reiji Watanabe <reijiw@google.com>
Subject: Re: [PATCH v2 0/7] KVM: arm64: Use visibility hook to treat ID regs as RAZ
Date: Fri, 2 Sep 2022 15:52:48 +0000 [thread overview]
Message-ID: <YxIm0GE7LA6cvB12@google.com> (raw)
In-Reply-To: <20220902154804.1939819-1-oliver.upton@linux.dev>
Lol, mess up my own copypasta:
On Fri, Sep 02, 2022 at 03:47:56PM +0000, Oliver Upton wrote:
> For reasons unknown, the Arm architecture defines the 64-bit views of
> the 32-bit ID registers as UNKNOWN [1]. This combines poorly with the
^ on AArch64-only systems.
> fact that KVM unconditionally exposes these registers to userspace,
> which could throw a wrench in migration between 64-bit only systems.
>
> This series reworks KVM's definition of these registers to RAZ/WI with
> the goal of providing consistent register values across 64-bit machines.
>
> Patches 1-3 clean up the ID register accessors, taking advantage of the
> fact that the generic accessors know how to handle RAZ.
>
> Patches 4-6 start switch the handling of potentially nonzero AArch32 ID
> registers to RAZ/WI. RAZ covers up the architecturally UNKNOWN values,
> and WI allows for migration off of kernels that may provide garbage.
> Note that hidden AArch32 ID registers continue to have RAZ behavior with
> the additional expectation of invariance.
>
> Lastly, patch 7 includes a small test for the issue.
>
> Applies to 6.0-rc3. Tested with KVM selftests under the fast model w/
> asymmetric 32 bit support and no 32 bit support whatsoever.
[1]: DDI0487H.a Table D12-2 'Instruction encodings for non-Debug System Register accesses'
v1: https://lore.kernel.org/kvmarm/20220817214818.3243383-1-oliver.upton@linux.dev/
--
Thanks,
Oliver
> v1 -> v2:
> - Collect Reiji's r-b tags (thanks!)
> - Call sysreg_visible_as_raz() from read_id_reg() (Reiji)
> - Hoist sysreg_user_write_ignore() into kvm_sys_reg_set_user() (Reiji)
>
> Oliver Upton (7):
> KVM: arm64: Use visibility hook to treat ID regs as RAZ
> KVM: arm64: Remove internal accessor helpers for id regs
> KVM: arm64: Drop raz parameter from read_id_reg()
> KVM: arm64: Spin off helper for calling visibility hook
> KVM: arm64: Add a visibility bit to ignore user writes
> KVM: arm64: Treat 32bit ID registers as RAZ/WI on 64bit-only system
> KVM: selftests: Add test for RAZ/WI AArch32 ID registers
>
> arch/arm64/kvm/sys_regs.c | 150 +++++++++---------
> arch/arm64/kvm/sys_regs.h | 24 ++-
> tools/testing/selftests/kvm/.gitignore | 1 +
> tools/testing/selftests/kvm/Makefile | 1 +
> .../kvm/aarch64/aarch64_only_id_regs.c | 135 ++++++++++++++++
> 5 files changed, 225 insertions(+), 86 deletions(-)
> create mode 100644 tools/testing/selftests/kvm/aarch64/aarch64_only_id_regs.c
>
>
> base-commit: b90cb1053190353cc30f0fef0ef1f378ccc063c5
> --
> 2.37.2.789.g6183377224-goog
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Oliver Upton <oliver.upton@linux.dev>
To: Marc Zyngier <maz@kernel.org>, James Morse <james.morse@arm.com>,
Alexandru Elisei <alexandru.elisei@arm.com>
Cc: linux-arm-kernel@lists.infradead.org,
kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org,
Reiji Watanabe <reijiw@google.com>
Subject: Re: [PATCH v2 0/7] KVM: arm64: Use visibility hook to treat ID regs as RAZ
Date: Fri, 2 Sep 2022 15:52:48 +0000 [thread overview]
Message-ID: <YxIm0GE7LA6cvB12@google.com> (raw)
In-Reply-To: <20220902154804.1939819-1-oliver.upton@linux.dev>
Lol, mess up my own copypasta:
On Fri, Sep 02, 2022 at 03:47:56PM +0000, Oliver Upton wrote:
> For reasons unknown, the Arm architecture defines the 64-bit views of
> the 32-bit ID registers as UNKNOWN [1]. This combines poorly with the
^ on AArch64-only systems.
> fact that KVM unconditionally exposes these registers to userspace,
> which could throw a wrench in migration between 64-bit only systems.
>
> This series reworks KVM's definition of these registers to RAZ/WI with
> the goal of providing consistent register values across 64-bit machines.
>
> Patches 1-3 clean up the ID register accessors, taking advantage of the
> fact that the generic accessors know how to handle RAZ.
>
> Patches 4-6 start switch the handling of potentially nonzero AArch32 ID
> registers to RAZ/WI. RAZ covers up the architecturally UNKNOWN values,
> and WI allows for migration off of kernels that may provide garbage.
> Note that hidden AArch32 ID registers continue to have RAZ behavior with
> the additional expectation of invariance.
>
> Lastly, patch 7 includes a small test for the issue.
>
> Applies to 6.0-rc3. Tested with KVM selftests under the fast model w/
> asymmetric 32 bit support and no 32 bit support whatsoever.
[1]: DDI0487H.a Table D12-2 'Instruction encodings for non-Debug System Register accesses'
v1: https://lore.kernel.org/kvmarm/20220817214818.3243383-1-oliver.upton@linux.dev/
--
Thanks,
Oliver
> v1 -> v2:
> - Collect Reiji's r-b tags (thanks!)
> - Call sysreg_visible_as_raz() from read_id_reg() (Reiji)
> - Hoist sysreg_user_write_ignore() into kvm_sys_reg_set_user() (Reiji)
>
> Oliver Upton (7):
> KVM: arm64: Use visibility hook to treat ID regs as RAZ
> KVM: arm64: Remove internal accessor helpers for id regs
> KVM: arm64: Drop raz parameter from read_id_reg()
> KVM: arm64: Spin off helper for calling visibility hook
> KVM: arm64: Add a visibility bit to ignore user writes
> KVM: arm64: Treat 32bit ID registers as RAZ/WI on 64bit-only system
> KVM: selftests: Add test for RAZ/WI AArch32 ID registers
>
> arch/arm64/kvm/sys_regs.c | 150 +++++++++---------
> arch/arm64/kvm/sys_regs.h | 24 ++-
> tools/testing/selftests/kvm/.gitignore | 1 +
> tools/testing/selftests/kvm/Makefile | 1 +
> .../kvm/aarch64/aarch64_only_id_regs.c | 135 ++++++++++++++++
> 5 files changed, 225 insertions(+), 86 deletions(-)
> create mode 100644 tools/testing/selftests/kvm/aarch64/aarch64_only_id_regs.c
>
>
> base-commit: b90cb1053190353cc30f0fef0ef1f378ccc063c5
> --
> 2.37.2.789.g6183377224-goog
>
next prev parent reply other threads:[~2022-09-02 15:52 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-02 15:47 [PATCH v2 0/7] KVM: arm64: Use visibility hook to treat ID regs as RAZ Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-02 15:47 ` [PATCH v2 1/7] " Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-02 15:47 ` [PATCH v2 2/7] KVM: arm64: Remove internal accessor helpers for id regs Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-07 2:00 ` Reiji Watanabe
2022-09-07 2:00 ` Reiji Watanabe
2022-09-07 2:00 ` Reiji Watanabe
2022-09-02 15:47 ` [PATCH v2 3/7] KVM: arm64: Drop raz parameter from read_id_reg() Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-02 15:47 ` Oliver Upton
2022-09-07 2:26 ` Reiji Watanabe
2022-09-07 2:26 ` Reiji Watanabe
2022-09-07 2:26 ` Reiji Watanabe
2022-09-02 15:48 ` [PATCH v2 4/7] KVM: arm64: Spin off helper for calling visibility hook Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-02 15:48 ` [PATCH v2 5/7] KVM: arm64: Add a visibility bit to ignore user writes Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-07 2:40 ` Reiji Watanabe
2022-09-07 2:40 ` Reiji Watanabe
2022-09-07 2:40 ` Reiji Watanabe
2022-09-02 15:48 ` [PATCH v2 6/7] KVM: arm64: Treat 32bit ID registers as RAZ/WI on 64bit-only system Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-07 4:52 ` Reiji Watanabe
2022-09-07 4:52 ` Reiji Watanabe
2022-09-07 4:52 ` Reiji Watanabe
2022-09-09 10:15 ` Oliver Upton
2022-09-09 10:15 ` Oliver Upton
2022-09-09 10:15 ` Oliver Upton
2022-09-02 15:48 ` [PATCH v2 7/7] KVM: selftests: Add test for RAZ/WI AArch32 ID registers Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-02 15:48 ` Oliver Upton
2022-09-05 7:31 ` Andrew Jones
2022-09-05 7:31 ` Andrew Jones
2022-09-05 7:31 ` Andrew Jones
2022-09-06 4:54 ` Oliver Upton
2022-09-06 4:54 ` Oliver Upton
2022-09-06 4:54 ` Oliver Upton
2022-09-02 15:52 ` Oliver Upton [this message]
2022-09-02 15:52 ` [PATCH v2 0/7] KVM: arm64: Use visibility hook to treat ID regs as RAZ Oliver Upton
2022-09-02 15:52 ` Oliver Upton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YxIm0GE7LA6cvB12@google.com \
--to=oliver.upton@linux.dev \
--cc=alexandru.elisei@arm.com \
--cc=james.morse@arm.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=maz@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.