2019-05-29 07:17:58 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2014-08-19 20:41:43 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014, The Linux Foundation. All rights reserved.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/module.h>
|
2024-10-17 14:14:32 +01:00
|
|
|
#include <linux/mem_encrypt.h>
|
2014-08-19 20:41:43 +01:00
|
|
|
#include <linux/sched.h>
|
2016-01-27 10:50:19 +01:00
|
|
|
#include <linux/vmalloc.h>
|
2014-08-19 20:41:43 +01:00
|
|
|
|
2020-09-16 10:20:47 +08:00
|
|
|
#include <asm/cacheflush.h>
|
2024-10-17 14:14:32 +01:00
|
|
|
#include <asm/pgtable-prot.h>
|
2017-05-08 15:58:05 -07:00
|
|
|
#include <asm/set_memory.h>
|
2014-08-19 20:41:43 +01:00
|
|
|
#include <asm/tlbflush.h>
|
2023-03-17 23:29:34 +08:00
|
|
|
#include <asm/kfence.h>
|
2014-08-19 20:41:43 +01:00
|
|
|
|
|
|
|
struct page_change_data {
|
|
|
|
pgprot_t set_mask;
|
|
|
|
pgprot_t clear_mask;
|
|
|
|
};
|
|
|
|
|
arm64: mm: apply r/o permissions of VM areas to its linear alias as well
On arm64, we use block mappings and contiguous hints to map the linear
region, to minimize the TLB footprint. However, this means that the
entire region is mapped using read/write permissions, which we cannot
modify at page granularity without having to take intrusive measures to
prevent TLB conflicts.
This means the linear aliases of pages belonging to read-only mappings
(executable or otherwise) in the vmalloc region are also mapped read/write,
and could potentially be abused to modify things like module code, bpf JIT
code or other read-only data.
So let's fix this, by extending the set_memory_ro/rw routines to take
the linear alias into account. The consequence of enabling this is
that we can no longer use block mappings or contiguous hints, so in
cases where the TLB footprint of the linear region is a bottleneck,
performance may be affected.
Therefore, allow this feature to be runtime en/disabled, by setting
rodata=full (or 'on' to disable just this enhancement, or 'off' to
disable read-only mappings for code and r/o data entirely) on the
kernel command line. Also, allow the default value to be set via a
Kconfig option.
Tested-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
2018-11-07 11:36:20 +01:00
|
|
|
bool rodata_full __ro_after_init = IS_ENABLED(CONFIG_RODATA_FULL_DEFAULT_ENABLED);
|
|
|
|
|
2021-07-07 18:07:59 -07:00
|
|
|
bool can_set_direct_map(void)
|
|
|
|
{
|
2022-09-21 10:48:41 +03:00
|
|
|
/*
|
2024-10-17 14:14:32 +01:00
|
|
|
* rodata_full, DEBUG_PAGEALLOC and a Realm guest all require linear
|
|
|
|
* map to be mapped at page granularity, so that it is possible to
|
2022-09-21 10:48:41 +03:00
|
|
|
* protect/unprotect single pages.
|
2023-03-17 23:29:34 +08:00
|
|
|
*
|
|
|
|
* KFENCE pool requires page-granular mapping if initialized late.
|
2024-10-17 14:14:32 +01:00
|
|
|
*
|
|
|
|
* Realms need to make pages shared/protected at page granularity.
|
2022-09-21 10:48:41 +03:00
|
|
|
*/
|
2023-11-17 13:14:22 +00:00
|
|
|
return rodata_full || debug_pagealloc_enabled() ||
|
2024-10-17 14:14:32 +01:00
|
|
|
arm64_kfence_can_set_direct_map() || is_realm_world();
|
2021-07-07 18:07:59 -07:00
|
|
|
}
|
|
|
|
|
2019-07-11 20:58:43 -07:00
|
|
|
static int change_page_range(pte_t *ptep, unsigned long addr, void *data)
|
2014-08-19 20:41:43 +01:00
|
|
|
{
|
|
|
|
struct page_change_data *cdata = data;
|
2024-02-15 10:31:57 +00:00
|
|
|
pte_t pte = __ptep_get(ptep);
|
2014-08-19 20:41:43 +01:00
|
|
|
|
|
|
|
pte = clear_pte_bit(pte, cdata->clear_mask);
|
|
|
|
pte = set_pte_bit(pte, cdata->set_mask);
|
|
|
|
|
2024-02-15 10:31:57 +00:00
|
|
|
__set_pte(ptep, pte);
|
2014-08-19 20:41:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-05 16:24:47 -08:00
|
|
|
/*
|
|
|
|
* This function assumes that the range is mapped with PAGE_SIZE pages.
|
|
|
|
*/
|
|
|
|
static int __change_memory_common(unsigned long start, unsigned long size,
|
|
|
|
pgprot_t set_mask, pgprot_t clear_mask)
|
|
|
|
{
|
|
|
|
struct page_change_data data;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
data.set_mask = set_mask;
|
|
|
|
data.clear_mask = clear_mask;
|
|
|
|
|
|
|
|
ret = apply_to_page_range(&init_mm, start, size, change_page_range,
|
|
|
|
&data);
|
|
|
|
|
2024-10-17 14:14:31 +01:00
|
|
|
/*
|
|
|
|
* If the memory is being made valid without changing any other bits
|
|
|
|
* then a TLBI isn't required as a non-valid entry cannot be cached in
|
|
|
|
* the TLB.
|
|
|
|
*/
|
|
|
|
if (pgprot_val(set_mask) != PTE_VALID || pgprot_val(clear_mask))
|
|
|
|
flush_tlb_kernel_range(start, start + size);
|
2016-02-05 16:24:47 -08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-19 20:41:43 +01:00
|
|
|
static int change_memory_common(unsigned long addr, int numpages,
|
|
|
|
pgprot_t set_mask, pgprot_t clear_mask)
|
|
|
|
{
|
|
|
|
unsigned long start = addr;
|
2019-12-17 21:34:04 +08:00
|
|
|
unsigned long size = PAGE_SIZE * numpages;
|
2014-08-19 20:41:43 +01:00
|
|
|
unsigned long end = start + size;
|
2016-01-27 10:50:19 +01:00
|
|
|
struct vm_struct *area;
|
arm64: mm: apply r/o permissions of VM areas to its linear alias as well
On arm64, we use block mappings and contiguous hints to map the linear
region, to minimize the TLB footprint. However, this means that the
entire region is mapped using read/write permissions, which we cannot
modify at page granularity without having to take intrusive measures to
prevent TLB conflicts.
This means the linear aliases of pages belonging to read-only mappings
(executable or otherwise) in the vmalloc region are also mapped read/write,
and could potentially be abused to modify things like module code, bpf JIT
code or other read-only data.
So let's fix this, by extending the set_memory_ro/rw routines to take
the linear alias into account. The consequence of enabling this is
that we can no longer use block mappings or contiguous hints, so in
cases where the TLB footprint of the linear region is a bottleneck,
performance may be affected.
Therefore, allow this feature to be runtime en/disabled, by setting
rodata=full (or 'on' to disable just this enhancement, or 'off' to
disable read-only mappings for code and r/o data entirely) on the
kernel command line. Also, allow the default value to be set via a
Kconfig option.
Tested-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
2018-11-07 11:36:20 +01:00
|
|
|
int i;
|
2014-08-19 20:41:43 +01:00
|
|
|
|
2015-10-26 17:26:57 +06:00
|
|
|
if (!PAGE_ALIGNED(addr)) {
|
2014-09-11 23:10:32 +01:00
|
|
|
start &= PAGE_MASK;
|
|
|
|
end = start + size;
|
2014-08-19 20:41:43 +01:00
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
}
|
|
|
|
|
2016-01-27 10:50:19 +01:00
|
|
|
/*
|
|
|
|
* Kernel VA mappings are always live, and splitting live section
|
|
|
|
* mappings into page mappings may cause TLB conflicts. This means
|
|
|
|
* we have to ensure that changing the permission bits of the range
|
|
|
|
* we are operating on does not result in such splitting.
|
|
|
|
*
|
|
|
|
* Let's restrict ourselves to mappings created by vmalloc (or vmap).
|
|
|
|
* Those are guaranteed to consist entirely of page mappings, and
|
|
|
|
* splitting is never needed.
|
|
|
|
*
|
|
|
|
* So check whether the [addr, addr + size) interval is entirely
|
|
|
|
* covered by precisely one VM area that has the VM_ALLOC flag set.
|
|
|
|
*/
|
|
|
|
area = find_vm_area((void *)addr);
|
|
|
|
if (!area ||
|
2022-03-24 18:11:38 -07:00
|
|
|
end > (unsigned long)kasan_reset_tag(area->addr) + area->size ||
|
2016-01-27 10:50:19 +01:00
|
|
|
!(area->flags & VM_ALLOC))
|
2014-08-19 20:41:43 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
2016-01-26 15:47:25 +00:00
|
|
|
if (!numpages)
|
|
|
|
return 0;
|
|
|
|
|
arm64: mm: apply r/o permissions of VM areas to its linear alias as well
On arm64, we use block mappings and contiguous hints to map the linear
region, to minimize the TLB footprint. However, this means that the
entire region is mapped using read/write permissions, which we cannot
modify at page granularity without having to take intrusive measures to
prevent TLB conflicts.
This means the linear aliases of pages belonging to read-only mappings
(executable or otherwise) in the vmalloc region are also mapped read/write,
and could potentially be abused to modify things like module code, bpf JIT
code or other read-only data.
So let's fix this, by extending the set_memory_ro/rw routines to take
the linear alias into account. The consequence of enabling this is
that we can no longer use block mappings or contiguous hints, so in
cases where the TLB footprint of the linear region is a bottleneck,
performance may be affected.
Therefore, allow this feature to be runtime en/disabled, by setting
rodata=full (or 'on' to disable just this enhancement, or 'off' to
disable read-only mappings for code and r/o data entirely) on the
kernel command line. Also, allow the default value to be set via a
Kconfig option.
Tested-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
2018-11-07 11:36:20 +01:00
|
|
|
/*
|
|
|
|
* If we are manipulating read-only permissions, apply the same
|
|
|
|
* change to the linear mapping of the pages that back this VM area.
|
|
|
|
*/
|
2023-11-17 13:14:22 +00:00
|
|
|
if (rodata_full && (pgprot_val(set_mask) == PTE_RDONLY ||
|
arm64: mm: apply r/o permissions of VM areas to its linear alias as well
On arm64, we use block mappings and contiguous hints to map the linear
region, to minimize the TLB footprint. However, this means that the
entire region is mapped using read/write permissions, which we cannot
modify at page granularity without having to take intrusive measures to
prevent TLB conflicts.
This means the linear aliases of pages belonging to read-only mappings
(executable or otherwise) in the vmalloc region are also mapped read/write,
and could potentially be abused to modify things like module code, bpf JIT
code or other read-only data.
So let's fix this, by extending the set_memory_ro/rw routines to take
the linear alias into account. The consequence of enabling this is
that we can no longer use block mappings or contiguous hints, so in
cases where the TLB footprint of the linear region is a bottleneck,
performance may be affected.
Therefore, allow this feature to be runtime en/disabled, by setting
rodata=full (or 'on' to disable just this enhancement, or 'off' to
disable read-only mappings for code and r/o data entirely) on the
kernel command line. Also, allow the default value to be set via a
Kconfig option.
Tested-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
2018-11-07 11:36:20 +01:00
|
|
|
pgprot_val(clear_mask) == PTE_RDONLY)) {
|
|
|
|
for (i = 0; i < area->nr_pages; i++) {
|
|
|
|
__change_memory_common((u64)page_address(area->pages[i]),
|
|
|
|
PAGE_SIZE, set_mask, clear_mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 11:36:19 +01:00
|
|
|
/*
|
|
|
|
* Get rid of potentially aliasing lazily unmapped vm areas that may
|
|
|
|
* have permissions set that deviate from the ones we are setting here.
|
|
|
|
*/
|
|
|
|
vm_unmap_aliases();
|
|
|
|
|
2016-02-05 16:24:47 -08:00
|
|
|
return __change_memory_common(start, size, set_mask, clear_mask);
|
2014-08-19 20:41:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int set_memory_ro(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
return change_memory_common(addr, numpages,
|
|
|
|
__pgprot(PTE_RDONLY),
|
|
|
|
__pgprot(PTE_WRITE));
|
|
|
|
}
|
|
|
|
|
|
|
|
int set_memory_rw(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
return change_memory_common(addr, numpages,
|
|
|
|
__pgprot(PTE_WRITE),
|
|
|
|
__pgprot(PTE_RDONLY));
|
|
|
|
}
|
|
|
|
|
|
|
|
int set_memory_nx(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
return change_memory_common(addr, numpages,
|
|
|
|
__pgprot(PTE_PXN),
|
2020-05-06 20:51:33 +01:00
|
|
|
__pgprot(PTE_MAYBE_GP));
|
2014-08-19 20:41:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int set_memory_x(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
return change_memory_common(addr, numpages,
|
2020-05-06 20:51:33 +01:00
|
|
|
__pgprot(PTE_MAYBE_GP),
|
2014-08-19 20:41:43 +01:00
|
|
|
__pgprot(PTE_PXN));
|
|
|
|
}
|
2016-02-05 16:24:47 -08:00
|
|
|
|
2017-04-03 11:24:33 +09:00
|
|
|
int set_memory_valid(unsigned long addr, int numpages, int enable)
|
2016-02-05 16:24:47 -08:00
|
|
|
{
|
|
|
|
if (enable)
|
2017-04-03 11:24:33 +09:00
|
|
|
return __change_memory_common(addr, PAGE_SIZE * numpages,
|
2016-02-05 16:24:47 -08:00
|
|
|
__pgprot(PTE_VALID),
|
|
|
|
__pgprot(0));
|
|
|
|
else
|
2017-04-03 11:24:33 +09:00
|
|
|
return __change_memory_common(addr, PAGE_SIZE * numpages,
|
2016-02-05 16:24:47 -08:00
|
|
|
__pgprot(0),
|
|
|
|
__pgprot(PTE_VALID));
|
|
|
|
}
|
2017-04-03 11:24:33 +09:00
|
|
|
|
2019-05-23 11:22:54 +01:00
|
|
|
int set_direct_map_invalid_noflush(struct page *page)
|
|
|
|
{
|
|
|
|
struct page_change_data data = {
|
|
|
|
.set_mask = __pgprot(0),
|
|
|
|
.clear_mask = __pgprot(PTE_VALID),
|
|
|
|
};
|
|
|
|
|
2021-07-07 18:07:59 -07:00
|
|
|
if (!can_set_direct_map())
|
2019-05-23 11:22:54 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return apply_to_page_range(&init_mm,
|
|
|
|
(unsigned long)page_address(page),
|
|
|
|
PAGE_SIZE, change_page_range, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
int set_direct_map_default_noflush(struct page *page)
|
|
|
|
{
|
|
|
|
struct page_change_data data = {
|
|
|
|
.set_mask = __pgprot(PTE_VALID | PTE_WRITE),
|
|
|
|
.clear_mask = __pgprot(PTE_RDONLY),
|
|
|
|
};
|
|
|
|
|
2021-07-07 18:07:59 -07:00
|
|
|
if (!can_set_direct_map())
|
2019-05-23 11:22:54 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return apply_to_page_range(&init_mm,
|
|
|
|
(unsigned long)page_address(page),
|
|
|
|
PAGE_SIZE, change_page_range, &data);
|
|
|
|
}
|
|
|
|
|
2024-10-17 14:14:32 +01:00
|
|
|
static int __set_memory_enc_dec(unsigned long addr,
|
|
|
|
int numpages,
|
|
|
|
bool encrypt)
|
|
|
|
{
|
|
|
|
unsigned long set_prot = 0, clear_prot = 0;
|
|
|
|
phys_addr_t start, end;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!is_realm_world())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!__is_lm_address(addr))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
start = __virt_to_phys(addr);
|
|
|
|
end = start + numpages * PAGE_SIZE;
|
|
|
|
|
|
|
|
if (encrypt)
|
|
|
|
clear_prot = PROT_NS_SHARED;
|
|
|
|
else
|
|
|
|
set_prot = PROT_NS_SHARED;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Break the mapping before we make any changes to avoid stale TLB
|
|
|
|
* entries or Synchronous External Aborts caused by RIPAS_EMPTY
|
|
|
|
*/
|
|
|
|
ret = __change_memory_common(addr, PAGE_SIZE * numpages,
|
|
|
|
__pgprot(set_prot),
|
|
|
|
__pgprot(clear_prot | PTE_VALID));
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (encrypt)
|
|
|
|
ret = rsi_set_memory_range_protected(start, end);
|
|
|
|
else
|
|
|
|
ret = rsi_set_memory_range_shared(start, end);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return __change_memory_common(addr, PAGE_SIZE * numpages,
|
|
|
|
__pgprot(PTE_VALID),
|
|
|
|
__pgprot(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int realm_set_memory_encrypted(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
int ret = __set_memory_enc_dec(addr, numpages, true);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the request to change state fails, then the only sensible cause
|
|
|
|
* of action for the caller is to leak the memory
|
|
|
|
*/
|
|
|
|
WARN(ret, "Failed to encrypt memory, %d pages will be leaked",
|
|
|
|
numpages);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int realm_set_memory_decrypted(unsigned long addr, int numpages)
|
|
|
|
{
|
|
|
|
int ret = __set_memory_enc_dec(addr, numpages, false);
|
|
|
|
|
|
|
|
WARN(ret, "Failed to decrypt memory, %d pages will be leaked",
|
|
|
|
numpages);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct arm64_mem_crypt_ops realm_crypt_ops = {
|
|
|
|
.encrypt = realm_set_memory_encrypted,
|
|
|
|
.decrypt = realm_set_memory_decrypted,
|
|
|
|
};
|
|
|
|
|
|
|
|
int realm_register_memory_enc_ops(void)
|
|
|
|
{
|
|
|
|
return arm64_mem_crypt_ops_register(&realm_crypt_ops);
|
|
|
|
}
|
|
|
|
|
2024-10-23 19:27:08 +03:00
|
|
|
int set_direct_map_valid_noflush(struct page *page, unsigned nr, bool valid)
|
|
|
|
{
|
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
|
|
|
if (!can_set_direct_map())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return set_memory_valid(addr, nr, valid);
|
|
|
|
}
|
|
|
|
|
2020-12-14 19:10:30 -08:00
|
|
|
#ifdef CONFIG_DEBUG_PAGEALLOC
|
2024-11-23 09:58:07 -08:00
|
|
|
/*
|
|
|
|
* This is - apart from the return value - doing the same
|
|
|
|
* thing as the new set_direct_map_valid_noflush() function.
|
|
|
|
*
|
|
|
|
* Unify? Explain the conceptual differences?
|
|
|
|
*/
|
2017-04-03 11:24:33 +09:00
|
|
|
void __kernel_map_pages(struct page *page, int numpages, int enable)
|
|
|
|
{
|
2021-07-07 18:07:59 -07:00
|
|
|
if (!can_set_direct_map())
|
2019-05-23 11:22:54 +01:00
|
|
|
return;
|
|
|
|
|
2017-04-03 11:24:33 +09:00
|
|
|
set_memory_valid((unsigned long)page_address(page), numpages, enable);
|
|
|
|
}
|
2020-12-14 19:10:35 -08:00
|
|
|
#endif /* CONFIG_DEBUG_PAGEALLOC */
|
2019-05-23 11:22:54 +01:00
|
|
|
|
2016-08-24 18:27:30 +01:00
|
|
|
/*
|
2019-05-23 11:22:54 +01:00
|
|
|
* This function is used to determine if a linear map page has been marked as
|
2022-10-18 15:40:14 +08:00
|
|
|
* not-valid. Walk the page table and check the PTE_VALID bit.
|
2016-08-24 18:27:30 +01:00
|
|
|
*
|
|
|
|
* Because this is only called on the kernel linear map, p?d_sect() implies
|
|
|
|
* p?d_present(). When debug_pagealloc is enabled, sections mappings are
|
|
|
|
* disabled.
|
|
|
|
*/
|
|
|
|
bool kernel_page_present(struct page *page)
|
|
|
|
{
|
2018-02-15 11:14:56 +00:00
|
|
|
pgd_t *pgdp;
|
2020-06-04 16:46:23 -07:00
|
|
|
p4d_t *p4dp;
|
2018-02-15 11:14:56 +00:00
|
|
|
pud_t *pudp, pud;
|
|
|
|
pmd_t *pmdp, pmd;
|
|
|
|
pte_t *ptep;
|
2016-08-24 18:27:30 +01:00
|
|
|
unsigned long addr = (unsigned long)page_address(page);
|
|
|
|
|
2018-02-15 11:14:56 +00:00
|
|
|
pgdp = pgd_offset_k(addr);
|
|
|
|
if (pgd_none(READ_ONCE(*pgdp)))
|
2016-08-24 18:27:30 +01:00
|
|
|
return false;
|
|
|
|
|
2020-06-04 16:46:23 -07:00
|
|
|
p4dp = p4d_offset(pgdp, addr);
|
|
|
|
if (p4d_none(READ_ONCE(*p4dp)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
pudp = pud_offset(p4dp, addr);
|
2018-02-15 11:14:56 +00:00
|
|
|
pud = READ_ONCE(*pudp);
|
|
|
|
if (pud_none(pud))
|
2016-08-24 18:27:30 +01:00
|
|
|
return false;
|
2018-02-15 11:14:56 +00:00
|
|
|
if (pud_sect(pud))
|
2016-08-24 18:27:30 +01:00
|
|
|
return true;
|
|
|
|
|
2018-02-15 11:14:56 +00:00
|
|
|
pmdp = pmd_offset(pudp, addr);
|
|
|
|
pmd = READ_ONCE(*pmdp);
|
|
|
|
if (pmd_none(pmd))
|
2016-08-24 18:27:30 +01:00
|
|
|
return false;
|
2018-02-15 11:14:56 +00:00
|
|
|
if (pmd_sect(pmd))
|
2016-08-24 18:27:30 +01:00
|
|
|
return true;
|
|
|
|
|
2018-02-15 11:14:56 +00:00
|
|
|
ptep = pte_offset_kernel(pmdp, addr);
|
2024-02-15 10:31:57 +00:00
|
|
|
return pte_valid(__ptep_get(ptep));
|
2016-08-24 18:27:30 +01:00
|
|
|
}
|