Release 4.18 arch/arm64/kernel/sys_compat.c
/*
* Based on arch/arm/kernel/sys_arm.c
*
* Copyright (C) People who wrote linux/arch/i386/kernel/sys_i386.c
* Copyright (C) 1995, 1996 Russell King.
* Copyright (C) 2012 ARM Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <linux/compat.h>
#include <linux/personality.h>
#include <linux/sched.h>
#include <linux/sched/signal.h>
#include <linux/slab.h>
#include <linux/syscalls.h>
#include <linux/uaccess.h>
#include <asm/cacheflush.h>
#include <asm/system_misc.h>
#include <asm/unistd.h>
static long
__do_compat_cache_op(unsigned long start, unsigned long end)
{
long ret;
do {
unsigned long chunk = min(PAGE_SIZE, end - start);
if (fatal_signal_pending(current))
return 0;
ret = __flush_cache_user_range(start, start + chunk);
if (ret)
return ret;
cond_resched();
start += chunk;
} while (start < end);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Murzin | 48 | 61.54% | 1 | 50.00% |
Will Deacon | 30 | 38.46% | 1 | 50.00% |
Total | 78 | 100.00% | 2 | 100.00% |
static inline long
do_compat_cache_op(unsigned long start, unsigned long end, int flags)
{
if (end < start || flags)
return -EINVAL;
if (!access_ok(VERIFY_READ, (const void __user *)start, end - start))
return -EFAULT;
return __do_compat_cache_op(start, end);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Murzin | 43 | 69.35% | 1 | 33.33% |
Will Deacon | 13 | 20.97% | 1 | 33.33% |
Robin Murphy | 6 | 9.68% | 1 | 33.33% |
Total | 62 | 100.00% | 3 | 100.00% |
/*
* Handle all unrecognised system calls.
*/
long compat_arm_syscall(struct pt_regs *regs)
{
siginfo_t info;
unsigned int no = regs->regs[7];
switch (no) {
/*
* Flush a region from virtual address 'r0' to virtual address 'r1'
* _exclusive_. There is no alignment requirement on either address;
* user space does not need to know the hardware cache layout.
*
* r2 contains flags. It should ALWAYS be passed as ZERO until it
* is defined to be something else. For now we ignore it, but may
* the fires of hell burn in your belly if you break this rule. ;)
*
* (at a later date, we may want to allow this call to not flush
* various aspects of the cache. Passing '0' will guarantee that
* everything necessary gets flushed to maintain consistency in
* the specified region).
*/
case __ARM_NR_compat_cacheflush:
return do_compat_cache_op(regs->regs[0], regs->regs[1], regs->regs[2]);
case __ARM_NR_compat_set_tls:
current->thread.uw.tp_value = regs->regs[0];
/*
* Protect against register corruption from context switch.
* See comment in tls_thread_flush.
*/
barrier();
write_sysreg(regs->regs[0], tpidrro_el0);
return 0;
default:
/*
* Calls 9f00xx..9f07ff are defined to return -ENOSYS
* if not implemented, rather than raising SIGILL. This
* way the calling program can gracefully determine whether
* a feature is supported.
*/
if ((no & 0xffff) <= 0x7ff)
return -ENOSYS;
break;
}
clear_siginfo(&info);
info.si_signo = SIGILL;
info.si_errno = 0;
info.si_code = ILL_ILLTRP;
info.si_addr = (void __user *)instruction_pointer(regs) -
(compat_thumb_mode(regs) ? 2 : 4);
arm64_notify_die("Oops - bad compat syscall(2)", regs, &info, no);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Will Deacon | 83 | 46.89% | 2 | 28.57% |
Michael Weiser | 73 | 41.24% | 1 | 14.29% |
Mark Rutland | 12 | 6.78% | 1 | 14.29% |
Eric W. Biedermann | 6 | 3.39% | 1 | 14.29% |
Dave P Martin | 2 | 1.13% | 1 | 14.29% |
Vladimir Murzin | 1 | 0.56% | 1 | 14.29% |
Total | 177 | 100.00% | 7 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Will Deacon | 151 | 43.27% | 2 | 20.00% |
Vladimir Murzin | 92 | 26.36% | 1 | 10.00% |
Michael Weiser | 76 | 21.78% | 1 | 10.00% |
Mark Rutland | 12 | 3.44% | 1 | 10.00% |
Robin Murphy | 6 | 1.72% | 1 | 10.00% |
Eric W. Biedermann | 6 | 1.72% | 1 | 10.00% |
Ingo Molnar | 3 | 0.86% | 1 | 10.00% |
Dave P Martin | 2 | 0.57% | 1 | 10.00% |
Catalin Marinas | 1 | 0.29% | 1 | 10.00% |
Total | 349 | 100.00% | 10 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.