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 <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2015-03-31 19:35:33 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2012-04-04 02:23:01 +02:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mount.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>
|
|
|
|
|
|
|
|
#define LOG_TAG "Vold"
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
#include <base/logging.h>
|
2015-03-31 19:35:33 +02:00
|
|
|
#include <base/stringprintf.h>
|
2012-04-04 02:23:01 +02:00
|
|
|
#include <cutils/log.h>
|
|
|
|
#include <cutils/properties.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"
|
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";
|
2015-03-31 19:35:33 +02:00
|
|
|
static const char* kMkfsPath = "/system/bin/make_ext4fs";
|
|
|
|
static const char* kFsckPath = "/system/bin/e2fsck";
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
bool IsSupported() {
|
|
|
|
return access(kMkfsPath, X_OK) == 0
|
|
|
|
&& access(kFsckPath, X_OK) == 0
|
|
|
|
&& IsFilesystemSupported("ext4");
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
char *tmpmnt_opts = (char*) "nomblk_io_submit,errors=remount-ro";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
}
|
2015-05-22 07:35:42 +02:00
|
|
|
ALOGW("%s(): umount(%s)=%d: %s\n", __func__, 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)) {
|
|
|
|
ALOGD("Not running %s on %s (executable not in system image)\n",
|
2015-05-22 07:35:42 +02:00
|
|
|
kFsckPath, c_source);
|
2015-03-31 19:35:33 +02:00
|
|
|
} else {
|
2015-05-22 07:35:42 +02:00
|
|
|
ALOGD("Running %s on %s\n", kFsckPath, 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
|
|
|
|
return ForkExecvp(cmd, sFsckContext);
|
2015-03-31 19:35:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-22 07:35:42 +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) {
|
2015-05-22 07:35:42 +02:00
|
|
|
SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
|
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-05-22 07:35:42 +02:00
|
|
|
status_t Resize(const std::string& source, unsigned int 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-04-09 06:07:21 +02:00
|
|
|
cmd.push_back(StringPrintf("%u", 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
|
|
|
}
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
status_t Format(const std::string& source, unsigned int numSectors,
|
|
|
|
const std::string& target) {
|
2015-03-31 19:35:33 +02:00
|
|
|
std::vector<std::string> cmd;
|
|
|
|
cmd.push_back(kMkfsPath);
|
|
|
|
cmd.push_back("-J");
|
|
|
|
|
|
|
|
cmd.push_back("-a");
|
2015-05-22 07:35:42 +02:00
|
|
|
cmd.push_back(target);
|
2015-03-31 19:35:33 +02:00
|
|
|
|
2014-05-23 22:47:00 +02:00
|
|
|
if (numSectors) {
|
2015-03-31 19:35:33 +02:00
|
|
|
cmd.push_back("-l");
|
|
|
|
cmd.push_back(StringPrintf("%u", numSectors * 512));
|
2014-05-23 22:47:00 +02:00
|
|
|
}
|
2015-03-31 19:35:33 +02:00
|
|
|
|
2015-04-09 06:07:21 +02:00
|
|
|
// Always generate a real UUID
|
|
|
|
cmd.push_back("-u");
|
2015-05-22 07:35:42 +02:00
|
|
|
cmd.push_back(source);
|
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
|