blob: dd49f8487cfddd4c9867fb96803104eeee462343 [file] [log] [blame]
Tom Cherry0c8d6d22017-08-10 12:22:44 -07001/*
2 * Copyright (C) 2017 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
17// This file contains the functions that initialize SELinux during boot as well as helper functions
18// for SELinux operation for init.
19
20// When the system boots, there is no SEPolicy present and init is running in the kernel domain.
21// Init loads the SEPolicy from the file system, restores the context of /init based on this
22// SEPolicy, and finally exec()'s itself to run in the proper domain.
23
24// The SEPolicy on Android comes in two variants: monolithic and split.
25
26// The monolithic policy variant is for legacy non-treble devices that contain a single SEPolicy
27// file located at /sepolicy and is directly loaded into the kernel SELinux subsystem.
28
29// The split policy is for supporting treble devices. It splits the SEPolicy across files on
30// /system/etc/selinux (the 'plat' portion of the policy) and /vendor/etc/selinux (the 'nonplat'
31// portion of the policy). This is necessary to allow the system image to be updated independently
32// of the vendor image, while maintaining contributions from both partitions in the SEPolicy. This
33// is especially important for VTS testing, where the SEPolicy on the Google System Image may not be
34// identical to the system image shipped on a vendor's device.
35
36// The split SEPolicy is loaded as described below:
37// 1) There is a precompiled SEPolicy located at /vendor/etc/selinux/precompiled_sepolicy.
38// Stored along with this file is the sha256 hash of the parts of the SEPolicy on /system that
39// were used to compile this precompiled policy. The system partition contains a similar sha256
40// of the parts of the SEPolicy that it currently contains. If these two hashes match, then the
41// system loads this precompiled_sepolicy directly.
42// 2) If these hashes do not match, then /system has been updated out of sync with /vendor and the
43// init needs to compile the SEPolicy. /system contains the SEPolicy compiler, secilc, and it
44// is used by the LoadSplitPolicy() function below to compile the SEPolicy to a temp directory
45// and load it. That function contains even more documentation with the specific implementation
46// details of how the SEPolicy is compiled if needed.
47
48#include "selinux.h"
49
50#include <fcntl.h>
51#include <paths.h>
52#include <stdlib.h>
53#include <sys/wait.h>
54#include <unistd.h>
55
56#include <android-base/chrono_utils.h>
57#include <android-base/file.h>
58#include <android-base/logging.h>
59#include <android-base/unique_fd.h>
60#include <selinux/android.h>
61
62#include "log.h"
63#include "util.h"
64
65using android::base::Timer;
66using android::base::unique_fd;
67
68namespace android {
69namespace init {
70
Tom Cherry0c8d6d22017-08-10 12:22:44 -070071namespace {
72
Tom Cherry94f3bcd2017-08-17 16:52:10 -070073selabel_handle* sehandle = nullptr;
74
Tom Cherry0c8d6d22017-08-10 12:22:44 -070075enum EnforcingStatus { SELINUX_PERMISSIVE, SELINUX_ENFORCING };
76
77EnforcingStatus StatusFromCmdline() {
78 EnforcingStatus status = SELINUX_ENFORCING;
79
80 import_kernel_cmdline(false,
81 [&](const std::string& key, const std::string& value, bool in_qemu) {
82 if (key == "androidboot.selinux" && value == "permissive") {
83 status = SELINUX_PERMISSIVE;
84 }
85 });
86
87 return status;
88}
89
90bool IsEnforcing() {
91 if (ALLOW_PERMISSIVE_SELINUX) {
92 return StatusFromCmdline() == SELINUX_ENFORCING;
93 }
94 return true;
95}
96
97// Forks, executes the provided program in the child, and waits for the completion in the parent.
98// Child's stderr is captured and logged using LOG(ERROR).
99bool ForkExecveAndWaitForCompletion(const char* filename, char* const argv[]) {
100 // Create a pipe used for redirecting child process's output.
101 // * pipe_fds[0] is the FD the parent will use for reading.
102 // * pipe_fds[1] is the FD the child will use for writing.
103 int pipe_fds[2];
104 if (pipe(pipe_fds) == -1) {
105 PLOG(ERROR) << "Failed to create pipe";
106 return false;
107 }
108
109 pid_t child_pid = fork();
110 if (child_pid == -1) {
111 PLOG(ERROR) << "Failed to fork for " << filename;
112 return false;
113 }
114
115 if (child_pid == 0) {
116 // fork succeeded -- this is executing in the child process
117
118 // Close the pipe FD not used by this process
119 TEMP_FAILURE_RETRY(close(pipe_fds[0]));
120
121 // Redirect stderr to the pipe FD provided by the parent
122 if (TEMP_FAILURE_RETRY(dup2(pipe_fds[1], STDERR_FILENO)) == -1) {
123 PLOG(ERROR) << "Failed to redirect stderr of " << filename;
124 _exit(127);
125 return false;
126 }
127 TEMP_FAILURE_RETRY(close(pipe_fds[1]));
128
129 const char* envp[] = {_PATH_DEFPATH, nullptr};
130 if (execve(filename, argv, (char**)envp) == -1) {
131 PLOG(ERROR) << "Failed to execve " << filename;
132 return false;
133 }
134 // Unreachable because execve will have succeeded and replaced this code
135 // with child process's code.
136 _exit(127);
137 return false;
138 } else {
139 // fork succeeded -- this is executing in the original/parent process
140
141 // Close the pipe FD not used by this process
142 TEMP_FAILURE_RETRY(close(pipe_fds[1]));
143
144 // Log the redirected output of the child process.
145 // It's unfortunate that there's no standard way to obtain an istream for a file descriptor.
146 // As a result, we're buffering all output and logging it in one go at the end of the
147 // invocation, instead of logging it as it comes in.
148 const int child_out_fd = pipe_fds[0];
149 std::string child_output;
150 if (!android::base::ReadFdToString(child_out_fd, &child_output)) {
151 PLOG(ERROR) << "Failed to capture full output of " << filename;
152 }
153 TEMP_FAILURE_RETRY(close(child_out_fd));
154 if (!child_output.empty()) {
155 // Log captured output, line by line, because LOG expects to be invoked for each line
156 std::istringstream in(child_output);
157 std::string line;
158 while (std::getline(in, line)) {
159 LOG(ERROR) << filename << ": " << line;
160 }
161 }
162
163 // Wait for child to terminate
164 int status;
165 if (TEMP_FAILURE_RETRY(waitpid(child_pid, &status, 0)) != child_pid) {
166 PLOG(ERROR) << "Failed to wait for " << filename;
167 return false;
168 }
169
170 if (WIFEXITED(status)) {
171 int status_code = WEXITSTATUS(status);
172 if (status_code == 0) {
173 return true;
174 } else {
175 LOG(ERROR) << filename << " exited with status " << status_code;
176 }
177 } else if (WIFSIGNALED(status)) {
178 LOG(ERROR) << filename << " killed by signal " << WTERMSIG(status);
179 } else if (WIFSTOPPED(status)) {
180 LOG(ERROR) << filename << " stopped by signal " << WSTOPSIG(status);
181 } else {
182 LOG(ERROR) << "waitpid for " << filename << " returned unexpected status: " << status;
183 }
184
185 return false;
186 }
187}
188
189bool ReadFirstLine(const char* file, std::string* line) {
190 line->clear();
191
192 std::string contents;
193 if (!android::base::ReadFileToString(file, &contents, true /* follow symlinks */)) {
194 return false;
195 }
196 std::istringstream in(contents);
197 std::getline(in, *line);
198 return true;
199}
200
201bool FindPrecompiledSplitPolicy(std::string* file) {
202 file->clear();
203
204 static constexpr const char precompiled_sepolicy[] = "/vendor/etc/selinux/precompiled_sepolicy";
205 if (access(precompiled_sepolicy, R_OK) == -1) {
206 return false;
207 }
208 std::string actual_plat_id;
209 if (!ReadFirstLine("/system/etc/selinux/plat_and_mapping_sepolicy.cil.sha256", &actual_plat_id)) {
210 PLOG(INFO) << "Failed to read "
211 "/system/etc/selinux/plat_and_mapping_sepolicy.cil.sha256";
212 return false;
213 }
214 std::string precompiled_plat_id;
215 if (!ReadFirstLine("/vendor/etc/selinux/precompiled_sepolicy.plat_and_mapping.sha256",
216 &precompiled_plat_id)) {
217 PLOG(INFO) << "Failed to read "
218 "/vendor/etc/selinux/"
219 "precompiled_sepolicy.plat_and_mapping.sha256";
220 return false;
221 }
222 if ((actual_plat_id.empty()) || (actual_plat_id != precompiled_plat_id)) {
223 return false;
224 }
225
226 *file = precompiled_sepolicy;
227 return true;
228}
229
230constexpr const char plat_policy_cil_file[] = "/system/etc/selinux/plat_sepolicy.cil";
231
232bool IsSplitPolicyDevice() {
233 return access(plat_policy_cil_file, R_OK) != -1;
234}
235
236bool LoadSplitPolicy() {
237 // IMPLEMENTATION NOTE: Split policy consists of three CIL files:
238 // * platform -- policy needed due to logic contained in the system image,
239 // * non-platform -- policy needed due to logic contained in the vendor image,
240 // * mapping -- mapping policy which helps preserve forward-compatibility of non-platform policy
241 // with newer versions of platform policy.
242 //
243 // secilc is invoked to compile the above three policy files into a single monolithic policy
244 // file. This file is then loaded into the kernel.
245
246 // Load precompiled policy from vendor image, if a matching policy is found there. The policy
247 // must match the platform policy on the system image.
248 std::string precompiled_sepolicy_file;
249 if (FindPrecompiledSplitPolicy(&precompiled_sepolicy_file)) {
250 unique_fd fd(open(precompiled_sepolicy_file.c_str(), O_RDONLY | O_CLOEXEC | O_BINARY));
251 if (fd != -1) {
252 if (selinux_android_load_policy_from_fd(fd, precompiled_sepolicy_file.c_str()) < 0) {
253 LOG(ERROR) << "Failed to load SELinux policy from " << precompiled_sepolicy_file;
254 return false;
255 }
256 return true;
257 }
258 }
259 // No suitable precompiled policy could be loaded
260
261 LOG(INFO) << "Compiling SELinux policy";
262
263 // Determine the highest policy language version supported by the kernel
264 set_selinuxmnt("/sys/fs/selinux");
265 int max_policy_version = security_policyvers();
266 if (max_policy_version == -1) {
267 PLOG(ERROR) << "Failed to determine highest policy version supported by kernel";
268 return false;
269 }
270
271 // We store the output of the compilation on /dev because this is the most convenient tmpfs
272 // storage mount available this early in the boot sequence.
273 char compiled_sepolicy[] = "/dev/sepolicy.XXXXXX";
274 unique_fd compiled_sepolicy_fd(mkostemp(compiled_sepolicy, O_CLOEXEC));
275 if (compiled_sepolicy_fd < 0) {
276 PLOG(ERROR) << "Failed to create temporary file " << compiled_sepolicy;
277 return false;
278 }
279
280 // clang-format off
281 const char* compile_args[] = {
282 "/system/bin/secilc",
283 plat_policy_cil_file,
284 "-M", "true",
285 // Target the highest policy language version supported by the kernel
286 "-c", std::to_string(max_policy_version).c_str(),
287 "/system/etc/selinux/mapping_sepolicy.cil",
288 "/vendor/etc/selinux/nonplat_sepolicy.cil",
289 "-o", compiled_sepolicy,
290 // We don't care about file_contexts output by the compiler
291 "-f", "/sys/fs/selinux/null", // /dev/null is not yet available
292 nullptr};
293 // clang-format on
294
295 if (!ForkExecveAndWaitForCompletion(compile_args[0], (char**)compile_args)) {
296 unlink(compiled_sepolicy);
297 return false;
298 }
299 unlink(compiled_sepolicy);
300
301 LOG(INFO) << "Loading compiled SELinux policy";
302 if (selinux_android_load_policy_from_fd(compiled_sepolicy_fd, compiled_sepolicy) < 0) {
303 LOG(ERROR) << "Failed to load SELinux policy from " << compiled_sepolicy;
304 return false;
305 }
306
307 return true;
308}
309
310bool LoadMonolithicPolicy() {
311 LOG(VERBOSE) << "Loading SELinux policy from monolithic file";
312 if (selinux_android_load_policy() < 0) {
313 PLOG(ERROR) << "Failed to load monolithic SELinux policy";
314 return false;
315 }
316 return true;
317}
318
319bool LoadPolicy() {
320 return IsSplitPolicyDevice() ? LoadSplitPolicy() : LoadMonolithicPolicy();
321}
322
323} // namespace
324
325void SelinuxInitialize() {
326 Timer t;
327
328 LOG(INFO) << "Loading SELinux policy";
329 if (!LoadPolicy()) {
330 panic();
331 }
332
333 bool kernel_enforcing = (security_getenforce() == 1);
334 bool is_enforcing = IsEnforcing();
335 if (kernel_enforcing != is_enforcing) {
336 if (security_setenforce(is_enforcing)) {
337 PLOG(ERROR) << "security_setenforce(%s) failed" << (is_enforcing ? "true" : "false");
338 panic();
339 }
340 }
341
Tom Cherry11a3aee2017-08-03 12:54:07 -0700342 if (auto result = WriteFile("/sys/fs/selinux/checkreqprot", "0"); !result) {
343 LOG(ERROR) << "Unable to write to /sys/fs/selinux/checkreqprot: " << result.error();
Tom Cherry0c8d6d22017-08-10 12:22:44 -0700344 panic();
345 }
346
347 // init's first stage can't set properties, so pass the time to the second stage.
348 setenv("INIT_SELINUX_TOOK", std::to_string(t.duration().count()).c_str(), 1);
349}
350
351// The files and directories that were created before initial sepolicy load or
352// files on ramdisk need to have their security context restored to the proper
353// value. This must happen before /dev is populated by ueventd.
354void SelinuxRestoreContext() {
355 LOG(INFO) << "Running restorecon...";
356 selinux_android_restorecon("/dev", 0);
357 selinux_android_restorecon("/dev/kmsg", 0);
358 if constexpr (WORLD_WRITABLE_KMSG) {
359 selinux_android_restorecon("/dev/kmsg_debug", 0);
360 }
361 selinux_android_restorecon("/dev/socket", 0);
362 selinux_android_restorecon("/dev/random", 0);
363 selinux_android_restorecon("/dev/urandom", 0);
364 selinux_android_restorecon("/dev/__properties__", 0);
365 selinux_android_restorecon("/plat_property_contexts", 0);
366 selinux_android_restorecon("/nonplat_property_contexts", 0);
367 selinux_android_restorecon("/dev/block", SELINUX_ANDROID_RESTORECON_RECURSE);
368 selinux_android_restorecon("/dev/device-mapper", 0);
369
370 selinux_android_restorecon("/sbin/mke2fs_static", 0);
371 selinux_android_restorecon("/sbin/e2fsdroid_static", 0);
372}
373
374// This function sets up SELinux logging to be written to kmsg, to match init's logging.
375void SelinuxSetupKernelLogging() {
376 selinux_callback cb;
377 cb.func_log = selinux_klog_callback;
378 selinux_set_callback(SELINUX_CB_LOG, cb);
379}
380
381// selinux_android_file_context_handle() takes on the order of 10+ms to run, so we want to cache
382// its value. selinux_android_restorecon() also needs an sehandle for file context look up. It
383// will create and store its own copy, but selinux_android_set_sehandle() can be used to provide
384// one, thus eliminating an extra call to selinux_android_file_context_handle().
385void SelabelInitialize() {
386 sehandle = selinux_android_file_context_handle();
387 selinux_android_set_sehandle(sehandle);
388}
389
390// A C++ wrapper around selabel_lookup() using the cached sehandle.
391// If sehandle is null, this returns success with an empty context.
392bool SelabelLookupFileContext(const std::string& key, int type, std::string* result) {
393 result->clear();
394
395 if (!sehandle) return true;
396
397 char* context;
398 if (selabel_lookup(sehandle, &context, key.c_str(), type) != 0) {
399 return false;
400 }
401 *result = context;
402 free(context);
403 return true;
404}
405
406// A C++ wrapper around selabel_lookup_best_match() using the cached sehandle.
407// If sehandle is null, this returns success with an empty context.
408bool SelabelLookupFileContextBestMatch(const std::string& key,
409 const std::vector<std::string>& aliases, int type,
410 std::string* result) {
411 result->clear();
412
413 if (!sehandle) return true;
414
415 std::vector<const char*> c_aliases;
416 for (const auto& alias : aliases) {
417 c_aliases.emplace_back(alias.c_str());
418 }
419 c_aliases.emplace_back(nullptr);
420
421 char* context;
422 if (selabel_lookup_best_match(sehandle, &context, key.c_str(), &c_aliases[0], type) != 0) {
423 return false;
424 }
425 *result = context;
426 free(context);
427 return true;
428}
429
430} // namespace init
431} // namespace android