Re: [PATCH] KVM: arm64: Fix soft-lockup on relaxing PTE permission

From: Marc Zyngier
Date: Mon Sep 04 2023 - 04:22:48 EST


Hi Gavin,

On Mon, 04 Sep 2023 08:28:26 +0100,
Gavin Shan <gshan@xxxxxxxxxx> wrote:
>
> We observed soft-lockup on the host in a specific scenario where
> the host on Ampere's Altra Max CPU has 64KB base page size and the
> guest has 4KB base page size, 64 vCPUs and 13GB memory. The guest's
> memory is backed by 512MB huge pages via hugetlbfs. All the 64 vCPUs
> are simultaneously trapped into the host due to permission page faults,
> to request adding the execution permission to the corresponding PMD
> entry, before the soft-lockup is raised on the host. On handling the
> parallel requests, the instruction cache for the 512MB huge page is
> invalidated by mm_ops->icache_inval_pou() in stage2_attr_walker() on
> 64 hardware CPUs. Unfortunately, the instruction cache invalidation
> on one CPU interfere with that on another CPU in the hardware level.
> It takes 37 seconds for mm_ops->icache_inval_pou() to finish in the
> worst case.

What really annoys me is that we keep piling all sort of hacks just to
paper over the fact that this HW is absolutely terrible (cue Russell's
text replication patches). Why stick so many CPUs in a single system
if the interconnect is unable to scale?

We already have added non-shareable invalidation to cope with similar
issues, and this is only adding insult to injury. What does Ampere
say about this?

>
> So we can't scale out to handle the permission faults at will.

The *HW* cannot scale. Bad HW.

> They
> need to be serialized to some extent with the help of a interval tree,
> to track IPA ranges, currently under service. For the incoming permission
> faults, the vCPU is asked to bail for a retry if its IPA range is being
> served since the vCPU can't proceed its execution.
>
> Fixes: 1577cb5823ce ("KVM: arm64: Handle stage-2 faults in parallel")
> Cc: stable@xxxxxxxxxxxxxxx # v6.2+

Please drop these two tags. There is no correctness problem in what
you describe, only HW that does not scale.

> Reported-by: Yihuang Yu <yihyu@xxxxxxxxxx>
> Reported-by: Zhenyu Zhang <zhenyzha@xxxxxxxxxx>
> Signed-off-by: Gavin Shan <gshan@xxxxxxxxxx>
> ---
> arch/arm64/include/asm/kvm_host.h | 4 ++
> arch/arm64/include/asm/kvm_pgtable.h | 3 +-
> arch/arm64/kvm/hyp/nvhe/mem_protect.c | 4 +-
> arch/arm64/kvm/hyp/pgtable.c | 25 +++++++++---
> arch/arm64/kvm/mmu.c | 55 ++++++++++++++++++++++++++-
> 5 files changed, 83 insertions(+), 8 deletions(-)
>
> diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h
> index d3dd05bbfe23..a457720b5caf 100644
> --- a/arch/arm64/include/asm/kvm_host.h
> +++ b/arch/arm64/include/asm/kvm_host.h
> @@ -175,6 +175,10 @@ struct kvm_s2_mmu {
> struct kvm_mmu_memory_cache split_page_cache;
> uint64_t split_page_chunk_size;
>
> + /* Page fault ranges */
> + struct mutex fault_ranges_mutex;
> + struct rb_root_cached fault_ranges;
> +

How is that going to work for NV, where we have multiple concurrent
IPA spaces for the same VM, each with its own stage-2?

And this begs another question: what happens when *another* VM does
the same thing? If the HW gets wedged by concurrent vcpus in the same
VM, it may get just as wedged by a concurrent VM...

What happens if the vcpus perform icache invalidation *in the guest*?

> struct kvm_arch *arch;
> };
>
> diff --git a/arch/arm64/include/asm/kvm_pgtable.h b/arch/arm64/include/asm/kvm_pgtable.h
> index 929d355eae0a..dca0bf81616f 100644
> --- a/arch/arm64/include/asm/kvm_pgtable.h
> +++ b/arch/arm64/include/asm/kvm_pgtable.h
> @@ -149,7 +149,8 @@ struct kvm_pgtable_mm_ops {
> void* (*phys_to_virt)(phys_addr_t phys);
> phys_addr_t (*virt_to_phys)(void *addr);
> void (*dcache_clean_inval_poc)(void *addr, size_t size);
> - void (*icache_inval_pou)(void *addr, size_t size);
> + int (*icache_inval_pou)(struct kvm_s2_mmu *mmu,
> + void *addr, u64 ipa, size_t size);
> };
>
> /**
> diff --git a/arch/arm64/kvm/hyp/nvhe/mem_protect.c b/arch/arm64/kvm/hyp/nvhe/mem_protect.c
> index 9d703441278b..9bbe7c641770 100644
> --- a/arch/arm64/kvm/hyp/nvhe/mem_protect.c
> +++ b/arch/arm64/kvm/hyp/nvhe/mem_protect.c
> @@ -223,10 +223,12 @@ static void clean_dcache_guest_page(void *va, size_t size)
> hyp_fixmap_unmap();
> }
>
> -static void invalidate_icache_guest_page(void *va, size_t size)
> +static int invalidate_icache_guest_page(struct kvm_s2_mmu *mmu,
> + void *va, u64 ipa, size_t size)
> {
> __invalidate_icache_guest_page(hyp_fixmap_map(__hyp_pa(va)), size);
> hyp_fixmap_unmap();
> + return 0;
> }
>
> int kvm_guest_prepare_stage2(struct pkvm_hyp_vm *vm, void *pgd)
> diff --git a/arch/arm64/kvm/hyp/pgtable.c b/arch/arm64/kvm/hyp/pgtable.c
> index f7a93ef29250..fabfdb4d1e00 100644
> --- a/arch/arm64/kvm/hyp/pgtable.c
> +++ b/arch/arm64/kvm/hyp/pgtable.c
> @@ -875,6 +875,7 @@ static int stage2_map_walker_try_leaf(const struct kvm_pgtable_visit_ctx *ctx,
> u64 granule = kvm_granule_size(ctx->level);
> struct kvm_pgtable *pgt = data->mmu->pgt;
> struct kvm_pgtable_mm_ops *mm_ops = ctx->mm_ops;
> + int ret;
>
> if (!stage2_leaf_mapping_allowed(ctx, data))
> return -E2BIG;
> @@ -903,8 +904,14 @@ static int stage2_map_walker_try_leaf(const struct kvm_pgtable_visit_ctx *ctx,
> granule);
>
> if (!kvm_pgtable_walk_skip_cmo(ctx) && mm_ops->icache_inval_pou &&
> - stage2_pte_executable(new))
> - mm_ops->icache_inval_pou(kvm_pte_follow(new, mm_ops), granule);
> + stage2_pte_executable(new)) {
> + ret = mm_ops->icache_inval_pou(data->mmu,
> + kvm_pte_follow(new, mm_ops),
> + ALIGN_DOWN(ctx->addr, granule),
> + granule);
> + if (ret)
> + return ret;
> + }
>
> stage2_make_pte(ctx, new);
>
> @@ -1101,6 +1108,7 @@ int kvm_pgtable_stage2_unmap(struct kvm_pgtable *pgt, u64 addr, u64 size)
> }
>
> struct stage2_attr_data {
> + struct kvm_s2_mmu *mmu;
> kvm_pte_t attr_set;
> kvm_pte_t attr_clr;
> kvm_pte_t pte;
> @@ -1113,6 +1121,8 @@ static int stage2_attr_walker(const struct kvm_pgtable_visit_ctx *ctx,
> kvm_pte_t pte = ctx->old;
> struct stage2_attr_data *data = ctx->arg;
> struct kvm_pgtable_mm_ops *mm_ops = ctx->mm_ops;
> + u64 granule = kvm_granule_size(ctx->level);
> + int ret;
>
> if (!kvm_pte_valid(ctx->old))
> return -EAGAIN;
> @@ -1133,9 +1143,13 @@ static int stage2_attr_walker(const struct kvm_pgtable_visit_ctx *ctx,
> * stage-2 PTE if we are going to add executable permission.
> */
> if (mm_ops->icache_inval_pou &&
> - stage2_pte_executable(pte) && !stage2_pte_executable(ctx->old))
> - mm_ops->icache_inval_pou(kvm_pte_follow(pte, mm_ops),
> - kvm_granule_size(ctx->level));
> + stage2_pte_executable(pte) && !stage2_pte_executable(ctx->old)) {
> + ret = mm_ops->icache_inval_pou(data->mmu,
> + kvm_pte_follow(pte, mm_ops),
> + ALIGN_DOWN(ctx->addr, granule), granule);
> + if (ret)
> + return ret;
> + }
>
> if (!stage2_try_set_pte(ctx, pte))
> return -EAGAIN;
> @@ -1152,6 +1166,7 @@ static int stage2_update_leaf_attrs(struct kvm_pgtable *pgt, u64 addr,
> int ret;
> kvm_pte_t attr_mask = KVM_PTE_LEAF_ATTR_LO | KVM_PTE_LEAF_ATTR_HI;
> struct stage2_attr_data data = {
> + .mmu = pgt->mmu,
> .attr_set = attr_set & attr_mask,
> .attr_clr = attr_clr & attr_mask,
> };
> diff --git a/arch/arm64/kvm/mmu.c b/arch/arm64/kvm/mmu.c
> index d3b4feed460c..a778f48beb56 100644
> --- a/arch/arm64/kvm/mmu.c
> +++ b/arch/arm64/kvm/mmu.c
> @@ -267,9 +267,58 @@ static void clean_dcache_guest_page(void *va, size_t size)
> __clean_dcache_guest_page(va, size);
> }
>
> -static void invalidate_icache_guest_page(void *va, size_t size)
> +static struct interval_tree_node *add_fault_range(struct kvm_s2_mmu *mmu,
> + u64 ipa, size_t size)
> {
> + struct interval_tree_node *node;
> + unsigned long start = ipa, end = start + size - 1; /* inclusive */

Maybe just rename 'ipa' to 'start'?

> +
> + mutex_lock(&mmu->fault_ranges_mutex);

Don't we hold the rwlock at this at this stage, which actively
prevents things like taking a mutex? Have you tested this with
lockdep?

> +
> + node = interval_tree_iter_first(&mmu->fault_ranges, start, end);
> + if (node) {
> + node = NULL;
> + goto unlock;
> + }
> +
> + node = kzalloc(sizeof(*node), GFP_KERNEL_ACCOUNT);
> + if (!node)
> + goto unlock;

That's not going to work -- why do you think we avoid all dynamic
allocation on this path?

> +
> + node->start = start;
> + node->last = end;
> + interval_tree_insert(node, &mmu->fault_ranges);
> +
> +unlock:
> + mutex_unlock(&mmu->fault_ranges_mutex);
> + return node;
> +}
> +
> +static void remove_fault_range(struct kvm_s2_mmu *mmu,
> + struct interval_tree_node *node)
> +{
> + mutex_lock(&mmu->fault_ranges_mutex);
> +
> + interval_tree_remove(node, &mmu->fault_ranges);
> + kfree(node);
> +
> + mutex_unlock(&mmu->fault_ranges_mutex);
> +}
> +
> +
> +static int invalidate_icache_guest_page(struct kvm_s2_mmu *mmu,
> + void *va, u64 ipa, size_t size)
> +{
> + struct interval_tree_node *node;
> +
> + node = add_fault_range(mmu, ipa, size);
> + if (!node)
> + return -EAGAIN;
> +
> __invalidate_icache_guest_page(va, size);
> + remove_fault_range(mmu, node);

Given that we add and remove the node in the same function, why can't
we allocate the node on the stack instead?

> +
> + return 0;
> }
>
> /*
> @@ -859,6 +908,10 @@ int kvm_init_stage2_mmu(struct kvm *kvm, struct kvm_s2_mmu *mmu, unsigned long t
> mmu->split_page_chunk_size = KVM_ARM_EAGER_SPLIT_CHUNK_SIZE_DEFAULT;
> mmu->split_page_cache.gfp_zero = __GFP_ZERO;
>
> + /* Initialize the page fault ranges */
> + mutex_init(&mmu->fault_ranges_mutex);
> + mmu->fault_ranges = RB_ROOT_CACHED;
> +
> mmu->pgt = pgt;
> mmu->pgd_phys = __pa(pgt->pgd);
> return 0;

I really wonder why we should add this complexity, rather than doing a
full i-cache invalidation instead. Given what you describe, I don't
think it would be worse.

M.

--
Without deviation from the norm, progress is not possible.