blob: d09568567c0d2a37736258eb49f36af2e3965079 [file] [log] [blame]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2008 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
Elliott Hughes8d82ea02015-02-06 20:15:18 -080017#include <ctype.h>
Rom Lemarchand6a524432015-02-28 06:39:11 -080018#include <dirent.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080019#include <errno.h>
20#include <fcntl.h>
Elliott Hughes9605a942016-11-10 17:43:47 -080021#include <inttypes.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080022#include <libgen.h>
Elliott Hughescc86fb22015-03-17 20:01:13 -070023#include <paths.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080024#include <signal.h>
25#include <stdarg.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070026#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
Elliott Hughes929f4072015-04-24 21:13:44 -070029#include <sys/epoll.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070030#include <sys/mount.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070031#include <sys/socket.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080032#include <sys/stat.h>
Elliott Hughes35f5d042016-07-26 09:32:33 -070033#include <sys/sysmacros.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080034#include <sys/types.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070035#include <sys/un.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080036#include <sys/wait.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080037#include <unistd.h>
38
Stephen Smalleye46f9d52012-01-13 08:48:47 -050039#include <selinux/selinux.h>
40#include <selinux/label.h>
Stephen Smalleyae6f3d72012-05-01 15:02:53 -040041#include <selinux/android.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050042
Elliott Hughes4f713192015-12-04 22:00:26 -080043#include <android-base/file.h>
44#include <android-base/stringprintf.h>
45#include <android-base/strings.h>
Alex Klyubin16696e22017-02-28 12:32:20 -080046#include <android-base/unique_fd.h>
Alex Klyubin0d872d82013-08-16 13:19:24 -070047#include <cutils/fs.h>
Elliott Hughes8d82ea02015-02-06 20:15:18 -080048#include <cutils/iosched_policy.h>
49#include <cutils/list.h>
50#include <cutils/sockets.h>
bowgotsai76351272017-02-14 22:06:20 +080051#include <libavb/libavb.h>
Colin Crossf83d0b92010-04-21 12:04:20 -070052#include <private/android_filesystem_config.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070053
Elliott Hughes99dae542016-11-10 19:22:18 -080054#include <fstream>
Rom Lemarchand6a524432015-02-28 06:39:11 -080055#include <memory>
Bowgo Tsaid4beed22017-02-18 18:33:13 +080056#include <set>
57#include <vector>
Rom Lemarchand6a524432015-02-28 06:39:11 -080058
Tom Cherryfa0c21c2015-07-23 17:53:11 -070059#include "action.h"
Tom Cherrybac32992015-07-31 12:45:25 -070060#include "bootchart.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070061#include "devices.h"
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +080062#include "fs_mgr.h"
Tom Cherryb7349902015-08-26 11:43:36 -070063#include "import_parser.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070064#include "init.h"
Tom Cherrybac32992015-07-31 12:45:25 -070065#include "init_parser.h"
66#include "keychords.h"
Colin Crossed8a7d82010-04-19 17:05:34 -070067#include "log.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070068#include "property_service.h"
Tom Cherrybac32992015-07-31 12:45:25 -070069#include "service.h"
Colin Cross9c5366b2010-04-13 19:48:59 -070070#include "signal_handler.h"
Colin Crossf83d0b92010-04-21 12:04:20 -070071#include "ueventd.h"
Tom Cherrybac32992015-07-31 12:45:25 -070072#include "util.h"
Arve Hjønnevågd97d9072012-06-13 21:51:56 -070073#include "watchdogd.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070074
Elliott Hughes9605a942016-11-10 17:43:47 -080075using android::base::StringPrintf;
76
Stephen Smalleye46f9d52012-01-13 08:48:47 -050077struct selabel_handle *sehandle;
rpcraig63207cd2012-08-09 10:05:49 -040078struct selabel_handle *sehandle_prop;
Stephen Smalleye46f9d52012-01-13 08:48:47 -050079
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070080static int property_triggers_enabled = 0;
81
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070082static char qemu[32];
83
Viorel Suman70daa672016-03-21 10:08:07 +020084std::string default_console = "/dev/console";
Elliott Hughes9605a942016-11-10 17:43:47 -080085static time_t process_needs_restart_at;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070086
Tom Cherrybac32992015-07-31 12:45:25 -070087const char *ENV[32];
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070088
Wei Wang2d0fdaa2017-02-02 10:52:39 -080089static std::unique_ptr<Timer> waiting_for_exec(nullptr);
Elliott Hughes8d82ea02015-02-06 20:15:18 -080090
Elliott Hughes929f4072015-04-24 21:13:44 -070091static int epoll_fd = -1;
92
Wei Wang132ac312017-01-25 16:27:03 -080093static std::unique_ptr<Timer> waiting_for_prop(nullptr);
94static std::string wait_prop_name;
95static std::string wait_prop_value;
96
Elliott Hughes929f4072015-04-24 21:13:44 -070097void register_epoll_handler(int fd, void (*fn)()) {
98 epoll_event ev;
99 ev.events = EPOLLIN;
100 ev.data.ptr = reinterpret_cast<void*>(fn);
101 if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev) == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700102 PLOG(ERROR) << "epoll_ctl failed";
Elliott Hughes929f4072015-04-24 21:13:44 -0700103 }
104}
105
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700106/* add_environment - add "key=value" to the current environment */
107int add_environment(const char *key, const char *val)
108{
James Morrissey381341f2014-05-16 11:36:36 +0100109 size_t n;
110 size_t key_len = strlen(key);
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -0700111
James Morrissey381341f2014-05-16 11:36:36 +0100112 /* The last environment entry is reserved to terminate the list */
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700113 for (n = 0; n < (arraysize(ENV) - 1); n++) {
James Morrissey381341f2014-05-16 11:36:36 +0100114
115 /* Delete any existing entry for this key */
116 if (ENV[n] != NULL) {
117 size_t entry_key_len = strcspn(ENV[n], "=");
118 if ((entry_key_len == key_len) && (strncmp(ENV[n], key, entry_key_len) == 0)) {
119 free((char*)ENV[n]);
120 ENV[n] = NULL;
121 }
122 }
123
124 /* Add entry if a free slot is available */
125 if (ENV[n] == NULL) {
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800126 char* entry;
127 asprintf(&entry, "%s=%s", key, val);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700128 ENV[n] = entry;
129 return 0;
130 }
131 }
132
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700133 LOG(ERROR) << "No env. room to store: '" << key << "':'" << val << "'";
James Morrissey381341f2014-05-16 11:36:36 +0100134
135 return -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700136}
137
Wei Wang2d0fdaa2017-02-02 10:52:39 -0800138bool start_waiting_for_exec()
139{
140 if (waiting_for_exec) {
141 return false;
142 }
143 waiting_for_exec.reset(new Timer());
144 return true;
145}
146
147void stop_waiting_for_exec()
148{
149 if (waiting_for_exec) {
150 LOG(INFO) << "Wait for exec took " << *waiting_for_exec;
151 waiting_for_exec.reset();
152 }
153}
154
155bool start_waiting_for_property(const char *name, const char *value)
Wei Wang132ac312017-01-25 16:27:03 -0800156{
157 if (waiting_for_prop) {
158 return false;
159 }
160 if (property_get(name) != value) {
161 // Current property value is not equal to expected value
162 wait_prop_name = name;
163 wait_prop_value = value;
164 waiting_for_prop.reset(new Timer());
165 } else {
Wei Wang2d0fdaa2017-02-02 10:52:39 -0800166 LOG(INFO) << "start_waiting_for_property(\""
167 << name << "\", \"" << value << "\"): already set";
Wei Wang132ac312017-01-25 16:27:03 -0800168 }
169 return true;
170}
171
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700172void property_changed(const char *name, const char *value)
173{
Colin Crossebc6ff12010-04-13 19:52:01 -0700174 if (property_triggers_enabled)
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700175 ActionManager::GetInstance().QueuePropertyTrigger(name, value);
Wei Wang132ac312017-01-25 16:27:03 -0800176 if (waiting_for_prop) {
177 if (wait_prop_name == name && wait_prop_value == value) {
178 wait_prop_name.clear();
179 wait_prop_value.clear();
180 LOG(INFO) << "Wait for property took " << *waiting_for_prop;
181 waiting_for_prop.reset();
182 }
183 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700184}
185
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700186static void restart_processes()
187{
Elliott Hughes9605a942016-11-10 17:43:47 -0800188 process_needs_restart_at = 0;
189 ServiceManager::GetInstance().ForEachServiceWithFlags(SVC_RESTARTING, [](Service* s) {
190 s->RestartIfNeeded(&process_needs_restart_at);
191 });
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700192}
193
Elliott Hughesbdeac392016-04-12 15:38:27 -0700194void handle_control_message(const std::string& msg, const std::string& name) {
Tom Cherrybac32992015-07-31 12:45:25 -0700195 Service* svc = ServiceManager::GetInstance().FindServiceByName(name);
Elliott Hughesbdeac392016-04-12 15:38:27 -0700196 if (svc == nullptr) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700197 LOG(ERROR) << "no such service '" << name << "'";
Elliott Hughesbdeac392016-04-12 15:38:27 -0700198 return;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700199 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700200
Tom Cherrybac32992015-07-31 12:45:25 -0700201 if (msg == "start") {
Elliott Hughesbdeac392016-04-12 15:38:27 -0700202 svc->Start();
Tom Cherrybac32992015-07-31 12:45:25 -0700203 } else if (msg == "stop") {
Elliott Hughesbdeac392016-04-12 15:38:27 -0700204 svc->Stop();
Tom Cherrybac32992015-07-31 12:45:25 -0700205 } else if (msg == "restart") {
Elliott Hughesbdeac392016-04-12 15:38:27 -0700206 svc->Restart();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700207 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700208 LOG(ERROR) << "unknown control msg '" << msg << "'";
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700209 }
210}
211
Tom Cherry96f67312015-07-30 13:52:55 -0700212static int wait_for_coldboot_done_action(const std::vector<std::string>& args) {
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700213 Timer t;
214
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700215 LOG(VERBOSE) << "Waiting for " COLDBOOT_DONE "...";
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000216
217 // Historically we had a 1s timeout here because we weren't otherwise
218 // tracking boot time, and many OEMs made their sepolicy regular
219 // expressions too expensive (http://b/19899875).
220
221 // Now we're tracking boot time, just log the time taken to a system
222 // property. We still panic if it takes more than a minute though,
223 // because any build that slow isn't likely to boot at all, and we'd
224 // rather any test lab devices fail back to the bootloader.
225 if (wait_for_file(COLDBOOT_DONE, 60s) < 0) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700226 LOG(ERROR) << "Timed out waiting for " COLDBOOT_DONE;
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000227 panic();
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700228 }
229
James Hawkins27c05222017-01-26 11:55:44 -0800230 property_set("ro.boottime.init.cold_boot_wait", std::to_string(t.duration_ms()).c_str());
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700231 return 0;
Colin Crossebc6ff12010-04-13 19:52:01 -0700232}
233
Alex Klyubin0d872d82013-08-16 13:19:24 -0700234/*
235 * Writes 512 bytes of output from Hardware RNG (/dev/hw_random, backed
236 * by Linux kernel's hw_random framework) into Linux RNG's via /dev/urandom.
237 * Does nothing if Hardware RNG is not present.
238 *
239 * Since we don't yet trust the quality of Hardware RNG, these bytes are not
240 * mixed into the primary pool of Linux RNG and the entropy estimate is left
241 * unmodified.
242 *
243 * If the HW RNG device /dev/hw_random is present, we require that at least
244 * 512 bytes read from it are written into Linux RNG. QA is expected to catch
245 * devices/configurations where these I/O operations are blocking for a long
246 * time. We do not reboot or halt on failures, as this is a best-effort
247 * attempt.
248 */
Tom Cherry96f67312015-07-30 13:52:55 -0700249static int mix_hwrng_into_linux_rng_action(const std::vector<std::string>& args)
Alex Klyubin0d872d82013-08-16 13:19:24 -0700250{
251 int result = -1;
252 int hwrandom_fd = -1;
253 int urandom_fd = -1;
254 char buf[512];
255 ssize_t chunk_size;
256 size_t total_bytes_written = 0;
257
258 hwrandom_fd = TEMP_FAILURE_RETRY(
Nick Kralevich45a884f2015-02-02 14:37:22 -0800259 open("/dev/hw_random", O_RDONLY | O_NOFOLLOW | O_CLOEXEC));
Alex Klyubin0d872d82013-08-16 13:19:24 -0700260 if (hwrandom_fd == -1) {
261 if (errno == ENOENT) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700262 LOG(ERROR) << "/dev/hw_random not found";
263 // It's not an error to not have a Hardware RNG.
264 result = 0;
Alex Klyubin0d872d82013-08-16 13:19:24 -0700265 } else {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700266 PLOG(ERROR) << "Failed to open /dev/hw_random";
Alex Klyubin0d872d82013-08-16 13:19:24 -0700267 }
268 goto ret;
269 }
270
271 urandom_fd = TEMP_FAILURE_RETRY(
Nick Kralevich45a884f2015-02-02 14:37:22 -0800272 open("/dev/urandom", O_WRONLY | O_NOFOLLOW | O_CLOEXEC));
Alex Klyubin0d872d82013-08-16 13:19:24 -0700273 if (urandom_fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700274 PLOG(ERROR) << "Failed to open /dev/urandom";
Alex Klyubin0d872d82013-08-16 13:19:24 -0700275 goto ret;
276 }
277
278 while (total_bytes_written < sizeof(buf)) {
279 chunk_size = TEMP_FAILURE_RETRY(
280 read(hwrandom_fd, buf, sizeof(buf) - total_bytes_written));
281 if (chunk_size == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700282 PLOG(ERROR) << "Failed to read from /dev/hw_random";
Alex Klyubin0d872d82013-08-16 13:19:24 -0700283 goto ret;
284 } else if (chunk_size == 0) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700285 LOG(ERROR) << "Failed to read from /dev/hw_random: EOF";
Alex Klyubin0d872d82013-08-16 13:19:24 -0700286 goto ret;
287 }
288
289 chunk_size = TEMP_FAILURE_RETRY(write(urandom_fd, buf, chunk_size));
290 if (chunk_size == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700291 PLOG(ERROR) << "Failed to write to /dev/urandom";
Alex Klyubin0d872d82013-08-16 13:19:24 -0700292 goto ret;
293 }
294 total_bytes_written += chunk_size;
295 }
296
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700297 LOG(INFO) << "Mixed " << total_bytes_written << " bytes from /dev/hw_random into /dev/urandom";
Alex Klyubin0d872d82013-08-16 13:19:24 -0700298 result = 0;
299
300ret:
301 if (hwrandom_fd != -1) {
302 close(hwrandom_fd);
303 }
304 if (urandom_fd != -1) {
305 close(urandom_fd);
306 }
Alex Klyubin0d872d82013-08-16 13:19:24 -0700307 return result;
308}
309
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000310static void security_failure() {
311 LOG(ERROR) << "Security failure...";
312 panic();
313}
314
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800315static bool set_highest_available_option_value(std::string path, int min, int max)
316{
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000317 std::ifstream inf(path, std::fstream::in);
318 if (!inf) {
319 LOG(ERROR) << "Cannot open for reading: " << path;
320 return false;
321 }
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800322
323 int current = max;
324 while (current >= min) {
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000325 // try to write out new value
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800326 std::string str_val = std::to_string(current);
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000327 std::ofstream of(path, std::fstream::out);
328 if (!of) {
329 LOG(ERROR) << "Cannot open for writing: " << path;
330 return false;
331 }
332 of << str_val << std::endl;
333 of.close();
334
335 // check to make sure it was recorded
336 inf.seekg(0);
337 std::string str_rec;
338 inf >> str_rec;
339 if (str_val.compare(str_rec) == 0) {
340 break;
341 }
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800342 current--;
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000343 }
344 inf.close();
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800345
346 if (current < min) {
347 LOG(ERROR) << "Unable to set minimum option value " << min << " in " << path;
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000348 return false;
349 }
350 return true;
351}
352
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800353#define MMAP_RND_PATH "/proc/sys/vm/mmap_rnd_bits"
354#define MMAP_RND_COMPAT_PATH "/proc/sys/vm/mmap_rnd_compat_bits"
355
356/* __attribute__((unused)) due to lack of mips support: see mips block
357 * in set_mmap_rnd_bits_action */
358static bool __attribute__((unused)) set_mmap_rnd_bits_min(int start, int min, bool compat) {
359 std::string path;
360 if (compat) {
361 path = MMAP_RND_COMPAT_PATH;
362 } else {
363 path = MMAP_RND_PATH;
364 }
365
366 return set_highest_available_option_value(path, min, start);
367}
368
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000369/*
370 * Set /proc/sys/vm/mmap_rnd_bits and potentially
371 * /proc/sys/vm/mmap_rnd_compat_bits to the maximum supported values.
372 * Returns -1 if unable to set these to an acceptable value.
373 *
374 * To support this sysctl, the following upstream commits are needed:
375 *
376 * d07e22597d1d mm: mmap: add new /proc tunable for mmap_base ASLR
377 * e0c25d958f78 arm: mm: support ARCH_MMAP_RND_BITS
378 * 8f0d3aa9de57 arm64: mm: support ARCH_MMAP_RND_BITS
379 * 9e08f57d684a x86: mm: support ARCH_MMAP_RND_BITS
380 * ec9ee4acd97c drivers: char: random: add get_random_long()
381 * 5ef11c35ce86 mm: ASLR: use get_random_long()
382 */
383static int set_mmap_rnd_bits_action(const std::vector<std::string>& args)
384{
385 int ret = -1;
386
387 /* values are arch-dependent */
388#if defined(__aarch64__)
389 /* arm64 supports 18 - 33 bits depending on pagesize and VA_SIZE */
390 if (set_mmap_rnd_bits_min(33, 24, false)
391 && set_mmap_rnd_bits_min(16, 16, true)) {
392 ret = 0;
393 }
394#elif defined(__x86_64__)
395 /* x86_64 supports 28 - 32 bits */
396 if (set_mmap_rnd_bits_min(32, 32, false)
397 && set_mmap_rnd_bits_min(16, 16, true)) {
398 ret = 0;
399 }
400#elif defined(__arm__) || defined(__i386__)
401 /* check to see if we're running on 64-bit kernel */
402 bool h64 = !access(MMAP_RND_COMPAT_PATH, F_OK);
403 /* supported 32-bit architecture must have 16 bits set */
404 if (set_mmap_rnd_bits_min(16, 16, h64)) {
405 ret = 0;
406 }
407#elif defined(__mips__) || defined(__mips64__)
408 // TODO: add mips support b/27788820
409 ret = 0;
410#else
dcashman41d0b6d2016-12-14 08:37:11 -0800411 LOG(ERROR) << "Unknown architecture";
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000412#endif
413
Daniel Cashmanbaccc402016-03-25 23:49:05 +0000414 if (ret == -1) {
415 LOG(ERROR) << "Unable to set adequate mmap entropy value!";
416 security_failure();
417 }
418 return ret;
419}
420
Dave Weinstein44f7e4f2017-01-19 18:03:34 -0800421#define KPTR_RESTRICT_PATH "/proc/sys/kernel/kptr_restrict"
422#define KPTR_RESTRICT_MINVALUE 2
423#define KPTR_RESTRICT_MAXVALUE 4
424
425/* Set kptr_restrict to the highest available level.
426 *
427 * Aborts if unable to set this to an acceptable value.
428 */
429static int set_kptr_restrict_action(const std::vector<std::string>& args)
430{
431 std::string path = KPTR_RESTRICT_PATH;
432
433 if (!set_highest_available_option_value(path, KPTR_RESTRICT_MINVALUE, KPTR_RESTRICT_MAXVALUE)) {
434 LOG(ERROR) << "Unable to set adequate kptr_restrict value!";
435 security_failure();
436 }
437 return 0;
438}
439
Tom Cherry96f67312015-07-30 13:52:55 -0700440static int keychord_init_action(const std::vector<std::string>& args)
Colin Crossebc6ff12010-04-13 19:52:01 -0700441{
442 keychord_init();
443 return 0;
444}
445
Tom Cherry96f67312015-07-30 13:52:55 -0700446static int console_init_action(const std::vector<std::string>& args)
Colin Crossebc6ff12010-04-13 19:52:01 -0700447{
Viorel Sumanefc72752016-03-21 10:23:43 +0200448 std::string console = property_get("ro.boot.console");
449 if (!console.empty()) {
Viorel Suman70daa672016-03-21 10:08:07 +0200450 default_console = "/dev/" + console;
Colin Crossebc6ff12010-04-13 19:52:01 -0700451 }
Colin Crossebc6ff12010-04-13 19:52:01 -0700452 return 0;
453}
454
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700455static void import_kernel_nv(const std::string& key, const std::string& value, bool for_emulator) {
456 if (key.empty()) return;
Dima Zavin5511c842011-12-19 11:21:32 -0800457
458 if (for_emulator) {
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700459 // In the emulator, export any kernel option with the "ro.kernel." prefix.
Elliott Hughes9605a942016-11-10 17:43:47 -0800460 property_set(StringPrintf("ro.kernel.%s", key.c_str()).c_str(), value.c_str());
Dima Zavin5511c842011-12-19 11:21:32 -0800461 return;
462 }
463
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700464 if (key == "qemu") {
465 strlcpy(qemu, value.c_str(), sizeof(qemu));
466 } else if (android::base::StartsWith(key, "androidboot.")) {
Elliott Hughes9605a942016-11-10 17:43:47 -0800467 property_set(StringPrintf("ro.boot.%s", key.c_str() + 12).c_str(), value.c_str());
Dima Zavin5511c842011-12-19 11:21:32 -0800468 }
469}
470
Sami Tolvanen9e9efca2015-12-07 12:33:58 +0000471static void export_oem_lock_status() {
472 if (property_get("ro.oem_unlock_supported") != "1") {
473 return;
474 }
475
476 std::string value = property_get("ro.boot.verifiedbootstate");
477
478 if (!value.empty()) {
479 property_set("ro.boot.flash.locked", value == "orange" ? "0" : "1");
480 }
481}
482
Elliott Hughesd679bc92015-03-20 08:50:46 -0700483static void export_kernel_boot_props() {
Dima Zavin5511c842011-12-19 11:21:32 -0800484 struct {
485 const char *src_prop;
Elliott Hughesd679bc92015-03-20 08:50:46 -0700486 const char *dst_prop;
487 const char *default_value;
Dima Zavin5511c842011-12-19 11:21:32 -0800488 } prop_map[] = {
Elliott Hughesd679bc92015-03-20 08:50:46 -0700489 { "ro.boot.serialno", "ro.serialno", "", },
490 { "ro.boot.mode", "ro.bootmode", "unknown", },
491 { "ro.boot.baseband", "ro.baseband", "unknown", },
Dima Zavin5511c842011-12-19 11:21:32 -0800492 { "ro.boot.bootloader", "ro.bootloader", "unknown", },
Elliott Hughesd679bc92015-03-20 08:50:46 -0700493 { "ro.boot.hardware", "ro.hardware", "unknown", },
494 { "ro.boot.revision", "ro.revision", "0", },
Dima Zavin5511c842011-12-19 11:21:32 -0800495 };
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700496 for (size_t i = 0; i < arraysize(prop_map); i++) {
Yabin Cui74edcea2015-07-24 10:11:05 -0700497 std::string value = property_get(prop_map[i].src_prop);
498 property_set(prop_map[i].dst_prop, (!value.empty()) ? value.c_str() : prop_map[i].default_value);
Dima Zavin5511c842011-12-19 11:21:32 -0800499 }
Dima Zavin5511c842011-12-19 11:21:32 -0800500}
Colin Crossebc6ff12010-04-13 19:52:01 -0700501
Sandeep Patilfc86f242017-02-09 19:19:31 -0800502static constexpr char android_dt_dir[] = "/proc/device-tree/firmware/android";
Rom Lemarchand6a524432015-02-28 06:39:11 -0800503
Sandeep Patilfc86f242017-02-09 19:19:31 -0800504static bool is_dt_compatible() {
505 std::string dt_value;
506 std::string file_name = StringPrintf("%s/compatible", android_dt_dir);
Rom Lemarchand6a524432015-02-28 06:39:11 -0800507
Sandeep Patilc20c0c22017-02-23 16:09:34 -0800508 if (android::base::ReadFileToString(file_name, &dt_value)) {
509 // trim the trailing '\0' out, otherwise the comparison
510 // will produce false-negatives.
511 dt_value.resize(dt_value.size() - 1);
512 if (dt_value == "android,firmware") {
513 return true;
514 }
Rom Lemarchand6a524432015-02-28 06:39:11 -0800515 }
516
Sandeep Patilc20c0c22017-02-23 16:09:34 -0800517 return false;
Sandeep Patilfc86f242017-02-09 19:19:31 -0800518}
519
520static bool is_dt_fstab_compatible() {
521 std::string dt_value;
522 std::string file_name = StringPrintf("%s/%s/compatible", android_dt_dir, "fstab");
523
Sandeep Patilc20c0c22017-02-23 16:09:34 -0800524 if (android::base::ReadFileToString(file_name, &dt_value)) {
525 dt_value.resize(dt_value.size() - 1);
526 if (dt_value == "android,fstab") {
527 return true;
528 }
Sandeep Patilfc86f242017-02-09 19:19:31 -0800529 }
530
Sandeep Patilc20c0c22017-02-23 16:09:34 -0800531 return false;
Sandeep Patilfc86f242017-02-09 19:19:31 -0800532}
533
534static void process_kernel_dt() {
535 if (!is_dt_compatible()) return;
536
537 std::unique_ptr<DIR, int(*)(DIR*)>dir(opendir(android_dt_dir), closedir);
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700538 if (!dir) return;
Rom Lemarchand6a524432015-02-28 06:39:11 -0800539
Sandeep Patilfc86f242017-02-09 19:19:31 -0800540 std::string dt_file;
Rom Lemarchand6a524432015-02-28 06:39:11 -0800541 struct dirent *dp;
542 while ((dp = readdir(dir.get())) != NULL) {
Rom Lemarchand1dcf3252015-11-08 17:51:50 -0800543 if (dp->d_type != DT_REG || !strcmp(dp->d_name, "compatible") || !strcmp(dp->d_name, "name")) {
Rom Lemarchand6a524432015-02-28 06:39:11 -0800544 continue;
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700545 }
Rom Lemarchand6a524432015-02-28 06:39:11 -0800546
Sandeep Patilfc86f242017-02-09 19:19:31 -0800547 std::string file_name = StringPrintf("%s/%s", android_dt_dir, dp->d_name);
Rom Lemarchand6a524432015-02-28 06:39:11 -0800548
549 android::base::ReadFileToString(file_name, &dt_file);
550 std::replace(dt_file.begin(), dt_file.end(), ',', '.');
551
Elliott Hughes9605a942016-11-10 17:43:47 -0800552 std::string property_name = StringPrintf("ro.boot.%s", dp->d_name);
Elliott Hughesdb3f2672015-03-20 09:45:18 -0700553 property_set(property_name.c_str(), dt_file.c_str());
Rom Lemarchand6a524432015-02-28 06:39:11 -0800554 }
555}
556
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700557static void process_kernel_cmdline() {
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700558 // The first pass does the common stuff, and finds if we are in qemu.
559 // The second pass is only necessary for qemu to export all kernel params
560 // as properties.
Nick Kralevichf667a322015-04-25 17:42:52 -0700561 import_kernel_cmdline(false, import_kernel_nv);
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700562 if (qemu[0]) import_kernel_cmdline(true, import_kernel_nv);
Colin Crossebc6ff12010-04-13 19:52:01 -0700563}
564
caozhiyuanb104c502016-11-26 21:14:07 +0800565static int property_enable_triggers_action(const std::vector<std::string>& args)
566{
567 /* Enable property triggers. */
568 property_triggers_enabled = 1;
569 return 0;
570}
571
Tom Cherry96f67312015-07-30 13:52:55 -0700572static int queue_property_triggers_action(const std::vector<std::string>& args)
Colin Crossebc6ff12010-04-13 19:52:01 -0700573{
caozhiyuanb104c502016-11-26 21:14:07 +0800574 ActionManager::GetInstance().QueueBuiltinAction(property_enable_triggers_action, "enable_property_trigger");
Tom Cherryfa0c21c2015-07-23 17:53:11 -0700575 ActionManager::GetInstance().QueueAllPropertyTriggers();
Colin Crossebc6ff12010-04-13 19:52:01 -0700576 return 0;
577}
578
Elliott Hughesc6c26ed2015-04-24 18:50:30 -0700579static void selinux_init_all_handles(void)
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500580{
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400581 sehandle = selinux_android_file_context_handle();
Stephen Smalleydbd37f22014-01-28 10:34:09 -0500582 selinux_android_set_sehandle(sehandle);
rpcraig63207cd2012-08-09 10:05:49 -0400583 sehandle_prop = selinux_android_prop_context_handle();
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400584}
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500585
Nick Kralevichd34e4072015-04-28 12:39:41 -0700586enum selinux_enforcing_status { SELINUX_PERMISSIVE, SELINUX_ENFORCING };
Nick Kralevichf667a322015-04-25 17:42:52 -0700587
588static selinux_enforcing_status selinux_status_from_cmdline() {
589 selinux_enforcing_status status = SELINUX_ENFORCING;
590
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700591 import_kernel_cmdline(false, [&](const std::string& key, const std::string& value, bool in_qemu) {
592 if (key == "androidboot.selinux" && value == "permissive") {
593 status = SELINUX_PERMISSIVE;
Nick Kralevichf667a322015-04-25 17:42:52 -0700594 }
Elliott Hughese5ce30f2015-05-06 19:19:24 -0700595 });
Nick Kralevichf667a322015-04-25 17:42:52 -0700596
597 return status;
598}
599
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700600static bool selinux_is_enforcing(void)
601{
Nick Kralevichd34e4072015-04-28 12:39:41 -0700602 if (ALLOW_PERMISSIVE_SELINUX) {
Nick Kralevichf667a322015-04-25 17:42:52 -0700603 return selinux_status_from_cmdline() == SELINUX_ENFORCING;
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700604 }
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700605 return true;
606}
607
Elliott Hughesda40c002015-03-27 23:20:44 -0700608static int audit_callback(void *data, security_class_t /*cls*/, char *buf, size_t len) {
William Robertsd7aea442015-10-01 16:03:47 -0700609
610 property_audit_data *d = reinterpret_cast<property_audit_data*>(data);
611
612 if (!d || !d->name || !d->cr) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700613 LOG(ERROR) << "audit_callback invoked with null data arguments!";
William Robertsd7aea442015-10-01 16:03:47 -0700614 return 0;
615 }
616
617 snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name,
618 d->cr->pid, d->cr->uid, d->cr->gid);
rpcraig63207cd2012-08-09 10:05:49 -0400619 return 0;
620}
621
Alex Klyubin16696e22017-02-28 12:32:20 -0800622/*
623 * Forks, executes the provided program in the child, and waits for the completion in the parent.
Alex Klyubin11850502017-03-05 14:28:27 -0800624 * Child's stderr is captured and logged using LOG(ERROR).
Alex Klyubin16696e22017-02-28 12:32:20 -0800625 *
626 * Returns true if the child exited with status code 0, returns false otherwise.
627 */
628static bool fork_execve_and_wait_for_completion(const char* filename, char* const argv[],
629 char* const envp[]) {
Alex Klyubin11850502017-03-05 14:28:27 -0800630 // Create a pipe used for redirecting child process's output.
631 // * pipe_fds[0] is the FD the parent will use for reading.
632 // * pipe_fds[1] is the FD the child will use for writing.
633 int pipe_fds[2];
634 if (pipe(pipe_fds) == -1) {
635 PLOG(ERROR) << "Failed to create pipe";
636 return false;
637 }
638
Alex Klyubin16696e22017-02-28 12:32:20 -0800639 pid_t child_pid = fork();
640 if (child_pid == -1) {
641 PLOG(ERROR) << "Failed to fork for " << filename;
642 return false;
643 }
644
645 if (child_pid == 0) {
646 // fork succeeded -- this is executing in the child process
Alex Klyubin11850502017-03-05 14:28:27 -0800647
648 // Close the pipe FD not used by this process
649 TEMP_FAILURE_RETRY(close(pipe_fds[0]));
650
651 // Redirect stderr to the pipe FD provided by the parent
652 if (TEMP_FAILURE_RETRY(dup2(pipe_fds[1], STDERR_FILENO)) == -1) {
653 PLOG(ERROR) << "Failed to redirect stderr of " << filename;
654 _exit(127);
655 return false;
656 }
657 TEMP_FAILURE_RETRY(close(pipe_fds[1]));
658
Alex Klyubin16696e22017-02-28 12:32:20 -0800659 if (execve(filename, argv, envp) == -1) {
660 PLOG(ERROR) << "Failed to execve " << filename;
661 return false;
662 }
663 // Unreachable because execve will have succeeded and replaced this code
664 // with child process's code.
665 _exit(127);
666 return false;
667 } else {
668 // fork succeeded -- this is executing in the original/parent process
Alex Klyubin11850502017-03-05 14:28:27 -0800669
670 // Close the pipe FD not used by this process
671 TEMP_FAILURE_RETRY(close(pipe_fds[1]));
672
673 // Log the redirected output of the child process.
674 // It's unfortunate that there's no standard way to obtain an istream for a file descriptor.
675 // As a result, we're buffering all output and logging it in one go at the end of the
676 // invocation, instead of logging it as it comes in.
677 const int child_out_fd = pipe_fds[0];
678 std::string child_output;
679 if (!android::base::ReadFdToString(child_out_fd, &child_output)) {
680 PLOG(ERROR) << "Failed to capture full output of " << filename;
681 }
682 TEMP_FAILURE_RETRY(close(child_out_fd));
683 if (!child_output.empty()) {
684 // Log captured output, line by line, because LOG expects to be invoked for each line
685 std::istringstream in(child_output);
686 std::string line;
687 while (std::getline(in, line)) {
688 LOG(ERROR) << filename << ": " << line;
689 }
690 }
691
692 // Wait for child to terminate
Alex Klyubin16696e22017-02-28 12:32:20 -0800693 int status;
694 if (TEMP_FAILURE_RETRY(waitpid(child_pid, &status, 0)) != child_pid) {
695 PLOG(ERROR) << "Failed to wait for " << filename;
696 return false;
697 }
698
699 if (WIFEXITED(status)) {
700 int status_code = WEXITSTATUS(status);
701 if (status_code == 0) {
702 return true;
703 } else {
704 LOG(ERROR) << filename << " exited with status " << status_code;
705 }
706 } else if (WIFSIGNALED(status)) {
707 LOG(ERROR) << filename << " killed by signal " << WTERMSIG(status);
708 } else if (WIFSTOPPED(status)) {
709 LOG(ERROR) << filename << " stopped by signal " << WSTOPSIG(status);
710 } else {
711 LOG(ERROR) << "waitpid for " << filename << " returned unexpected status: " << status;
712 }
713
714 return false;
715 }
716}
717
Alex Klyubin2d19aeb2017-03-07 14:12:01 -0800718static bool read_first_line(const char* file, std::string* line) {
719 line->clear();
720
721 std::string contents;
722 if (!android::base::ReadFileToString(file, &contents, true /* follow symlinks */)) {
723 return false;
724 }
725 std::istringstream in(contents);
726 std::getline(in, *line);
727 return true;
728}
729
730static bool selinux_find_precompiled_split_policy(std::string* file) {
731 file->clear();
732
733 static constexpr const char precompiled_sepolicy[] = "/vendor/etc/selinux/precompiled_sepolicy";
734 if (access(precompiled_sepolicy, R_OK) == -1) {
735 return false;
736 }
737 std::string actual_plat_id;
738 if (!read_first_line("/system/etc/selinux/plat_sepolicy.cil.sha256", &actual_plat_id)) {
739 PLOG(INFO) << "Failed to read /system/etc/selinux/plat_sepolicy.cil.sha256";
740 return false;
741 }
742 std::string precompiled_plat_id;
743 if (!read_first_line("/vendor/etc/selinux/precompiled_sepolicy.plat.sha256",
744 &precompiled_plat_id)) {
745 PLOG(INFO) << "Failed to read /vendor/etc/selinux/precompiled_sepolicy.plat.sha256";
746 return false;
747 }
748 if ((actual_plat_id.empty()) || (actual_plat_id != precompiled_plat_id)) {
749 return false;
750 }
751
752 *file = precompiled_sepolicy;
753 return true;
754}
755
Alex Klyubinc2a4c9a2017-03-02 12:43:10 -0800756static constexpr const char plat_policy_cil_file[] = "/system/etc/selinux/plat_sepolicy.cil";
Alex Klyubin16696e22017-02-28 12:32:20 -0800757
758static bool selinux_is_split_policy_device() { return access(plat_policy_cil_file, R_OK) != -1; }
759
760/*
761 * Loads SELinux policy split across platform/system and non-platform/vendor files.
762 *
763 * Returns true upon success, false otherwise (failure cause is logged).
764 */
765static bool selinux_load_split_policy() {
766 // IMPLEMENTATION NOTE: Split policy consists of three CIL files:
767 // * platform -- policy needed due to logic contained in the system image,
768 // * non-platform -- policy needed due to logic contained in the vendor image,
769 // * mapping -- mapping policy which helps preserve forward-compatibility of non-platform policy
770 // with newer versions of platform policy.
771 //
772 // secilc is invoked to compile the above three policy files into a single monolithic policy
773 // file. This file is then loaded into the kernel.
774
Alex Klyubin2d19aeb2017-03-07 14:12:01 -0800775 // Load precompiled policy from vendor image, if a matching policy is found there. The policy
776 // must match the platform policy on the system image.
777 std::string precompiled_sepolicy_file;
778 if (selinux_find_precompiled_split_policy(&precompiled_sepolicy_file)) {
779 android::base::unique_fd fd(
780 open(precompiled_sepolicy_file.c_str(), O_RDONLY | O_CLOEXEC | O_BINARY));
781 if (fd != -1) {
782 if (selinux_android_load_policy_from_fd(fd, precompiled_sepolicy_file.c_str()) < 0) {
783 LOG(ERROR) << "Failed to load SELinux policy from " << precompiled_sepolicy_file;
784 return false;
785 }
786 return true;
787 }
788 }
789 // No suitable precompiled policy could be loaded
790
Alex Klyubin16696e22017-02-28 12:32:20 -0800791 LOG(INFO) << "Compiling SELinux policy";
792
Alex Klyubina71dfec2017-03-09 10:56:58 -0800793 // Determine the highest policy language version supported by the kernel
794 set_selinuxmnt("/sys/fs/selinux");
795 int max_policy_version = security_policyvers();
796 if (max_policy_version == -1) {
797 PLOG(ERROR) << "Failed to determine highest policy version supported by kernel";
798 return false;
799 }
800
Alex Klyubin16696e22017-02-28 12:32:20 -0800801 // We store the output of the compilation on /dev because this is the most convenient tmpfs
802 // storage mount available this early in the boot sequence.
803 char compiled_sepolicy[] = "/dev/sepolicy.XXXXXX";
804 android::base::unique_fd compiled_sepolicy_fd(mkostemp(compiled_sepolicy, O_CLOEXEC));
805 if (compiled_sepolicy_fd < 0) {
806 PLOG(ERROR) << "Failed to create temporary file " << compiled_sepolicy;
807 return false;
808 }
809
Alex Klyubina71dfec2017-03-09 10:56:58 -0800810 // clang-format off
811 const char* compile_args[] = {
812 "/system/bin/secilc",
813 plat_policy_cil_file,
814 "-M", "true",
815 // Target the highest policy language version supported by the kernel
816 "-c", std::to_string(max_policy_version).c_str(),
817 "/vendor/etc/selinux/mapping_sepolicy.cil",
818 "/vendor/etc/selinux/nonplat_sepolicy.cil",
819 "-o", compiled_sepolicy,
820 // We don't care about file_contexts output by the compiler
821 "-f", "/sys/fs/selinux/null", // /dev/null is not yet available
822 nullptr};
823 // clang-format on
Alex Klyubin16696e22017-02-28 12:32:20 -0800824
825 if (!fork_execve_and_wait_for_completion(compile_args[0], (char**)compile_args, (char**)ENV)) {
826 unlink(compiled_sepolicy);
827 return false;
828 }
829 unlink(compiled_sepolicy);
830
831 LOG(INFO) << "Loading compiled SELinux policy";
832 if (selinux_android_load_policy_from_fd(compiled_sepolicy_fd, compiled_sepolicy) < 0) {
833 LOG(ERROR) << "Failed to load SELinux policy from " << compiled_sepolicy;
834 return false;
835 }
836
837 return true;
838}
839
840/*
841 * Loads SELinux policy from a monolithic file.
842 *
843 * Returns true upon success, false otherwise (failure cause is logged).
844 */
845static bool selinux_load_monolithic_policy() {
846 LOG(VERBOSE) << "Loading SELinux policy from monolithic file";
847 if (selinux_android_load_policy() < 0) {
848 PLOG(ERROR) << "Failed to load monolithic SELinux policy";
849 return false;
850 }
851 return true;
852}
853
854/*
855 * Loads SELinux policy into the kernel.
856 *
857 * Returns true upon success, false otherwise (failure cause is logged).
858 */
859static bool selinux_load_policy() {
860 return selinux_is_split_policy_device() ? selinux_load_split_policy()
861 : selinux_load_monolithic_policy();
862}
863
Elliott Hughesf65730e2015-04-24 18:38:17 +0000864static void selinux_initialize(bool in_kernel_domain) {
Elliott Hughesda40c002015-03-27 23:20:44 -0700865 Timer t;
Stephen Smalleyeb3f4212014-02-12 16:17:00 -0500866
Elliott Hughesda40c002015-03-27 23:20:44 -0700867 selinux_callback cb;
868 cb.func_log = selinux_klog_callback;
869 selinux_set_callback(SELINUX_CB_LOG, cb);
870 cb.func_audit = audit_callback;
871 selinux_set_callback(SELINUX_CB_AUDIT, cb);
872
Elliott Hughesf65730e2015-04-24 18:38:17 +0000873 if (in_kernel_domain) {
Alex Klyubin16696e22017-02-28 12:32:20 -0800874 LOG(INFO) << "Loading SELinux policy";
875 if (!selinux_load_policy()) {
876 panic();
Elliott Hughesf65730e2015-04-24 18:38:17 +0000877 }
878
Nick Kralevichd34e4072015-04-28 12:39:41 -0700879 bool kernel_enforcing = (security_getenforce() == 1);
Elliott Hughesf65730e2015-04-24 18:38:17 +0000880 bool is_enforcing = selinux_is_enforcing();
Nick Kralevichd34e4072015-04-28 12:39:41 -0700881 if (kernel_enforcing != is_enforcing) {
882 if (security_setenforce(is_enforcing)) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -0700883 PLOG(ERROR) << "security_setenforce(%s) failed" << (is_enforcing ? "true" : "false");
Nick Kralevichd34e4072015-04-28 12:39:41 -0700884 security_failure();
885 }
886 }
Elliott Hughesf65730e2015-04-24 18:38:17 +0000887
Jorge Lucangeli Obes77f0e9f2016-12-28 14:07:02 -0500888 if (!write_file("/sys/fs/selinux/checkreqprot", "0")) {
Nick Kralevicheedbe812015-04-25 14:10:03 -0700889 security_failure();
890 }
891
Elliott Hughes331cf2f2016-11-29 19:20:58 +0000892 // init's first stage can't set properties, so pass the time to the second stage.
James Hawkins27c05222017-01-26 11:55:44 -0800893 setenv("INIT_SELINUX_TOOK", std::to_string(t.duration_ms()).c_str(), 1);
Elliott Hughesf65730e2015-04-24 18:38:17 +0000894 } else {
895 selinux_init_all_handles();
Nick Kralevich56fa0ac2013-06-24 17:41:40 -0700896 }
Nick Kralevich56fa0ac2013-06-24 17:41:40 -0700897}
898
Amit Pundird2e74db2016-06-29 19:00:00 +0530899// Set the UDC controller for the ConfigFS USB Gadgets.
900// Read the UDC controller in use from "/sys/class/udc".
901// In case of multiple UDC controllers select the first one.
902static void set_usb_controller() {
903 std::unique_ptr<DIR, decltype(&closedir)>dir(opendir("/sys/class/udc"), closedir);
904 if (!dir) return;
905
906 dirent* dp;
907 while ((dp = readdir(dir.get())) != nullptr) {
908 if (dp->d_name[0] == '.') continue;
909
910 property_set("sys.usb.controller", dp->d_name);
911 break;
912 }
913}
914
Sandeep Patil0a3e36f2017-02-15 15:45:01 -0800915static bool early_mount_one(struct fstab_rec* rec) {
916 if (rec && fs_mgr_is_verified(rec)) {
917 // setup verity and create the dm-XX block device
918 // needed to mount this partition
919 int ret = fs_mgr_setup_verity(rec, false);
920 if (ret == FS_MGR_SETUP_VERITY_FAIL) {
921 PLOG(ERROR) << "early_mount: Failed to setup verity for '" << rec->mount_point << "'";
922 return false;
923 }
924
925 // The exact block device name is added as a mount source by
926 // fs_mgr_setup_verity() in ->blk_device as "/dev/block/dm-XX"
927 // We create that device by running coldboot on /sys/block/dm-XX
928 std::string dm_device(basename(rec->blk_device));
929 std::string syspath = StringPrintf("/sys/block/%s", dm_device.c_str());
930 device_init(syspath.c_str(), [&](uevent* uevent) -> coldboot_action_t {
931 if (uevent->device_name && !strcmp(dm_device.c_str(), uevent->device_name)) {
932 LOG(VERBOSE) << "early_mount: creating dm-verity device : " << dm_device;
933 return COLDBOOT_STOP;
934 }
935 return COLDBOOT_CONTINUE;
936 });
937 }
938
939 if (rec && fs_mgr_do_mount_one(rec)) {
940 PLOG(ERROR) << "early_mount: Failed to mount '" << rec->mount_point << "'";
941 return false;
942 }
943
944 return true;
945}
946
Bowgo Tsaid4beed22017-02-18 18:33:13 +0800947// Creates devices with uevent->partition_name matching one in the in/out
948// partition_names. Note that the partition_names MUST have A/B suffix
949// when A/B is used. Found partitions will then be removed from the
950// partition_names for caller to check which devices are NOT created.
951static void early_device_init(std::set<std::string>* partition_names) {
952 if (partition_names->empty()) {
953 return;
954 }
955 device_init(nullptr, [=](uevent* uevent) -> coldboot_action_t {
956 if (!strncmp(uevent->subsystem, "firmware", 8)) {
957 return COLDBOOT_CONTINUE;
958 }
959
960 // we need platform devices to create symlinks
961 if (!strncmp(uevent->subsystem, "platform", 8)) {
962 return COLDBOOT_CREATE;
963 }
964
965 // Ignore everything that is not a block device
966 if (strncmp(uevent->subsystem, "block", 5)) {
967 return COLDBOOT_CONTINUE;
968 }
969
970 if (uevent->partition_name) {
971 // match partition names to create device nodes for partitions
972 // both partition_names and uevent->partition_name have A/B suffix when A/B is used
973 auto iter = partition_names->find(uevent->partition_name);
974 if (iter != partition_names->end()) {
975 LOG(VERBOSE) << "early_mount: found partition: " << *iter;
976 partition_names->erase(iter);
977 if (partition_names->empty()) {
978 return COLDBOOT_STOP; // found all partitions, stop coldboot
979 } else {
980 return COLDBOOT_CREATE; // create this device and continue to find others
981 }
982 }
983 }
984 // Not found a partition or find an unneeded partition, continue to find others
985 return COLDBOOT_CONTINUE;
986 });
987}
988
989static bool get_early_partitions(const std::vector<fstab_rec*>& early_fstab_recs,
990 std::set<std::string>* out_partitions, bool* out_need_verity) {
991 std::string meta_partition;
992 out_partitions->clear();
993 *out_need_verity = false;
994
995 for (auto fstab_rec : early_fstab_recs) {
996 // don't allow verifyatboot for early mounted partitions
997 if (fs_mgr_is_verifyatboot(fstab_rec)) {
998 LOG(ERROR) << "early_mount: partitions can't be verified at boot";
999 return false;
1000 }
1001 // check for verified partitions
1002 if (fs_mgr_is_verified(fstab_rec)) {
1003 *out_need_verity = true;
1004 }
1005 // check if verity metadata is on a separate partition and get partition
1006 // name from the end of the ->verity_loc path. verity state is not partition
1007 // specific, so there must be only 1 additional partition that carries
1008 // verity state.
1009 if (fstab_rec->verity_loc) {
1010 if (!meta_partition.empty()) {
1011 LOG(ERROR) << "early_mount: more than one meta partition found: " << meta_partition
1012 << ", " << basename(fstab_rec->verity_loc);
1013 return false;
1014 } else {
1015 meta_partition = basename(fstab_rec->verity_loc);
1016 }
1017 }
1018 }
1019
1020 // includes those early mount partitions and meta_partition (if any)
1021 // note that fstab_rec->blk_device has A/B suffix updated by fs_mgr when A/B is used
1022 for (auto fstab_rec : early_fstab_recs) {
1023 out_partitions->emplace(basename(fstab_rec->blk_device));
1024 }
1025
1026 if (!meta_partition.empty()) {
1027 out_partitions->emplace(std::move(meta_partition));
1028 }
1029
1030 return true;
1031}
1032
Sandeep Patilfc86f242017-02-09 19:19:31 -08001033/* Early mount vendor and ODM partitions. The fstab is read from device-tree. */
Sandeep Patil35403eb2017-02-08 20:27:12 -08001034static bool early_mount() {
Bowgo Tsai32232722017-03-01 18:24:46 +08001035 // skip early mount if we're in recovery mode
1036 if (access("/sbin/recovery", F_OK) == 0) {
1037 LOG(INFO) << "Early mount skipped (recovery mode)";
1038 return true;
1039 }
1040
Sandeep Patilc20c0c22017-02-23 16:09:34 -08001041 // first check if device tree fstab entries are compatible
1042 if (!is_dt_fstab_compatible()) {
1043 LOG(INFO) << "Early mount skipped (missing/incompatible fstab in device tree)";
Sandeep Patil35403eb2017-02-08 20:27:12 -08001044 return true;
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001045 }
Sandeep Patil35403eb2017-02-08 20:27:12 -08001046
Sandeep Patilc20c0c22017-02-23 16:09:34 -08001047 std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> tab(
1048 fs_mgr_read_fstab_dt(), fs_mgr_free_fstab);
Sandeep Patil35403eb2017-02-08 20:27:12 -08001049 if (!tab) {
Sandeep Patilc20c0c22017-02-23 16:09:34 -08001050 LOG(ERROR) << "Early mount failed to read fstab from device tree";
Sandeep Patilfc86f242017-02-09 19:19:31 -08001051 return false;
Sandeep Patil35403eb2017-02-08 20:27:12 -08001052 }
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001053
Sandeep Patil35403eb2017-02-08 20:27:12 -08001054 // find out fstab records for odm, system and vendor
Bowgo Tsaid4beed22017-02-18 18:33:13 +08001055 std::vector<fstab_rec*> early_fstab_recs;
1056 for (auto mount_point : {"/odm", "/system", "/vendor"}) {
1057 fstab_rec* fstab_rec = fs_mgr_get_entry_for_mount_point(tab.get(), mount_point);
1058 if (fstab_rec != nullptr) {
1059 early_fstab_recs.push_back(fstab_rec);
1060 }
Sandeep Patil35403eb2017-02-08 20:27:12 -08001061 }
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001062
Bowgo Tsaid4beed22017-02-18 18:33:13 +08001063 // nothing to early mount
1064 if (early_fstab_recs.empty()) return true;
1065
1066 bool need_verity;
1067 std::set<std::string> partition_names;
1068 // partition_names MUST have A/B suffix when A/B is used
1069 if (!get_early_partitions(early_fstab_recs, &partition_names, &need_verity)) {
Sandeep Patil05ff38b2017-02-16 17:04:11 -08001070 return false;
1071 }
1072
Bowgo Tsaid4beed22017-02-18 18:33:13 +08001073 bool success = false;
Sandeep Patil35403eb2017-02-08 20:27:12 -08001074 // create the devices we need..
Bowgo Tsaid4beed22017-02-18 18:33:13 +08001075 early_device_init(&partition_names);
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001076
Bowgo Tsaid4beed22017-02-18 18:33:13 +08001077 // early_device_init will remove found partitions from partition_names
1078 // So if the partition_names is not empty here, means some partitions
1079 // are not found
1080 if (!partition_names.empty()) {
1081 LOG(ERROR) << "early_mount: partition(s) not found: "
1082 << android::base::Join(partition_names, ", ");
1083 goto done;
1084 }
Sandeep Patil35403eb2017-02-08 20:27:12 -08001085
Sandeep Patil0a3e36f2017-02-15 15:45:01 -08001086 if (need_verity) {
1087 // create /dev/device mapper
1088 device_init("/sys/devices/virtual/misc/device-mapper",
1089 [&](uevent* uevent) -> coldboot_action_t { return COLDBOOT_STOP; });
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001090 }
Sandeep Patil35403eb2017-02-08 20:27:12 -08001091
Bowgo Tsaid4beed22017-02-18 18:33:13 +08001092 for (auto fstab_rec : early_fstab_recs) {
1093 if (!early_mount_one(fstab_rec)) goto done;
1094 }
1095 success = true;
Sandeep Patil35403eb2017-02-08 20:27:12 -08001096
Sandeep Patil0a3e36f2017-02-15 15:45:01 -08001097done:
Sandeep Patil35403eb2017-02-08 20:27:12 -08001098 device_close();
Sandeep Patil0a3e36f2017-02-15 15:45:01 -08001099 return success;
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001100}
1101
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001102int main(int argc, char** argv) {
Elliott Hughesda40c002015-03-27 23:20:44 -07001103 if (!strcmp(basename(argv[0]), "ueventd")) {
Colin Crossf83d0b92010-04-21 12:04:20 -07001104 return ueventd_main(argc, argv);
Elliott Hughesda40c002015-03-27 23:20:44 -07001105 }
Colin Crossf83d0b92010-04-21 12:04:20 -07001106
Elliott Hughesda40c002015-03-27 23:20:44 -07001107 if (!strcmp(basename(argv[0]), "watchdogd")) {
Arve Hjønnevågd97d9072012-06-13 21:51:56 -07001108 return watchdogd_main(argc, argv);
Elliott Hughesda40c002015-03-27 23:20:44 -07001109 }
Arve Hjønnevågd97d9072012-06-13 21:51:56 -07001110
Elliott Hughescc86fb22015-03-17 20:01:13 -07001111 add_environment("PATH", _PATH_DEFPATH);
1112
Elliott Hughes9605a942016-11-10 17:43:47 -08001113 bool is_first_stage = (getenv("INIT_SECOND_STAGE") == nullptr);
Nick Kralevich9dec93b2015-04-25 15:50:03 -07001114
Nick Kralevich9dec93b2015-04-25 15:50:03 -07001115 if (is_first_stage) {
Tom Cherry34e70412017-03-16 18:08:56 -07001116 boot_clock::time_point start_time = boot_clock::now();
1117
1118 // Clear the umask.
1119 umask(0);
1120
1121 // Get the basic filesystem setup we need put together in the initramdisk
1122 // on / and then we'll let the rc file figure out the rest.
Nick Kralevichf667a322015-04-25 17:42:52 -07001123 mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755");
1124 mkdir("/dev/pts", 0755);
1125 mkdir("/dev/socket", 0755);
1126 mount("devpts", "/dev/pts", "devpts", 0, NULL);
Nick Kralevichc39ba5a2015-11-07 16:52:17 -08001127 #define MAKE_STR(x) __STRING(x)
1128 mount("proc", "/proc", "proc", 0, "hidepid=2,gid=" MAKE_STR(AID_READPROC));
Tom Cherry34e70412017-03-16 18:08:56 -07001129 // Don't expose the raw commandline to unprivileged processes.
1130 chmod("/proc/cmdline", 0440);
Nick Kralevich80960d22016-10-29 12:20:00 -07001131 gid_t groups[] = { AID_READPROC };
1132 setgroups(arraysize(groups), groups);
Nick Kralevich9dec93b2015-04-25 15:50:03 -07001133 mount("sysfs", "/sys", "sysfs", 0, NULL);
Nick Kralevich3d9e2732016-03-03 10:40:12 -08001134 mount("selinuxfs", "/sys/fs/selinux", "selinuxfs", 0, NULL);
Elliott Hughes35f5d042016-07-26 09:32:33 -07001135 mknod("/dev/kmsg", S_IFCHR | 0600, makedev(1, 11));
Evgenii Stepanov102daa32016-11-18 14:58:40 -08001136 mknod("/dev/random", S_IFCHR | 0666, makedev(1, 8));
1137 mknod("/dev/urandom", S_IFCHR | 0666, makedev(1, 9));
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001138
Tom Cherry34e70412017-03-16 18:08:56 -07001139 // Now that tmpfs is mounted on /dev and we have /dev/kmsg, we can actually
1140 // talk to the outside world...
1141 InitKernelLogging(argv);
Elliott Hughesda40c002015-03-27 23:20:44 -07001142
Tom Cherry34e70412017-03-16 18:08:56 -07001143 LOG(INFO) << "init first stage started!";
Elliott Hughesda40c002015-03-27 23:20:44 -07001144
Sandeep Patil35403eb2017-02-08 20:27:12 -08001145 if (!early_mount()) {
1146 LOG(ERROR) << "Failed to mount required partitions early ...";
1147 panic();
1148 }
Wei Wang313b3522016-10-28 12:22:32 -07001149
Elliott Hughes9605a942016-11-10 17:43:47 -08001150 // Set up SELinux, loading the SELinux policy.
Wei Wang313b3522016-10-28 12:22:32 -07001151 selinux_initialize(true);
1152
Elliott Hughes9605a942016-11-10 17:43:47 -08001153 // We're in the kernel domain, so re-exec init to transition to the init domain now
Wei Wang313b3522016-10-28 12:22:32 -07001154 // that the SELinux policy has been loaded.
Wei Wang313b3522016-10-28 12:22:32 -07001155 if (restorecon("/init") == -1) {
1156 PLOG(ERROR) << "restorecon failed";
1157 security_failure();
1158 }
Elliott Hughes9605a942016-11-10 17:43:47 -08001159
1160 setenv("INIT_SECOND_STAGE", "true", 1);
1161
James Hawkins27c05222017-01-26 11:55:44 -08001162 static constexpr uint32_t kNanosecondsPerMillisecond = 1e6;
1163 uint64_t start_ms = start_time.time_since_epoch().count() / kNanosecondsPerMillisecond;
1164 setenv("INIT_STARTED_AT", StringPrintf("%" PRIu64, start_ms).c_str(), 1);
Elliott Hughes9605a942016-11-10 17:43:47 -08001165
Wei Wang313b3522016-10-28 12:22:32 -07001166 char* path = argv[0];
Elliott Hughes9605a942016-11-10 17:43:47 -08001167 char* args[] = { path, nullptr };
Tom Cherry34e70412017-03-16 18:08:56 -07001168 execv(path, args);
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -07001169
Tom Cherry34e70412017-03-16 18:08:56 -07001170 // execv() only returns if an error happened, in which case we
1171 // panic and never fall through this conditional.
1172 PLOG(ERROR) << "execv(\"" << path << "\") failed";
1173 security_failure();
Elliott Hughesf65730e2015-04-24 18:38:17 +00001174 }
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001175
Tom Cherry34e70412017-03-16 18:08:56 -07001176 // At this point we're in the second stage of init.
1177 InitKernelLogging(argv);
1178 LOG(INFO) << "init second stage started!";
1179
1180 // Indicate that booting is in progress to background fw loaders, etc.
1181 close(open("/dev/.booting", O_WRONLY | O_CREAT | O_CLOEXEC, 0000));
1182
1183 property_init();
1184
1185 // If arguments are passed both on the command line and in DT,
1186 // properties set in DT always have priority over the command-line ones.
1187 process_kernel_dt();
1188 process_kernel_cmdline();
1189
1190 // Propagate the kernel variables to internal variables
1191 // used by init as well as the current required properties.
1192 export_kernel_boot_props();
1193
1194 // Make the time that init started available for bootstat to log.
1195 property_set("ro.boottime.init", getenv("INIT_STARTED_AT"));
1196 property_set("ro.boottime.init.selinux", getenv("INIT_SELINUX_TOOK"));
1197
1198 // Set libavb version for Framework-only OTA match in Treble build.
1199 property_set("ro.boot.init.avb_version", std::to_string(AVB_MAJOR_VERSION).c_str());
1200
1201 // Clean up our environment.
1202 unsetenv("INIT_SECOND_STAGE");
1203 unsetenv("INIT_STARTED_AT");
1204 unsetenv("INIT_SELINUX_TOOK");
1205
1206 // Now set up SELinux for second stage.
1207 selinux_initialize(false);
1208
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001209 // These directories were necessarily created before initial policy load
1210 // and therefore need their security context restored to the proper value.
1211 // This must happen before /dev is populated by ueventd.
Elliott Hughesf86b5a62016-06-24 15:12:21 -07001212 LOG(INFO) << "Running restorecon...";
Stephen Smalleye096e362012-06-11 13:37:39 -04001213 restorecon("/dev");
Elliott Hughes35f5d042016-07-26 09:32:33 -07001214 restorecon("/dev/kmsg");
Stephen Smalleye096e362012-06-11 13:37:39 -04001215 restorecon("/dev/socket");
Evgenii Stepanov102daa32016-11-18 14:58:40 -08001216 restorecon("/dev/random");
1217 restorecon("/dev/urandom");
Geremy Condra8e15eab2013-02-28 17:29:58 -08001218 restorecon("/dev/__properties__");
Sandeep Patil7a5db4e2016-12-27 17:40:53 -08001219 restorecon("/plat_property_contexts");
1220 restorecon("/nonplat_property_contexts");
Paul Lawrencea8d84342016-11-14 15:40:18 -08001221 restorecon("/sys", SELINUX_ANDROID_RESTORECON_RECURSE);
1222 restorecon("/dev/block", SELINUX_ANDROID_RESTORECON_RECURSE);
Hung-ying Tyan99c4a8a2016-02-01 15:07:40 +08001223 restorecon("/dev/device-mapper");
Stephen Smalleye46f9d52012-01-13 08:48:47 -05001224
Elliott Hughes929f4072015-04-24 21:13:44 -07001225 epoll_fd = epoll_create1(EPOLL_CLOEXEC);
1226 if (epoll_fd == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -07001227 PLOG(ERROR) << "epoll_create1 failed";
Elliott Hughes929f4072015-04-24 21:13:44 -07001228 exit(1);
1229 }
1230
1231 signal_handler_init();
Elliott Hughes9042cae2015-04-24 17:43:21 -07001232
Riley Andrewse4b7b292014-06-16 15:06:21 -07001233 property_load_boot_defaults();
Sami Tolvanen9e9efca2015-12-07 12:33:58 +00001234 export_oem_lock_status();
Elliott Hughesc6c26ed2015-04-24 18:50:30 -07001235 start_property_service();
Amit Pundird2e74db2016-06-29 19:00:00 +05301236 set_usb_controller();
Dima Zavind7634c92011-12-16 14:18:06 -08001237
Tom Cherryb7349902015-08-26 11:43:36 -07001238 const BuiltinFunctionMap function_map;
1239 Action::set_function_map(&function_map);
1240
1241 Parser& parser = Parser::GetInstance();
1242 parser.AddSectionParser("service",std::make_unique<ServiceParser>());
1243 parser.AddSectionParser("on", std::make_unique<ActionParser>());
1244 parser.AddSectionParser("import", std::make_unique<ImportParser>());
Hung-ying Tyan959aeb12017-01-18 09:39:36 +08001245 std::string bootscript = property_get("ro.boot.init_rc");
1246 if (bootscript.empty()) {
1247 parser.ParseConfig("/init.rc");
Jaekyun Seok4ec72cc2017-02-22 20:37:57 +09001248 parser.set_is_system_etc_init_loaded(
1249 parser.ParseConfig("/system/etc/init"));
1250 parser.set_is_vendor_etc_init_loaded(
1251 parser.ParseConfig("/vendor/etc/init"));
1252 parser.set_is_odm_etc_init_loaded(parser.ParseConfig("/odm/etc/init"));
Hung-ying Tyan959aeb12017-01-18 09:39:36 +08001253 } else {
1254 parser.ParseConfig(bootscript);
Jaekyun Seok4ec72cc2017-02-22 20:37:57 +09001255 parser.set_is_system_etc_init_loaded(true);
1256 parser.set_is_vendor_etc_init_loaded(true);
1257 parser.set_is_odm_etc_init_loaded(true);
Hung-ying Tyan959aeb12017-01-18 09:39:36 +08001258 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001259
Tom Cherryd8a72572017-03-13 12:24:49 -07001260 // Turning this on and letting the INFO logging be discarded adds 0.2s to
1261 // Nexus 9 boot time, so it's disabled by default.
1262 if (false) parser.DumpState();
1263
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001264 ActionManager& am = ActionManager::GetInstance();
1265
1266 am.QueueEventTrigger("early-init");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001267
Elliott Hughesc6c26ed2015-04-24 18:50:30 -07001268 // Queue an action that waits for coldboot done so we know ueventd has set up all of /dev...
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001269 am.QueueBuiltinAction(wait_for_coldboot_done_action, "wait_for_coldboot_done");
Elliott Hughesc6c26ed2015-04-24 18:50:30 -07001270 // ... so that we can start queuing up actions that require stuff from /dev.
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001271 am.QueueBuiltinAction(mix_hwrng_into_linux_rng_action, "mix_hwrng_into_linux_rng");
Daniel Cashmanbaccc402016-03-25 23:49:05 +00001272 am.QueueBuiltinAction(set_mmap_rnd_bits_action, "set_mmap_rnd_bits");
Dave Weinstein44f7e4f2017-01-19 18:03:34 -08001273 am.QueueBuiltinAction(set_kptr_restrict_action, "set_kptr_restrict");
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001274 am.QueueBuiltinAction(keychord_init_action, "keychord_init");
1275 am.QueueBuiltinAction(console_init_action, "console_init");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001276
Elliott Hughesda40c002015-03-27 23:20:44 -07001277 // Trigger all the boot actions to get us started.
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001278 am.QueueEventTrigger("init");
Dima Zavinca47cef2011-08-24 15:28:23 -07001279
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001280 // Repeat mix_hwrng_into_linux_rng in case /dev/hw_random or /dev/random
1281 // wasn't ready immediately after wait_for_coldboot_done
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001282 am.QueueBuiltinAction(mix_hwrng_into_linux_rng_action, "mix_hwrng_into_linux_rng");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001283
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001284 // Don't mount filesystems or start core system services in charger mode.
Yabin Cui74edcea2015-07-24 10:11:05 -07001285 std::string bootmode = property_get("ro.bootmode");
1286 if (bootmode == "charger") {
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001287 am.QueueEventTrigger("charger");
Dima Zavinca47cef2011-08-24 15:28:23 -07001288 } else {
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001289 am.QueueEventTrigger("late-init");
Dima Zavinca47cef2011-08-24 15:28:23 -07001290 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001291
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001292 // Run all property triggers based on current state of the properties.
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001293 am.QueueBuiltinAction(queue_property_triggers_action, "queue_property_triggers");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001294
Elliott Hughesc6c26ed2015-04-24 18:50:30 -07001295 while (true) {
Wei Wang132ac312017-01-25 16:27:03 -08001296 if (!(waiting_for_exec || waiting_for_prop)) {
Tom Cherryfa0c21c2015-07-23 17:53:11 -07001297 am.ExecuteOneCommand();
Elliott Hughes8d82ea02015-02-06 20:15:18 -08001298 restart_processes();
1299 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001300
Elliott Hughes9605a942016-11-10 17:43:47 -08001301 // By default, sleep until something happens.
1302 int epoll_timeout_ms = -1;
1303
Elliott Hughes9605a942016-11-10 17:43:47 -08001304 // If there's a process that needs restarting, wake up in time for that.
1305 if (process_needs_restart_at != 0) {
1306 epoll_timeout_ms = (process_needs_restart_at - time(nullptr)) * 1000;
1307 if (epoll_timeout_ms < 0) epoll_timeout_ms = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001308 }
1309
Wei Wang16db4342016-11-30 15:43:42 -08001310 // If there's more work to do, wake up again immediately.
1311 if (am.HasMoreCommands()) epoll_timeout_ms = 0;
1312
Elliott Hughes929f4072015-04-24 21:13:44 -07001313 epoll_event ev;
Elliott Hughes9605a942016-11-10 17:43:47 -08001314 int nr = TEMP_FAILURE_RETRY(epoll_wait(epoll_fd, &ev, 1, epoll_timeout_ms));
Elliott Hughes929f4072015-04-24 21:13:44 -07001315 if (nr == -1) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -07001316 PLOG(ERROR) << "epoll_wait failed";
Elliott Hughes929f4072015-04-24 21:13:44 -07001317 } else if (nr == 1) {
1318 ((void (*)()) ev.data.ptr)();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001319 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001320 }
1321
1322 return 0;
1323}