2009-10-11 02:22:08 +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.
|
|
|
|
*/
|
|
|
|
|
2017-09-22 01:08:43 +02:00
|
|
|
#define ATRACE_TAG ATRACE_TAG_PACKAGE_MANAGER
|
|
|
|
|
2017-09-11 18:32:01 +02:00
|
|
|
#include "model/Disk.h"
|
2015-04-02 08:32:18 +02:00
|
|
|
#include "VolumeManager.h"
|
|
|
|
#include "NetlinkManager.h"
|
2017-09-06 21:47:40 +02:00
|
|
|
#include "VoldNativeService.h"
|
2017-09-26 23:05:26 +02:00
|
|
|
#include "VoldUtil.h"
|
2015-04-02 08:32:18 +02:00
|
|
|
#include "cryptfs.h"
|
|
|
|
#include "sehandle.h"
|
|
|
|
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/logging.h>
|
2017-10-07 02:02:53 +02:00
|
|
|
#include <android-base/properties.h>
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/stringprintf.h>
|
2015-04-02 08:32:18 +02:00
|
|
|
#include <cutils/klog.h>
|
2017-09-22 01:08:43 +02:00
|
|
|
#include <utils/Trace.h>
|
2015-04-02 08:32:18 +02:00
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2009-10-12 23:51:52 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2015-04-01 20:54:32 +02:00
|
|
|
#include <getopt.h>
|
2009-10-12 23:51:52 +02:00
|
|
|
#include <fcntl.h>
|
2017-03-07 02:27:05 +01:00
|
|
|
#include <dirent.h>
|
2013-02-13 22:00:19 +01:00
|
|
|
#include <fs_mgr.h>
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2017-07-17 21:57:18 +02:00
|
|
|
static int process_config(VolumeManager *vm, bool* has_adoptable, bool* has_quota);
|
2017-03-07 02:27:05 +01:00
|
|
|
static void coldboot(const char *path);
|
2015-04-01 20:54:32 +02:00
|
|
|
static void parse_args(int argc, char** argv);
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2014-09-30 16:29:24 +02:00
|
|
|
struct selabel_handle *sehandle;
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
using android::base::StringPrintf;
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
int main(int argc, char** argv) {
|
2015-03-14 00:09:20 +01:00
|
|
|
setenv("ANDROID_LOG_TAGS", "*:v", 1);
|
2015-04-19 01:15:10 +02:00
|
|
|
android::base::InitLogging(argv, android::base::LogdLogger(android::base::SYSTEM));
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2017-09-22 01:08:43 +02:00
|
|
|
ATRACE_BEGIN("main");
|
|
|
|
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(INFO) << "Vold 3.0 (the awakening) firing up";
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
LOG(VERBOSE) << "Detected support for:"
|
|
|
|
<< (android::vold::IsFilesystemSupported("ext4") ? " ext4" : "")
|
|
|
|
<< (android::vold::IsFilesystemSupported("f2fs") ? " f2fs" : "")
|
|
|
|
<< (android::vold::IsFilesystemSupported("vfat") ? " vfat" : "");
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
VolumeManager *vm;
|
|
|
|
NetlinkManager *nm;
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
parse_args(argc, argv);
|
2009-12-13 19:40:18 +01:00
|
|
|
|
2014-09-30 16:29:24 +02:00
|
|
|
sehandle = selinux_android_file_context_handle();
|
2015-04-01 20:54:32 +02:00
|
|
|
if (sehandle) {
|
2014-09-30 16:29:24 +02:00
|
|
|
selinux_android_set_sehandle(sehandle);
|
2015-04-01 20:54:32 +02:00
|
|
|
}
|
2014-09-30 16:29:24 +02:00
|
|
|
|
2009-12-13 19:40:18 +01:00
|
|
|
mkdir("/dev/block/vold", 0755);
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2013-03-20 03:42:30 +01:00
|
|
|
/* For when cryptfs checks and mounts an encrypted filesystem */
|
|
|
|
klog_set_level(6);
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
/* Create our singleton managers */
|
|
|
|
if (!(vm = VolumeManager::Instance())) {
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(ERROR) << "Unable to create VolumeManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
2015-04-01 20:54:32 +02:00
|
|
|
}
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
if (!(nm = NetlinkManager::Instance())) {
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(ERROR) << "Unable to create NetlinkManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
2015-04-01 20:54:32 +02:00
|
|
|
}
|
2009-12-13 19:40:18 +01:00
|
|
|
|
2017-10-07 02:02:53 +02:00
|
|
|
if (android::base::GetBoolProperty("vold.debug", false)) {
|
2015-04-29 17:57:18 +02:00
|
|
|
vm->setDebug(true);
|
|
|
|
}
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
if (vm->start()) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Unable to start VolumeManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2017-01-19 21:48:27 +01:00
|
|
|
bool has_adoptable;
|
2017-07-17 21:57:18 +02:00
|
|
|
bool has_quota;
|
2017-01-19 21:48:27 +01:00
|
|
|
|
2017-07-17 21:57:18 +02:00
|
|
|
if (process_config(vm, &has_adoptable, &has_quota)) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Error reading configuration... continuing anyways";
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
|
|
|
|
2017-09-27 19:56:54 +02:00
|
|
|
ATRACE_BEGIN("VoldNativeService::start");
|
|
|
|
if (android::vold::VoldNativeService::start() != android::OK) {
|
|
|
|
LOG(ERROR) << "Unable to start VoldNativeService";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
ATRACE_END();
|
|
|
|
|
2017-09-22 01:08:43 +02:00
|
|
|
ATRACE_BEGIN("NetlinkManager::start");
|
2009-10-11 02:22:08 +02:00
|
|
|
if (nm->start()) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Unable to start NetlinkManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-09-22 01:08:43 +02:00
|
|
|
ATRACE_END();
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2017-01-19 21:48:27 +01:00
|
|
|
// This call should go after listeners are started to avoid
|
|
|
|
// a deadlock between vold and init (see b/34278978 for details)
|
2017-10-07 02:02:53 +02:00
|
|
|
android::base::SetProperty("vold.has_adoptable", has_adoptable ? "1" : "0");
|
|
|
|
android::base::SetProperty("vold.has_quota", has_quota ? "1" : "0");
|
2017-01-19 21:48:27 +01:00
|
|
|
|
2017-03-07 02:27:05 +01:00
|
|
|
// Do coldboot here so it won't block booting,
|
|
|
|
// also the cold boot is needed in case we have flash drive
|
|
|
|
// connected before Vold launched
|
|
|
|
coldboot("/sys/block");
|
2017-09-22 01:08:43 +02:00
|
|
|
|
|
|
|
ATRACE_END();
|
|
|
|
|
2017-10-19 00:52:48 +02:00
|
|
|
android::IPCThreadState::self()->joinThreadPool();
|
|
|
|
LOG(INFO) << "vold shutting down";
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
static void parse_args(int argc, char** argv) {
|
|
|
|
static struct option opts[] = {
|
|
|
|
{"blkid_context", required_argument, 0, 'b' },
|
|
|
|
{"blkid_untrusted_context", required_argument, 0, 'B' },
|
|
|
|
{"fsck_context", required_argument, 0, 'f' },
|
|
|
|
{"fsck_untrusted_context", required_argument, 0, 'F' },
|
|
|
|
};
|
|
|
|
|
|
|
|
int c;
|
|
|
|
while ((c = getopt_long(argc, argv, "", opts, nullptr)) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'b': android::vold::sBlkidContext = optarg; break;
|
|
|
|
case 'B': android::vold::sBlkidUntrustedContext = optarg; break;
|
|
|
|
case 'f': android::vold::sFsckContext = optarg; break;
|
|
|
|
case 'F': android::vold::sFsckUntrustedContext = optarg; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK(android::vold::sBlkidContext != nullptr);
|
|
|
|
CHECK(android::vold::sBlkidUntrustedContext != nullptr);
|
|
|
|
CHECK(android::vold::sFsckContext != nullptr);
|
|
|
|
CHECK(android::vold::sFsckUntrustedContext != nullptr);
|
|
|
|
}
|
|
|
|
|
2017-03-07 02:27:05 +01:00
|
|
|
static void do_coldboot(DIR *d, int lvl) {
|
|
|
|
struct dirent *de;
|
|
|
|
int dfd, fd;
|
|
|
|
|
|
|
|
dfd = dirfd(d);
|
|
|
|
|
|
|
|
fd = openat(dfd, "uevent", O_WRONLY | O_CLOEXEC);
|
|
|
|
if(fd >= 0) {
|
|
|
|
write(fd, "add\n", 4);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
while((de = readdir(d))) {
|
|
|
|
DIR *d2;
|
|
|
|
|
|
|
|
if (de->d_name[0] == '.')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (de->d_type != DT_DIR && lvl > 0)
|
|
|
|
continue;
|
|
|
|
|
2017-03-27 18:49:21 +02:00
|
|
|
fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
|
2017-03-07 02:27:05 +01:00
|
|
|
if(fd < 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
d2 = fdopendir(fd);
|
|
|
|
if(d2 == 0)
|
|
|
|
close(fd);
|
|
|
|
else {
|
|
|
|
do_coldboot(d2, lvl + 1);
|
|
|
|
closedir(d2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void coldboot(const char *path) {
|
2017-09-22 01:08:43 +02:00
|
|
|
ATRACE_NAME("coldboot");
|
2017-03-07 02:27:05 +01:00
|
|
|
DIR *d = opendir(path);
|
|
|
|
if(d) {
|
|
|
|
do_coldboot(d, 0);
|
|
|
|
closedir(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-17 21:57:18 +02:00
|
|
|
static int process_config(VolumeManager *vm, bool* has_adoptable, bool* has_quota) {
|
2017-09-22 01:08:43 +02:00
|
|
|
ATRACE_NAME("process_config");
|
|
|
|
|
2017-09-26 23:05:26 +02:00
|
|
|
fstab_default = fs_mgr_read_fstab_default();
|
|
|
|
if (!fstab_default) {
|
2017-03-09 16:11:33 +01:00
|
|
|
PLOG(ERROR) << "Failed to open default fstab";
|
2009-10-11 02:22:08 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-02-13 22:00:19 +01:00
|
|
|
/* Loop through entries looking for ones that vold manages */
|
2017-01-19 21:48:27 +01:00
|
|
|
*has_adoptable = false;
|
2017-07-17 21:57:18 +02:00
|
|
|
*has_quota = false;
|
2017-09-26 23:05:26 +02:00
|
|
|
for (int i = 0; i < fstab_default->num_entries; i++) {
|
|
|
|
auto rec = &fstab_default->recs[i];
|
|
|
|
if (fs_mgr_is_quota(rec)) {
|
2017-07-17 21:57:18 +02:00
|
|
|
*has_quota = true;
|
|
|
|
}
|
|
|
|
|
2017-09-26 23:05:26 +02:00
|
|
|
if (fs_mgr_is_voldmanaged(rec)) {
|
|
|
|
if (fs_mgr_is_nonremovable(rec)) {
|
2015-03-14 00:09:20 +01:00
|
|
|
LOG(WARNING) << "nonremovable no longer supported; ignoring volume";
|
|
|
|
continue;
|
2013-02-13 22:00:19 +01:00
|
|
|
}
|
2015-03-14 00:09:20 +01:00
|
|
|
|
2017-09-26 23:05:26 +02:00
|
|
|
std::string sysPattern(rec->blk_device);
|
|
|
|
std::string nickname(rec->label);
|
2015-03-14 00:09:20 +01:00
|
|
|
int flags = 0;
|
|
|
|
|
2017-09-26 23:05:26 +02:00
|
|
|
if (fs_mgr_is_encryptable(rec)) {
|
2015-03-14 00:09:20 +01:00
|
|
|
flags |= android::vold::Disk::Flags::kAdoptable;
|
2017-01-19 21:48:27 +01:00
|
|
|
*has_adoptable = true;
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
2017-09-26 23:05:26 +02:00
|
|
|
if (fs_mgr_is_noemulatedsd(rec)
|
2017-10-07 02:02:53 +02:00
|
|
|
|| android::base::GetBoolProperty("vold.debug.default_primary", false)) {
|
2015-03-14 00:09:20 +01:00
|
|
|
flags |= android::vold::Disk::Flags::kDefaultPrimary;
|
2013-07-16 03:14:25 +02:00
|
|
|
}
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
vm->addDiskSource(std::shared_ptr<VolumeManager::DiskSource>(
|
|
|
|
new VolumeManager::DiskSource(sysPattern, nickname, flags)));
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
|
|
|
}
|
2015-03-14 00:09:20 +01:00
|
|
|
return 0;
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|