2012-04-04 02:23:01 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 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 <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2018-09-18 22:30:21 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2015-03-31 19:35:33 +02:00
|
|
|
#include <string>
|
2018-09-18 22:30:21 +02:00
|
|
|
#include <vector>
|
2012-04-04 02:23:01 +02:00
|
|
|
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mount.h>
|
2018-09-18 22:30:21 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2013-01-16 21:29:28 +01:00
|
|
|
#include <sys/wait.h>
|
2012-04-04 02:23:01 +02:00
|
|
|
|
|
|
|
#include <linux/kdev_t.h>
|
|
|
|
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/logging.h>
|
2017-07-17 21:57:18 +02:00
|
|
|
#include <android-base/properties.h>
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/stringprintf.h>
|
2012-04-04 02:23:01 +02:00
|
|
|
#include <cutils/properties.h>
|
2018-10-23 22:06:55 +02:00
|
|
|
#include <fscrypt/fscrypt.h>
|
2013-01-16 21:29:28 +01:00
|
|
|
#include <logwrap/logwrap.h>
|
2015-04-01 20:54:32 +02:00
|
|
|
#include <selinux/selinux.h>
|
2013-01-16 21:29:28 +01:00
|
|
|
|
2012-04-04 02:23:01 +02:00
|
|
|
#include "Ext4.h"
|
2018-10-23 22:06:55 +02:00
|
|
|
#include "FsCrypt.h"
|
2015-03-31 19:35:33 +02:00
|
|
|
#include "Utils.h"
|
2012-12-21 21:41:43 +01:00
|
|
|
#include "VoldUtil.h"
|
2012-04-04 02:23:01 +02:00
|
|
|
|
2015-03-31 19:35:33 +02:00
|
|
|
using android::base::StringPrintf;
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
namespace android {
|
|
|
|
namespace vold {
|
|
|
|
namespace ext4 {
|
|
|
|
|
2015-04-09 06:07:21 +02:00
|
|
|
static const char* kResizefsPath = "/system/bin/resize2fs";
|
2016-11-22 00:14:37 +01:00
|
|
|
static const char* kMkfsPath = "/system/bin/mke2fs";
|
2015-03-31 19:35:33 +02:00
|
|
|
static const char* kFsckPath = "/system/bin/e2fsck";
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
bool IsSupported() {
|
2018-09-18 22:30:21 +02:00
|
|
|
return access(kMkfsPath, X_OK) == 0 && access(kFsckPath, X_OK) == 0 &&
|
|
|
|
IsFilesystemSupported("ext4");
|
2015-05-22 07:35:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
status_t Check(const std::string& source, const std::string& target) {
|
2015-03-31 19:35:33 +02:00
|
|
|
// The following is shamelessly borrowed from fs_mgr.c, so it should be
|
|
|
|
// kept in sync with any changes over there.
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
const char* c_source = source.c_str();
|
|
|
|
const char* c_target = target.c_str();
|
2015-03-31 19:35:33 +02:00
|
|
|
|
|
|
|
int status;
|
|
|
|
int ret;
|
|
|
|
long tmpmnt_flags = MS_NOATIME | MS_NOEXEC | MS_NOSUID;
|
2018-09-18 22:30:21 +02:00
|
|
|
char* tmpmnt_opts = (char*)"nomblk_io_submit,errors=remount-ro";
|
2015-03-31 19:35:33 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First try to mount and unmount the filesystem. We do this because
|
|
|
|
* the kernel is more efficient than e2fsck in running the journal and
|
|
|
|
* processing orphaned inodes, and on at least one device with a
|
|
|
|
* performance issue in the emmc firmware, it can take e2fsck 2.5 minutes
|
|
|
|
* to do what the kernel does in about a second.
|
|
|
|
*
|
|
|
|
* After mounting and unmounting the filesystem, run e2fsck, and if an
|
|
|
|
* error is recorded in the filesystem superblock, e2fsck will do a full
|
|
|
|
* check. Otherwise, it does nothing. If the kernel cannot mount the
|
|
|
|
* filesytsem due to an error, e2fsck is still run to do a full check
|
|
|
|
* fix the filesystem.
|
|
|
|
*/
|
2015-05-22 07:35:42 +02:00
|
|
|
ret = mount(c_source, c_target, "ext4", tmpmnt_flags, tmpmnt_opts);
|
2015-03-31 19:35:33 +02:00
|
|
|
if (!ret) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 5; i++) {
|
|
|
|
// Try to umount 5 times before continuing on.
|
|
|
|
// Should we try rebooting if all attempts fail?
|
2015-05-22 07:35:42 +02:00
|
|
|
int result = umount(c_target);
|
2015-03-31 19:35:33 +02:00
|
|
|
if (result == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2018-04-23 07:37:39 +02:00
|
|
|
LOG(WARNING) << __func__ << "(): umount(" << c_target << ")=" << result << ": "
|
|
|
|
<< strerror(errno);
|
2015-03-31 19:35:33 +02:00
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some system images do not have e2fsck for licensing reasons
|
|
|
|
* (e.g. recent SDK system images). Detect these and skip the check.
|
|
|
|
*/
|
|
|
|
if (access(kFsckPath, X_OK)) {
|
2018-04-23 07:37:39 +02:00
|
|
|
LOG(DEBUG) << "Not running " << kFsckPath << " on " << c_source
|
|
|
|
<< " (executable not in system image)";
|
2015-03-31 19:35:33 +02:00
|
|
|
} else {
|
2018-04-23 07:37:39 +02:00
|
|
|
LOG(DEBUG) << "Running " << kFsckPath << " on " << c_source;
|
2015-03-31 19:35:33 +02:00
|
|
|
|
2015-04-09 06:07:21 +02:00
|
|
|
std::vector<std::string> cmd;
|
|
|
|
cmd.push_back(kFsckPath);
|
|
|
|
cmd.push_back("-y");
|
2015-05-22 07:35:42 +02:00
|
|
|
cmd.push_back(c_source);
|
2015-03-31 19:35:33 +02:00
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
// ext4 devices are currently always trusted
|
2018-11-30 20:43:47 +01:00
|
|
|
return ForkExecvp(cmd, nullptr, sFsckContext);
|
2015-03-31 19:35:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-18 22:30:21 +02:00
|
|
|
status_t Mount(const std::string& source, const std::string& target, bool ro, bool remount,
|
|
|
|
bool executable) {
|
2012-04-04 02:23:01 +02:00
|
|
|
int rc;
|
|
|
|
unsigned long flags;
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
const char* c_source = source.c_str();
|
|
|
|
const char* c_target = target.c_str();
|
|
|
|
|
2012-04-04 02:23:01 +02:00
|
|
|
flags = MS_NOATIME | MS_NODEV | MS_NOSUID | MS_DIRSYNC;
|
|
|
|
|
|
|
|
flags |= (executable ? 0 : MS_NOEXEC);
|
|
|
|
flags |= (ro ? MS_RDONLY : 0);
|
|
|
|
flags |= (remount ? MS_REMOUNT : 0);
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
rc = mount(c_source, c_target, "ext4", flags, NULL);
|
2012-04-04 02:23:01 +02:00
|
|
|
|
|
|
|
if (rc && errno == EROFS) {
|
2017-10-07 02:02:53 +02:00
|
|
|
LOG(ERROR) << source << " appears to be a read only filesystem - retrying mount RO";
|
2012-04-04 02:23:01 +02:00
|
|
|
flags |= MS_RDONLY;
|
2015-05-22 07:35:42 +02:00
|
|
|
rc = mount(c_source, c_target, "ext4", flags, NULL);
|
2012-04-04 02:23:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-08-03 18:06:39 +02:00
|
|
|
status_t Resize(const std::string& source, unsigned long numSectors) {
|
2015-04-09 06:07:21 +02:00
|
|
|
std::vector<std::string> cmd;
|
|
|
|
cmd.push_back(kResizefsPath);
|
|
|
|
cmd.push_back("-f");
|
2015-05-22 07:35:42 +02:00
|
|
|
cmd.push_back(source);
|
2015-08-03 18:06:39 +02:00
|
|
|
cmd.push_back(StringPrintf("%lu", numSectors));
|
2014-05-22 20:23:56 +02:00
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
return ForkExecvp(cmd);
|
2014-05-22 20:23:56 +02:00
|
|
|
}
|
|
|
|
|
2018-09-18 22:30:21 +02:00
|
|
|
status_t Format(const std::string& source, unsigned long numSectors, const std::string& target) {
|
2015-03-31 19:35:33 +02:00
|
|
|
std::vector<std::string> cmd;
|
|
|
|
cmd.push_back(kMkfsPath);
|
2016-11-22 00:14:37 +01:00
|
|
|
|
|
|
|
cmd.push_back("-b");
|
|
|
|
cmd.push_back("4096");
|
|
|
|
|
|
|
|
cmd.push_back("-t");
|
|
|
|
cmd.push_back("ext4");
|
|
|
|
|
|
|
|
cmd.push_back("-M");
|
|
|
|
cmd.push_back(target);
|
|
|
|
|
2020-04-15 11:42:47 +02:00
|
|
|
bool needs_casefold =
|
|
|
|
android::base::GetBoolProperty("external_storage.casefold.enabled", false);
|
|
|
|
bool needs_projid = android::base::GetBoolProperty("external_storage.projid.enabled", false);
|
2019-11-20 05:30:46 +01:00
|
|
|
|
|
|
|
if (needs_projid) {
|
|
|
|
cmd.push_back("-I");
|
|
|
|
cmd.push_back("512");
|
|
|
|
}
|
|
|
|
|
2017-07-17 21:57:18 +02:00
|
|
|
std::string options("has_journal");
|
|
|
|
if (android::base::GetBoolProperty("vold.has_quota", false)) {
|
|
|
|
options += ",quota";
|
|
|
|
}
|
2018-10-23 22:06:55 +02:00
|
|
|
if (fscrypt_is_native()) {
|
Progress towards FBE and adoptable storage.
Offer to adopt storage devices on FBE devices, but keep it guarded
behind a system property for now, since we still need to work out key
storage details.
When migrating shared storage, leave user-specific /data/media
directories in place, since they already have the needed crypto
policies defined.
Enable journaling, quotas, and encrypt options when formatting
newly adopted devices. installd already gracefully handles older
partitions without quota enabled.
Test: cts-tradefed run commandAndExit cts-dev --abi armeabi-v7a -m CtsAppSecurityHostTestCases -t android.appsecurity.cts.AdoptableHostTest
Bug: 62290006, 36757864, 29117062, 37395736
Bug: 29923055, 25861755, 30230655, 37436961
Change-Id: Ibbeb6ec9db2394a279bbac221a2b20711d65494e
2017-06-21 21:52:23 +02:00
|
|
|
options += ",encrypt";
|
|
|
|
}
|
2019-11-20 05:30:46 +01:00
|
|
|
if (needs_casefold) {
|
|
|
|
options += ",casefold";
|
|
|
|
}
|
Progress towards FBE and adoptable storage.
Offer to adopt storage devices on FBE devices, but keep it guarded
behind a system property for now, since we still need to work out key
storage details.
When migrating shared storage, leave user-specific /data/media
directories in place, since they already have the needed crypto
policies defined.
Enable journaling, quotas, and encrypt options when formatting
newly adopted devices. installd already gracefully handles older
partitions without quota enabled.
Test: cts-tradefed run commandAndExit cts-dev --abi armeabi-v7a -m CtsAppSecurityHostTestCases -t android.appsecurity.cts.AdoptableHostTest
Bug: 62290006, 36757864, 29117062, 37395736
Bug: 29923055, 25861755, 30230655, 37436961
Change-Id: Ibbeb6ec9db2394a279bbac221a2b20711d65494e
2017-06-21 21:52:23 +02:00
|
|
|
|
2016-11-22 00:14:37 +01:00
|
|
|
cmd.push_back("-O");
|
Progress towards FBE and adoptable storage.
Offer to adopt storage devices on FBE devices, but keep it guarded
behind a system property for now, since we still need to work out key
storage details.
When migrating shared storage, leave user-specific /data/media
directories in place, since they already have the needed crypto
policies defined.
Enable journaling, quotas, and encrypt options when formatting
newly adopted devices. installd already gracefully handles older
partitions without quota enabled.
Test: cts-tradefed run commandAndExit cts-dev --abi armeabi-v7a -m CtsAppSecurityHostTestCases -t android.appsecurity.cts.AdoptableHostTest
Bug: 62290006, 36757864, 29117062, 37395736
Bug: 29923055, 25861755, 30230655, 37436961
Change-Id: Ibbeb6ec9db2394a279bbac221a2b20711d65494e
2017-06-21 21:52:23 +02:00
|
|
|
cmd.push_back(options);
|
2016-11-22 00:14:37 +01:00
|
|
|
|
2019-11-20 05:30:46 +01:00
|
|
|
if (needs_casefold || needs_projid) {
|
|
|
|
cmd.push_back("-E");
|
|
|
|
std::string extopts = "";
|
|
|
|
if (needs_casefold) extopts += "encoding=utf8,";
|
2021-09-13 10:37:01 +02:00
|
|
|
if (needs_projid) extopts += "quotatype=usrquota:grpquota:prjquota,";
|
2019-11-20 05:30:46 +01:00
|
|
|
cmd.push_back(extopts);
|
|
|
|
}
|
|
|
|
|
2016-11-22 00:14:37 +01:00
|
|
|
cmd.push_back(source);
|
|
|
|
|
2014-05-23 22:47:00 +02:00
|
|
|
if (numSectors) {
|
2017-06-27 00:09:11 +02:00
|
|
|
cmd.push_back(StringPrintf("%lu", numSectors * (4096 / 512)));
|
2014-05-23 22:47:00 +02:00
|
|
|
}
|
2015-03-31 19:35:33 +02:00
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
return ForkExecvp(cmd);
|
2012-04-04 02:23:01 +02:00
|
|
|
}
|
2015-05-22 07:35:42 +02:00
|
|
|
|
|
|
|
} // namespace ext4
|
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|