forked from nelhage/reptyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ptrace.h
100 lines (93 loc) · 3.51 KB
/
ptrace.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
* Copyright (C) 2011 by Nelson Elhage
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <sys/ptrace.h>
#include <sys/user.h>
#include <unistd.h>
/*
* See https://github.com/nelhage/reptyr/issues/25 and
* https://github.com/nelhage/reptyr/issues/26.
*
* Older glibc's don't define PTRACE_{SETOPTIONS,GETEVENTMSG}, (but do
* in linux/ptrace.h), but on newer systems sys/ptrace.h and
* linux/ptrace.h conflict. If we were using autoconf or something, we
* could potentially detect the right headers at configure-time, but
* I'd like to avoid adding autoconf. These numbers can't ever change
* for ABI-compatibility reasons, at least.
*/
#ifndef PTRACE_SETOPTIONS
#define PTRACE_SETOPTIONS 0x4200
#endif
#ifndef PTRACE_GETEVENTMSG
#define PTRACE_GETEVENTMSG 0x4201
#endif
enum child_state {
ptrace_detached = 0,
ptrace_at_syscall,
ptrace_after_syscall,
ptrace_running,
ptrace_stopped,
ptrace_exited
};
struct ptrace_child {
pid_t pid;
enum child_state state;
int personality;
int status;
int error;
unsigned long forked_pid;
struct user user;
unsigned long saved_syscall;
};
struct syscall_numbers {
long nr_mmap;
long nr_mmap2;
long nr_munmap;
long nr_getsid;
long nr_setsid;
long nr_setpgid;
long nr_fork;
long nr_wait4;
long nr_signal;
long nr_rt_sigaction;
long nr_open;
long nr_close;
long nr_ioctl;
long nr_dup2;
};
typedef unsigned long child_addr_t;
int ptrace_wait(struct ptrace_child *child);
int ptrace_attach_child(struct ptrace_child *child, pid_t pid);
int ptrace_finish_attach(struct ptrace_child *child, pid_t pid);
int ptrace_detach_child(struct ptrace_child *child);
int ptrace_wait(struct ptrace_child *child);
int ptrace_advance_to_state(struct ptrace_child *child,
enum child_state desired);
int ptrace_save_regs(struct ptrace_child *child);
int ptrace_restore_regs(struct ptrace_child *child);
unsigned long ptrace_remote_syscall(struct ptrace_child *child,
unsigned long sysno,
unsigned long p0, unsigned long p1,
unsigned long p2, unsigned long p3,
unsigned long p4, unsigned long p5);
int ptrace_memcpy_to_child(struct ptrace_child *, child_addr_t, const void*, size_t);
int ptrace_memcpy_from_child(struct ptrace_child *, void*, child_addr_t, size_t);
struct syscall_numbers *ptrace_syscall_numbers(struct ptrace_child *child);