blob: 38cca0442c8db1d9d436815b2dbf6ab4d0c4aa30 [file] [log] [blame]
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "MoveTask.h"
18#include "Utils.h"
19#include "VolumeManager.h"
20#include "ResponseCode.h"
21
Elliott Hughes7e128fb2015-12-04 15:50:53 -080022#include <android-base/stringprintf.h>
23#include <android-base/logging.h>
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070024#include <private/android_filesystem_config.h>
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070025#include <hardware_legacy/power.h>
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070026
27#include <dirent.h>
28#include <sys/wait.h>
29
Chih-Hung Hsiehcc5d5802016-05-11 15:05:05 -070030#define CONSTRAIN(amount, low, high) ((amount) < (low) ? (low) : ((amount) > (high) ? (high) : (amount)))
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070031
Jeff Sharkeyfce701b2016-07-29 15:52:41 -060032#define EXEC_BLOCKING 0
33
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070034using android::base::StringPrintf;
35
36namespace android {
37namespace vold {
38
39// TODO: keep in sync with PackageManager
40static const int kMoveSucceeded = -100;
41static const int kMoveFailedInternalError = -6;
42
43static const char* kCpPath = "/system/bin/cp";
44static const char* kRmPath = "/system/bin/rm";
45
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070046static const char* kWakeLock = "MoveTask";
47
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070048MoveTask::MoveTask(const std::shared_ptr<VolumeBase>& from,
49 const std::shared_ptr<VolumeBase>& to) :
50 mFrom(from), mTo(to) {
51}
52
53MoveTask::~MoveTask() {
54}
55
56void MoveTask::start() {
57 mThread = std::thread(&MoveTask::run, this);
58}
59
60static void notifyProgress(int progress) {
61 VolumeManager::Instance()->getBroadcaster()->sendBroadcast(ResponseCode::MoveStatus,
62 StringPrintf("%d", progress).c_str(), false);
63}
64
65static status_t pushBackContents(const std::string& path, std::vector<std::string>& cmd) {
66 DIR* dir = opendir(path.c_str());
67 if (dir == NULL) {
68 return -1;
69 }
70 bool found = false;
71 struct dirent* ent;
72 while ((ent = readdir(dir)) != NULL) {
73 if ((!strcmp(ent->d_name, ".")) || (!strcmp(ent->d_name, ".."))) {
74 continue;
75 }
76 cmd.push_back(StringPrintf("%s/%s", path.c_str(), ent->d_name));
77 found = true;
78 }
79 closedir(dir);
80 return found ? OK : -1;
81}
82
83static status_t execRm(const std::string& path, int startProgress, int stepProgress) {
84 notifyProgress(startProgress);
85
86 uint64_t expectedBytes = GetTreeBytes(path);
87 uint64_t startFreeBytes = GetFreeBytes(path);
88
89 std::vector<std::string> cmd;
90 cmd.push_back(kRmPath);
91 cmd.push_back("-f"); /* force: remove without confirmation, no error if it doesn't exist */
92 cmd.push_back("-R"); /* recursive: remove directory contents */
93 if (pushBackContents(path, cmd) != OK) {
94 LOG(WARNING) << "No contents in " << path;
95 return OK;
96 }
97
Jeff Sharkeyfce701b2016-07-29 15:52:41 -060098#if EXEC_BLOCKING
99 return ForkExecvp(cmd);
100#else
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700101 pid_t pid = ForkExecvpAsync(cmd);
102 if (pid == -1) return -1;
103
104 int status;
105 while (true) {
106 if (waitpid(pid, &status, WNOHANG) == pid) {
107 if (WIFEXITED(status)) {
108 LOG(DEBUG) << "Finished rm with status " << WEXITSTATUS(status);
109 return (WEXITSTATUS(status) == 0) ? OK : -1;
110 } else {
111 break;
112 }
113 }
114
115 sleep(1);
116 uint64_t deltaFreeBytes = GetFreeBytes(path) - startFreeBytes;
117 notifyProgress(startProgress + CONSTRAIN((int)
118 ((deltaFreeBytes * stepProgress) / expectedBytes), 0, stepProgress));
119 }
120 return -1;
Jeff Sharkeyfce701b2016-07-29 15:52:41 -0600121#endif
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700122}
123
124static status_t execCp(const std::string& fromPath, const std::string& toPath,
125 int startProgress, int stepProgress) {
126 notifyProgress(startProgress);
127
128 uint64_t expectedBytes = GetTreeBytes(fromPath);
129 uint64_t startFreeBytes = GetFreeBytes(toPath);
130
131 std::vector<std::string> cmd;
132 cmd.push_back(kCpPath);
133 cmd.push_back("-p"); /* preserve timestamps, ownership, and permissions */
134 cmd.push_back("-R"); /* recurse into subdirectories (DEST must be a directory) */
135 cmd.push_back("-P"); /* Do not follow symlinks [default] */
136 cmd.push_back("-d"); /* don't dereference symlinks */
137 if (pushBackContents(fromPath, cmd) != OK) {
138 LOG(WARNING) << "No contents in " << fromPath;
139 return OK;
140 }
141 cmd.push_back(toPath.c_str());
142
Jeff Sharkeyfce701b2016-07-29 15:52:41 -0600143#if EXEC_BLOCKING
144 return ForkExecvp(cmd);
145#else
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700146 pid_t pid = ForkExecvpAsync(cmd);
147 if (pid == -1) return -1;
148
149 int status;
150 while (true) {
151 if (waitpid(pid, &status, WNOHANG) == pid) {
152 if (WIFEXITED(status)) {
153 LOG(DEBUG) << "Finished cp with status " << WEXITSTATUS(status);
154 return (WEXITSTATUS(status) == 0) ? OK : -1;
155 } else {
156 break;
157 }
158 }
159
160 sleep(1);
161 uint64_t deltaFreeBytes = startFreeBytes - GetFreeBytes(toPath);
162 notifyProgress(startProgress + CONSTRAIN((int)
163 ((deltaFreeBytes * stepProgress) / expectedBytes), 0, stepProgress));
164 }
165 return -1;
Jeff Sharkeyfce701b2016-07-29 15:52:41 -0600166#endif
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700167}
168
169static void bringOffline(const std::shared_ptr<VolumeBase>& vol) {
170 vol->destroy();
171 vol->setSilent(true);
172 vol->create();
173 vol->setMountFlags(0);
174 vol->mount();
175}
176
177static void bringOnline(const std::shared_ptr<VolumeBase>& vol) {
178 vol->destroy();
179 vol->setSilent(false);
180 vol->create();
181}
182
183void MoveTask::run() {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700184 acquire_wake_lock(PARTIAL_WAKE_LOCK, kWakeLock);
185
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700186 std::string fromPath;
187 std::string toPath;
188
189 // TODO: add support for public volumes
190 if (mFrom->getType() != VolumeBase::Type::kEmulated) goto fail;
191 if (mTo->getType() != VolumeBase::Type::kEmulated) goto fail;
192
193 // Step 1: tear down volumes and mount silently without making
194 // visible to userspace apps
Henrik Baard7f52bca2015-11-26 12:05:13 +0100195 {
196 std::lock_guard<std::mutex> lock(VolumeManager::Instance()->getLock());
197 bringOffline(mFrom);
198 bringOffline(mTo);
199 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700200
201 fromPath = mFrom->getInternalPath();
202 toPath = mTo->getInternalPath();
203
204 // Step 2: clean up any stale data
205 if (execRm(toPath, 10, 10) != OK) {
206 goto fail;
207 }
208
209 // Step 3: perform actual copy
210 if (execCp(fromPath, toPath, 20, 60) != OK) {
Henrik Baard77f156d2015-12-17 13:58:42 +0100211 goto copy_fail;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700212 }
213
214 // NOTE: MountService watches for this magic value to know
215 // that move was successful
216 notifyProgress(82);
Henrik Baard7f52bca2015-11-26 12:05:13 +0100217 {
218 std::lock_guard<std::mutex> lock(VolumeManager::Instance()->getLock());
219 bringOnline(mFrom);
220 bringOnline(mTo);
221 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700222
223 // Step 4: clean up old data
224 if (execRm(fromPath, 85, 15) != OK) {
225 goto fail;
226 }
227
228 notifyProgress(kMoveSucceeded);
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700229 release_wake_lock(kWakeLock);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700230 return;
Henrik Baard77f156d2015-12-17 13:58:42 +0100231
232copy_fail:
233 // if we failed to copy the data we should not leave it laying around
234 // in target location. Do not check return value, we can not do any
235 // useful anyway.
236 execRm(toPath, 80, 1);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700237fail:
Henrik Baard7f52bca2015-11-26 12:05:13 +0100238 {
239 std::lock_guard<std::mutex> lock(VolumeManager::Instance()->getLock());
240 bringOnline(mFrom);
241 bringOnline(mTo);
242 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700243 notifyProgress(kMoveFailedInternalError);
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700244 release_wake_lock(kWakeLock);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700245 return;
246}
247
248} // namespace vold
249} // namespace android