// Copyright 2018 Google LLC // // 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 #include #include #include #include #include #include "gtest/gtest.h" #include "test/util/capability_util.h" #include "test/util/multiprocess_util.h" #include "test/util/posix_error.h" #include "test/util/test_util.h" #include "test/util/thread_util.h" DEFINE_bool(prctl_no_new_privs_test_child, false, "If true, exit with the return value of prctl(PR_GET_NO_NEW_PRIVS) " "plus an offset (see test source)."); namespace gvisor { namespace testing { namespace { TEST(PrctlTest, NameInitialized) { const size_t name_length = 20; char name[name_length] = {}; ASSERT_THAT(prctl(PR_GET_NAME, name), SyscallSucceeds()); ASSERT_NE(std::string(name), ""); } TEST(PrctlTest, SetNameLongName) { const size_t name_length = 20; const std::string long_name(name_length, 'A'); ASSERT_THAT(prctl(PR_SET_NAME, long_name.c_str()), SyscallSucceeds()); char truncated_name[name_length] = {}; ASSERT_THAT(prctl(PR_GET_NAME, truncated_name), SyscallSucceeds()); const size_t truncated_length = 15; ASSERT_EQ(long_name.substr(0, truncated_length), std::string(truncated_name)); } // Offset added to exit code from test child to distinguish from other abnormal // exits. constexpr int kPrctlNoNewPrivsTestChildExitBase = 100; TEST(PrctlTest, NoNewPrivsPreservedAcrossCloneForkAndExecve) { // Check if no_new_privs is already set. If it is, we can still test that it's // preserved across clone/fork/execve, but we also expect it to still be set // at the end of the test. Otherwise, call prctl(PR_SET_NO_NEW_PRIVS) so as // not to contaminate the original thread. int no_new_privs; ASSERT_THAT(no_new_privs = prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0), SyscallSucceeds()); ScopedThread([] { ASSERT_THAT(prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0), SyscallSucceeds()); EXPECT_THAT(prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0), SyscallSucceedsWithValue(1)); ScopedThread([] { EXPECT_THAT(prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0), SyscallSucceedsWithValue(1)); // Note that these ASSERT_*s failing will only return from this thread, // but this is the intended behavior. pid_t child_pid = -1; int execve_errno = 0; auto cleanup = ASSERT_NO_ERRNO_AND_VALUE( ForkAndExec("/proc/self/exe", {"/proc/self/exe", "--prctl_no_new_privs_test_child"}, {}, nullptr, &child_pid, &execve_errno)); ASSERT_GT(child_pid, 0); ASSERT_EQ(execve_errno, 0); int status = 0; ASSERT_THAT(RetryEINTR(waitpid)(child_pid, &status, 0), SyscallSucceeds()); ASSERT_TRUE(WIFEXITED(status)); ASSERT_EQ(WEXITSTATUS(status), kPrctlNoNewPrivsTestChildExitBase + 1); EXPECT_THAT(prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0), SyscallSucceedsWithValue(1)); }); EXPECT_THAT(prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0), SyscallSucceedsWithValue(1)); }); EXPECT_THAT(prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0), SyscallSucceedsWithValue(no_new_privs)); } TEST(PrctlTest, PDeathSig) { pid_t child_pid; // Make the new process' parent a separate thread since the parent death // signal fires when the parent *thread* exits. ScopedThread([&] { child_pid = fork(); TEST_CHECK(child_pid >= 0); if (child_pid == 0) { // In child process. TEST_CHECK(prctl(PR_SET_PDEATHSIG, SIGKILL) >= 0); int signo; TEST_CHECK(prctl(PR_GET_PDEATHSIG, &signo) >= 0); TEST_CHECK(signo == SIGKILL); // Enable tracing, then raise SIGSTOP and expect our parent to suppress // it. TEST_CHECK(ptrace(PTRACE_TRACEME, 0, 0, 0) >= 0); raise(SIGSTOP); // Sleep until killed by our parent death signal. sleep(3) is // async-signal-safe, absl::SleepFor isn't. while (true) { sleep(10); } } // In parent process. // Wait for the child to send itself SIGSTOP and enter signal-delivery-stop. int status; ASSERT_THAT(waitpid(child_pid, &status, 0), SyscallSucceedsWithValue(child_pid)); EXPECT_TRUE(WIFSTOPPED(status) && WSTOPSIG(status) == SIGSTOP) << "status = " << status; // Suppress the SIGSTOP and detach from the child. ASSERT_THAT(ptrace(PTRACE_DETACH, child_pid, 0, 0), SyscallSucceeds()); }); // The child should have been killed by its parent death SIGKILL. int status; ASSERT_THAT(waitpid(child_pid, &status, 0), SyscallSucceedsWithValue(child_pid)); EXPECT_TRUE(WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL) << "status = " << status; } // This test is to validate that calling prctl with PR_SET_MM without the // CAP_SYS_RESOURCE returns EPERM. TEST(PrctlTest, InvalidPrSetMM) { if (ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_SYS_RESOURCE))) { ASSERT_NO_ERRNO(SetCapability(CAP_SYS_RESOURCE, false)); // Drop capability to test below. } ASSERT_THAT(prctl(PR_SET_MM, 0, 0, 0, 0), SyscallFailsWithErrno(EPERM)); } } // namespace } // namespace testing } // namespace gvisor int main(int argc, char** argv) { gvisor::testing::TestInit(&argc, &argv); if (FLAGS_prctl_no_new_privs_test_child) { exit(gvisor::testing::kPrctlNoNewPrivsTestChildExitBase + prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0)); } return RUN_ALL_TESTS(); }