Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #ifndef __UM_PTRACE_GENERIC_H |
| 7 | #define __UM_PTRACE_GENERIC_H |
| 8 | |
| 9 | #ifndef __ASSEMBLY__ |
| 10 | |
Jeff Dike | e8df8c3 | 2006-09-25 23:33:10 -0700 | [diff] [blame] | 11 | #include "asm/arch/ptrace-abi.h" |
Jeff Dike | e8012b5 | 2007-10-16 01:27:16 -0700 | [diff] [blame] | 12 | #include <asm/user.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "sysdep/ptrace.h" |
| 14 | |
| 15 | struct pt_regs { |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 16 | struct uml_pt_regs regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | }; |
| 18 | |
Al Viro | 4d338e1 | 2006-03-31 02:30:15 -0800 | [diff] [blame] | 19 | #define EMPTY_REGS { .regs = EMPTY_UML_PT_REGS } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #define PT_REGS_IP(r) UPT_IP(&(r)->regs) |
| 22 | #define PT_REGS_SP(r) UPT_SP(&(r)->regs) |
| 23 | |
| 24 | #define PT_REG(r, reg) UPT_REG(&(r)->regs, reg) |
| 25 | #define PT_REGS_SET(r, reg, val) UPT_SET(&(r)->regs, reg, val) |
| 26 | |
| 27 | #define PT_REGS_SET_SYSCALL_RETURN(r, res) \ |
| 28 | UPT_SET_SYSCALL_RETURN(&(r)->regs, res) |
| 29 | #define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs) |
| 30 | |
| 31 | #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs) |
| 32 | |
| 33 | #define PT_REGS_SC(r) UPT_SC(&(r)->regs) |
| 34 | |
| 35 | #define instruction_pointer(regs) PT_REGS_IP(regs) |
| 36 | |
| 37 | struct task_struct; |
| 38 | |
Jeff Dike | e8012b5 | 2007-10-16 01:27:16 -0700 | [diff] [blame] | 39 | extern long subarch_ptrace(struct task_struct *child, long request, long addr, |
| 40 | long data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | extern unsigned long getreg(struct task_struct *child, int regno); |
| 42 | extern int putreg(struct task_struct *child, int regno, unsigned long value); |
Jeff Dike | e8012b5 | 2007-10-16 01:27:16 -0700 | [diff] [blame] | 43 | extern int get_fpregs(struct user_i387_struct __user *buf, |
| 44 | struct task_struct *child); |
| 45 | extern int set_fpregs(struct user_i387_struct __user *buf, |
| 46 | struct task_struct *child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | extern void show_regs(struct pt_regs *regs); |
| 49 | |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 50 | extern void send_sigtrap(struct task_struct *tsk, struct uml_pt_regs *regs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | int error_code); |
| 52 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 53 | extern int arch_copy_tls(struct task_struct *new); |
| 54 | extern void clear_flushed_tls(struct task_struct *task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | #endif |
| 57 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 58 | #endif |