cregit-Linux how code gets into the kernel

Release 4.7 arch/x86/um/ptrace_32.c

Directory: arch/x86/um
/*
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <linux/mm.h>
#include <linux/sched.h>
#include <asm/uaccess.h>
#include <asm/ptrace-abi.h>
#include <skas.h>

extern int arch_switch_tls(struct task_struct *to);


void arch_switch_to(struct task_struct *to) { int err = arch_switch_tls(to); if (!err) return; if (err != -EINVAL) printk(KERN_WARNING "arch_switch_tls failed, errno %d, " "not EINVAL\n", -err); else printk(KERN_WARNING "arch_switch_tls failed, errno = EINVAL\n"); }

Contributors

PersonTokensPropCommitsCommitProp
paolo giarrussopaolo giarrusso4389.58%360.00%
jeff dikejeff dike510.42%240.00%
Total48100.00%5100.00%


int is_syscall(unsigned long addr) { unsigned short instr; int n; n = copy_from_user(&instr, (void __user *) addr, sizeof(instr)); if (n) { /* access_process_vm() grants access to vsyscall and stub, * while copy_from_user doesn't. Maybe access_process_vm is * slow, but that doesn't matter, since it will be called only * in case of singlestepping, if copy_from_user failed. */ n = access_process_vm(current, addr, &instr, sizeof(instr), 0); if (n != sizeof(instr)) { printk(KERN_ERR "is_syscall : failed to read " "instruction from 0x%lx\n", addr); return 1; } } /* int 0x80 or sysenter */ return (instr == 0x80cd) || (instr == 0x340f); }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike6767.68%583.33%
bodo stroesserbodo stroesser3232.32%116.67%
Total99100.00%6100.00%

/* determines which flags the user has access to. */ /* 1 = access 0 = no access */ #define FLAG_MASK 0x00044dd5 static const int reg_offsets[] = { [EBX] = HOST_BX, [ECX] = HOST_CX, [EDX] = HOST_DX, [ESI] = HOST_SI, [EDI] = HOST_DI, [EBP] = HOST_BP, [EAX] = HOST_AX, [DS] = HOST_DS, [ES] = HOST_ES, [FS] = HOST_FS, [GS] = HOST_GS, [EIP] = HOST_IP, [CS] = HOST_CS, [EFL] = HOST_EFLAGS, [UESP] = HOST_SP, [SS] = HOST_SS, [ORIG_EAX] = HOST_ORIG_AX, };
int putreg(struct task_struct *child, int regno, unsigned long value) { regno >>= 2; switch (regno) { case EBX: case ECX: case EDX: case ESI: case EDI: case EBP: case EAX: case EIP: case UESP: case ORIG_EAX: break; case FS: if (value && (value & 3) != 3) return -EIO; break; case GS: if (value && (value & 3) != 3) return -EIO; break; case DS: case ES: if (value && (value & 3) != 3) return -EIO; value &= 0xffff; break; case SS: case CS: if ((value & 3) != 3) return -EIO; value &= 0xffff; break; case EFL: value &= FLAG_MASK; child->thread.regs.regs.gp[HOST_EFLAGS] |= value; return 0; default : panic("Bad register in putreg() : %d\n", regno); } child->thread.regs.regs.gp[reg_offsets[regno]] = value; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike13867.65%133.33%
al viroal viro6330.88%133.33%
mickael salaunmickael salaun31.47%133.33%
Total204100.00%3100.00%


int poke_user(struct task_struct *child, long addr, long data) { if ((addr & 3) || addr < 0) return -EIO; if (addr < MAX_REG_OFFSET) return putreg(child, addr, data); else if ((addr >= offsetof(struct user, u_debugreg[0])) && (addr <= offsetof(struct user, u_debugreg[7]))) { addr -= offsetof(struct user, u_debugreg[0]); addr = addr >> 2; if ((addr == 4) || (addr == 5)) return -EIO; child->thread.arch.debugregs[addr] = data; return 0; } return -EIO; }

Contributors

PersonTokensPropCommitsCommitProp
bodo stroesserbodo stroesser140100.00%1100.00%
Total140100.00%1100.00%


unsigned long getreg(struct task_struct *child, int regno) { unsigned long mask = ~0UL; regno >>= 2; switch (regno) { case FS: case GS: case DS: case ES: case SS: case CS: mask = 0xffff; break; case EIP: case UESP: case EAX: case EBX: case ECX: case EDX: case ESI: case EDI: case EBP: case EFL: case ORIG_EAX: break; default: panic("Bad register in getreg() : %d\n", regno); } return mask & child->thread.regs.regs.gp[reg_offsets[regno]]; }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike6052.17%133.33%
al viroal viro5245.22%133.33%
mickael salaunmickael salaun32.61%133.33%
Total115100.00%3100.00%

/* read the word at location addr in the USER area. */
int peek_user(struct task_struct *child, long addr, long data) { unsigned long tmp; if ((addr & 3) || addr < 0) return -EIO; tmp = 0; /* Default return condition */ if (addr < MAX_REG_OFFSET) { tmp = getreg(child, addr); } else if ((addr >= offsetof(struct user, u_debugreg[0])) && (addr <= offsetof(struct user, u_debugreg[7]))) { addr -= offsetof(struct user, u_debugreg[0]); addr = addr >> 2; tmp = child->thread.arch.debugregs[addr]; } return put_user(tmp, (unsigned long __user *) data); }

Contributors

PersonTokensPropCommitsCommitProp
bodo stroesserbodo stroesser13899.28%150.00%
al viroal viro10.72%150.00%
Total139100.00%2100.00%


static int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child) { int err, n, cpu = ((struct thread_info *) child->stack)->cpu; struct user_i387_struct fpregs; err = save_i387_registers(userspace_pid[cpu], (unsigned long *) &fpregs); if (err) return err; n = copy_to_user(buf, &fpregs, sizeof(fpregs)); if(n > 0) return -EFAULT; return n; }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike9297.87%571.43%
eli coopereli cooper11.06%114.29%
al viroal viro11.06%114.29%
Total94100.00%7100.00%


static int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child) { int n, cpu = ((struct thread_info *) child->stack)->cpu; struct user_i387_struct fpregs; n = copy_from_user(&fpregs, buf, sizeof(fpregs)); if (n > 0) return -EFAULT; return restore_i387_registers(userspace_pid[cpu], (unsigned long *) &fpregs); }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike7997.53%466.67%
eli coopereli cooper11.23%116.67%
al viroal viro11.23%116.67%
Total81100.00%6100.00%


static int get_fpxregs(struct user_fxsr_struct __user *buf, struct task_struct *child) { int err, n, cpu = ((struct thread_info *) child->stack)->cpu; struct user_fxsr_struct fpregs; err = save_fpx_registers(userspace_pid[cpu], (unsigned long *) &fpregs); if (err) return err; n = copy_to_user(buf, &fpregs, sizeof(fpregs)); if(n > 0) return -EFAULT; return n; }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike9398.94%480.00%
al viroal viro11.06%120.00%
Total94100.00%5100.00%


static int set_fpxregs(struct user_fxsr_struct __user *buf, struct task_struct *child) { int n, cpu = ((struct thread_info *) child->stack)->cpu; struct user_fxsr_struct fpregs; n = copy_from_user(&fpregs, buf, sizeof(fpregs)); if (n > 0) return -EFAULT; return restore_fpx_registers(userspace_pid[cpu], (unsigned long *) &fpregs); }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike8098.77%375.00%
al viroal viro11.23%125.00%
Total81100.00%4100.00%


long subarch_ptrace(struct task_struct *child, long request, unsigned long addr, unsigned long data) { int ret = -EIO; void __user *datap = (void __user *) data; switch (request) { case PTRACE_GETFPREGS: /* Get the child FPU state. */ ret = get_fpregs(datap, child); break; case PTRACE_SETFPREGS: /* Set the child FPU state. */ ret = set_fpregs(datap, child); break; case PTRACE_GETFPXREGS: /* Get the child FPU state. */ ret = get_fpxregs(datap, child); break; case PTRACE_SETFPXREGS: /* Set the child FPU state. */ ret = set_fpxregs(datap, child); break; default: ret = -EIO; } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
al viroal viro8678.18%250.00%
jeff dikejeff dike2220.00%125.00%
namhyung kimnamhyung kim21.82%125.00%
Total110100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike66048.96%1040.00%
al viroal viro31423.29%624.00%
bodo stroesserbodo stroesser31223.15%28.00%
paolo giarrussopaolo giarrusso433.19%312.00%
mickael salaunmickael salaun120.89%14.00%
richard weinbergerrichard weinberger30.22%14.00%
eli coopereli cooper20.15%14.00%
namhyung kimnamhyung kim20.15%14.00%
Total1348100.00%25100.00%
Directory: arch/x86/um
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}