staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / arch / arm64 / kernel / sys_compat.c
blobf1cb649594271c09e7b35e58d7669c1dbe2eea87
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Based on arch/arm/kernel/sys_arm.c
5 * Copyright (C) People who wrote linux/arch/i386/kernel/sys_i386.c
6 * Copyright (C) 1995, 1996 Russell King.
7 * Copyright (C) 2012 ARM Ltd.
8 */
10 #include <linux/compat.h>
11 #include <linux/personality.h>
12 #include <linux/sched.h>
13 #include <linux/sched/signal.h>
14 #include <linux/slab.h>
15 #include <linux/syscalls.h>
16 #include <linux/uaccess.h>
18 #include <asm/cacheflush.h>
19 #include <asm/system_misc.h>
20 #include <asm/unistd.h>
22 static long
23 __do_compat_cache_op(unsigned long start, unsigned long end)
25 long ret;
27 do {
28 unsigned long chunk = min(PAGE_SIZE, end - start);
30 if (fatal_signal_pending(current))
31 return 0;
33 ret = __flush_cache_user_range(start, start + chunk);
34 if (ret)
35 return ret;
37 cond_resched();
38 start += chunk;
39 } while (start < end);
41 return 0;
44 static inline long
45 do_compat_cache_op(unsigned long start, unsigned long end, int flags)
47 if (end < start || flags)
48 return -EINVAL;
50 if (!access_ok((const void __user *)start, end - start))
51 return -EFAULT;
53 return __do_compat_cache_op(start, end);
56 * Handle all unrecognised system calls.
58 long compat_arm_syscall(struct pt_regs *regs, int scno)
60 void __user *addr;
62 switch (scno) {
64 * Flush a region from virtual address 'r0' to virtual address 'r1'
65 * _exclusive_. There is no alignment requirement on either address;
66 * user space does not need to know the hardware cache layout.
68 * r2 contains flags. It should ALWAYS be passed as ZERO until it
69 * is defined to be something else. For now we ignore it, but may
70 * the fires of hell burn in your belly if you break this rule. ;)
72 * (at a later date, we may want to allow this call to not flush
73 * various aspects of the cache. Passing '0' will guarantee that
74 * everything necessary gets flushed to maintain consistency in
75 * the specified region).
77 case __ARM_NR_compat_cacheflush:
78 return do_compat_cache_op(regs->regs[0], regs->regs[1], regs->regs[2]);
80 case __ARM_NR_compat_set_tls:
81 current->thread.uw.tp_value = regs->regs[0];
84 * Protect against register corruption from context switch.
85 * See comment in tls_thread_flush.
87 barrier();
88 write_sysreg(regs->regs[0], tpidrro_el0);
89 return 0;
91 default:
93 * Calls 0xf0xxx..0xf07ff are defined to return -ENOSYS
94 * if not implemented, rather than raising SIGILL. This
95 * way the calling program can gracefully determine whether
96 * a feature is supported.
98 if (scno < __ARM_NR_COMPAT_END)
99 return -ENOSYS;
100 break;
103 addr = (void __user *)instruction_pointer(regs) -
104 (compat_thumb_mode(regs) ? 2 : 4);
106 arm64_notify_die("Oops - bad compat syscall(2)", regs,
107 SIGILL, ILL_ILLTRP, addr, scno);
108 return 0;