2019-03-13 18:18:24 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mount_handler.h"
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/epoll.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2019-03-25 22:24:32 +01:00
|
|
|
#include <vector>
|
2019-03-13 18:18:24 +01:00
|
|
|
|
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/logging.h>
|
|
|
|
#include <android-base/properties.h>
|
|
|
|
#include <android-base/strings.h>
|
|
|
|
#include <fs_mgr.h>
|
|
|
|
#include <fstab/fstab.h>
|
2019-03-25 22:24:32 +01:00
|
|
|
#include <libdm/dm.h>
|
2019-03-13 18:18:24 +01:00
|
|
|
|
|
|
|
#include "epoll.h"
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
MountHandlerEntry ParseMount(const std::string& line) {
|
|
|
|
auto fields = android::base::Split(line, " ");
|
|
|
|
while (fields.size() < 3) fields.emplace_back("");
|
|
|
|
if (fields[0] == "/dev/root") {
|
2019-03-25 22:24:32 +01:00
|
|
|
auto& dm = dm::DeviceMapper::Instance();
|
|
|
|
std::string path;
|
|
|
|
if (dm.GetDmDevicePathByName("system", &path) || dm.GetDmDevicePathByName("vroot", &path)) {
|
|
|
|
fields[0] = path;
|
|
|
|
} else if (android::fs_mgr::Fstab fstab; android::fs_mgr::ReadDefaultFstab(&fstab)) {
|
|
|
|
auto entry = GetEntryForMountPoint(&fstab, "/");
|
|
|
|
if (entry || (entry = GetEntryForMountPoint(&fstab, "/system"))) {
|
2019-03-13 18:18:24 +01:00
|
|
|
fields[0] = entry->blk_device;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (android::base::StartsWith(fields[0], "/dev/")) {
|
|
|
|
if (std::string link; android::base::Readlink(fields[0], &link)) {
|
|
|
|
fields[0] = link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return MountHandlerEntry(fields[0], fields[1], fields[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetMountProperty(const MountHandlerEntry& entry, bool add) {
|
|
|
|
static constexpr char devblock[] = "/dev/block/";
|
|
|
|
if (!android::base::StartsWith(entry.blk_device, devblock)) return;
|
|
|
|
std::string value;
|
|
|
|
if (add) {
|
|
|
|
value = entry.blk_device.substr(strlen(devblock));
|
|
|
|
if (android::base::StartsWith(value, "sd")) {
|
|
|
|
// All sd partitions inherit their queue characteristics
|
|
|
|
// from the whole device reference. Strip partition number.
|
|
|
|
auto it = std::find_if(value.begin(), value.end(), [](char c) { return isdigit(c); });
|
|
|
|
if (it != value.end()) value.erase(it, value.end());
|
|
|
|
}
|
|
|
|
auto queue = "/sys/block/" + value + "/queue";
|
|
|
|
struct stat sb;
|
|
|
|
if (stat(queue.c_str(), &sb) || !S_ISDIR(sb.st_mode)) value = "";
|
|
|
|
if (stat(entry.mount_point.c_str(), &sb) || !S_ISDIR(sb.st_mode)) value = "";
|
2019-03-25 22:24:32 +01:00
|
|
|
// Clear the noise associated with loopback and APEX.
|
2019-03-13 18:18:24 +01:00
|
|
|
if (android::base::StartsWith(value, "loop")) value = "";
|
2019-03-25 22:24:32 +01:00
|
|
|
if (android::base::StartsWith(entry.mount_point, "/apex/")) value = "";
|
2019-03-13 18:18:24 +01:00
|
|
|
}
|
2019-03-25 22:24:32 +01:00
|
|
|
auto mount_prop = entry.mount_point;
|
|
|
|
if (mount_prop == "/") mount_prop = "/root";
|
|
|
|
std::replace(mount_prop.begin(), mount_prop.end(), '/', '.');
|
|
|
|
mount_prop = "dev.mnt.blk" + mount_prop;
|
|
|
|
// Set property even if its value does not change to trigger 'on property:'
|
|
|
|
// handling, except for clearing non-existent or already clear property.
|
|
|
|
// Goal is reduction of empty properties and associated triggers.
|
|
|
|
if (value.empty() && android::base::GetProperty(mount_prop, "").empty()) return;
|
2019-08-20 00:21:25 +02:00
|
|
|
android::base::SetProperty(mount_prop, value);
|
2019-03-13 18:18:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
MountHandlerEntry::MountHandlerEntry(const std::string& blk_device, const std::string& mount_point,
|
|
|
|
const std::string& fs_type)
|
|
|
|
: blk_device(blk_device), mount_point(mount_point), fs_type(fs_type) {}
|
|
|
|
|
|
|
|
bool MountHandlerEntry::operator<(const MountHandlerEntry& r) const {
|
|
|
|
if (blk_device < r.blk_device) return true;
|
|
|
|
if (blk_device > r.blk_device) return false;
|
|
|
|
if (mount_point < r.mount_point) return true;
|
|
|
|
if (mount_point > r.mount_point) return false;
|
|
|
|
return fs_type < r.fs_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
MountHandler::MountHandler(Epoll* epoll) : epoll_(epoll), fp_(fopen("/proc/mounts", "re"), fclose) {
|
|
|
|
if (!fp_) PLOG(FATAL) << "Could not open /proc/mounts";
|
|
|
|
auto result = epoll->RegisterHandler(
|
|
|
|
fileno(fp_.get()), [this]() { this->MountHandlerFunction(); }, EPOLLERR | EPOLLPRI);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!result.ok()) LOG(FATAL) << result.error();
|
2019-03-13 18:18:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MountHandler::~MountHandler() {
|
2019-05-17 01:54:49 +02:00
|
|
|
if (fp_) epoll_->UnregisterHandler(fileno(fp_.get()));
|
2019-03-13 18:18:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MountHandler::MountHandlerFunction() {
|
|
|
|
rewind(fp_.get());
|
2019-03-25 22:24:32 +01:00
|
|
|
std::vector<MountHandlerEntry> touched;
|
|
|
|
auto untouched = mounts_;
|
2019-03-13 18:18:24 +01:00
|
|
|
char* buf = nullptr;
|
|
|
|
size_t len = 0;
|
|
|
|
while (getline(&buf, &len, fp_.get()) != -1) {
|
2019-03-25 22:24:32 +01:00
|
|
|
auto entry = ParseMount(std::string(buf));
|
2019-03-13 18:18:24 +01:00
|
|
|
auto match = untouched.find(entry);
|
|
|
|
if (match == untouched.end()) {
|
2019-03-25 22:24:32 +01:00
|
|
|
touched.emplace_back(std::move(entry));
|
2019-03-13 18:18:24 +01:00
|
|
|
} else {
|
|
|
|
untouched.erase(match);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(buf);
|
2019-07-10 20:18:24 +02:00
|
|
|
for (auto& entry : untouched) {
|
2019-03-13 18:18:24 +01:00
|
|
|
SetMountProperty(entry, false);
|
2019-03-25 22:24:32 +01:00
|
|
|
mounts_.erase(entry);
|
|
|
|
}
|
2019-07-10 20:18:24 +02:00
|
|
|
for (auto& entry : touched) {
|
2019-03-25 22:24:32 +01:00
|
|
|
SetMountProperty(entry, true);
|
|
|
|
mounts_.emplace(std::move(entry));
|
2019-03-13 18:18:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|