2008-10-21 16:00:00 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <ctype.h>
|
2015-02-28 15:39:11 +01:00
|
|
|
#include <dirent.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <libgen.h>
|
2015-03-18 04:01:13 +01:00
|
|
|
#include <paths.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdarg.h>
|
2008-10-21 16:00:00 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2015-04-25 06:13:44 +02:00
|
|
|
#include <sys/epoll.h>
|
2008-10-21 16:00:00 +02:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/socket.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2008-10-21 16:00:00 +02:00
|
|
|
#include <sys/un.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2012-01-13 14:48:47 +01:00
|
|
|
#include <selinux/selinux.h>
|
|
|
|
#include <selinux/label.h>
|
2012-05-01 21:02:53 +02:00
|
|
|
#include <selinux/android.h>
|
2012-01-13 14:48:47 +01:00
|
|
|
|
2015-12-05 07:00:26 +01:00
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/stringprintf.h>
|
|
|
|
#include <android-base/strings.h>
|
2013-06-25 02:41:40 +02:00
|
|
|
#include <cutils/android_reboot.h>
|
2013-08-16 22:19:24 +02:00
|
|
|
#include <cutils/fs.h>
|
2015-02-07 05:15:18 +01:00
|
|
|
#include <cutils/iosched_policy.h>
|
|
|
|
#include <cutils/list.h>
|
|
|
|
#include <cutils/sockets.h>
|
2010-04-21 21:04:20 +02:00
|
|
|
#include <private/android_filesystem_config.h>
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-02-28 15:39:11 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2015-07-24 02:53:11 +02:00
|
|
|
#include "action.h"
|
2015-07-31 21:45:25 +02:00
|
|
|
#include "bootchart.h"
|
2008-10-21 16:00:00 +02:00
|
|
|
#include "devices.h"
|
2015-08-26 20:43:36 +02:00
|
|
|
#include "import_parser.h"
|
2008-10-21 16:00:00 +02:00
|
|
|
#include "init.h"
|
2015-07-31 21:45:25 +02:00
|
|
|
#include "init_parser.h"
|
|
|
|
#include "keychords.h"
|
2010-04-20 02:05:34 +02:00
|
|
|
#include "log.h"
|
2008-10-21 16:00:00 +02:00
|
|
|
#include "property_service.h"
|
2015-07-31 21:45:25 +02:00
|
|
|
#include "service.h"
|
2010-04-14 04:48:59 +02:00
|
|
|
#include "signal_handler.h"
|
2010-04-21 21:04:20 +02:00
|
|
|
#include "ueventd.h"
|
2015-07-31 21:45:25 +02:00
|
|
|
#include "util.h"
|
2012-06-14 06:51:56 +02:00
|
|
|
#include "watchdogd.h"
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2012-01-13 14:48:47 +01:00
|
|
|
struct selabel_handle *sehandle;
|
2012-08-09 16:05:49 +02:00
|
|
|
struct selabel_handle *sehandle_prop;
|
2012-01-13 14:48:47 +01:00
|
|
|
|
2008-10-21 16:00:00 +02:00
|
|
|
static int property_triggers_enabled = 0;
|
|
|
|
|
|
|
|
static char qemu[32];
|
|
|
|
|
2016-03-21 09:08:07 +01:00
|
|
|
std::string default_console = "/dev/console";
|
2008-10-21 16:00:00 +02:00
|
|
|
static time_t process_needs_restart;
|
|
|
|
|
2015-07-31 21:45:25 +02:00
|
|
|
const char *ENV[32];
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
bool waiting_for_exec = false;
|
|
|
|
|
2015-04-25 06:13:44 +02:00
|
|
|
static int epoll_fd = -1;
|
|
|
|
|
|
|
|
void register_epoll_handler(int fd, void (*fn)()) {
|
|
|
|
epoll_event ev;
|
|
|
|
ev.events = EPOLLIN;
|
|
|
|
ev.data.ptr = reinterpret_cast<void*>(fn);
|
|
|
|
if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, fd, &ev) == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "epoll_ctl failed";
|
2015-04-25 06:13:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-21 16:00:00 +02:00
|
|
|
/* add_environment - add "key=value" to the current environment */
|
|
|
|
int add_environment(const char *key, const char *val)
|
|
|
|
{
|
2014-05-16 12:36:36 +02:00
|
|
|
size_t n;
|
|
|
|
size_t key_len = strlen(key);
|
|
|
|
|
|
|
|
/* The last environment entry is reserved to terminate the list */
|
2016-06-25 00:12:21 +02:00
|
|
|
for (n = 0; n < (arraysize(ENV) - 1); n++) {
|
2014-05-16 12:36:36 +02:00
|
|
|
|
|
|
|
/* Delete any existing entry for this key */
|
|
|
|
if (ENV[n] != NULL) {
|
|
|
|
size_t entry_key_len = strcspn(ENV[n], "=");
|
|
|
|
if ((entry_key_len == key_len) && (strncmp(ENV[n], key, entry_key_len) == 0)) {
|
|
|
|
free((char*)ENV[n]);
|
|
|
|
ENV[n] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2011-09-28 18:55:31 +02:00
|
|
|
|
2014-05-16 12:36:36 +02:00
|
|
|
/* Add entry if a free slot is available */
|
|
|
|
if (ENV[n] == NULL) {
|
2015-02-04 02:12:07 +01:00
|
|
|
char* entry;
|
|
|
|
asprintf(&entry, "%s=%s", key, val);
|
2008-10-21 16:00:00 +02:00
|
|
|
ENV[n] = entry;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "No env. room to store: '" << key << "':'" << val << "'";
|
2014-05-16 12:36:36 +02:00
|
|
|
|
|
|
|
return -1;
|
2008-10-21 16:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void property_changed(const char *name, const char *value)
|
|
|
|
{
|
2010-04-14 04:52:01 +02:00
|
|
|
if (property_triggers_enabled)
|
2015-07-24 02:53:11 +02:00
|
|
|
ActionManager::GetInstance().QueuePropertyTrigger(name, value);
|
2008-10-21 16:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void restart_processes()
|
|
|
|
{
|
|
|
|
process_needs_restart = 0;
|
2015-07-31 21:45:25 +02:00
|
|
|
ServiceManager::GetInstance().
|
|
|
|
ForEachServiceWithFlags(SVC_RESTARTING, [] (Service* s) {
|
|
|
|
s->RestartIfNeeded(process_needs_restart);
|
|
|
|
});
|
2008-10-21 16:00:00 +02:00
|
|
|
}
|
|
|
|
|
2016-04-13 00:38:27 +02:00
|
|
|
void handle_control_message(const std::string& msg, const std::string& name) {
|
2015-07-31 21:45:25 +02:00
|
|
|
Service* svc = ServiceManager::GetInstance().FindServiceByName(name);
|
2016-04-13 00:38:27 +02:00
|
|
|
if (svc == nullptr) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "no such service '" << name << "'";
|
2016-04-13 00:38:27 +02:00
|
|
|
return;
|
2012-01-26 05:48:46 +01:00
|
|
|
}
|
|
|
|
|
2015-07-31 21:45:25 +02:00
|
|
|
if (msg == "start") {
|
2016-04-13 00:38:27 +02:00
|
|
|
svc->Start();
|
2015-07-31 21:45:25 +02:00
|
|
|
} else if (msg == "stop") {
|
2016-04-13 00:38:27 +02:00
|
|
|
svc->Stop();
|
2015-07-31 21:45:25 +02:00
|
|
|
} else if (msg == "restart") {
|
2016-04-13 00:38:27 +02:00
|
|
|
svc->Restart();
|
2008-10-21 16:00:00 +02:00
|
|
|
} else {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "unknown control msg '" << msg << "'";
|
2008-10-21 16:00:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-30 22:52:55 +02:00
|
|
|
static int wait_for_coldboot_done_action(const std::vector<std::string>& args) {
|
2015-04-25 03:50:30 +02:00
|
|
|
Timer t;
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(VERBOSE) << "Waiting for " COLDBOOT_DONE "...";
|
2015-05-14 21:03:14 +02:00
|
|
|
// Any longer than 1s is an unreasonable length of time to delay booting.
|
|
|
|
// If you're hitting this timeout, check that you didn't make your
|
|
|
|
// sepolicy regular expressions too expensive (http://b/19899875).
|
|
|
|
if (wait_for_file(COLDBOOT_DONE, 1)) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "Timed out waiting for " COLDBOOT_DONE;
|
2015-04-25 03:50:30 +02:00
|
|
|
}
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(VERBOSE) << "Waiting for " COLDBOOT_DONE " took " << t.duration() << "s.";
|
2015-04-25 03:50:30 +02:00
|
|
|
return 0;
|
2010-04-14 04:52:01 +02:00
|
|
|
}
|
|
|
|
|
2013-08-16 22:19:24 +02:00
|
|
|
/*
|
|
|
|
* Writes 512 bytes of output from Hardware RNG (/dev/hw_random, backed
|
|
|
|
* by Linux kernel's hw_random framework) into Linux RNG's via /dev/urandom.
|
|
|
|
* Does nothing if Hardware RNG is not present.
|
|
|
|
*
|
|
|
|
* Since we don't yet trust the quality of Hardware RNG, these bytes are not
|
|
|
|
* mixed into the primary pool of Linux RNG and the entropy estimate is left
|
|
|
|
* unmodified.
|
|
|
|
*
|
|
|
|
* If the HW RNG device /dev/hw_random is present, we require that at least
|
|
|
|
* 512 bytes read from it are written into Linux RNG. QA is expected to catch
|
|
|
|
* devices/configurations where these I/O operations are blocking for a long
|
|
|
|
* time. We do not reboot or halt on failures, as this is a best-effort
|
|
|
|
* attempt.
|
|
|
|
*/
|
2015-07-30 22:52:55 +02:00
|
|
|
static int mix_hwrng_into_linux_rng_action(const std::vector<std::string>& args)
|
2013-08-16 22:19:24 +02:00
|
|
|
{
|
|
|
|
int result = -1;
|
|
|
|
int hwrandom_fd = -1;
|
|
|
|
int urandom_fd = -1;
|
|
|
|
char buf[512];
|
|
|
|
ssize_t chunk_size;
|
|
|
|
size_t total_bytes_written = 0;
|
|
|
|
|
|
|
|
hwrandom_fd = TEMP_FAILURE_RETRY(
|
2015-02-02 23:37:22 +01:00
|
|
|
open("/dev/hw_random", O_RDONLY | O_NOFOLLOW | O_CLOEXEC));
|
2013-08-16 22:19:24 +02:00
|
|
|
if (hwrandom_fd == -1) {
|
|
|
|
if (errno == ENOENT) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "/dev/hw_random not found";
|
|
|
|
// It's not an error to not have a Hardware RNG.
|
|
|
|
result = 0;
|
2013-08-16 22:19:24 +02:00
|
|
|
} else {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "Failed to open /dev/hw_random";
|
2013-08-16 22:19:24 +02:00
|
|
|
}
|
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
urandom_fd = TEMP_FAILURE_RETRY(
|
2015-02-02 23:37:22 +01:00
|
|
|
open("/dev/urandom", O_WRONLY | O_NOFOLLOW | O_CLOEXEC));
|
2013-08-16 22:19:24 +02:00
|
|
|
if (urandom_fd == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "Failed to open /dev/urandom";
|
2013-08-16 22:19:24 +02:00
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (total_bytes_written < sizeof(buf)) {
|
|
|
|
chunk_size = TEMP_FAILURE_RETRY(
|
|
|
|
read(hwrandom_fd, buf, sizeof(buf) - total_bytes_written));
|
|
|
|
if (chunk_size == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "Failed to read from /dev/hw_random";
|
2013-08-16 22:19:24 +02:00
|
|
|
goto ret;
|
|
|
|
} else if (chunk_size == 0) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "Failed to read from /dev/hw_random: EOF";
|
2013-08-16 22:19:24 +02:00
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
chunk_size = TEMP_FAILURE_RETRY(write(urandom_fd, buf, chunk_size));
|
|
|
|
if (chunk_size == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "Failed to write to /dev/urandom";
|
2013-08-16 22:19:24 +02:00
|
|
|
goto ret;
|
|
|
|
}
|
|
|
|
total_bytes_written += chunk_size;
|
|
|
|
}
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(INFO) << "Mixed " << total_bytes_written << " bytes from /dev/hw_random into /dev/urandom";
|
2013-08-16 22:19:24 +02:00
|
|
|
result = 0;
|
|
|
|
|
|
|
|
ret:
|
|
|
|
if (hwrandom_fd != -1) {
|
|
|
|
close(hwrandom_fd);
|
|
|
|
}
|
|
|
|
if (urandom_fd != -1) {
|
|
|
|
close(urandom_fd);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-07-30 22:52:55 +02:00
|
|
|
static int keychord_init_action(const std::vector<std::string>& args)
|
2010-04-14 04:52:01 +02:00
|
|
|
{
|
|
|
|
keychord_init();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-07-30 22:52:55 +02:00
|
|
|
static int console_init_action(const std::vector<std::string>& args)
|
2008-10-21 16:00:00 +02:00
|
|
|
{
|
2016-03-21 09:23:43 +01:00
|
|
|
std::string console = property_get("ro.boot.console");
|
|
|
|
if (!console.empty()) {
|
2016-03-21 09:08:07 +01:00
|
|
|
default_console = "/dev/" + console;
|
2010-04-14 04:52:01 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
static void import_kernel_nv(const std::string& key, const std::string& value, bool for_emulator) {
|
|
|
|
if (key.empty()) return;
|
2011-12-19 20:21:32 +01:00
|
|
|
|
|
|
|
if (for_emulator) {
|
2015-05-07 04:19:24 +02:00
|
|
|
// In the emulator, export any kernel option with the "ro.kernel." prefix.
|
|
|
|
property_set(android::base::StringPrintf("ro.kernel.%s", key.c_str()).c_str(), value.c_str());
|
2011-12-19 20:21:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
if (key == "qemu") {
|
|
|
|
strlcpy(qemu, value.c_str(), sizeof(qemu));
|
|
|
|
} else if (android::base::StartsWith(key, "androidboot.")) {
|
|
|
|
property_set(android::base::StringPrintf("ro.boot.%s", key.c_str() + 12).c_str(),
|
|
|
|
value.c_str());
|
2011-12-19 20:21:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-07 13:33:58 +01:00
|
|
|
static void export_oem_lock_status() {
|
|
|
|
if (property_get("ro.oem_unlock_supported") != "1") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string value = property_get("ro.boot.verifiedbootstate");
|
|
|
|
|
|
|
|
if (!value.empty()) {
|
|
|
|
property_set("ro.boot.flash.locked", value == "orange" ? "0" : "1");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-20 16:50:46 +01:00
|
|
|
static void export_kernel_boot_props() {
|
2011-12-19 20:21:32 +01:00
|
|
|
struct {
|
|
|
|
const char *src_prop;
|
2015-03-20 16:50:46 +01:00
|
|
|
const char *dst_prop;
|
|
|
|
const char *default_value;
|
2011-12-19 20:21:32 +01:00
|
|
|
} prop_map[] = {
|
2015-03-20 16:50:46 +01:00
|
|
|
{ "ro.boot.serialno", "ro.serialno", "", },
|
|
|
|
{ "ro.boot.mode", "ro.bootmode", "unknown", },
|
|
|
|
{ "ro.boot.baseband", "ro.baseband", "unknown", },
|
2011-12-19 20:21:32 +01:00
|
|
|
{ "ro.boot.bootloader", "ro.bootloader", "unknown", },
|
2015-03-20 16:50:46 +01:00
|
|
|
{ "ro.boot.hardware", "ro.hardware", "unknown", },
|
|
|
|
{ "ro.boot.revision", "ro.revision", "0", },
|
2011-12-19 20:21:32 +01:00
|
|
|
};
|
2016-06-25 00:12:21 +02:00
|
|
|
for (size_t i = 0; i < arraysize(prop_map); i++) {
|
2015-07-24 19:11:05 +02:00
|
|
|
std::string value = property_get(prop_map[i].src_prop);
|
|
|
|
property_set(prop_map[i].dst_prop, (!value.empty()) ? value.c_str() : prop_map[i].default_value);
|
2011-12-19 20:21:32 +01:00
|
|
|
}
|
|
|
|
}
|
2010-04-14 04:52:01 +02:00
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
static void process_kernel_dt() {
|
2015-02-28 15:39:11 +01:00
|
|
|
static const char android_dir[] = "/proc/device-tree/firmware/android";
|
|
|
|
|
|
|
|
std::string file_name = android::base::StringPrintf("%s/compatible", android_dir);
|
|
|
|
|
|
|
|
std::string dt_file;
|
|
|
|
android::base::ReadFileToString(file_name, &dt_file);
|
|
|
|
if (!dt_file.compare("android,firmware")) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "firmware/android is not compatible with 'android,firmware'";
|
2015-02-28 15:39:11 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<DIR, int(*)(DIR*)>dir(opendir(android_dir), closedir);
|
2015-05-07 04:19:24 +02:00
|
|
|
if (!dir) return;
|
2015-02-28 15:39:11 +01:00
|
|
|
|
|
|
|
struct dirent *dp;
|
|
|
|
while ((dp = readdir(dir.get())) != NULL) {
|
2015-11-09 02:51:50 +01:00
|
|
|
if (dp->d_type != DT_REG || !strcmp(dp->d_name, "compatible") || !strcmp(dp->d_name, "name")) {
|
2015-02-28 15:39:11 +01:00
|
|
|
continue;
|
2015-05-07 04:19:24 +02:00
|
|
|
}
|
2015-02-28 15:39:11 +01:00
|
|
|
|
|
|
|
file_name = android::base::StringPrintf("%s/%s", android_dir, dp->d_name);
|
|
|
|
|
|
|
|
android::base::ReadFileToString(file_name, &dt_file);
|
|
|
|
std::replace(dt_file.begin(), dt_file.end(), ',', '.');
|
|
|
|
|
|
|
|
std::string property_name = android::base::StringPrintf("ro.boot.%s", dp->d_name);
|
2015-03-20 17:45:18 +01:00
|
|
|
property_set(property_name.c_str(), dt_file.c_str());
|
2015-02-28 15:39:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
static void process_kernel_cmdline() {
|
|
|
|
// Don't expose the raw commandline to unprivileged processes.
|
2011-12-19 20:21:32 +01:00
|
|
|
chmod("/proc/cmdline", 0440);
|
2010-04-14 04:52:01 +02:00
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
// The first pass does the common stuff, and finds if we are in qemu.
|
|
|
|
// The second pass is only necessary for qemu to export all kernel params
|
|
|
|
// as properties.
|
2015-04-26 02:42:52 +02:00
|
|
|
import_kernel_cmdline(false, import_kernel_nv);
|
2015-05-07 04:19:24 +02:00
|
|
|
if (qemu[0]) import_kernel_cmdline(true, import_kernel_nv);
|
2010-04-14 04:52:01 +02:00
|
|
|
}
|
|
|
|
|
2015-07-30 22:52:55 +02:00
|
|
|
static int queue_property_triggers_action(const std::vector<std::string>& args)
|
2010-04-14 04:52:01 +02:00
|
|
|
{
|
2015-07-24 02:53:11 +02:00
|
|
|
ActionManager::GetInstance().QueueAllPropertyTriggers();
|
2010-04-14 04:52:01 +02:00
|
|
|
/* enable property triggers */
|
|
|
|
property_triggers_enabled = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-25 03:50:30 +02:00
|
|
|
static void selinux_init_all_handles(void)
|
2012-01-13 14:48:47 +01:00
|
|
|
{
|
2012-05-01 21:02:53 +02:00
|
|
|
sehandle = selinux_android_file_context_handle();
|
2014-01-28 16:34:09 +01:00
|
|
|
selinux_android_set_sehandle(sehandle);
|
2012-08-09 16:05:49 +02:00
|
|
|
sehandle_prop = selinux_android_prop_context_handle();
|
2012-05-01 21:02:53 +02:00
|
|
|
}
|
2012-01-13 14:48:47 +01:00
|
|
|
|
2015-04-28 21:39:41 +02:00
|
|
|
enum selinux_enforcing_status { SELINUX_PERMISSIVE, SELINUX_ENFORCING };
|
2015-04-26 02:42:52 +02:00
|
|
|
|
|
|
|
static selinux_enforcing_status selinux_status_from_cmdline() {
|
|
|
|
selinux_enforcing_status status = SELINUX_ENFORCING;
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
import_kernel_cmdline(false, [&](const std::string& key, const std::string& value, bool in_qemu) {
|
|
|
|
if (key == "androidboot.selinux" && value == "permissive") {
|
|
|
|
status = SELINUX_PERMISSIVE;
|
2015-04-26 02:42:52 +02:00
|
|
|
}
|
2015-05-07 04:19:24 +02:00
|
|
|
});
|
2015-04-26 02:42:52 +02:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2013-06-27 00:37:26 +02:00
|
|
|
static bool selinux_is_enforcing(void)
|
|
|
|
{
|
2015-04-28 21:39:41 +02:00
|
|
|
if (ALLOW_PERMISSIVE_SELINUX) {
|
2015-04-26 02:42:52 +02:00
|
|
|
return selinux_status_from_cmdline() == SELINUX_ENFORCING;
|
2013-06-27 00:37:26 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-28 07:20:44 +01:00
|
|
|
static int audit_callback(void *data, security_class_t /*cls*/, char *buf, size_t len) {
|
2015-10-02 01:03:47 +02:00
|
|
|
|
|
|
|
property_audit_data *d = reinterpret_cast<property_audit_data*>(data);
|
|
|
|
|
|
|
|
if (!d || !d->name || !d->cr) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "audit_callback invoked with null data arguments!";
|
2015-10-02 01:03:47 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buf, len, "property=%s pid=%d uid=%d gid=%d", d->name,
|
|
|
|
d->cr->pid, d->cr->uid, d->cr->gid);
|
2012-08-09 16:05:49 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-25 18:42:10 +01:00
|
|
|
static void security_failure() {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(ERROR) << "Security failure; rebooting into recovery mode...";
|
2016-03-25 18:42:10 +01:00
|
|
|
android_reboot(ANDROID_RB_RESTART2, 0, "recovery");
|
|
|
|
while (true) { pause(); } // never reached
|
|
|
|
}
|
|
|
|
|
2015-04-24 20:38:17 +02:00
|
|
|
static void selinux_initialize(bool in_kernel_domain) {
|
2015-03-28 07:20:44 +01:00
|
|
|
Timer t;
|
|
|
|
|
|
|
|
selinux_callback cb;
|
|
|
|
cb.func_log = selinux_klog_callback;
|
|
|
|
selinux_set_callback(SELINUX_CB_LOG, cb);
|
|
|
|
cb.func_audit = audit_callback;
|
|
|
|
selinux_set_callback(SELINUX_CB_AUDIT, cb);
|
2014-02-12 22:17:00 +01:00
|
|
|
|
2015-04-24 20:38:17 +02:00
|
|
|
if (in_kernel_domain) {
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(INFO) << "Loading SELinux policy...";
|
2015-04-24 20:38:17 +02:00
|
|
|
if (selinux_android_load_policy() < 0) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "failed to load policy";
|
2015-04-24 20:38:17 +02:00
|
|
|
security_failure();
|
|
|
|
}
|
|
|
|
|
2015-04-28 21:39:41 +02:00
|
|
|
bool kernel_enforcing = (security_getenforce() == 1);
|
2015-04-24 20:38:17 +02:00
|
|
|
bool is_enforcing = selinux_is_enforcing();
|
2015-04-28 21:39:41 +02:00
|
|
|
if (kernel_enforcing != is_enforcing) {
|
|
|
|
if (security_setenforce(is_enforcing)) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "security_setenforce(%s) failed" << (is_enforcing ? "true" : "false");
|
2015-04-28 21:39:41 +02:00
|
|
|
security_failure();
|
|
|
|
}
|
|
|
|
}
|
2015-03-28 07:20:44 +01:00
|
|
|
|
2015-04-25 23:10:03 +02:00
|
|
|
if (write_file("/sys/fs/selinux/checkreqprot", "0") == -1) {
|
|
|
|
security_failure();
|
|
|
|
}
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(INFO) << "(Initializing SELinux " << (is_enforcing ? "enforcing" : "non-enforcing")
|
|
|
|
<< " took " << t.duration() << "s.)";
|
2015-04-24 20:38:17 +02:00
|
|
|
} else {
|
|
|
|
selinux_init_all_handles();
|
|
|
|
}
|
2013-06-25 02:41:40 +02:00
|
|
|
}
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
int main(int argc, char** argv) {
|
2015-03-28 07:20:44 +01:00
|
|
|
if (!strcmp(basename(argv[0]), "ueventd")) {
|
2010-04-21 21:04:20 +02:00
|
|
|
return ueventd_main(argc, argv);
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
2010-04-21 21:04:20 +02:00
|
|
|
|
2015-03-28 07:20:44 +01:00
|
|
|
if (!strcmp(basename(argv[0]), "watchdogd")) {
|
2012-06-14 06:51:56 +02:00
|
|
|
return watchdogd_main(argc, argv);
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
2012-06-14 06:51:56 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Clear the umask.
|
2008-10-21 16:00:00 +02:00
|
|
|
umask(0);
|
|
|
|
|
2015-03-18 04:01:13 +01:00
|
|
|
add_environment("PATH", _PATH_DEFPATH);
|
|
|
|
|
2015-04-26 00:50:03 +02:00
|
|
|
bool is_first_stage = (argc == 1) || (strcmp(argv[1], "--second-stage") != 0);
|
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Get the basic filesystem setup we need put together in the initramdisk
|
|
|
|
// on / and then we'll let the rc file figure out the rest.
|
2015-04-26 00:50:03 +02:00
|
|
|
if (is_first_stage) {
|
2015-04-26 02:42:52 +02:00
|
|
|
mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755");
|
|
|
|
mkdir("/dev/pts", 0755);
|
|
|
|
mkdir("/dev/socket", 0755);
|
|
|
|
mount("devpts", "/dev/pts", "devpts", 0, NULL);
|
2015-11-08 01:52:17 +01:00
|
|
|
#define MAKE_STR(x) __STRING(x)
|
|
|
|
mount("proc", "/proc", "proc", 0, "hidepid=2,gid=" MAKE_STR(AID_READPROC));
|
2015-04-26 00:50:03 +02:00
|
|
|
mount("sysfs", "/sys", "sysfs", 0, NULL);
|
2016-03-03 19:40:12 +01:00
|
|
|
mount("selinuxfs", "/sys/fs/selinux", "selinuxfs", 0, NULL);
|
2015-04-26 00:50:03 +02:00
|
|
|
}
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// We must have some place other than / to create the device nodes for
|
|
|
|
// kmsg and null, otherwise we won't be able to remount / read-only
|
|
|
|
// later on. Now that tmpfs is mounted on /dev, we can actually talk
|
|
|
|
// to the outside world.
|
2016-06-25 00:12:21 +02:00
|
|
|
InitKernelLogging(argv);
|
2015-03-28 07:20:44 +01:00
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(INFO) << "init " << (is_first_stage ? "first stage" : "second stage") << " started!";
|
2015-03-28 07:20:44 +01:00
|
|
|
|
2015-04-26 02:42:52 +02:00
|
|
|
if (!is_first_stage) {
|
|
|
|
// Indicate that booting is in progress to background fw loaders, etc.
|
|
|
|
close(open("/dev/.booting", O_WRONLY | O_CREAT | O_CLOEXEC, 0000));
|
2011-09-28 18:55:31 +02:00
|
|
|
|
2015-04-26 02:42:52 +02:00
|
|
|
property_init();
|
2011-12-19 20:21:32 +01:00
|
|
|
|
2015-04-26 02:42:52 +02:00
|
|
|
// If arguments are passed both on the command line and in DT,
|
|
|
|
// properties set in DT always have priority over the command-line ones.
|
|
|
|
process_kernel_dt();
|
|
|
|
process_kernel_cmdline();
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
// Propagate the kernel variables to internal variables
|
2015-04-26 02:42:52 +02:00
|
|
|
// used by init as well as the current required properties.
|
|
|
|
export_kernel_boot_props();
|
|
|
|
}
|
2015-02-28 15:39:11 +01:00
|
|
|
|
2015-04-24 20:38:17 +02:00
|
|
|
// Set up SELinux, including loading the SELinux policy if we're in the kernel domain.
|
|
|
|
selinux_initialize(is_first_stage);
|
|
|
|
|
|
|
|
// If we're in the kernel domain, re-exec init to transition to the init domain now
|
|
|
|
// that the SELinux policy has been loaded.
|
|
|
|
if (is_first_stage) {
|
|
|
|
if (restorecon("/init") == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "restorecon failed";
|
2015-04-24 20:38:17 +02:00
|
|
|
security_failure();
|
|
|
|
}
|
|
|
|
char* path = argv[0];
|
|
|
|
char* args[] = { path, const_cast<char*>("--second-stage"), nullptr };
|
|
|
|
if (execv(path, args) == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "execv(\"" << path << "\") failed";
|
2015-04-24 20:38:17 +02:00
|
|
|
security_failure();
|
|
|
|
}
|
|
|
|
}
|
2015-02-07 05:15:18 +01:00
|
|
|
|
|
|
|
// These directories were necessarily created before initial policy load
|
|
|
|
// and therefore need their security context restored to the proper value.
|
|
|
|
// This must happen before /dev is populated by ueventd.
|
2016-06-25 00:12:21 +02:00
|
|
|
LOG(INFO) << "Running restorecon...";
|
2012-06-11 19:37:39 +02:00
|
|
|
restorecon("/dev");
|
|
|
|
restorecon("/dev/socket");
|
2013-03-01 02:29:58 +01:00
|
|
|
restorecon("/dev/__properties__");
|
2015-12-01 01:40:25 +01:00
|
|
|
restorecon("/property_contexts");
|
2013-07-12 00:38:26 +02:00
|
|
|
restorecon_recursive("/sys");
|
2012-01-13 14:48:47 +01:00
|
|
|
|
2015-04-25 06:13:44 +02:00
|
|
|
epoll_fd = epoll_create1(EPOLL_CLOEXEC);
|
|
|
|
if (epoll_fd == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "epoll_create1 failed";
|
2015-04-25 06:13:44 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
signal_handler_init();
|
2015-04-25 02:43:21 +02:00
|
|
|
|
2014-06-17 00:06:21 +02:00
|
|
|
property_load_boot_defaults();
|
2015-12-07 13:33:58 +01:00
|
|
|
export_oem_lock_status();
|
2015-04-25 03:50:30 +02:00
|
|
|
start_property_service();
|
2011-12-16 23:18:06 +01:00
|
|
|
|
2015-08-26 20:43:36 +02:00
|
|
|
const BuiltinFunctionMap function_map;
|
|
|
|
Action::set_function_map(&function_map);
|
|
|
|
|
|
|
|
Parser& parser = Parser::GetInstance();
|
|
|
|
parser.AddSectionParser("service",std::make_unique<ServiceParser>());
|
|
|
|
parser.AddSectionParser("on", std::make_unique<ActionParser>());
|
|
|
|
parser.AddSectionParser("import", std::make_unique<ImportParser>());
|
|
|
|
parser.ParseConfig("/init.rc");
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-07-24 02:53:11 +02:00
|
|
|
ActionManager& am = ActionManager::GetInstance();
|
|
|
|
|
|
|
|
am.QueueEventTrigger("early-init");
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-04-25 03:50:30 +02:00
|
|
|
// Queue an action that waits for coldboot done so we know ueventd has set up all of /dev...
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueBuiltinAction(wait_for_coldboot_done_action, "wait_for_coldboot_done");
|
2015-04-25 03:50:30 +02:00
|
|
|
// ... so that we can start queuing up actions that require stuff from /dev.
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueBuiltinAction(mix_hwrng_into_linux_rng_action, "mix_hwrng_into_linux_rng");
|
|
|
|
am.QueueBuiltinAction(keychord_init_action, "keychord_init");
|
|
|
|
am.QueueBuiltinAction(console_init_action, "console_init");
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-03-28 07:20:44 +01:00
|
|
|
// Trigger all the boot actions to get us started.
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueEventTrigger("init");
|
2011-08-25 00:28:23 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Repeat mix_hwrng_into_linux_rng in case /dev/hw_random or /dev/random
|
|
|
|
// wasn't ready immediately after wait_for_coldboot_done
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueBuiltinAction(mix_hwrng_into_linux_rng_action, "mix_hwrng_into_linux_rng");
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Don't mount filesystems or start core system services in charger mode.
|
2015-07-24 19:11:05 +02:00
|
|
|
std::string bootmode = property_get("ro.bootmode");
|
|
|
|
if (bootmode == "charger") {
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueEventTrigger("charger");
|
2011-08-25 00:28:23 +02:00
|
|
|
} else {
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueEventTrigger("late-init");
|
2011-08-25 00:28:23 +02:00
|
|
|
}
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2015-02-07 05:15:18 +01:00
|
|
|
// Run all property triggers based on current state of the properties.
|
2015-07-24 02:53:11 +02:00
|
|
|
am.QueueBuiltinAction(queue_property_triggers_action, "queue_property_triggers");
|
2010-04-14 04:52:01 +02:00
|
|
|
|
2015-04-25 03:50:30 +02:00
|
|
|
while (true) {
|
2015-02-07 05:15:18 +01:00
|
|
|
if (!waiting_for_exec) {
|
2015-07-24 02:53:11 +02:00
|
|
|
am.ExecuteOneCommand();
|
2015-02-07 05:15:18 +01:00
|
|
|
restart_processes();
|
|
|
|
}
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2014-12-05 06:45:02 +01:00
|
|
|
int timeout = -1;
|
2008-10-21 16:00:00 +02:00
|
|
|
if (process_needs_restart) {
|
|
|
|
timeout = (process_needs_restart - gettime()) * 1000;
|
|
|
|
if (timeout < 0)
|
|
|
|
timeout = 0;
|
|
|
|
}
|
|
|
|
|
2015-07-24 02:53:11 +02:00
|
|
|
if (am.HasMoreCommands()) {
|
2010-04-14 04:52:01 +02:00
|
|
|
timeout = 0;
|
2015-02-04 23:46:36 +01:00
|
|
|
}
|
2010-04-14 04:52:01 +02:00
|
|
|
|
2014-12-05 06:45:02 +01:00
|
|
|
bootchart_sample(&timeout);
|
2010-04-14 04:52:01 +02:00
|
|
|
|
2015-04-25 06:13:44 +02:00
|
|
|
epoll_event ev;
|
|
|
|
int nr = TEMP_FAILURE_RETRY(epoll_wait(epoll_fd, &ev, 1, timeout));
|
|
|
|
if (nr == -1) {
|
2016-06-25 00:12:21 +02:00
|
|
|
PLOG(ERROR) << "epoll_wait failed";
|
2015-04-25 06:13:44 +02:00
|
|
|
} else if (nr == 1) {
|
|
|
|
((void (*)()) ev.data.ptr)();
|
2008-10-21 16:00:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|