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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
|
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <errno.h>
#include <fcntl.h>
#include <sched.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <atomic>
#include <cstdlib>
#include "gtest/gtest.h"
#include "absl/time/clock.h"
#include "absl/time/time.h"
#include "test/util/capability_util.h"
#include "test/util/logging.h"
#include "test/util/memory_util.h"
#include "test/util/test_util.h"
#include "test/util/thread_util.h"
namespace gvisor {
namespace testing {
namespace {
using ::testing::Ge;
class ForkTest : public ::testing::Test {
protected:
// SetUp creates a populated, open file.
void SetUp() override {
// Make a shared mapping.
shared_ = reinterpret_cast<char*>(mmap(0, kPageSize, PROT_READ | PROT_WRITE,
MAP_SHARED | MAP_ANONYMOUS, -1, 0));
ASSERT_NE(reinterpret_cast<void*>(shared_), MAP_FAILED);
// Make a private mapping.
private_ =
reinterpret_cast<char*>(mmap(0, kPageSize, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0));
ASSERT_NE(reinterpret_cast<void*>(private_), MAP_FAILED);
// Make a pipe.
ASSERT_THAT(pipe(pipes_), SyscallSucceeds());
}
// TearDown frees associated resources.
void TearDown() override {
EXPECT_THAT(munmap(shared_, kPageSize), SyscallSucceeds());
EXPECT_THAT(munmap(private_, kPageSize), SyscallSucceeds());
EXPECT_THAT(close(pipes_[0]), SyscallSucceeds());
EXPECT_THAT(close(pipes_[1]), SyscallSucceeds());
}
// Fork executes a clone system call.
pid_t Fork() {
pid_t pid = fork();
MaybeSave();
TEST_PCHECK_MSG(pid >= 0, "fork failed");
return pid;
}
// Wait waits for the given pid and returns the exit status. If the child was
// killed by a signal or an error occurs, then 256+signal is returned.
int Wait(pid_t pid) {
int status;
while (true) {
int rval = wait4(pid, &status, 0, NULL);
if (rval < 0) {
return rval;
}
if (rval != pid) {
continue;
}
if (WIFEXITED(status)) {
return WEXITSTATUS(status);
}
if (WIFSIGNALED(status)) {
return 256 + WTERMSIG(status);
}
}
}
// Exit exits the proccess.
void Exit(int code) {
_exit(code);
// Should never reach here. Since the exit above failed, we really don't
// have much in the way of options to indicate failure. So we just try to
// log an assertion failure to the logs. The parent process will likely
// fail anyways if exit is not working.
TEST_CHECK_MSG(false, "_exit returned");
}
// ReadByte reads a byte from the shared pipe.
char ReadByte() {
char val = -1;
TEST_PCHECK(ReadFd(pipes_[0], &val, 1) == 1);
MaybeSave();
return val;
}
// WriteByte writes a byte from the shared pipe.
void WriteByte(char val) {
TEST_PCHECK(WriteFd(pipes_[1], &val, 1) == 1);
MaybeSave();
}
// Shared pipe.
int pipes_[2];
// Shared mapping (one page).
char* shared_;
// Private mapping (one page).
char* private_;
};
TEST_F(ForkTest, Simple) {
pid_t child = Fork();
if (child == 0) {
Exit(0);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
TEST_F(ForkTest, ExitCode) {
pid_t child = Fork();
if (child == 0) {
Exit(123);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(123));
child = Fork();
if (child == 0) {
Exit(1);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(1));
}
TEST_F(ForkTest, Multi) {
pid_t child1 = Fork();
if (child1 == 0) {
Exit(0);
}
pid_t child2 = Fork();
if (child2 == 0) {
Exit(1);
}
EXPECT_THAT(Wait(child1), SyscallSucceedsWithValue(0));
EXPECT_THAT(Wait(child2), SyscallSucceedsWithValue(1));
}
TEST_F(ForkTest, Pipe) {
pid_t child = Fork();
if (child == 0) {
WriteByte(1);
Exit(0);
}
EXPECT_EQ(ReadByte(), 1);
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
TEST_F(ForkTest, SharedMapping) {
pid_t child = Fork();
if (child == 0) {
// Wait for the parent.
ReadByte();
if (shared_[0] == 1) {
Exit(0);
}
// Failed.
Exit(1);
}
// Change the mapping.
ASSERT_EQ(shared_[0], 0);
shared_[0] = 1;
// Unblock the child.
WriteByte(0);
// Did it work?
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
TEST_F(ForkTest, PrivateMapping) {
pid_t child = Fork();
if (child == 0) {
// Wait for the parent.
ReadByte();
if (private_[0] == 0) {
Exit(0);
}
// Failed.
Exit(1);
}
// Change the mapping.
ASSERT_EQ(private_[0], 0);
private_[0] = 1;
// Unblock the child.
WriteByte(0);
// Did it work?
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
// CPUID is x86 specific.
#ifdef __x86_64__
// Test that cpuid works after a fork.
TEST_F(ForkTest, Cpuid) {
pid_t child = Fork();
// We should be able to determine the CPU vendor.
ASSERT_NE(GetCPUVendor(), CPUVendor::kUnknownVendor);
if (child == 0) {
Exit(0);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
#endif
TEST_F(ForkTest, Mmap) {
pid_t child = Fork();
if (child == 0) {
void* addr =
mmap(0, kPageSize, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
MaybeSave();
Exit(addr == MAP_FAILED);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
static volatile int alarmed = 0;
void AlarmHandler(int sig, siginfo_t* info, void* context) { alarmed = 1; }
TEST_F(ForkTest, Alarm) {
// Setup an alarm handler.
struct sigaction sa;
sa.sa_sigaction = AlarmHandler;
sigfillset(&sa.sa_mask);
sa.sa_flags = SA_SIGINFO;
EXPECT_THAT(sigaction(SIGALRM, &sa, nullptr), SyscallSucceeds());
pid_t child = Fork();
if (child == 0) {
alarm(1);
sleep(3);
if (!alarmed) {
Exit(1);
}
Exit(0);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
EXPECT_EQ(0, alarmed);
}
// Child cannot affect parent private memory. Regression test for b/24137240.
TEST_F(ForkTest, PrivateMemory) {
std::atomic<uint32_t> local(0);
pid_t child1 = Fork();
if (child1 == 0) {
local++;
pid_t child2 = Fork();
if (child2 == 0) {
local++;
TEST_CHECK(local.load() == 2);
Exit(0);
}
TEST_PCHECK(Wait(child2) == 0);
TEST_CHECK(local.load() == 1);
Exit(0);
}
EXPECT_THAT(Wait(child1), SyscallSucceedsWithValue(0));
EXPECT_EQ(0, local.load());
}
// Kernel-accessed buffers should remain coherent across COW.
//
// The buffer must be >= usermem.ZeroCopyMinBytes, as UnsafeAccess operates
// differently. Regression test for b/33811887.
TEST_F(ForkTest, COWSegment) {
constexpr int kBufSize = 1024;
char* read_buf = private_;
char* touch = private_ + kPageSize / 2;
std::string contents(kBufSize, 'a');
ScopedThread t([&] {
// Wait to be sure the parent is blocked in read.
absl::SleepFor(absl::Seconds(3));
// Fork to mark private pages for COW.
//
// Use fork directly rather than the Fork wrapper to skip the multi-threaded
// check, and limit the child to async-signal-safe functions:
//
// "After a fork() in a multithreaded program, the child can safely call
// only async-signal-safe functions (see signal(7)) until such time as it
// calls execve(2)."
//
// Skip ASSERT in the child, as it isn't async-signal-safe.
pid_t child = fork();
if (child == 0) {
// Wait to be sure parent touched memory.
sleep(3);
Exit(0);
}
// Check success only in the parent.
ASSERT_THAT(child, SyscallSucceedsWithValue(Ge(0)));
// Trigger COW on private page.
*touch = 42;
// Write to pipe. Parent should still be able to read this.
EXPECT_THAT(WriteFd(pipes_[1], contents.c_str(), kBufSize),
SyscallSucceedsWithValue(kBufSize));
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
});
EXPECT_THAT(ReadFd(pipes_[0], read_buf, kBufSize),
SyscallSucceedsWithValue(kBufSize));
EXPECT_STREQ(contents.c_str(), read_buf);
}
TEST_F(ForkTest, SigAltStack) {
std::vector<char> stack_mem(SIGSTKSZ);
stack_t stack = {};
stack.ss_size = SIGSTKSZ;
stack.ss_sp = stack_mem.data();
ASSERT_THAT(sigaltstack(&stack, nullptr), SyscallSucceeds());
pid_t child = Fork();
if (child == 0) {
stack_t oss = {};
TEST_PCHECK(sigaltstack(nullptr, &oss) == 0);
MaybeSave();
TEST_CHECK((oss.ss_flags & SS_DISABLE) == 0);
TEST_CHECK(oss.ss_size == SIGSTKSZ);
TEST_CHECK(oss.ss_sp == stack.ss_sp);
Exit(0);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
TEST_F(ForkTest, Affinity) {
// Make a non-default cpumask.
cpu_set_t parent_mask;
EXPECT_THAT(sched_getaffinity(/*pid=*/0, sizeof(cpu_set_t), &parent_mask),
SyscallSucceeds());
// Knock out the lowest bit.
for (unsigned int n = 0; n < CPU_SETSIZE; n++) {
if (CPU_ISSET(n, &parent_mask)) {
CPU_CLR(n, &parent_mask);
break;
}
}
EXPECT_THAT(sched_setaffinity(/*pid=*/0, sizeof(cpu_set_t), &parent_mask),
SyscallSucceeds());
pid_t child = Fork();
if (child == 0) {
cpu_set_t child_mask;
int ret = sched_getaffinity(/*pid=*/0, sizeof(cpu_set_t), &child_mask);
MaybeSave();
if (ret < 0) {
Exit(-ret);
}
TEST_CHECK(CPU_EQUAL(&child_mask, &parent_mask));
Exit(0);
}
EXPECT_THAT(Wait(child), SyscallSucceedsWithValue(0));
}
TEST(CloneTest, NewUserNamespacePermitsAllOtherNamespaces) {
// "If CLONE_NEWUSER is specified along with other CLONE_NEW* flags in a
// single clone(2) or unshare(2) call, the user namespace is guaranteed to be
// created first, giving the child (clone(2)) or caller (unshare(2))
// privileges over the remaining namespaces created by the call. Thus, it is
// possible for an unprivileged caller to specify this combination of flags."
// - user_namespaces(7)
SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(CanCreateUserNamespace()));
Mapping child_stack = ASSERT_NO_ERRNO_AND_VALUE(
MmapAnon(kPageSize, PROT_READ | PROT_WRITE, MAP_PRIVATE));
int child_pid;
// We only test with CLONE_NEWIPC, CLONE_NEWNET, and CLONE_NEWUTS since these
// namespaces were implemented in Linux before user namespaces.
ASSERT_THAT(
child_pid = clone(
+[](void*) { return 0; },
reinterpret_cast<void*>(child_stack.addr() + kPageSize),
CLONE_NEWUSER | CLONE_NEWIPC | CLONE_NEWNET | CLONE_NEWUTS | SIGCHLD,
/* arg = */ nullptr),
SyscallSucceeds());
int status;
ASSERT_THAT(waitpid(child_pid, &status, 0),
SyscallSucceedsWithValue(child_pid));
EXPECT_TRUE(WIFEXITED(status) && WEXITSTATUS(status) == 0)
<< "status = " << status;
}
// Clone with CLONE_SETTLS and a non-canonical TLS address is rejected.
TEST(CloneTest, NonCanonicalTLS) {
constexpr uintptr_t kNonCanonical = 1ull << 48;
// We need a valid address for the stack pointer. We'll never actually execute
// on this.
char stack;
// The raw system call interface on x86-64 is:
// long clone(unsigned long flags, void *stack,
// int *parent_tid, int *child_tid,
// unsigned long tls);
//
// While on arm64, the order of the last two arguments is reversed:
// long clone(unsigned long flags, void *stack,
// int *parent_tid, unsigned long tls,
// int *child_tid);
#if defined(__x86_64__)
EXPECT_THAT(syscall(__NR_clone, SIGCHLD | CLONE_SETTLS, &stack, nullptr,
nullptr, kNonCanonical),
SyscallFailsWithErrno(EPERM));
#elif defined(__aarch64__)
EXPECT_THAT(syscall(__NR_clone, SIGCHLD | CLONE_SETTLS, &stack, nullptr,
kNonCanonical, nullptr),
SyscallFailsWithErrno(EPERM));
#endif
}
} // namespace
} // namespace testing
} // namespace gvisor
|