staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / arch / arm64 / mm / pageattr.c
blob03c53f16ee7767bf1028bad813209ee992774f42
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (c) 2014, The Linux Foundation. All rights reserved.
4 */
5 #include <linux/kernel.h>
6 #include <linux/mm.h>
7 #include <linux/module.h>
8 #include <linux/sched.h>
9 #include <linux/vmalloc.h>
11 #include <asm/pgtable.h>
12 #include <asm/set_memory.h>
13 #include <asm/tlbflush.h>
15 struct page_change_data {
16 pgprot_t set_mask;
17 pgprot_t clear_mask;
20 bool rodata_full __ro_after_init = IS_ENABLED(CONFIG_RODATA_FULL_DEFAULT_ENABLED);
22 static int change_page_range(pte_t *ptep, unsigned long addr, void *data)
24 struct page_change_data *cdata = data;
25 pte_t pte = READ_ONCE(*ptep);
27 pte = clear_pte_bit(pte, cdata->clear_mask);
28 pte = set_pte_bit(pte, cdata->set_mask);
30 set_pte(ptep, pte);
31 return 0;
35 * This function assumes that the range is mapped with PAGE_SIZE pages.
37 static int __change_memory_common(unsigned long start, unsigned long size,
38 pgprot_t set_mask, pgprot_t clear_mask)
40 struct page_change_data data;
41 int ret;
43 data.set_mask = set_mask;
44 data.clear_mask = clear_mask;
46 ret = apply_to_page_range(&init_mm, start, size, change_page_range,
47 &data);
49 flush_tlb_kernel_range(start, start + size);
50 return ret;
53 static int change_memory_common(unsigned long addr, int numpages,
54 pgprot_t set_mask, pgprot_t clear_mask)
56 unsigned long start = addr;
57 unsigned long size = PAGE_SIZE*numpages;
58 unsigned long end = start + size;
59 struct vm_struct *area;
60 int i;
62 if (!PAGE_ALIGNED(addr)) {
63 start &= PAGE_MASK;
64 end = start + size;
65 WARN_ON_ONCE(1);
69 * Kernel VA mappings are always live, and splitting live section
70 * mappings into page mappings may cause TLB conflicts. This means
71 * we have to ensure that changing the permission bits of the range
72 * we are operating on does not result in such splitting.
74 * Let's restrict ourselves to mappings created by vmalloc (or vmap).
75 * Those are guaranteed to consist entirely of page mappings, and
76 * splitting is never needed.
78 * So check whether the [addr, addr + size) interval is entirely
79 * covered by precisely one VM area that has the VM_ALLOC flag set.
81 area = find_vm_area((void *)addr);
82 if (!area ||
83 end > (unsigned long)area->addr + area->size ||
84 !(area->flags & VM_ALLOC))
85 return -EINVAL;
87 if (!numpages)
88 return 0;
91 * If we are manipulating read-only permissions, apply the same
92 * change to the linear mapping of the pages that back this VM area.
94 if (rodata_full && (pgprot_val(set_mask) == PTE_RDONLY ||
95 pgprot_val(clear_mask) == PTE_RDONLY)) {
96 for (i = 0; i < area->nr_pages; i++) {
97 __change_memory_common((u64)page_address(area->pages[i]),
98 PAGE_SIZE, set_mask, clear_mask);
103 * Get rid of potentially aliasing lazily unmapped vm areas that may
104 * have permissions set that deviate from the ones we are setting here.
106 vm_unmap_aliases();
108 return __change_memory_common(start, size, set_mask, clear_mask);
111 int set_memory_ro(unsigned long addr, int numpages)
113 return change_memory_common(addr, numpages,
114 __pgprot(PTE_RDONLY),
115 __pgprot(PTE_WRITE));
118 int set_memory_rw(unsigned long addr, int numpages)
120 return change_memory_common(addr, numpages,
121 __pgprot(PTE_WRITE),
122 __pgprot(PTE_RDONLY));
125 int set_memory_nx(unsigned long addr, int numpages)
127 return change_memory_common(addr, numpages,
128 __pgprot(PTE_PXN),
129 __pgprot(0));
131 EXPORT_SYMBOL_GPL(set_memory_nx);
133 int set_memory_x(unsigned long addr, int numpages)
135 return change_memory_common(addr, numpages,
136 __pgprot(0),
137 __pgprot(PTE_PXN));
139 EXPORT_SYMBOL_GPL(set_memory_x);
141 int set_memory_valid(unsigned long addr, int numpages, int enable)
143 if (enable)
144 return __change_memory_common(addr, PAGE_SIZE * numpages,
145 __pgprot(PTE_VALID),
146 __pgprot(0));
147 else
148 return __change_memory_common(addr, PAGE_SIZE * numpages,
149 __pgprot(0),
150 __pgprot(PTE_VALID));
153 int set_direct_map_invalid_noflush(struct page *page)
155 struct page_change_data data = {
156 .set_mask = __pgprot(0),
157 .clear_mask = __pgprot(PTE_VALID),
160 if (!rodata_full)
161 return 0;
163 return apply_to_page_range(&init_mm,
164 (unsigned long)page_address(page),
165 PAGE_SIZE, change_page_range, &data);
168 int set_direct_map_default_noflush(struct page *page)
170 struct page_change_data data = {
171 .set_mask = __pgprot(PTE_VALID | PTE_WRITE),
172 .clear_mask = __pgprot(PTE_RDONLY),
175 if (!rodata_full)
176 return 0;
178 return apply_to_page_range(&init_mm,
179 (unsigned long)page_address(page),
180 PAGE_SIZE, change_page_range, &data);
183 void __kernel_map_pages(struct page *page, int numpages, int enable)
185 if (!debug_pagealloc_enabled() && !rodata_full)
186 return;
188 set_memory_valid((unsigned long)page_address(page), numpages, enable);
192 * This function is used to determine if a linear map page has been marked as
193 * not-valid. Walk the page table and check the PTE_VALID bit. This is based
194 * on kern_addr_valid(), which almost does what we need.
196 * Because this is only called on the kernel linear map, p?d_sect() implies
197 * p?d_present(). When debug_pagealloc is enabled, sections mappings are
198 * disabled.
200 bool kernel_page_present(struct page *page)
202 pgd_t *pgdp;
203 pud_t *pudp, pud;
204 pmd_t *pmdp, pmd;
205 pte_t *ptep;
206 unsigned long addr = (unsigned long)page_address(page);
208 if (!debug_pagealloc_enabled() && !rodata_full)
209 return true;
211 pgdp = pgd_offset_k(addr);
212 if (pgd_none(READ_ONCE(*pgdp)))
213 return false;
215 pudp = pud_offset(pgdp, addr);
216 pud = READ_ONCE(*pudp);
217 if (pud_none(pud))
218 return false;
219 if (pud_sect(pud))
220 return true;
222 pmdp = pmd_offset(pudp, addr);
223 pmd = READ_ONCE(*pmdp);
224 if (pmd_none(pmd))
225 return false;
226 if (pmd_sect(pmd))
227 return true;
229 ptep = pte_offset_kernel(pmdp, addr);
230 return pte_valid(READ_ONCE(*ptep));