2015-06-26 23:02:09 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 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 "TrimTask.h"
|
|
|
|
#include "Utils.h"
|
|
|
|
#include "VolumeManager.h"
|
|
|
|
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/stringprintf.h>
|
|
|
|
#include <android-base/logging.h>
|
2015-06-26 23:02:09 +02:00
|
|
|
#include <fs_mgr.h>
|
|
|
|
#include <private/android_filesystem_config.h>
|
|
|
|
#include <hardware_legacy/power.h>
|
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
/* From a would-be kernel header */
|
|
|
|
#define FIDTRIM _IOWR('f', 128, struct fstrim_range) /* Deep discard trim */
|
|
|
|
|
|
|
|
using android::base::StringPrintf;
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace vold {
|
|
|
|
|
|
|
|
static const char* kWakeLock = "TrimTask";
|
|
|
|
|
2017-09-15 20:57:44 +02:00
|
|
|
TrimTask::TrimTask(int flags, const android::sp<android::os::IVoldTaskListener>& listener) :
|
|
|
|
mFlags(flags), mListener(listener) {
|
2015-06-26 23:02:09 +02:00
|
|
|
// Collect both fstab and vold volumes
|
|
|
|
addFromFstab();
|
|
|
|
|
|
|
|
VolumeManager* vm = VolumeManager::Instance();
|
|
|
|
std::list<std::string> privateIds;
|
|
|
|
vm->listVolumes(VolumeBase::Type::kPrivate, privateIds);
|
2016-07-27 23:11:02 +02:00
|
|
|
for (const auto& id : privateIds) {
|
2015-06-26 23:02:09 +02:00
|
|
|
auto vol = vm->findVolume(id);
|
|
|
|
if (vol != nullptr && vol->getState() == VolumeBase::State::kMounted) {
|
|
|
|
mPaths.push_back(vol->getPath());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TrimTask::~TrimTask() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrimTask::addFromFstab() {
|
2017-03-09 16:11:33 +01:00
|
|
|
std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
|
|
|
|
fs_mgr_free_fstab);
|
2015-06-26 23:02:09 +02:00
|
|
|
struct fstab_rec *prev_rec = NULL;
|
|
|
|
|
|
|
|
for (int i = 0; i < fstab->num_entries; i++) {
|
2017-10-07 02:02:53 +02:00
|
|
|
auto fs_type = std::string(fstab->recs[i].fs_type);
|
2015-06-26 23:02:09 +02:00
|
|
|
/* Skip raw partitions */
|
2017-10-07 02:02:53 +02:00
|
|
|
if (fs_type == "emmc" || fs_type == "mtd") {
|
2015-06-26 23:02:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Skip read-only filesystems */
|
|
|
|
if (fstab->recs[i].flags & MS_RDONLY) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
|
|
|
|
continue; /* Should we trim fat32 filesystems? */
|
|
|
|
}
|
|
|
|
if (fs_mgr_is_notrim(&fstab->recs[i])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip the multi-type partitions, which are required to be following each other.
|
|
|
|
* See fs_mgr.c's mount_with_alternatives().
|
|
|
|
*/
|
|
|
|
if (prev_rec && !strcmp(prev_rec->mount_point, fstab->recs[i].mount_point)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
mPaths.push_back(fstab->recs[i].mount_point);
|
|
|
|
prev_rec = &fstab->recs[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrimTask::start() {
|
|
|
|
mThread = std::thread(&TrimTask::run, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrimTask::run() {
|
|
|
|
acquire_wake_lock(PARTIAL_WAKE_LOCK, kWakeLock);
|
|
|
|
|
2016-07-27 23:11:02 +02:00
|
|
|
for (const auto& path : mPaths) {
|
2015-06-26 23:02:09 +02:00
|
|
|
LOG(DEBUG) << "Starting trim of " << path;
|
|
|
|
|
2017-09-15 20:57:44 +02:00
|
|
|
android::os::PersistableBundle extras;
|
|
|
|
extras.putString(String16("path"), String16(path.c_str()));
|
|
|
|
|
2015-06-26 23:02:09 +02:00
|
|
|
int fd = open(path.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC | O_NOFOLLOW);
|
|
|
|
if (fd < 0) {
|
|
|
|
PLOG(WARNING) << "Failed to open " << path;
|
2017-09-15 20:57:44 +02:00
|
|
|
if (mListener) {
|
|
|
|
mListener->onStatus(-1, extras);
|
|
|
|
}
|
2015-06-26 23:02:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct fstrim_range range;
|
|
|
|
memset(&range, 0, sizeof(range));
|
|
|
|
range.len = ULLONG_MAX;
|
|
|
|
|
|
|
|
nsecs_t start = systemTime(SYSTEM_TIME_BOOTTIME);
|
|
|
|
if (ioctl(fd, (mFlags & Flags::kDeepTrim) ? FIDTRIM : FITRIM, &range)) {
|
|
|
|
PLOG(WARNING) << "Trim failed on " << path;
|
2017-09-15 20:57:44 +02:00
|
|
|
if (mListener) {
|
|
|
|
mListener->onStatus(-1, extras);
|
|
|
|
}
|
2015-06-26 23:02:09 +02:00
|
|
|
} else {
|
2017-09-15 20:57:44 +02:00
|
|
|
nsecs_t time = systemTime(SYSTEM_TIME_BOOTTIME) - start;
|
2015-06-26 23:02:09 +02:00
|
|
|
LOG(INFO) << "Trimmed " << range.len << " bytes on " << path
|
2017-09-15 20:57:44 +02:00
|
|
|
<< " in " << nanoseconds_to_milliseconds(time) << "ms";
|
|
|
|
extras.putLong(String16("bytes"), range.len);
|
|
|
|
extras.putLong(String16("time"), time);
|
|
|
|
if (mListener) {
|
|
|
|
mListener->onStatus(0, extras);
|
|
|
|
}
|
2015-06-26 23:02:09 +02:00
|
|
|
}
|
|
|
|
close(fd);
|
2017-09-15 20:57:44 +02:00
|
|
|
}
|
2015-06-26 23:02:09 +02:00
|
|
|
|
2017-09-15 20:57:44 +02:00
|
|
|
if (mListener) {
|
|
|
|
android::os::PersistableBundle extras;
|
|
|
|
mListener->onFinished(0, extras);
|
2015-06-26 23:02:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
release_wake_lock(kWakeLock);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|