arm64: mte: reset the page tag in page->flags
[linux-2.6-microblaze.git] / arch / arm64 / kernel / mte.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2020 ARM Ltd.
4  */
5
6 #include <linux/bitops.h>
7 #include <linux/kernel.h>
8 #include <linux/mm.h>
9 #include <linux/prctl.h>
10 #include <linux/sched.h>
11 #include <linux/sched/mm.h>
12 #include <linux/string.h>
13 #include <linux/swap.h>
14 #include <linux/swapops.h>
15 #include <linux/thread_info.h>
16 #include <linux/types.h>
17 #include <linux/uio.h>
18
19 #include <asm/barrier.h>
20 #include <asm/cpufeature.h>
21 #include <asm/mte.h>
22 #include <asm/mte-kasan.h>
23 #include <asm/ptrace.h>
24 #include <asm/sysreg.h>
25
26 static void mte_sync_page_tags(struct page *page, pte_t *ptep, bool check_swap)
27 {
28         pte_t old_pte = READ_ONCE(*ptep);
29
30         if (check_swap && is_swap_pte(old_pte)) {
31                 swp_entry_t entry = pte_to_swp_entry(old_pte);
32
33                 if (!non_swap_entry(entry) && mte_restore_tags(entry, page))
34                         return;
35         }
36
37         page_kasan_tag_reset(page);
38         /*
39          * We need smp_wmb() in between setting the flags and clearing the
40          * tags because if another thread reads page->flags and builds a
41          * tagged address out of it, there is an actual dependency to the
42          * memory access, but on the current thread we do not guarantee that
43          * the new page->flags are visible before the tags were updated.
44          */
45         smp_wmb();
46         mte_clear_page_tags(page_address(page));
47 }
48
49 void mte_sync_tags(pte_t *ptep, pte_t pte)
50 {
51         struct page *page = pte_page(pte);
52         long i, nr_pages = compound_nr(page);
53         bool check_swap = nr_pages == 1;
54
55         /* if PG_mte_tagged is set, tags have already been initialised */
56         for (i = 0; i < nr_pages; i++, page++) {
57                 if (!test_and_set_bit(PG_mte_tagged, &page->flags))
58                         mte_sync_page_tags(page, ptep, check_swap);
59         }
60 }
61
62 int memcmp_pages(struct page *page1, struct page *page2)
63 {
64         char *addr1, *addr2;
65         int ret;
66
67         addr1 = page_address(page1);
68         addr2 = page_address(page2);
69         ret = memcmp(addr1, addr2, PAGE_SIZE);
70
71         if (!system_supports_mte() || ret)
72                 return ret;
73
74         /*
75          * If the page content is identical but at least one of the pages is
76          * tagged, return non-zero to avoid KSM merging. If only one of the
77          * pages is tagged, set_pte_at() may zero or change the tags of the
78          * other page via mte_sync_tags().
79          */
80         if (test_bit(PG_mte_tagged, &page1->flags) ||
81             test_bit(PG_mte_tagged, &page2->flags))
82                 return addr1 != addr2;
83
84         return ret;
85 }
86
87 u8 mte_get_mem_tag(void *addr)
88 {
89         if (!system_supports_mte())
90                 return 0xFF;
91
92         asm(__MTE_PREAMBLE "ldg %0, [%0]"
93             : "+r" (addr));
94
95         return mte_get_ptr_tag(addr);
96 }
97
98 u8 mte_get_random_tag(void)
99 {
100         void *addr;
101
102         if (!system_supports_mte())
103                 return 0xFF;
104
105         asm(__MTE_PREAMBLE "irg %0, %0"
106             : "+r" (addr));
107
108         return mte_get_ptr_tag(addr);
109 }
110
111 void *mte_set_mem_tag_range(void *addr, size_t size, u8 tag)
112 {
113         void *ptr = addr;
114
115         if ((!system_supports_mte()) || (size == 0))
116                 return addr;
117
118         /* Make sure that size is MTE granule aligned. */
119         WARN_ON(size & (MTE_GRANULE_SIZE - 1));
120
121         /* Make sure that the address is MTE granule aligned. */
122         WARN_ON((u64)addr & (MTE_GRANULE_SIZE - 1));
123
124         tag = 0xF0 | tag;
125         ptr = (void *)__tag_set(ptr, tag);
126
127         mte_assign_mem_tag_range(ptr, size);
128
129         return ptr;
130 }
131
132 static void update_sctlr_el1_tcf0(u64 tcf0)
133 {
134         /* ISB required for the kernel uaccess routines */
135         sysreg_clear_set(sctlr_el1, SCTLR_EL1_TCF0_MASK, tcf0);
136         isb();
137 }
138
139 static void set_sctlr_el1_tcf0(u64 tcf0)
140 {
141         /*
142          * mte_thread_switch() checks current->thread.sctlr_tcf0 as an
143          * optimisation. Disable preemption so that it does not see
144          * the variable update before the SCTLR_EL1.TCF0 one.
145          */
146         preempt_disable();
147         current->thread.sctlr_tcf0 = tcf0;
148         update_sctlr_el1_tcf0(tcf0);
149         preempt_enable();
150 }
151
152 static void update_gcr_el1_excl(u64 incl)
153 {
154         u64 excl = ~incl & SYS_GCR_EL1_EXCL_MASK;
155
156         /*
157          * Note that 'incl' is an include mask (controlled by the user via
158          * prctl()) while GCR_EL1 accepts an exclude mask.
159          * No need for ISB since this only affects EL0 currently, implicit
160          * with ERET.
161          */
162         sysreg_clear_set_s(SYS_GCR_EL1, SYS_GCR_EL1_EXCL_MASK, excl);
163 }
164
165 static void set_gcr_el1_excl(u64 incl)
166 {
167         current->thread.gcr_user_incl = incl;
168         update_gcr_el1_excl(incl);
169 }
170
171 void flush_mte_state(void)
172 {
173         if (!system_supports_mte())
174                 return;
175
176         /* clear any pending asynchronous tag fault */
177         dsb(ish);
178         write_sysreg_s(0, SYS_TFSRE0_EL1);
179         clear_thread_flag(TIF_MTE_ASYNC_FAULT);
180         /* disable tag checking */
181         set_sctlr_el1_tcf0(SCTLR_EL1_TCF0_NONE);
182         /* reset tag generation mask */
183         set_gcr_el1_excl(0);
184 }
185
186 void mte_thread_switch(struct task_struct *next)
187 {
188         if (!system_supports_mte())
189                 return;
190
191         /* avoid expensive SCTLR_EL1 accesses if no change */
192         if (current->thread.sctlr_tcf0 != next->thread.sctlr_tcf0)
193                 update_sctlr_el1_tcf0(next->thread.sctlr_tcf0);
194         update_gcr_el1_excl(next->thread.gcr_user_incl);
195 }
196
197 void mte_suspend_exit(void)
198 {
199         if (!system_supports_mte())
200                 return;
201
202         update_gcr_el1_excl(current->thread.gcr_user_incl);
203 }
204
205 long set_mte_ctrl(struct task_struct *task, unsigned long arg)
206 {
207         u64 tcf0;
208         u64 gcr_incl = (arg & PR_MTE_TAG_MASK) >> PR_MTE_TAG_SHIFT;
209
210         if (!system_supports_mte())
211                 return 0;
212
213         switch (arg & PR_MTE_TCF_MASK) {
214         case PR_MTE_TCF_NONE:
215                 tcf0 = SCTLR_EL1_TCF0_NONE;
216                 break;
217         case PR_MTE_TCF_SYNC:
218                 tcf0 = SCTLR_EL1_TCF0_SYNC;
219                 break;
220         case PR_MTE_TCF_ASYNC:
221                 tcf0 = SCTLR_EL1_TCF0_ASYNC;
222                 break;
223         default:
224                 return -EINVAL;
225         }
226
227         if (task != current) {
228                 task->thread.sctlr_tcf0 = tcf0;
229                 task->thread.gcr_user_incl = gcr_incl;
230         } else {
231                 set_sctlr_el1_tcf0(tcf0);
232                 set_gcr_el1_excl(gcr_incl);
233         }
234
235         return 0;
236 }
237
238 long get_mte_ctrl(struct task_struct *task)
239 {
240         unsigned long ret;
241
242         if (!system_supports_mte())
243                 return 0;
244
245         ret = task->thread.gcr_user_incl << PR_MTE_TAG_SHIFT;
246
247         switch (task->thread.sctlr_tcf0) {
248         case SCTLR_EL1_TCF0_NONE:
249                 ret |= PR_MTE_TCF_NONE;
250                 break;
251         case SCTLR_EL1_TCF0_SYNC:
252                 ret |= PR_MTE_TCF_SYNC;
253                 break;
254         case SCTLR_EL1_TCF0_ASYNC:
255                 ret |= PR_MTE_TCF_ASYNC;
256                 break;
257         }
258
259         return ret;
260 }
261
262 /*
263  * Access MTE tags in another process' address space as given in mm. Update
264  * the number of tags copied. Return 0 if any tags copied, error otherwise.
265  * Inspired by __access_remote_vm().
266  */
267 static int __access_remote_tags(struct mm_struct *mm, unsigned long addr,
268                                 struct iovec *kiov, unsigned int gup_flags)
269 {
270         struct vm_area_struct *vma;
271         void __user *buf = kiov->iov_base;
272         size_t len = kiov->iov_len;
273         int ret;
274         int write = gup_flags & FOLL_WRITE;
275
276         if (!access_ok(buf, len))
277                 return -EFAULT;
278
279         if (mmap_read_lock_killable(mm))
280                 return -EIO;
281
282         while (len) {
283                 unsigned long tags, offset;
284                 void *maddr;
285                 struct page *page = NULL;
286
287                 ret = get_user_pages_remote(mm, addr, 1, gup_flags, &page,
288                                             &vma, NULL);
289                 if (ret <= 0)
290                         break;
291
292                 /*
293                  * Only copy tags if the page has been mapped as PROT_MTE
294                  * (PG_mte_tagged set). Otherwise the tags are not valid and
295                  * not accessible to user. Moreover, an mprotect(PROT_MTE)
296                  * would cause the existing tags to be cleared if the page
297                  * was never mapped with PROT_MTE.
298                  */
299                 if (!test_bit(PG_mte_tagged, &page->flags)) {
300                         ret = -EOPNOTSUPP;
301                         put_page(page);
302                         break;
303                 }
304
305                 /* limit access to the end of the page */
306                 offset = offset_in_page(addr);
307                 tags = min(len, (PAGE_SIZE - offset) / MTE_GRANULE_SIZE);
308
309                 maddr = page_address(page);
310                 if (write) {
311                         tags = mte_copy_tags_from_user(maddr + offset, buf, tags);
312                         set_page_dirty_lock(page);
313                 } else {
314                         tags = mte_copy_tags_to_user(buf, maddr + offset, tags);
315                 }
316                 put_page(page);
317
318                 /* error accessing the tracer's buffer */
319                 if (!tags)
320                         break;
321
322                 len -= tags;
323                 buf += tags;
324                 addr += tags * MTE_GRANULE_SIZE;
325         }
326         mmap_read_unlock(mm);
327
328         /* return an error if no tags copied */
329         kiov->iov_len = buf - kiov->iov_base;
330         if (!kiov->iov_len) {
331                 /* check for error accessing the tracee's address space */
332                 if (ret <= 0)
333                         return -EIO;
334                 else
335                         return -EFAULT;
336         }
337
338         return 0;
339 }
340
341 /*
342  * Copy MTE tags in another process' address space at 'addr' to/from tracer's
343  * iovec buffer. Return 0 on success. Inspired by ptrace_access_vm().
344  */
345 static int access_remote_tags(struct task_struct *tsk, unsigned long addr,
346                               struct iovec *kiov, unsigned int gup_flags)
347 {
348         struct mm_struct *mm;
349         int ret;
350
351         mm = get_task_mm(tsk);
352         if (!mm)
353                 return -EPERM;
354
355         if (!tsk->ptrace || (current != tsk->parent) ||
356             ((get_dumpable(mm) != SUID_DUMP_USER) &&
357              !ptracer_capable(tsk, mm->user_ns))) {
358                 mmput(mm);
359                 return -EPERM;
360         }
361
362         ret = __access_remote_tags(mm, addr, kiov, gup_flags);
363         mmput(mm);
364
365         return ret;
366 }
367
368 int mte_ptrace_copy_tags(struct task_struct *child, long request,
369                          unsigned long addr, unsigned long data)
370 {
371         int ret;
372         struct iovec kiov;
373         struct iovec __user *uiov = (void __user *)data;
374         unsigned int gup_flags = FOLL_FORCE;
375
376         if (!system_supports_mte())
377                 return -EIO;
378
379         if (get_user(kiov.iov_base, &uiov->iov_base) ||
380             get_user(kiov.iov_len, &uiov->iov_len))
381                 return -EFAULT;
382
383         if (request == PTRACE_POKEMTETAGS)
384                 gup_flags |= FOLL_WRITE;
385
386         /* align addr to the MTE tag granule */
387         addr &= MTE_GRANULE_MASK;
388
389         ret = access_remote_tags(child, addr, &kiov, gup_flags);
390         if (!ret)
391                 ret = put_user(kiov.iov_len, &uiov->iov_len);
392
393         return ret;
394 }