Skip to content

Commit f3ddc43

Browse files
committed
Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
Pull arm64 fixes from Catalin Marinas: "Nothing major, some left-overs from the recent merging window (MTE, coco) and some newly found issues like the ptrace() ones. - MTE/hugetlbfs: - Set VM_MTE_ALLOWED in the arch code and remove it from the core code for hugetlbfs mappings - Fix copy_highpage() warning when the source is a huge page but not MTE tagged, taking the wrong small page path - drivers/virt/coco: - Add the pKVM and Arm CCA drivers under the arm64 maintainership - Fix the pkvm driver to fall back to ioremap() (and warn) if the MMIO_GUARD hypercall fails - Keep the Arm CCA driver default 'n' rather than 'm' - A series of fixes for the arm64 ptrace() implementation, potentially leading to the kernel consuming uninitialised stack variables when PTRACE_SETREGSET is invoked with a length of 0 - Fix zone_dma_limit calculation when RAM starts below 4GB and ZONE_DMA is capped to this limit - Fix early boot warning with CONFIG_DEBUG_VIRTUAL=y triggered by a call to page_to_phys() (from patch_map()) which checks pfn_valid() before vmemmap has been set up - Do not clobber bits 15:8 of the ASID used for TTBR1_EL1 and TLBI ops when the kernel assumes 8-bit ASIDs but running under a hypervisor on a system that implements 16-bit ASIDs (found running Linux under Parallels on Apple M4) - ACPI/IORT: Add PMCG platform information for HiSilicon HIP09A as it is using the same SMMU PMCG as HIP09 and suffers from the same errata - Add GCS to cpucap_is_possible(), missed in the recent merge" * tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux: arm64: ptrace: fix partial SETREGSET for NT_ARM_GCS arm64: ptrace: fix partial SETREGSET for NT_ARM_POE arm64: ptrace: fix partial SETREGSET for NT_ARM_FPMR arm64: ptrace: fix partial SETREGSET for NT_ARM_TAGGED_ADDR_CTRL arm64: cpufeature: Add GCS to cpucap_is_possible() coco: virt: arm64: Do not enable cca guest driver by default arm64: mte: Fix copy_highpage() warning on hugetlb folios arm64: Ensure bits ASID[15:8] are masked out when the kernel uses 8-bit ASIDs ACPI/IORT: Add PMCG platform information for HiSilicon HIP09A MAINTAINERS: Add CCA and pKVM CoCO guest support to the ARM64 entry drivers/virt: pkvm: Don't fail ioremap() call if MMIO_GUARD fails arm64: patching: avoid early page_to_phys() arm64: mm: Fix zone_dma_limit calculation arm64: mte: set VM_MTE_ALLOWED for hugetlbfs at correct place
2 parents ddfc146 + d60624f commit f3ddc43

File tree

14 files changed

+69
-47
lines changed

14 files changed

+69
-47
lines changed

Documentation/arch/arm64/silicon-errata.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,9 @@ stable kernels.
255255
+----------------+-----------------+-----------------+-----------------------------+
256256
| Hisilicon | Hip08 SMMU PMCG | #162001800 | N/A |
257257
+----------------+-----------------+-----------------+-----------------------------+
258-
| Hisilicon | Hip{08,09,10,10C| #162001900 | N/A |
259-
| | ,11} SMMU PMCG | | |
258+
| Hisilicon | Hip{08,09,09A,10| #162001900 | N/A |
259+
| | ,10C,11} | | |
260+
| | SMMU PMCG | | |
260261
+----------------+-----------------+-----------------+-----------------------------+
261262
| Hisilicon | Hip09 | #162100801 | HISILICON_ERRATUM_162100801 |
262263
+----------------+-----------------+-----------------+-----------------------------+

MAINTAINERS

+2
Original file line numberDiff line numberDiff line change
@@ -3376,6 +3376,8 @@ S: Maintained
33763376
T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
33773377
F: Documentation/arch/arm64/
33783378
F: arch/arm64/
3379+
F: drivers/virt/coco/arm-cca-guest/
3380+
F: drivers/virt/coco/pkvm-guest/
33793381
F: tools/testing/selftests/arm64/
33803382
X: arch/arm64/boot/dts/
33813383

arch/arm64/include/asm/cpucaps.h

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ cpucap_is_possible(const unsigned int cap)
4444
return IS_ENABLED(CONFIG_ARM64_TLB_RANGE);
4545
case ARM64_HAS_S1POE:
4646
return IS_ENABLED(CONFIG_ARM64_POE);
47+
case ARM64_HAS_GCS:
48+
return IS_ENABLED(CONFIG_ARM64_GCS);
4749
case ARM64_UNMAP_KERNEL_AT_EL0:
4850
return IS_ENABLED(CONFIG_UNMAP_KERNEL_AT_EL0);
4951
case ARM64_WORKAROUND_843419:

arch/arm64/include/asm/cpufeature.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -847,8 +847,7 @@ static inline bool system_supports_poe(void)
847847

848848
static inline bool system_supports_gcs(void)
849849
{
850-
return IS_ENABLED(CONFIG_ARM64_GCS) &&
851-
alternative_has_cap_unlikely(ARM64_HAS_GCS);
850+
return alternative_has_cap_unlikely(ARM64_HAS_GCS);
852851
}
853852

854853
static inline bool system_supports_haft(void)

arch/arm64/include/asm/mman.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#ifndef BUILD_VDSO
88
#include <linux/compiler.h>
99
#include <linux/fs.h>
10+
#include <linux/hugetlb.h>
1011
#include <linux/shmem_fs.h>
1112
#include <linux/types.h>
1213

@@ -44,7 +45,7 @@ static inline unsigned long arch_calc_vm_flag_bits(struct file *file,
4445
if (system_supports_mte()) {
4546
if (flags & (MAP_ANONYMOUS | MAP_HUGETLB))
4647
return VM_MTE_ALLOWED;
47-
if (shmem_file(file))
48+
if (shmem_file(file) || is_file_hugepages(file))
4849
return VM_MTE_ALLOWED;
4950
}
5051

arch/arm64/kernel/patching.c

+11-14
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,17 @@ static bool is_image_text(unsigned long addr)
3030

3131
static void __kprobes *patch_map(void *addr, int fixmap)
3232
{
33-
unsigned long uintaddr = (uintptr_t) addr;
34-
bool image = is_image_text(uintaddr);
35-
struct page *page;
36-
37-
if (image)
38-
page = phys_to_page(__pa_symbol(addr));
39-
else if (IS_ENABLED(CONFIG_EXECMEM))
40-
page = vmalloc_to_page(addr);
41-
else
42-
return addr;
43-
44-
BUG_ON(!page);
45-
return (void *)set_fixmap_offset(fixmap, page_to_phys(page) +
46-
(uintaddr & ~PAGE_MASK));
33+
phys_addr_t phys;
34+
35+
if (is_image_text((unsigned long)addr)) {
36+
phys = __pa_symbol(addr);
37+
} else {
38+
struct page *page = vmalloc_to_page(addr);
39+
BUG_ON(!page);
40+
phys = page_to_phys(page) + offset_in_page(addr);
41+
}
42+
43+
return (void *)set_fixmap_offset(fixmap, phys);
4744
}
4845

4946
static void __kprobes patch_unmap(int fixmap)

arch/arm64/kernel/ptrace.c

+29-7
Original file line numberDiff line numberDiff line change
@@ -720,6 +720,8 @@ static int fpmr_set(struct task_struct *target, const struct user_regset *regset
720720
if (!system_supports_fpmr())
721721
return -EINVAL;
722722

723+
fpmr = target->thread.uw.fpmr;
724+
723725
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &fpmr, 0, count);
724726
if (ret)
725727
return ret;
@@ -1427,7 +1429,7 @@ static int tagged_addr_ctrl_get(struct task_struct *target,
14271429
{
14281430
long ctrl = get_tagged_addr_ctrl(target);
14291431

1430-
if (IS_ERR_VALUE(ctrl))
1432+
if (WARN_ON_ONCE(IS_ERR_VALUE(ctrl)))
14311433
return ctrl;
14321434

14331435
return membuf_write(&to, &ctrl, sizeof(ctrl));
@@ -1441,6 +1443,10 @@ static int tagged_addr_ctrl_set(struct task_struct *target, const struct
14411443
int ret;
14421444
long ctrl;
14431445

1446+
ctrl = get_tagged_addr_ctrl(target);
1447+
if (WARN_ON_ONCE(IS_ERR_VALUE(ctrl)))
1448+
return ctrl;
1449+
14441450
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &ctrl, 0, -1);
14451451
if (ret)
14461452
return ret;
@@ -1472,6 +1478,8 @@ static int poe_set(struct task_struct *target, const struct
14721478
if (!system_supports_poe())
14731479
return -EINVAL;
14741480

1481+
ctrl = target->thread.por_el0;
1482+
14751483
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &ctrl, 0, -1);
14761484
if (ret)
14771485
return ret;
@@ -1483,6 +1491,22 @@ static int poe_set(struct task_struct *target, const struct
14831491
#endif
14841492

14851493
#ifdef CONFIG_ARM64_GCS
1494+
static void task_gcs_to_user(struct user_gcs *user_gcs,
1495+
const struct task_struct *target)
1496+
{
1497+
user_gcs->features_enabled = target->thread.gcs_el0_mode;
1498+
user_gcs->features_locked = target->thread.gcs_el0_locked;
1499+
user_gcs->gcspr_el0 = target->thread.gcspr_el0;
1500+
}
1501+
1502+
static void task_gcs_from_user(struct task_struct *target,
1503+
const struct user_gcs *user_gcs)
1504+
{
1505+
target->thread.gcs_el0_mode = user_gcs->features_enabled;
1506+
target->thread.gcs_el0_locked = user_gcs->features_locked;
1507+
target->thread.gcspr_el0 = user_gcs->gcspr_el0;
1508+
}
1509+
14861510
static int gcs_get(struct task_struct *target,
14871511
const struct user_regset *regset,
14881512
struct membuf to)
@@ -1495,9 +1519,7 @@ static int gcs_get(struct task_struct *target,
14951519
if (target == current)
14961520
gcs_preserve_current_state();
14971521

1498-
user_gcs.features_enabled = target->thread.gcs_el0_mode;
1499-
user_gcs.features_locked = target->thread.gcs_el0_locked;
1500-
user_gcs.gcspr_el0 = target->thread.gcspr_el0;
1522+
task_gcs_to_user(&user_gcs, target);
15011523

15021524
return membuf_write(&to, &user_gcs, sizeof(user_gcs));
15031525
}
@@ -1513,16 +1535,16 @@ static int gcs_set(struct task_struct *target, const struct
15131535
if (!system_supports_gcs())
15141536
return -EINVAL;
15151537

1538+
task_gcs_to_user(&user_gcs, target);
1539+
15161540
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &user_gcs, 0, -1);
15171541
if (ret)
15181542
return ret;
15191543

15201544
if (user_gcs.features_enabled & ~PR_SHADOW_STACK_SUPPORTED_STATUS_MASK)
15211545
return -EINVAL;
15221546

1523-
target->thread.gcs_el0_mode = user_gcs.features_enabled;
1524-
target->thread.gcs_el0_locked = user_gcs.features_locked;
1525-
target->thread.gcspr_el0 = user_gcs.gcspr_el0;
1547+
task_gcs_from_user(target, &user_gcs);
15261548

15271549
return 0;
15281550
}

arch/arm64/mm/context.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ static unsigned long nr_pinned_asids;
3232
static unsigned long *pinned_asid_map;
3333

3434
#define ASID_MASK (~GENMASK(asid_bits - 1, 0))
35-
#define ASID_FIRST_VERSION (1UL << asid_bits)
35+
#define ASID_FIRST_VERSION (1UL << 16)
3636

37-
#define NUM_USER_ASIDS ASID_FIRST_VERSION
37+
#define NUM_USER_ASIDS (1UL << asid_bits)
3838
#define ctxid2asid(asid) ((asid) & ~ASID_MASK)
3939
#define asid2ctxid(asid, genid) ((asid) | (genid))
4040

arch/arm64/mm/copypage.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ void copy_highpage(struct page *to, struct page *from)
3030
if (!system_supports_mte())
3131
return;
3232

33-
if (folio_test_hugetlb(src) &&
34-
folio_test_hugetlb_mte_tagged(src)) {
35-
if (!folio_try_hugetlb_mte_tagging(dst))
33+
if (folio_test_hugetlb(src)) {
34+
if (!folio_test_hugetlb_mte_tagged(src) ||
35+
from != folio_page(src, 0))
3636
return;
3737

38+
WARN_ON_ONCE(!folio_try_hugetlb_mte_tagging(dst));
39+
3840
/*
3941
* Populate tags for all subpages.
4042
*

arch/arm64/mm/init.c

+8-9
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,6 @@ static void __init arch_reserve_crashkernel(void)
117117

118118
static phys_addr_t __init max_zone_phys(phys_addr_t zone_limit)
119119
{
120-
/**
121-
* Information we get from firmware (e.g. DT dma-ranges) describe DMA
122-
* bus constraints. Devices using DMA might have their own limitations.
123-
* Some of them rely on DMA zone in low 32-bit memory. Keep low RAM
124-
* DMA zone on platforms that have RAM there.
125-
*/
126-
if (memblock_start_of_DRAM() < U32_MAX)
127-
zone_limit = min(zone_limit, U32_MAX);
128-
129120
return min(zone_limit, memblock_end_of_DRAM() - 1) + 1;
130121
}
131122

@@ -141,6 +132,14 @@ static void __init zone_sizes_init(void)
141132
acpi_zone_dma_limit = acpi_iort_dma_get_max_cpu_address();
142133
dt_zone_dma_limit = of_dma_get_max_cpu_address(NULL);
143134
zone_dma_limit = min(dt_zone_dma_limit, acpi_zone_dma_limit);
135+
/*
136+
* Information we get from firmware (e.g. DT dma-ranges) describe DMA
137+
* bus constraints. Devices using DMA might have their own limitations.
138+
* Some of them rely on DMA zone in low 32-bit memory. Keep low RAM
139+
* DMA zone on platforms that have RAM there.
140+
*/
141+
if (memblock_start_of_DRAM() < U32_MAX)
142+
zone_dma_limit = min(zone_dma_limit, U32_MAX);
144143
arm64_dma_phys_limit = max_zone_phys(zone_dma_limit);
145144
max_zone_pfns[ZONE_DMA] = PFN_DOWN(arm64_dma_phys_limit);
146145
#endif

drivers/acpi/arm64/iort.c

+2
Original file line numberDiff line numberDiff line change
@@ -1716,6 +1716,8 @@ static struct acpi_platform_list pmcg_plat_info[] __initdata = {
17161716
/* HiSilicon Hip09 Platform */
17171717
{"HISI ", "HIP09 ", 0, ACPI_SIG_IORT, greater_than_or_equal,
17181718
"Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09},
1719+
{"HISI ", "HIP09A ", 0, ACPI_SIG_IORT, greater_than_or_equal,
1720+
"Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09},
17191721
/* HiSilicon Hip10/11 Platform uses the same SMMU IP with Hip09 */
17201722
{"HISI ", "HIP10 ", 0, ACPI_SIG_IORT, greater_than_or_equal,
17211723
"Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09},

drivers/virt/coco/arm-cca-guest/Kconfig

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
config ARM_CCA_GUEST
22
tristate "Arm CCA Guest driver"
33
depends on ARM64
4-
default m
54
select TSM_REPORTS
65
help
76
The driver provides userspace interface to request and

drivers/virt/coco/pkvm-guest/arm-pkvm-guest.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,8 @@ static int mmio_guard_ioremap_hook(phys_addr_t phys, size_t size,
8787

8888
while (phys < end) {
8989
const int func_id = ARM_SMCCC_VENDOR_HYP_KVM_MMIO_GUARD_FUNC_ID;
90-
int err;
91-
92-
err = arm_smccc_do_one_page(func_id, phys);
93-
if (err)
94-
return err;
9590

91+
WARN_ON_ONCE(arm_smccc_do_one_page(func_id, phys));
9692
phys += PAGE_SIZE;
9793
}
9894

fs/hugetlbfs/inode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static int hugetlbfs_file_mmap(struct file *file, struct vm_area_struct *vma)
113113
* way when do_mmap unwinds (may be important on powerpc
114114
* and ia64).
115115
*/
116-
vm_flags_set(vma, VM_HUGETLB | VM_DONTEXPAND | VM_MTE_ALLOWED);
116+
vm_flags_set(vma, VM_HUGETLB | VM_DONTEXPAND);
117117
vma->vm_ops = &hugetlb_vm_ops;
118118

119119
ret = seal_check_write(info->seals, vma);

0 commit comments

Comments
 (0)