forked from strace/strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclone.c
299 lines (253 loc) · 7.2 KB
/
clone.c
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*
* Copyright (c) 1999-2000 Wichert Akkerman <wichert@cistron.nl>
* Copyright (c) 2002-2005 Roland McGrath <roland@redhat.com>
* Copyright (c) 2008 Jan Kratochvil <jan.kratochvil@redhat.com>
* Copyright (c) 2009-2013 Denys Vlasenko <dvlasenk@redhat.com>
* Copyright (c) 2006-2015 Dmitry V. Levin <ldv@altlinux.org>
* Copyright (c) 2014-2020 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
#include <sched.h>
#include "scno.h"
#ifndef CSIGNAL
# define CSIGNAL 0x000000ff
#endif
#include "print_fields.h"
#include "xlat/clone_flags.h"
#include "xlat/clone3_flags.h"
#include "xlat/setns_types.h"
#include "xlat/unshare_flags.h"
#if defined IA64
# define ARG_FLAGS 0
# define ARG_STACK 1
# define ARG_STACKSIZE (shuffle_scno(tcp->scno) == __NR_clone2 ? 2 : -1)
# define ARG_PTID (shuffle_scno(tcp->scno) == __NR_clone2 ? 3 : 2)
# define ARG_CTID (shuffle_scno(tcp->scno) == __NR_clone2 ? 4 : 3)
# define ARG_TLS (shuffle_scno(tcp->scno) == __NR_clone2 ? 5 : 4)
#elif defined S390 || defined S390X
# define ARG_STACK 0
# define ARG_FLAGS 1
# define ARG_PTID 2
# define ARG_CTID 3
# define ARG_TLS 4
#elif defined X86_64 || defined X32
/* x86 personality processes have the last two arguments flipped. */
# define ARG_FLAGS 0
# define ARG_STACK 1
# define ARG_PTID 2
# define ARG_CTID ((current_personality != 1) ? 3 : 4)
# define ARG_TLS ((current_personality != 1) ? 4 : 3)
#elif defined ALPHA || defined TILE || defined OR1K || defined CSKY
# define ARG_FLAGS 0
# define ARG_STACK 1
# define ARG_PTID 2
# define ARG_CTID 3
# define ARG_TLS 4
#else
# define ARG_FLAGS 0
# define ARG_STACK 1
# define ARG_PTID 2
# define ARG_TLS 3
# define ARG_CTID 4
#endif
static void
print_tls_arg(struct tcb *const tcp, const kernel_ulong_t addr)
{
#ifdef HAVE_STRUCT_USER_DESC
if ((SUPPORTED_PERSONALITIES == 1) || (current_personality == 1))
{
print_user_desc(tcp, addr, USER_DESC_BOTH);
}
else
#endif /* HAVE_STRUCT_USER_DESC */
{
printaddr(addr);
}
}
SYS_FUNC(clone)
{
const kernel_ulong_t flags = tcp->u_arg[ARG_FLAGS] & ~CSIGNAL;
if (entering(tcp)) {
const unsigned int sig = tcp->u_arg[ARG_FLAGS] & CSIGNAL;
tprints("child_stack=");
printaddr(tcp->u_arg[ARG_STACK]);
tprints(", ");
#ifdef ARG_STACKSIZE
if (ARG_STACKSIZE != -1)
tprintf("stack_size=%#" PRI_klx ", ",
tcp->u_arg[ARG_STACKSIZE]);
#endif
tprints("flags=");
if (flags) {
printflags64(clone_flags, flags, "CLONE_???");
if (sig) {
tprints("|");
printsignal(sig);
}
} else {
printsignal(sig);
}
/*
* TODO on syscall entry:
* We can clear CLONE_PTRACE here since it is an ancient hack
* to allow us to catch children, and we use another hack for that.
* But CLONE_PTRACE can conceivably be used by malicious programs
* to subvert us. By clearing this bit, we can defend against it:
* in untraced execution, CLONE_PTRACE should have no effect.
*
* We can also clear CLONE_UNTRACED, since it allows to start
* children outside of our control. At the moment
* I'm trying to figure out whether there is a *legitimate*
* use of this flag which we should respect.
*/
if ((flags & (CLONE_PARENT_SETTID|CLONE_PIDFD|CLONE_CHILD_SETTID
|CLONE_CHILD_CLEARTID|CLONE_SETTLS)) == 0)
return RVAL_DECODED;
} else {
if (flags & (CLONE_PARENT_SETTID|CLONE_PIDFD)) {
kernel_ulong_t addr = tcp->u_arg[ARG_PTID];
tprints(", parent_tid=");
if (flags & CLONE_PARENT_SETTID)
printnum_int(tcp, addr, "%u");
else
printnum_fd(tcp, addr);
}
if (flags & CLONE_SETTLS) {
tprints(", tls=");
print_tls_arg(tcp, tcp->u_arg[ARG_TLS]);
}
if (flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID)) {
tprints(", child_tidptr=");
printaddr(tcp->u_arg[ARG_CTID]);
}
}
return 0;
}
struct strace_clone_args {
uint64_t flags;
uint64_t /* fd * */ pidfd;
uint64_t /* pid_t * */ child_tid;
uint64_t /* pid_t * */ parent_tid;
uint64_t /* int */ exit_signal;
uint64_t /* void * */ stack;
uint64_t stack_size;
uint64_t /* struct user_desc * / void * */ tls;
uint64_t /* pid_t * */ set_tid;
uint64_t set_tid_size;
};
SYS_FUNC(clone3)
{
static const size_t minsz = offsetofend(struct strace_clone_args, tls);
const kernel_ulong_t addr = tcp->u_arg[0];
const kernel_ulong_t size = tcp->u_arg[1];
struct strace_clone_args arg = { 0 };
kernel_ulong_t fetch_size;
fetch_size = MIN(size, sizeof(arg));
if (entering(tcp)) {
if (fetch_size < minsz) {
printaddr(addr);
goto out;
} else if (umoven_or_printaddr(tcp, addr, fetch_size, &arg)) {
goto out;
}
tprints("{flags=");
printflags_ex(arg.flags, "CLONE_???", XLAT_STYLE_DEFAULT,
clone_flags, clone3_flags, NULL);
if (arg.flags & CLONE_PIDFD)
PRINT_FIELD_ADDR64(", ", arg, pidfd);
if (arg.flags & (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID))
PRINT_FIELD_ADDR64(", ", arg, child_tid);
if (arg.flags & CLONE_PARENT_SETTID)
PRINT_FIELD_ADDR64(", ", arg, parent_tid);
tprints(", exit_signal=");
if (arg.exit_signal < INT_MAX)
printsignal(arg.exit_signal);
else
tprintf("%" PRIu64, arg.exit_signal);
PRINT_FIELD_ADDR64(", ", arg, stack);
PRINT_FIELD_X(", ", arg, stack_size);
if (arg.flags & CLONE_SETTLS) {
tprints(", tls=");
print_tls_arg(tcp, arg.tls);
}
if (arg.set_tid || arg.set_tid_size) {
static const unsigned int max_set_tid_size = 32;
if (!arg.set_tid || !arg.set_tid_size ||
arg.set_tid_size > max_set_tid_size) {
PRINT_FIELD_ADDR64(", ", arg, set_tid);
} else {
int buf;
tprints(", set_tid=");
print_array(tcp, arg.set_tid, arg.set_tid_size,
&buf, sizeof(buf), tfetch_mem,
print_int32_array_member, 0);
}
PRINT_FIELD_U(", ", arg, set_tid_size);
}
if (size > fetch_size)
print_nonzero_bytes(tcp, ", ", addr, fetch_size,
MIN(size, get_pagesize()),
QUOTE_FORCE_HEX);
tprints("}");
if ((arg.flags & (CLONE_PIDFD | CLONE_PARENT_SETTID)) ||
(size > fetch_size))
return 0;
goto out;
}
/* exiting */
if (syserror(tcp))
goto out;
if (umoven(tcp, addr, fetch_size, &arg)) {
tprints(" => ");
printaddr(addr);
goto out;
}
static const char initial_pfx[] = " => {";
const char *pfx = initial_pfx;
if (arg.flags & CLONE_PIDFD) {
tprintf("%spidfd=", pfx);
printnum_fd(tcp, arg.pidfd);
pfx = ", ";
}
if (arg.flags & CLONE_PARENT_SETTID) {
tprintf("%sparent_tid=", pfx);
printnum_int(tcp, arg.parent_tid, "%d"); /* TID */
pfx = ", ";
}
if (size > fetch_size) {
/*
* TODO: it is possible to also store the tail on entering
* and then compare against it on exiting in order
* to avoid double-printing, but it would also require yet
* another complication of print_nonzero_bytes interface.
*/
if (print_nonzero_bytes(tcp, pfx, addr, fetch_size,
MIN(size, get_pagesize()),
QUOTE_FORCE_HEX))
pfx = ", ";
}
if (pfx != initial_pfx)
tprints("}");
out:
tprintf(", %" PRI_klu, size);
return RVAL_DECODED;
}
SYS_FUNC(setns)
{
printfd(tcp, tcp->u_arg[0]);
tprints(", ");
printxval(setns_types, tcp->u_arg[1], "CLONE_NEW???");
return RVAL_DECODED;
}
SYS_FUNC(unshare)
{
printflags64(unshare_flags, tcp->u_arg[0], "CLONE_???");
return RVAL_DECODED;
}
SYS_FUNC(fork)
{
return RVAL_DECODED;
}