blob: f03ca6be8f5867d5d30fdcf009b29453a3d9c155 [file] [log] [blame]
Tom Cherryc3170092017-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.
Tom Cherry7bfea3d2018-11-06 14:12:05 -080021// Init loads the SEPolicy from the file system, restores the context of /system/bin/init based on
22// this SEPolicy, and finally exec()'s itself to run in the proper domain.
Tom Cherryc3170092017-08-10 12:22:44 -070023
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:
Tri Voc8137f92019-01-22 18:22:25 -080037// 1) There is a precompiled SEPolicy located at either /vendor/etc/selinux/precompiled_sepolicy or
38// /odm/etc/selinux/precompiled_sepolicy if odm parition is present. Stored along with this file
Bowgo Tsaif016f252019-08-28 17:56:51 +080039// are the sha256 hashes of the parts of the SEPolicy on /system, /system_ext and /product that
40// were used to compile this precompiled policy. The system partition contains a similar sha256
41// of the parts of the SEPolicy that it currently contains. Symmetrically, system_ext and
42// product paritition contain sha256 hashes of their SEPolicy. The init loads this
43// precompiled_sepolicy directly if and only if the hashes along with the precompiled SEPolicy on
44// /vendor or /odm match the hashes for system, system_ext and product SEPolicy, respectively.
45// 2) If these hashes do not match, then either /system or /system_ext or /product (or some of them)
46// have been updated out of sync with /vendor (or /odm if it is present) and the init needs to
47// compile the SEPolicy. /system contains the SEPolicy compiler, secilc, and it is used by the
48// LoadSplitPolicy() function below to compile the SEPolicy to a temp directory and load it.
49// That function contains even more documentation with the specific implementation details of how
50// the SEPolicy is compiled if needed.
Tom Cherryc3170092017-08-10 12:22:44 -070051
52#include "selinux.h"
53
Tom Cherry40acb372018-08-01 13:41:12 -070054#include <android/api-level.h>
Tom Cherryc3170092017-08-10 12:22:44 -070055#include <fcntl.h>
Tom Cherry8180b482019-08-26 13:57:51 -070056#include <linux/audit.h>
57#include <linux/netlink.h>
Tom Cherryc3170092017-08-10 12:22:44 -070058#include <stdlib.h>
59#include <sys/wait.h>
60#include <unistd.h>
61
62#include <android-base/chrono_utils.h>
63#include <android-base/file.h>
64#include <android-base/logging.h>
Logan Chien837b2a42018-05-03 14:33:52 +080065#include <android-base/parseint.h>
David Andersond0ce5302020-03-20 21:47:10 -070066#include <android-base/strings.h>
Tom Cherryc3170092017-08-10 12:22:44 -070067#include <android-base/unique_fd.h>
Bowgo Tsai1dacd422019-03-04 17:53:34 +080068#include <fs_avb/fs_avb.h>
David Andersond0ce5302020-03-20 21:47:10 -070069#include <fs_mgr.h>
Bowgo Tsai196cc582020-01-20 18:03:58 +080070#include <libgsi/libgsi.h>
Yifan Hongd91998f2020-02-20 17:54:57 -080071#include <libsnapshot/snapshot.h>
Tom Cherryc3170092017-08-10 12:22:44 -070072#include <selinux/android.h>
73
David Andersond0ce5302020-03-20 21:47:10 -070074#include "block_dev_initializer.h"
Bowgo Tsai30afda72019-04-11 23:57:24 +080075#include "debug_ramdisk.h"
Tom Cherry7bfea3d2018-11-06 14:12:05 -080076#include "reboot_utils.h"
Tom Cherryc3170092017-08-10 12:22:44 -070077#include "util.h"
78
Bowgo Tsai1dacd422019-03-04 17:53:34 +080079using namespace std::string_literals;
80
Logan Chien837b2a42018-05-03 14:33:52 +080081using android::base::ParseInt;
Tom Cherryc3170092017-08-10 12:22:44 -070082using android::base::Timer;
83using android::base::unique_fd;
Bowgo Tsai1dacd422019-03-04 17:53:34 +080084using android::fs_mgr::AvbHandle;
Yifan Hongd91998f2020-02-20 17:54:57 -080085using android::snapshot::SnapshotManager;
Tom Cherryc3170092017-08-10 12:22:44 -070086
87namespace android {
88namespace init {
89
Tom Cherryc3170092017-08-10 12:22:44 -070090namespace {
91
92enum EnforcingStatus { SELINUX_PERMISSIVE, SELINUX_ENFORCING };
93
94EnforcingStatus StatusFromCmdline() {
95 EnforcingStatus status = SELINUX_ENFORCING;
96
Tom Cherryc88d8f92019-08-19 15:21:25 -070097 ImportKernelCmdline([&](const std::string& key, const std::string& value) {
98 if (key == "androidboot.selinux" && value == "permissive") {
99 status = SELINUX_PERMISSIVE;
100 }
101 });
Tom Cherryc3170092017-08-10 12:22:44 -0700102
103 return status;
104}
105
106bool IsEnforcing() {
107 if (ALLOW_PERMISSIVE_SELINUX) {
108 return StatusFromCmdline() == SELINUX_ENFORCING;
109 }
110 return true;
111}
112
113// Forks, executes the provided program in the child, and waits for the completion in the parent.
114// Child's stderr is captured and logged using LOG(ERROR).
115bool ForkExecveAndWaitForCompletion(const char* filename, char* const argv[]) {
116 // Create a pipe used for redirecting child process's output.
117 // * pipe_fds[0] is the FD the parent will use for reading.
118 // * pipe_fds[1] is the FD the child will use for writing.
119 int pipe_fds[2];
120 if (pipe(pipe_fds) == -1) {
121 PLOG(ERROR) << "Failed to create pipe";
122 return false;
123 }
124
125 pid_t child_pid = fork();
126 if (child_pid == -1) {
127 PLOG(ERROR) << "Failed to fork for " << filename;
128 return false;
129 }
130
131 if (child_pid == 0) {
132 // fork succeeded -- this is executing in the child process
133
134 // Close the pipe FD not used by this process
Nick Kralevich3d118e72017-10-24 10:45:48 -0700135 close(pipe_fds[0]);
Tom Cherryc3170092017-08-10 12:22:44 -0700136
137 // Redirect stderr to the pipe FD provided by the parent
138 if (TEMP_FAILURE_RETRY(dup2(pipe_fds[1], STDERR_FILENO)) == -1) {
139 PLOG(ERROR) << "Failed to redirect stderr of " << filename;
140 _exit(127);
141 return false;
142 }
Nick Kralevich3d118e72017-10-24 10:45:48 -0700143 close(pipe_fds[1]);
Tom Cherryc3170092017-08-10 12:22:44 -0700144
Tom Cherry6de21f12017-08-22 15:41:03 -0700145 if (execv(filename, argv) == -1) {
Tom Cherryc3170092017-08-10 12:22:44 -0700146 PLOG(ERROR) << "Failed to execve " << filename;
147 return false;
148 }
149 // Unreachable because execve will have succeeded and replaced this code
150 // with child process's code.
151 _exit(127);
152 return false;
153 } else {
154 // fork succeeded -- this is executing in the original/parent process
155
156 // Close the pipe FD not used by this process
Nick Kralevich3d118e72017-10-24 10:45:48 -0700157 close(pipe_fds[1]);
Tom Cherryc3170092017-08-10 12:22:44 -0700158
159 // Log the redirected output of the child process.
160 // It's unfortunate that there's no standard way to obtain an istream for a file descriptor.
161 // As a result, we're buffering all output and logging it in one go at the end of the
162 // invocation, instead of logging it as it comes in.
163 const int child_out_fd = pipe_fds[0];
164 std::string child_output;
165 if (!android::base::ReadFdToString(child_out_fd, &child_output)) {
166 PLOG(ERROR) << "Failed to capture full output of " << filename;
167 }
Nick Kralevich3d118e72017-10-24 10:45:48 -0700168 close(child_out_fd);
Tom Cherryc3170092017-08-10 12:22:44 -0700169 if (!child_output.empty()) {
170 // Log captured output, line by line, because LOG expects to be invoked for each line
171 std::istringstream in(child_output);
172 std::string line;
173 while (std::getline(in, line)) {
174 LOG(ERROR) << filename << ": " << line;
175 }
176 }
177
178 // Wait for child to terminate
179 int status;
180 if (TEMP_FAILURE_RETRY(waitpid(child_pid, &status, 0)) != child_pid) {
181 PLOG(ERROR) << "Failed to wait for " << filename;
182 return false;
183 }
184
185 if (WIFEXITED(status)) {
186 int status_code = WEXITSTATUS(status);
187 if (status_code == 0) {
188 return true;
189 } else {
190 LOG(ERROR) << filename << " exited with status " << status_code;
191 }
192 } else if (WIFSIGNALED(status)) {
193 LOG(ERROR) << filename << " killed by signal " << WTERMSIG(status);
194 } else if (WIFSTOPPED(status)) {
195 LOG(ERROR) << filename << " stopped by signal " << WSTOPSIG(status);
196 } else {
197 LOG(ERROR) << "waitpid for " << filename << " returned unexpected status: " << status;
198 }
199
200 return false;
201 }
202}
203
204bool ReadFirstLine(const char* file, std::string* line) {
205 line->clear();
206
207 std::string contents;
208 if (!android::base::ReadFileToString(file, &contents, true /* follow symlinks */)) {
209 return false;
210 }
211 std::istringstream in(contents);
212 std::getline(in, *line);
213 return true;
214}
215
216bool FindPrecompiledSplitPolicy(std::string* file) {
217 file->clear();
kaichieheef4cd72017-08-31 22:07:19 +0800218 // If there is an odm partition, precompiled_sepolicy will be in
219 // odm/etc/selinux. Otherwise it will be in vendor/etc/selinux.
220 static constexpr const char vendor_precompiled_sepolicy[] =
221 "/vendor/etc/selinux/precompiled_sepolicy";
222 static constexpr const char odm_precompiled_sepolicy[] =
223 "/odm/etc/selinux/precompiled_sepolicy";
224 if (access(odm_precompiled_sepolicy, R_OK) == 0) {
225 *file = odm_precompiled_sepolicy;
226 } else if (access(vendor_precompiled_sepolicy, R_OK) == 0) {
227 *file = vendor_precompiled_sepolicy;
228 } else {
229 PLOG(INFO) << "No precompiled sepolicy";
Tom Cherryc3170092017-08-10 12:22:44 -0700230 return false;
231 }
232 std::string actual_plat_id;
Tri Voc8137f92019-01-22 18:22:25 -0800233 if (!ReadFirstLine("/system/etc/selinux/plat_sepolicy_and_mapping.sha256", &actual_plat_id)) {
Tom Cherryc3170092017-08-10 12:22:44 -0700234 PLOG(INFO) << "Failed to read "
Tri Voc8137f92019-01-22 18:22:25 -0800235 "/system/etc/selinux/plat_sepolicy_and_mapping.sha256";
236 return false;
237 }
Bowgo Tsaif016f252019-08-28 17:56:51 +0800238 std::string actual_system_ext_id;
239 if (!ReadFirstLine("/system_ext/etc/selinux/system_ext_sepolicy_and_mapping.sha256",
240 &actual_system_ext_id)) {
241 PLOG(INFO) << "Failed to read "
242 "/system_ext/etc/selinux/system_ext_sepolicy_and_mapping.sha256";
243 return false;
244 }
Tri Voc8137f92019-01-22 18:22:25 -0800245 std::string actual_product_id;
246 if (!ReadFirstLine("/product/etc/selinux/product_sepolicy_and_mapping.sha256",
247 &actual_product_id)) {
248 PLOG(INFO) << "Failed to read "
249 "/product/etc/selinux/product_sepolicy_and_mapping.sha256";
Tom Cherryc3170092017-08-10 12:22:44 -0700250 return false;
251 }
kaichieheef4cd72017-08-31 22:07:19 +0800252
Tom Cherryc3170092017-08-10 12:22:44 -0700253 std::string precompiled_plat_id;
Tri Voc8137f92019-01-22 18:22:25 -0800254 std::string precompiled_plat_sha256 = *file + ".plat_sepolicy_and_mapping.sha256";
255 if (!ReadFirstLine(precompiled_plat_sha256.c_str(), &precompiled_plat_id)) {
256 PLOG(INFO) << "Failed to read " << precompiled_plat_sha256;
kaichieheef4cd72017-08-31 22:07:19 +0800257 file->clear();
Tom Cherryc3170092017-08-10 12:22:44 -0700258 return false;
259 }
Bowgo Tsaif016f252019-08-28 17:56:51 +0800260 std::string precompiled_system_ext_id;
261 std::string precompiled_system_ext_sha256 = *file + ".system_ext_sepolicy_and_mapping.sha256";
262 if (!ReadFirstLine(precompiled_system_ext_sha256.c_str(), &precompiled_system_ext_id)) {
263 PLOG(INFO) << "Failed to read " << precompiled_system_ext_sha256;
264 file->clear();
265 return false;
266 }
Tri Voc8137f92019-01-22 18:22:25 -0800267 std::string precompiled_product_id;
268 std::string precompiled_product_sha256 = *file + ".product_sepolicy_and_mapping.sha256";
269 if (!ReadFirstLine(precompiled_product_sha256.c_str(), &precompiled_product_id)) {
270 PLOG(INFO) << "Failed to read " << precompiled_product_sha256;
271 file->clear();
272 return false;
273 }
274 if (actual_plat_id.empty() || actual_plat_id != precompiled_plat_id ||
Bowgo Tsaif016f252019-08-28 17:56:51 +0800275 actual_system_ext_id.empty() || actual_system_ext_id != precompiled_system_ext_id ||
Tri Voc8137f92019-01-22 18:22:25 -0800276 actual_product_id.empty() || actual_product_id != precompiled_product_id) {
kaichieheef4cd72017-08-31 22:07:19 +0800277 file->clear();
Tom Cherryc3170092017-08-10 12:22:44 -0700278 return false;
279 }
Tom Cherryc3170092017-08-10 12:22:44 -0700280 return true;
281}
282
283bool GetVendorMappingVersion(std::string* plat_vers) {
284 if (!ReadFirstLine("/vendor/etc/selinux/plat_sepolicy_vers.txt", plat_vers)) {
285 PLOG(ERROR) << "Failed to read /vendor/etc/selinux/plat_sepolicy_vers.txt";
286 return false;
287 }
288 if (plat_vers->empty()) {
289 LOG(ERROR) << "No version present in plat_sepolicy_vers.txt";
290 return false;
291 }
292 return true;
293}
294
295constexpr const char plat_policy_cil_file[] = "/system/etc/selinux/plat_sepolicy.cil";
296
297bool IsSplitPolicyDevice() {
298 return access(plat_policy_cil_file, R_OK) != -1;
299}
300
301bool LoadSplitPolicy() {
302 // IMPLEMENTATION NOTE: Split policy consists of three CIL files:
303 // * platform -- policy needed due to logic contained in the system image,
304 // * non-platform -- policy needed due to logic contained in the vendor image,
305 // * mapping -- mapping policy which helps preserve forward-compatibility of non-platform policy
306 // with newer versions of platform policy.
307 //
308 // secilc is invoked to compile the above three policy files into a single monolithic policy
309 // file. This file is then loaded into the kernel.
310
Bowgo Tsai1dacd422019-03-04 17:53:34 +0800311 // See if we need to load userdebug_plat_sepolicy.cil instead of plat_sepolicy.cil.
312 const char* force_debuggable_env = getenv("INIT_FORCE_DEBUGGABLE");
313 bool use_userdebug_policy =
314 ((force_debuggable_env && "true"s == force_debuggable_env) &&
Bowgo Tsai30afda72019-04-11 23:57:24 +0800315 AvbHandle::IsDeviceUnlocked() && access(kDebugRamdiskSEPolicy, F_OK) == 0);
Bowgo Tsai1dacd422019-03-04 17:53:34 +0800316 if (use_userdebug_policy) {
317 LOG(WARNING) << "Using userdebug system sepolicy";
318 }
319
Tom Cherryc3170092017-08-10 12:22:44 -0700320 // Load precompiled policy from vendor image, if a matching policy is found there. The policy
321 // must match the platform policy on the system image.
322 std::string precompiled_sepolicy_file;
Bowgo Tsai1dacd422019-03-04 17:53:34 +0800323 // use_userdebug_policy requires compiling sepolicy with userdebug_plat_sepolicy.cil.
324 // Thus it cannot use the precompiled policy from vendor image.
325 if (!use_userdebug_policy && FindPrecompiledSplitPolicy(&precompiled_sepolicy_file)) {
Tom Cherryc3170092017-08-10 12:22:44 -0700326 unique_fd fd(open(precompiled_sepolicy_file.c_str(), O_RDONLY | O_CLOEXEC | O_BINARY));
327 if (fd != -1) {
328 if (selinux_android_load_policy_from_fd(fd, precompiled_sepolicy_file.c_str()) < 0) {
329 LOG(ERROR) << "Failed to load SELinux policy from " << precompiled_sepolicy_file;
330 return false;
331 }
332 return true;
333 }
334 }
335 // No suitable precompiled policy could be loaded
336
337 LOG(INFO) << "Compiling SELinux policy";
338
Tom Cherryc3170092017-08-10 12:22:44 -0700339 // We store the output of the compilation on /dev because this is the most convenient tmpfs
340 // storage mount available this early in the boot sequence.
341 char compiled_sepolicy[] = "/dev/sepolicy.XXXXXX";
342 unique_fd compiled_sepolicy_fd(mkostemp(compiled_sepolicy, O_CLOEXEC));
343 if (compiled_sepolicy_fd < 0) {
344 PLOG(ERROR) << "Failed to create temporary file " << compiled_sepolicy;
345 return false;
346 }
347
348 // Determine which mapping file to include
349 std::string vend_plat_vers;
350 if (!GetVendorMappingVersion(&vend_plat_vers)) {
351 return false;
352 }
Tri Vo503f1852019-01-16 11:57:19 -0800353 std::string plat_mapping_file("/system/etc/selinux/mapping/" + vend_plat_vers + ".cil");
kaichieheef4cd72017-08-31 22:07:19 +0800354
Jeff Vander Stoep0ac51cf2019-05-02 14:05:18 -0700355 std::string plat_compat_cil_file("/system/etc/selinux/mapping/" + vend_plat_vers +
356 ".compat.cil");
357 if (access(plat_compat_cil_file.c_str(), F_OK) == -1) {
358 plat_compat_cil_file.clear();
359 }
360
Bowgo Tsaif016f252019-08-28 17:56:51 +0800361 std::string system_ext_policy_cil_file("/system_ext/etc/selinux/system_ext_sepolicy.cil");
362 if (access(system_ext_policy_cil_file.c_str(), F_OK) == -1) {
363 system_ext_policy_cil_file.clear();
364 }
365
366 std::string system_ext_mapping_file("/system_ext/etc/selinux/mapping/" + vend_plat_vers +
367 ".cil");
368 if (access(system_ext_mapping_file.c_str(), F_OK) == -1) {
369 system_ext_mapping_file.clear();
370 }
371
Tri Vod3518cf2018-12-14 14:25:08 -0800372 std::string product_policy_cil_file("/product/etc/selinux/product_sepolicy.cil");
373 if (access(product_policy_cil_file.c_str(), F_OK) == -1) {
374 product_policy_cil_file.clear();
375 }
376
Tri Vo503f1852019-01-16 11:57:19 -0800377 std::string product_mapping_file("/product/etc/selinux/mapping/" + vend_plat_vers + ".cil");
378 if (access(product_mapping_file.c_str(), F_OK) == -1) {
379 product_mapping_file.clear();
380 }
381
Bowgo Tsai069ab5b2017-10-18 17:03:20 +0800382 // vendor_sepolicy.cil and plat_pub_versioned.cil are the new design to replace
kaichieheef4cd72017-08-31 22:07:19 +0800383 // nonplat_sepolicy.cil.
Bowgo Tsai069ab5b2017-10-18 17:03:20 +0800384 std::string plat_pub_versioned_cil_file("/vendor/etc/selinux/plat_pub_versioned.cil");
kaichieheef4cd72017-08-31 22:07:19 +0800385 std::string vendor_policy_cil_file("/vendor/etc/selinux/vendor_sepolicy.cil");
386
387 if (access(vendor_policy_cil_file.c_str(), F_OK) == -1) {
388 // For backward compatibility.
389 // TODO: remove this after no device is using nonplat_sepolicy.cil.
390 vendor_policy_cil_file = "/vendor/etc/selinux/nonplat_sepolicy.cil";
Bowgo Tsai069ab5b2017-10-18 17:03:20 +0800391 plat_pub_versioned_cil_file.clear();
392 } else if (access(plat_pub_versioned_cil_file.c_str(), F_OK) == -1) {
393 LOG(ERROR) << "Missing " << plat_pub_versioned_cil_file;
kaichieheef4cd72017-08-31 22:07:19 +0800394 return false;
395 }
396
397 // odm_sepolicy.cil is default but optional.
398 std::string odm_policy_cil_file("/odm/etc/selinux/odm_sepolicy.cil");
399 if (access(odm_policy_cil_file.c_str(), F_OK) == -1) {
400 odm_policy_cil_file.clear();
401 }
Jeff Vander Stoep724eda52019-02-15 12:13:38 -0800402 const std::string version_as_string = std::to_string(SEPOLICY_VERSION);
Andreas Huberc41b8382017-08-18 14:43:52 -0700403
Tom Cherryc3170092017-08-10 12:22:44 -0700404 // clang-format off
kaichieheef4cd72017-08-31 22:07:19 +0800405 std::vector<const char*> compile_args {
Tom Cherryc3170092017-08-10 12:22:44 -0700406 "/system/bin/secilc",
Bowgo Tsai30afda72019-04-11 23:57:24 +0800407 use_userdebug_policy ? kDebugRamdiskSEPolicy: plat_policy_cil_file,
Jeff Vander Stoep5e9ba3c2017-10-06 17:03:45 -0700408 "-m", "-M", "true", "-G", "-N",
Andreas Huberc41b8382017-08-18 14:43:52 -0700409 "-c", version_as_string.c_str(),
Tri Vo503f1852019-01-16 11:57:19 -0800410 plat_mapping_file.c_str(),
Tom Cherryc3170092017-08-10 12:22:44 -0700411 "-o", compiled_sepolicy,
412 // We don't care about file_contexts output by the compiler
413 "-f", "/sys/fs/selinux/null", // /dev/null is not yet available
kaichieheef4cd72017-08-31 22:07:19 +0800414 };
Tom Cherryc3170092017-08-10 12:22:44 -0700415 // clang-format on
416
Jeff Vander Stoep0ac51cf2019-05-02 14:05:18 -0700417 if (!plat_compat_cil_file.empty()) {
418 compile_args.push_back(plat_compat_cil_file.c_str());
419 }
Bowgo Tsaif016f252019-08-28 17:56:51 +0800420 if (!system_ext_policy_cil_file.empty()) {
421 compile_args.push_back(system_ext_policy_cil_file.c_str());
422 }
423 if (!system_ext_mapping_file.empty()) {
424 compile_args.push_back(system_ext_mapping_file.c_str());
425 }
Tri Vod3518cf2018-12-14 14:25:08 -0800426 if (!product_policy_cil_file.empty()) {
427 compile_args.push_back(product_policy_cil_file.c_str());
428 }
Tri Vo503f1852019-01-16 11:57:19 -0800429 if (!product_mapping_file.empty()) {
430 compile_args.push_back(product_mapping_file.c_str());
431 }
Bowgo Tsai069ab5b2017-10-18 17:03:20 +0800432 if (!plat_pub_versioned_cil_file.empty()) {
433 compile_args.push_back(plat_pub_versioned_cil_file.c_str());
kaichieheef4cd72017-08-31 22:07:19 +0800434 }
435 if (!vendor_policy_cil_file.empty()) {
436 compile_args.push_back(vendor_policy_cil_file.c_str());
437 }
438 if (!odm_policy_cil_file.empty()) {
439 compile_args.push_back(odm_policy_cil_file.c_str());
440 }
441 compile_args.push_back(nullptr);
442
443 if (!ForkExecveAndWaitForCompletion(compile_args[0], (char**)compile_args.data())) {
Tom Cherryc3170092017-08-10 12:22:44 -0700444 unlink(compiled_sepolicy);
445 return false;
446 }
447 unlink(compiled_sepolicy);
448
449 LOG(INFO) << "Loading compiled SELinux policy";
450 if (selinux_android_load_policy_from_fd(compiled_sepolicy_fd, compiled_sepolicy) < 0) {
451 LOG(ERROR) << "Failed to load SELinux policy from " << compiled_sepolicy;
452 return false;
453 }
454
455 return true;
456}
457
458bool LoadMonolithicPolicy() {
459 LOG(VERBOSE) << "Loading SELinux policy from monolithic file";
460 if (selinux_android_load_policy() < 0) {
461 PLOG(ERROR) << "Failed to load monolithic SELinux policy";
462 return false;
463 }
464 return true;
465}
466
467bool LoadPolicy() {
468 return IsSplitPolicyDevice() ? LoadSplitPolicy() : LoadMonolithicPolicy();
469}
470
Tom Cherryc3170092017-08-10 12:22:44 -0700471void SelinuxInitialize() {
Tom Cherryc3170092017-08-10 12:22:44 -0700472 LOG(INFO) << "Loading SELinux policy";
473 if (!LoadPolicy()) {
Tom Cherryd8db7ab2017-08-17 17:28:30 -0700474 LOG(FATAL) << "Unable to load SELinux policy";
Tom Cherryc3170092017-08-10 12:22:44 -0700475 }
476
477 bool kernel_enforcing = (security_getenforce() == 1);
478 bool is_enforcing = IsEnforcing();
479 if (kernel_enforcing != is_enforcing) {
480 if (security_setenforce(is_enforcing)) {
Paul Lawrenceb2c2d692019-08-30 11:11:44 -0700481 PLOG(FATAL) << "security_setenforce(" << (is_enforcing ? "true" : "false")
482 << ") failed";
Tom Cherryc3170092017-08-10 12:22:44 -0700483 }
484 }
485
Bernie Innocenticecebbb2020-02-06 03:49:33 +0900486 if (auto result = WriteFile("/sys/fs/selinux/checkreqprot", "0"); !result.ok()) {
Tom Cherryd8db7ab2017-08-17 17:28:30 -0700487 LOG(FATAL) << "Unable to write to /sys/fs/selinux/checkreqprot: " << result.error();
Tom Cherryc3170092017-08-10 12:22:44 -0700488 }
Tom Cherryc3170092017-08-10 12:22:44 -0700489}
490
Tom Cherry8180b482019-08-26 13:57:51 -0700491constexpr size_t kKlogMessageSize = 1024;
492
493void SelinuxAvcLog(char* buf, size_t buf_len) {
494 CHECK_GT(buf_len, 0u);
495
496 size_t str_len = strnlen(buf, buf_len);
497 // trim newline at end of string
498 if (buf[str_len - 1] == '\n') {
499 buf[str_len - 1] = '\0';
500 }
501
502 struct NetlinkMessage {
503 nlmsghdr hdr;
504 char buf[kKlogMessageSize];
505 } request = {};
506
507 request.hdr.nlmsg_flags = NLM_F_REQUEST;
508 request.hdr.nlmsg_type = AUDIT_USER_AVC;
509 request.hdr.nlmsg_len = sizeof(request);
510 strlcpy(request.buf, buf, sizeof(request.buf));
511
512 auto fd = unique_fd{socket(PF_NETLINK, SOCK_RAW | SOCK_CLOEXEC, NETLINK_AUDIT)};
513 if (!fd.ok()) {
514 return;
515 }
516
517 TEMP_FAILURE_RETRY(send(fd, &request, sizeof(request), 0));
518}
519
Tom Cherry7bfea3d2018-11-06 14:12:05 -0800520} // namespace
521
Tom Cherryc3170092017-08-10 12:22:44 -0700522void SelinuxRestoreContext() {
523 LOG(INFO) << "Running restorecon...";
524 selinux_android_restorecon("/dev", 0);
525 selinux_android_restorecon("/dev/kmsg", 0);
526 if constexpr (WORLD_WRITABLE_KMSG) {
527 selinux_android_restorecon("/dev/kmsg_debug", 0);
528 }
Tom Cherry81ae0752018-07-30 16:23:49 -0700529 selinux_android_restorecon("/dev/null", 0);
530 selinux_android_restorecon("/dev/ptmx", 0);
Tom Cherryc3170092017-08-10 12:22:44 -0700531 selinux_android_restorecon("/dev/socket", 0);
532 selinux_android_restorecon("/dev/random", 0);
533 selinux_android_restorecon("/dev/urandom", 0);
534 selinux_android_restorecon("/dev/__properties__", 0);
535
Tom Cherryc3170092017-08-10 12:22:44 -0700536 selinux_android_restorecon("/dev/block", SELINUX_ANDROID_RESTORECON_RECURSE);
David Anderson1ff75812020-11-13 00:31:47 -0800537 selinux_android_restorecon("/dev/dm-user", SELINUX_ANDROID_RESTORECON_RECURSE);
Tom Cherryc3170092017-08-10 12:22:44 -0700538 selinux_android_restorecon("/dev/device-mapper", 0);
Jiyong Park4ba548d2019-02-22 16:04:35 +0900539
540 selinux_android_restorecon("/apex", 0);
Kiyoung Kim99df54b2019-11-22 16:14:10 +0900541
542 selinux_android_restorecon("/linkerconfig", 0);
Bowgo Tsai196cc582020-01-20 18:03:58 +0800543
David Andersonc991f342020-02-21 17:11:07 -0800544 // adb remount, snapshot-based updates, and DSUs all create files during
545 // first-stage init.
Yifan Hongd91998f2020-02-20 17:54:57 -0800546 selinux_android_restorecon(SnapshotManager::GetGlobalRollbackIndicatorPath().c_str(), 0);
David Anderson4bb500f2020-03-06 18:14:19 -0800547 selinux_android_restorecon("/metadata/gsi", SELINUX_ANDROID_RESTORECON_RECURSE |
548 SELINUX_ANDROID_RESTORECON_SKIP_SEHASH);
Tom Cherryc3170092017-08-10 12:22:44 -0700549}
550
Tom Cherry74069d12018-07-20 15:26:25 -0700551int SelinuxKlogCallback(int type, const char* fmt, ...) {
552 android::base::LogSeverity severity = android::base::ERROR;
553 if (type == SELINUX_WARNING) {
554 severity = android::base::WARNING;
555 } else if (type == SELINUX_INFO) {
556 severity = android::base::INFO;
557 }
Tom Cherry8180b482019-08-26 13:57:51 -0700558 char buf[kKlogMessageSize];
Tom Cherry74069d12018-07-20 15:26:25 -0700559 va_list ap;
560 va_start(ap, fmt);
Tom Cherry8180b482019-08-26 13:57:51 -0700561 int length_written = vsnprintf(buf, sizeof(buf), fmt, ap);
Tom Cherry74069d12018-07-20 15:26:25 -0700562 va_end(ap);
Tom Cherry8180b482019-08-26 13:57:51 -0700563 if (length_written <= 0) {
564 return 0;
565 }
566 if (type == SELINUX_AVC) {
567 SelinuxAvcLog(buf, sizeof(buf));
568 } else {
569 android::base::KernelLogger(android::base::MAIN, severity, "selinux", nullptr, 0, buf);
570 }
Tom Cherry74069d12018-07-20 15:26:25 -0700571 return 0;
572}
573
Tom Cherryc3170092017-08-10 12:22:44 -0700574void SelinuxSetupKernelLogging() {
575 selinux_callback cb;
Tom Cherry74069d12018-07-20 15:26:25 -0700576 cb.func_log = SelinuxKlogCallback;
Tom Cherryc3170092017-08-10 12:22:44 -0700577 selinux_set_callback(SELINUX_CB_LOG, cb);
578}
579
Tom Cherry40acb372018-08-01 13:41:12 -0700580int SelinuxGetVendorAndroidVersion() {
Tom Cherryc5cf85d2019-07-31 13:59:15 -0700581 static int vendor_android_version = [] {
582 if (!IsSplitPolicyDevice()) {
583 // If this device does not split sepolicy files, it's not a Treble device and therefore,
584 // we assume it's always on the latest platform.
585 return __ANDROID_API_FUTURE__;
586 }
Logan Chien837b2a42018-05-03 14:33:52 +0800587
Tom Cherryc5cf85d2019-07-31 13:59:15 -0700588 std::string version;
589 if (!GetVendorMappingVersion(&version)) {
590 LOG(FATAL) << "Could not read vendor SELinux version";
591 }
Logan Chien837b2a42018-05-03 14:33:52 +0800592
Tom Cherryc5cf85d2019-07-31 13:59:15 -0700593 int major_version;
594 std::string major_version_str(version, 0, version.find('.'));
595 if (!ParseInt(major_version_str, &major_version)) {
596 PLOG(FATAL) << "Failed to parse the vendor sepolicy major version "
597 << major_version_str;
598 }
Logan Chien837b2a42018-05-03 14:33:52 +0800599
Tom Cherryc5cf85d2019-07-31 13:59:15 -0700600 return major_version;
601 }();
602 return vendor_android_version;
Logan Chien837b2a42018-05-03 14:33:52 +0800603}
604
David Andersond0ce5302020-03-20 21:47:10 -0700605// This is for R system.img/system_ext.img to work on old vendor.img as system_ext.img
606// is introduced in R. We mount system_ext in second stage init because the first-stage
607// init in boot.img won't be updated in the system-only OTA scenario.
608void MountMissingSystemPartitions() {
609 android::fs_mgr::Fstab fstab;
610 if (!ReadDefaultFstab(&fstab)) {
611 LOG(ERROR) << "Could not read default fstab";
612 }
613
614 android::fs_mgr::Fstab mounts;
615 if (!ReadFstabFromFile("/proc/mounts", &mounts)) {
616 LOG(ERROR) << "Could not read /proc/mounts";
617 }
618
619 static const std::vector<std::string> kPartitionNames = {"system_ext", "product"};
620
621 android::fs_mgr::Fstab extra_fstab;
622 for (const auto& name : kPartitionNames) {
623 if (GetEntryForMountPoint(&mounts, "/"s + name)) {
624 // The partition is already mounted.
625 continue;
626 }
627
628 auto system_entry = GetEntryForMountPoint(&fstab, "/system");
629 if (!system_entry) {
630 LOG(ERROR) << "Could not find mount entry for /system";
631 break;
632 }
633 if (!system_entry->fs_mgr_flags.logical) {
634 LOG(INFO) << "Skipping mount of " << name << ", system is not dynamic.";
635 break;
636 }
637
638 auto entry = *system_entry;
639 auto partition_name = name + fs_mgr_get_slot_suffix();
640 auto replace_name = "system"s + fs_mgr_get_slot_suffix();
641
642 entry.mount_point = "/"s + name;
643 entry.blk_device =
644 android::base::StringReplace(entry.blk_device, replace_name, partition_name, false);
645 if (!fs_mgr_update_logical_partition(&entry)) {
646 LOG(ERROR) << "Could not update logical partition";
647 continue;
648 }
649
650 extra_fstab.emplace_back(std::move(entry));
651 }
652
653 SkipMountingPartitions(&extra_fstab);
654 if (extra_fstab.empty()) {
655 return;
656 }
657
658 BlockDevInitializer block_dev_init;
659 for (auto& entry : extra_fstab) {
660 if (access(entry.blk_device.c_str(), F_OK) != 0) {
661 auto block_dev = android::base::Basename(entry.blk_device);
662 if (!block_dev_init.InitDmDevice(block_dev)) {
663 LOG(ERROR) << "Failed to find device-mapper node: " << block_dev;
664 continue;
665 }
666 }
667 if (fs_mgr_do_mount_one(entry)) {
668 LOG(ERROR) << "Could not mount " << entry.mount_point;
669 }
670 }
671}
672
Tom Cherry7bfea3d2018-11-06 14:12:05 -0800673int SetupSelinux(char** argv) {
Mark Salyzynbeb6abe2019-07-29 09:35:18 -0700674 SetStdioToDevNull(argv);
Tom Cherry59656fb2019-05-28 10:19:44 -0700675 InitKernelLogging(argv);
Tom Cherry7bfea3d2018-11-06 14:12:05 -0800676
677 if (REBOOT_BOOTLOADER_ON_PANIC) {
678 InstallRebootSignalHandlers();
679 }
680
Mark Salyzyn10377df2019-03-27 08:10:41 -0700681 boot_clock::time_point start_time = boot_clock::now();
682
David Andersond0ce5302020-03-20 21:47:10 -0700683 MountMissingSystemPartitions();
684
Tom Cherry7bfea3d2018-11-06 14:12:05 -0800685 // Set up SELinux, loading the SELinux policy.
686 SelinuxSetupKernelLogging();
687 SelinuxInitialize();
688
689 // We're in the kernel domain and want to transition to the init domain. File systems that
690 // store SELabels in their xattrs, such as ext4 do not need an explicit restorecon here,
691 // but other file systems do. In particular, this is needed for ramdisks such as the
692 // recovery image for A/B devices.
693 if (selinux_android_restorecon("/system/bin/init", 0) == -1) {
694 PLOG(FATAL) << "restorecon failed of /system/bin/init failed";
695 }
696
Mark Salyzyn44505ec2019-05-08 12:44:50 -0700697 setenv(kEnvSelinuxStartedAt, std::to_string(start_time.time_since_epoch().count()).c_str(), 1);
Mark Salyzyn10377df2019-03-27 08:10:41 -0700698
Tom Cherry7bfea3d2018-11-06 14:12:05 -0800699 const char* path = "/system/bin/init";
700 const char* args[] = {path, "second_stage", nullptr};
701 execv(path, const_cast<char**>(args));
702
703 // execv() only returns if an error happened, in which case we
704 // panic and never return from this function.
705 PLOG(FATAL) << "execv(\"" << path << "\") failed";
706
707 return 1;
708}
709
Tom Cherryc3170092017-08-10 12:22:44 -0700710} // namespace init
711} // namespace android