2018-01-19 09:50:24 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* PowerPC Memory Protection Keys management
|
|
|
|
*
|
|
|
|
* Copyright 2017, Ram Pai, IBM Corporation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/pkeys.h>
|
|
|
|
|
|
|
|
DEFINE_STATIC_KEY_TRUE(pkey_disabled);
|
|
|
|
bool pkey_execute_disable_supported;
|
2018-01-19 09:50:25 +08:00
|
|
|
int pkeys_total; /* Total pkeys as per device tree */
|
|
|
|
u32 initial_allocation_mask; /* Bits set for reserved keys */
|
2018-01-19 09:50:24 +08:00
|
|
|
|
|
|
|
int pkey_initialize(void)
|
|
|
|
{
|
2018-01-19 09:50:25 +08:00
|
|
|
int os_reserved, i;
|
|
|
|
|
2018-01-19 09:50:24 +08:00
|
|
|
/*
|
|
|
|
* Disable the pkey system till everything is in place. A subsequent
|
|
|
|
* patch will enable it.
|
|
|
|
*/
|
|
|
|
static_branch_enable(&pkey_disabled);
|
|
|
|
|
2018-01-19 09:50:25 +08:00
|
|
|
/* Lets assume 32 keys */
|
|
|
|
pkeys_total = 32;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust the upper limit, based on the number of bits supported by
|
|
|
|
* arch-neutral code.
|
|
|
|
*/
|
|
|
|
pkeys_total = min_t(int, pkeys_total,
|
|
|
|
(ARCH_VM_PKEY_FLAGS >> VM_PKEY_SHIFT));
|
|
|
|
|
2018-01-19 09:50:24 +08:00
|
|
|
/*
|
|
|
|
* Disable execute_disable support for now. A subsequent patch will
|
|
|
|
* enable it.
|
|
|
|
*/
|
|
|
|
pkey_execute_disable_supported = false;
|
2018-01-19 09:50:25 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC_4K_PAGES
|
|
|
|
/*
|
|
|
|
* The OS can manage only 8 pkeys due to its inability to represent them
|
|
|
|
* in the Linux 4K PTE.
|
|
|
|
*/
|
|
|
|
os_reserved = pkeys_total - 8;
|
|
|
|
#else
|
|
|
|
os_reserved = 0;
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Bits are in LE format. NOTE: 1, 0 are reserved.
|
|
|
|
* key 0 is the default key, which allows read/write/execute.
|
|
|
|
* key 1 is recommended not to be used. PowerISA(3.0) page 1015,
|
|
|
|
* programming note.
|
|
|
|
*/
|
|
|
|
initial_allocation_mask = ~0x0;
|
|
|
|
for (i = 2; i < (pkeys_total - os_reserved); i++)
|
|
|
|
initial_allocation_mask &= ~(0x1 << i);
|
2018-01-19 09:50:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
arch_initcall(pkey_initialize);
|
2018-01-19 09:50:25 +08:00
|
|
|
|
|
|
|
void pkey_mm_init(struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
if (static_branch_likely(&pkey_disabled))
|
|
|
|
return;
|
|
|
|
mm_pkey_allocation_map(mm) = initial_allocation_mask;
|
|
|
|
}
|
2018-01-19 09:50:26 +08:00
|
|
|
|
|
|
|
static inline u64 read_amr(void)
|
|
|
|
{
|
|
|
|
return mfspr(SPRN_AMR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void write_amr(u64 value)
|
|
|
|
{
|
|
|
|
mtspr(SPRN_AMR, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u64 read_iamr(void)
|
|
|
|
{
|
|
|
|
if (!likely(pkey_execute_disable_supported))
|
|
|
|
return 0x0UL;
|
|
|
|
|
|
|
|
return mfspr(SPRN_IAMR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void write_iamr(u64 value)
|
|
|
|
{
|
|
|
|
if (!likely(pkey_execute_disable_supported))
|
|
|
|
return;
|
|
|
|
|
|
|
|
mtspr(SPRN_IAMR, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u64 read_uamor(void)
|
|
|
|
{
|
|
|
|
return mfspr(SPRN_UAMOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void write_uamor(u64 value)
|
|
|
|
{
|
|
|
|
mtspr(SPRN_UAMOR, value);
|
|
|
|
}
|