Skip to content

Commit bde3397

Browse files
samitolvanenkees
authored andcommitted
arm64: use function_nocfi with __pa_symbol
With CONFIG_CFI_CLANG, the compiler replaces function address references with the address of the function's CFI jump table entry. This means that __pa_symbol(function) returns the physical address of the jump table entry, which can lead to address space confusion as the jump table points to the function's virtual address. Therefore, use the function_nocfi() macro to ensure we are always taking the address of the actual function instead. Signed-off-by: Sami Tolvanen <samitolvanen@google.com> Reviewed-by: Kees Cook <keescook@chromium.org> Acked-by: Mark Rutland <mark.rutland@arm.com> Tested-by: Nathan Chancellor <nathan@kernel.org> Signed-off-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20210408182843.1754385-14-samitolvanen@google.com
1 parent 4ecfca8 commit bde3397

6 files changed

Lines changed: 9 additions & 6 deletions

File tree

arch/arm64/include/asm/mmu_context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ static inline void cpu_replace_ttbr1(pgd_t *pgdp)
140140
ttbr1 |= TTBR_CNP_BIT;
141141
}
142142

143-
replace_phys = (void *)__pa_symbol(idmap_cpu_replace_ttbr1);
143+
replace_phys = (void *)__pa_symbol(function_nocfi(idmap_cpu_replace_ttbr1));
144144

145145
cpu_install_idmap();
146146
replace_phys(ttbr1);

arch/arm64/kernel/acpi_parking_protocol.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ static int acpi_parking_protocol_cpu_boot(unsigned int cpu)
9999
* that read this address need to convert this address to the
100100
* Boot-Loader's endianness before jumping.
101101
*/
102-
writeq_relaxed(__pa_symbol(secondary_entry), &mailbox->entry_point);
102+
writeq_relaxed(__pa_symbol(function_nocfi(secondary_entry)),
103+
&mailbox->entry_point);
103104
writel_relaxed(cpu_entry->gic_cpu_id, &mailbox->cpu_id);
104105

105106
arch_send_wakeup_ipi_mask(cpumask_of(cpu));

arch/arm64/kernel/cpu-reset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ static inline void __noreturn cpu_soft_restart(unsigned long entry,
2222

2323
unsigned long el2_switch = !is_kernel_in_hyp_mode() &&
2424
is_hyp_mode_available();
25-
restart = (void *)__pa_symbol(__cpu_soft_restart);
25+
restart = (void *)__pa_symbol(function_nocfi(__cpu_soft_restart));
2626

2727
cpu_install_idmap();
2828
restart(el2_switch, entry, arg0, arg1, arg2);

arch/arm64/kernel/cpufeature.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ kpti_install_ng_mappings(const struct arm64_cpu_capabilities *__unused)
14621462
if (arm64_use_ng_mappings)
14631463
return;
14641464

1465-
remap_fn = (void *)__pa_symbol(idmap_kpti_install_ng_mappings);
1465+
remap_fn = (void *)__pa_symbol(function_nocfi(idmap_kpti_install_ng_mappings));
14661466

14671467
cpu_install_idmap();
14681468
remap_fn(cpu, num_online_cpus(), __pa_symbol(swapper_pg_dir));

arch/arm64/kernel/psci.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ static int __init cpu_psci_cpu_prepare(unsigned int cpu)
3838

3939
static int cpu_psci_cpu_boot(unsigned int cpu)
4040
{
41-
int err = psci_ops.cpu_on(cpu_logical_map(cpu), __pa_symbol(secondary_entry));
41+
phys_addr_t pa_secondary_entry = __pa_symbol(function_nocfi(secondary_entry));
42+
int err = psci_ops.cpu_on(cpu_logical_map(cpu), pa_secondary_entry);
4243
if (err)
4344
pr_err("failed to boot CPU%d (%d)\n", cpu, err);
4445

arch/arm64/kernel/smp_spin_table.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ static int smp_spin_table_cpu_init(unsigned int cpu)
6666
static int smp_spin_table_cpu_prepare(unsigned int cpu)
6767
{
6868
__le64 __iomem *release_addr;
69+
phys_addr_t pa_holding_pen = __pa_symbol(function_nocfi(secondary_holding_pen));
6970

7071
if (!cpu_release_addr[cpu])
7172
return -ENODEV;
@@ -88,7 +89,7 @@ static int smp_spin_table_cpu_prepare(unsigned int cpu)
8889
* boot-loader's endianness before jumping. This is mandated by
8990
* the boot protocol.
9091
*/
91-
writeq_relaxed(__pa_symbol(secondary_holding_pen), release_addr);
92+
writeq_relaxed(pa_holding_pen, release_addr);
9293
__flush_dcache_area((__force void *)release_addr,
9394
sizeof(*release_addr));
9495

0 commit comments

Comments
 (0)