blob: 56b2f284b108e91f1e70b8573fffe37176a1a4e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dike95906b22008-02-04 22:31:20 -08002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
6#ifndef __PTRACE_USER_H__
7#define __PTRACE_USER_H__
8
Al Viro966e8032011-08-18 20:12:19 +01009#include <sys/ptrace.h>
10#include <sysdep/ptrace_user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12extern int ptrace_getregs(long pid, unsigned long *regs_out);
13extern int ptrace_setregs(long pid, unsigned long *regs_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/* syscall emulation path in ptrace */
16
17#ifndef PTRACE_SYSEMU
18#define PTRACE_SYSEMU 31
19#endif
20#ifndef PTRACE_SYSEMU_SINGLESTEP
21#define PTRACE_SYSEMU_SINGLESTEP 32
22#endif
23
24/* On architectures, that started to support PTRACE_O_TRACESYSGOOD
25 * in linux 2.4, there are two different definitions of
26 * PTRACE_SETOPTIONS: linux 2.4 uses 21 while linux 2.6 uses 0x4200.
27 * For binary compatibility, 2.6 also supports the old "21", named
28 * PTRACE_OLDSETOPTION. On these architectures, UML always must use
29 * "21", to ensure the kernel runs on 2.4 and 2.6 host without
30 * recompilation. So, we use PTRACE_OLDSETOPTIONS in UML.
31 * We also want to be able to build the kernel on 2.4, which doesn't
32 * have PTRACE_OLDSETOPTIONS. So, if it is missing, we declare
Anand Gadiyarfd589a82009-07-16 17:13:03 +020033 * PTRACE_OLDSETOPTIONS to be the same as PTRACE_SETOPTIONS.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
35 * On architectures, that start to support PTRACE_O_TRACESYSGOOD on
36 * linux 2.6, PTRACE_OLDSETOPTIONS never is defined, and also isn't
37 * supported by the host kernel. In that case, our trick lets us use
38 * the new 0x4200 with the name PTRACE_OLDSETOPTIONS.
39 */
40#ifndef PTRACE_OLDSETOPTIONS
41#define PTRACE_OLDSETOPTIONS PTRACE_SETOPTIONS
42#endif
43
44void set_using_sysemu(int value);
45int get_using_sysemu(void);
46extern int sysemu_supported;
47
48#define SELECT_PTRACE_OPERATION(sysemu_mode, singlestep_mode) \
49 (((int[3][3] ) { \
50 { PTRACE_SYSCALL, PTRACE_SYSCALL, PTRACE_SINGLESTEP }, \
51 { PTRACE_SYSEMU, PTRACE_SYSEMU, PTRACE_SINGLESTEP }, \
Jeff Dike95906b22008-02-04 22:31:20 -080052 { PTRACE_SYSEMU, PTRACE_SYSEMU_SINGLESTEP, \
53 PTRACE_SYSEMU_SINGLESTEP } }) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 [sysemu_mode][singlestep_mode])
55
56#endif