cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/include/asm/syscall.h

/*
 * Access to user system call parameters and results
 *
 * Copyright (C) 2008-2009 Red Hat, Inc.  All rights reserved.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU General Public License v.2.
 *
 * See asm-generic/syscall.h for descriptions of what we must do here.
 */

#ifndef _ASM_X86_SYSCALL_H

#define _ASM_X86_SYSCALL_H

#include <uapi/linux/audit.h>
#include <linux/sched.h>
#include <linux/err.h>
#include <asm/asm-offsets.h>	/* For NR_syscalls */
#include <asm/thread_info.h>	/* for TS_COMPAT */
#include <asm/unistd.h>


typedef asmlinkage long (*sys_call_ptr_t)(unsigned long, unsigned long,
					  unsigned long, unsigned long,
					  unsigned long, unsigned long);
extern const sys_call_ptr_t sys_call_table[];

#if defined(CONFIG_X86_32)

#define ia32_sys_call_table sys_call_table

#define __NR_syscall_compat_max __NR_syscall_max

#define IA32_NR_syscalls NR_syscalls
#endif

#if defined(CONFIG_IA32_EMULATION)
extern const sys_call_ptr_t ia32_sys_call_table[];
#endif

/*
 * Only the low 32 bits of orig_ax are meaningful, so we return int.
 * This importantly ignores the high bits on 64-bit, so comparisons
 * sign-extend the low 32 bits.
 */

static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs) { return regs->orig_ax; }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath22100.00%2100.00%
Total22100.00%2100.00%


static inline void syscall_rollback(struct task_struct *task, struct pt_regs *regs) { regs->ax = regs->orig_ax; }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath25100.00%1100.00%
Total25100.00%1100.00%


static inline long syscall_get_error(struct task_struct *task, struct pt_regs *regs) { unsigned long error = regs->ax; #ifdef CONFIG_IA32_EMULATION /* * TS_COMPAT is set for 32-bit syscall entries and then * remains set until we return to user mode. */ if (task->thread.status & (TS_COMPAT|TS_I386_REGS_POKED)) /* * Sign-extend the value so (int)-EFOO becomes (long)-EFOO * and will match correctly in comparisons. */ error = (long) (int) error; #endif return IS_ERR_VALUE(error) ? error : 0; }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath5786.36%125.00%
Andrew Lutomirski69.09%250.00%
Petr Tesarik34.55%125.00%
Total66100.00%4100.00%


static inline long syscall_get_return_value(struct task_struct *task, struct pt_regs *regs) { return regs->ax; }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath22100.00%1100.00%
Total22100.00%1100.00%


static inline void syscall_set_return_value(struct task_struct *task, struct pt_regs *regs, int error, long val) { regs->ax = (long) error ?: val; }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath35100.00%1100.00%
Total35100.00%1100.00%

#ifdef CONFIG_X86_32
static inline void syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned int i, unsigned int n, unsigned long *args) { BUG_ON(i + n > 6); memcpy(args, &regs->bx + i, n * sizeof(args[0])); }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath61100.00%1100.00%
Total61100.00%1100.00%


static inline void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, unsigned int i, unsigned int n, const unsigned long *args) { BUG_ON(i + n > 6); memcpy(&regs->bx + i, args, n * sizeof(args[0])); }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath62100.00%1100.00%
Total62100.00%1100.00%


static inline int syscall_get_arch(void) { return AUDIT_ARCH_I386; }

Contributors

PersonTokensPropCommitsCommitProp
Will Drewry1191.67%150.00%
Eric Paris18.33%150.00%
Total12100.00%2100.00%

#else /* CONFIG_X86_64 */
static inline void syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned int i, unsigned int n, unsigned long *args) { # ifdef CONFIG_IA32_EMULATION if (task->thread.status & TS_COMPAT) switch (i) { case 0: if (!n--) break; *args++ = regs->bx; case 1: if (!n--) break; *args++ = regs->cx; case 2: if (!n--) break; *args++ = regs->dx; case 3: if (!n--) break; *args++ = regs->si; case 4: if (!n--) break; *args++ = regs->di; case 5: if (!n--) break; *args++ = regs->bp; case 6: if (!n--) break; default: BUG(); break; } else # endif switch (i) { case 0: if (!n--) break; *args++ = regs->di; case 1: if (!n--) break; *args++ = regs->si; case 2: if (!n--) break; *args++ = regs->dx; case 3: if (!n--) break; *args++ = regs->r10; case 4: if (!n--) break; *args++ = regs->r8; case 5: if (!n--) break; *args++ = regs->r9; case 6: if (!n--) break; default: BUG(); break; } }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath30299.34%266.67%
Andrew Lutomirski20.66%133.33%
Total304100.00%3100.00%


static inline void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, unsigned int i, unsigned int n, const unsigned long *args) { # ifdef CONFIG_IA32_EMULATION if (task->thread.status & TS_COMPAT) switch (i) { case 0: if (!n--) break; regs->bx = *args++; case 1: if (!n--) break; regs->cx = *args++; case 2: if (!n--) break; regs->dx = *args++; case 3: if (!n--) break; regs->si = *args++; case 4: if (!n--) break; regs->di = *args++; case 5: if (!n--) break; regs->bp = *args++; case 6: if (!n--) break; default: BUG(); break; } else # endif switch (i) { case 0: if (!n--) break; regs->di = *args++; case 1: if (!n--) break; regs->si = *args++; case 2: if (!n--) break; regs->dx = *args++; case 3: if (!n--) break; regs->r10 = *args++; case 4: if (!n--) break; regs->r8 = *args++; case 5: if (!n--) break; regs->r9 = *args++; case 6: if (!n--) break; default: BUG(); break; } }

Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath30399.34%266.67%
Andrew Lutomirski20.66%133.33%
Total305100.00%3100.00%


static inline int syscall_get_arch(void) { /* x32 tasks should be considered AUDIT_ARCH_X86_64. */ return in_ia32_syscall() ? AUDIT_ARCH_I386 : AUDIT_ARCH_X86_64; }

Contributors

PersonTokensPropCommitsCommitProp
Will Drewry1266.67%133.33%
Andrew Lutomirski527.78%133.33%
Eric Paris15.56%133.33%
Total18100.00%3100.00%

#endif /* CONFIG_X86_32 */ #endif /* _ASM_X86_SYSCALL_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Roland McGrath90987.49%318.75%
Andrew Lutomirski686.54%425.00%
Will Drewry292.79%16.25%
H. Peter Anvin100.96%318.75%
Andi Kleen90.87%16.25%
Petr Tesarik60.58%16.25%
Mike Frysinger50.48%16.25%
Eric Paris30.29%212.50%
Total1039100.00%16100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.