Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Christopher Ferris | f1649d9 | 2016-11-03 16:06:40 -0700 | [diff] [blame] | 17 | #include <inttypes.h> |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 18 | #include <limits.h> |
Christopher Ferris | f1649d9 | 2016-11-03 16:06:40 -0700 | [diff] [blame] | 19 | #include <stdio.h> |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 20 | #include <sys/capability.h> |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 21 | #include <sys/mman.h> |
| 22 | #include <sys/prctl.h> |
Elliott Hughes | 910a2a8 | 2018-12-18 15:19:40 -0800 | [diff] [blame] | 23 | #include <sys/utsname.h> |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 24 | #include <unistd.h> |
Christopher Ferris | f1649d9 | 2016-11-03 16:06:40 -0700 | [diff] [blame] | 25 | |
| 26 | #include <string> |
| 27 | #include <vector> |
| 28 | |
| 29 | #include <gtest/gtest.h> |
| 30 | |
| 31 | #include "android-base/file.h" |
| 32 | #include "android-base/strings.h" |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 33 | |
Elliott Hughes | 95646e6 | 2023-09-21 14:11:19 -0700 | [diff] [blame^] | 34 | #include "utils.h" |
| 35 | |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 36 | // http://b/20017123. |
| 37 | TEST(sys_prctl, bug_20017123) { |
Elliott Hughes | 99d5465 | 2018-08-22 10:36:23 -0700 | [diff] [blame] | 38 | #if defined(PR_SET_VMA) // PR_SET_VMA is only available in Android kernels. |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 39 | size_t page_size = static_cast<size_t>(sysconf(_SC_PAGESIZE)); |
| 40 | void* p = mmap(NULL, page_size * 3, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); |
| 41 | ASSERT_NE(MAP_FAILED, p); |
| 42 | ASSERT_EQ(0, mprotect(p, page_size, PROT_NONE)); |
| 43 | ASSERT_NE(-1, prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, p, page_size * 3, "anonymous map space")); |
Christopher Ferris | f1649d9 | 2016-11-03 16:06:40 -0700 | [diff] [blame] | 44 | // Now read the maps and verify that there are no overlapped maps. |
| 45 | std::string file_data; |
| 46 | ASSERT_TRUE(android::base::ReadFileToString("/proc/self/maps", &file_data)); |
| 47 | |
Christopher Ferris | f1649d9 | 2016-11-03 16:06:40 -0700 | [diff] [blame] | 48 | uintptr_t last_end = 0; |
| 49 | std::vector<std::string> lines = android::base::Split(file_data, "\n"); |
| 50 | for (size_t i = 0; i < lines.size(); i++) { |
| 51 | if (lines[i].empty()) { |
| 52 | continue; |
| 53 | } |
| 54 | uintptr_t start; |
| 55 | uintptr_t end; |
| 56 | ASSERT_EQ(2, sscanf(lines[i].c_str(), "%" SCNxPTR "-%" SCNxPTR " ", &start, &end)) |
| 57 | << "Failed to parse line: " << lines[i]; |
| 58 | // This will never fail on the first line, so no need to do any special checking. |
Christopher Ferris | 4dd2785 | 2016-11-08 14:05:18 -0800 | [diff] [blame] | 59 | ASSERT_GE(start, last_end) |
| 60 | << "Overlapping map detected:\n" << lines[i -1] << '\n' << lines[i] << '\n'; |
Christopher Ferris | f1649d9 | 2016-11-03 16:06:40 -0700 | [diff] [blame] | 61 | last_end = end; |
| 62 | } |
| 63 | |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 64 | ASSERT_EQ(0, munmap(p, page_size * 3)); |
| 65 | #else |
Elliott Hughes | bcaa454 | 2019-03-08 15:20:23 -0800 | [diff] [blame] | 66 | GTEST_SKIP() << "PR_SET_VMA not available"; |
Yabin Cui | 91ce715 | 2015-07-13 16:54:29 -0700 | [diff] [blame] | 67 | #endif |
| 68 | } |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 69 | |
| 70 | TEST(sys_prctl, pr_cap_ambient) { |
| 71 | // PR_CAP_AMBIENT was introduced in v4.3. Android devices should always |
| 72 | // have a backport, but we can't guarantee it's available on the host. |
| 73 | #if defined(__ANDROID__) || defined(PR_CAP_AMBIENT) |
| 74 | const std::string caps_sha = |
| 75 | "https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/" |
| 76 | "?id=58319057b7847667f0c9585b9de0e8932b0fdb08"; |
| 77 | const std::string caps_typo_sha = |
| 78 | "https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/" |
| 79 | "?id=b7f76ea2ef6739ee484a165ffbac98deb855d3d3"; |
| 80 | |
Elliott Hughes | 910a2a8 | 2018-12-18 15:19:40 -0800 | [diff] [blame] | 81 | utsname u = {}; |
| 82 | ASSERT_EQ(0, uname(&u)); |
| 83 | |
| 84 | errno = 0; |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 85 | auto err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0); |
| 86 | EXPECT_EQ(0, err); |
| 87 | // EINVAL -> unrecognized prctl option |
Elliott Hughes | 910a2a8 | 2018-12-18 15:19:40 -0800 | [diff] [blame] | 88 | ASSERT_NE(EINVAL, errno) << "kernel (" << u.release << ") missing required commits:\n" |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 89 | << caps_sha << "\n" |
| 90 | << caps_typo_sha << "\n"; |
| 91 | |
| 92 | // Unprivileged processes shouldn't be able to raise CAP_SYS_ADMIN, |
| 93 | // but they can check or lower it |
| 94 | err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, CAP_SYS_ADMIN, 0, 0); |
| 95 | EXPECT_EQ(-1, err); |
Elliott Hughes | 95646e6 | 2023-09-21 14:11:19 -0700 | [diff] [blame^] | 96 | EXPECT_ERRNO(EPERM); |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 97 | |
| 98 | err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_IS_SET, CAP_SYS_ADMIN, 0, 0); |
| 99 | EXPECT_EQ(0, err); |
| 100 | |
| 101 | err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_LOWER, CAP_SYS_ADMIN, 0, 0); |
| 102 | EXPECT_EQ(0, err); |
| 103 | |
| 104 | // ULONG_MAX isn't a legal cap |
| 105 | err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, ULONG_MAX, 0, 0); |
| 106 | EXPECT_EQ(-1, err); |
Elliott Hughes | 95646e6 | 2023-09-21 14:11:19 -0700 | [diff] [blame^] | 107 | EXPECT_ERRNO(EINVAL); |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 108 | |
| 109 | err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_IS_SET, ULONG_MAX, 0, 0); |
| 110 | EXPECT_EQ(-1, err); |
Elliott Hughes | 95646e6 | 2023-09-21 14:11:19 -0700 | [diff] [blame^] | 111 | EXPECT_ERRNO(EINVAL); |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 112 | |
| 113 | err = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_LOWER, ULONG_MAX, 0, 0); |
| 114 | EXPECT_EQ(-1, err); |
Elliott Hughes | 95646e6 | 2023-09-21 14:11:19 -0700 | [diff] [blame^] | 115 | EXPECT_ERRNO(EINVAL); |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 116 | #else |
Elliott Hughes | bcaa454 | 2019-03-08 15:20:23 -0800 | [diff] [blame] | 117 | GTEST_SKIP() << "PR_CAP_AMBIENT not available"; |
Greg Hackmann | ba1f77d | 2016-12-06 15:17:59 -0800 | [diff] [blame] | 118 | #endif |
| 119 | } |