blob: 79af71a24ac45d428f465c1349c8e8e046564e67 [file] [log] [blame]
David Andersonb2988ab2019-04-16 17:14:09 -07001/*
2 * Copyright (C) 2019 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
Howard Chen4663de62019-11-05 20:46:20 +080017#include "partition_installer.h"
David Andersonb2988ab2019-04-16 17:14:09 -070018
19#include <sys/statvfs.h>
20
21#include <android-base/file.h>
22#include <android-base/logging.h>
23#include <android-base/unique_fd.h>
David Anderson8bdf6252019-06-11 16:43:24 -070024#include <ext4_utils/ext4_utils.h>
David Andersonb2988ab2019-04-16 17:14:09 -070025#include <fs_mgr_dm_linear.h>
26#include <libdm/dm.h>
27#include <libgsi/libgsi.h>
28
29#include "file_paths.h"
30#include "gsi_service.h"
31#include "libgsi_private.h"
32
33namespace android {
34namespace gsi {
35
36using namespace std::literals;
37using namespace android::dm;
David Anderson9ca77282019-07-15 23:56:13 +000038using namespace android::fiemap;
David Andersonb2988ab2019-04-16 17:14:09 -070039using namespace android::fs_mgr;
40using android::base::unique_fd;
41
Howard Chen4663de62019-11-05 20:46:20 +080042PartitionInstaller::PartitionInstaller(GsiService* service, const std::string& install_dir,
Howard Chenee5c2b12019-11-08 11:57:47 +080043 const std::string& name, const std::string& active_dsu,
44 int64_t size, bool read_only)
45 : service_(service),
46 install_dir_(install_dir),
47 name_(name),
48 active_dsu_(active_dsu),
49 size_(size),
50 readOnly_(read_only) {
51 images_ = ImageManager::Open(MetadataDir(active_dsu), install_dir_);
David Andersonb2988ab2019-04-16 17:14:09 -070052}
53
Howard Chen4663de62019-11-05 20:46:20 +080054PartitionInstaller::~PartitionInstaller() {
Yo Chiangf194dce2020-08-24 17:21:10 +080055 if (FinishInstall() != IGsiService::INSTALL_OK) {
Yo Chiang281584b2020-08-24 16:50:20 +080056 LOG(ERROR) << "Installation failed: install_dir=" << install_dir_
57 << ", dsu_slot=" << active_dsu_ << ", partition_name=" << name_;
David Andersonb2988ab2019-04-16 17:14:09 -070058 }
Howard Chen5676d962019-08-05 16:21:00 +080059 if (IsAshmemMapped()) {
60 UnmapAshmem();
61 }
David Andersonb2988ab2019-04-16 17:14:09 -070062}
63
Yo Chiangf194dce2020-08-24 17:21:10 +080064int PartitionInstaller::FinishInstall() {
65 if (finished_) {
66 return finished_status_;
David Andersonb2988ab2019-04-16 17:14:09 -070067 }
Yo Chiangf194dce2020-08-24 17:21:10 +080068 finished_ = true;
69 finished_status_ = CheckInstallState();
70 system_device_ = nullptr;
71 if (finished_status_ != IGsiService::INSTALL_OK) {
72 auto file = GetBackingFile(name_);
73 LOG(ERROR) << "Installation failed, clean up: " << file;
74 if (images_->IsImageMapped(file)) {
75 LOG(ERROR) << "unmap " << file;
76 images_->UnmapImageDevice(file);
77 }
78 images_->DeleteBackingImage(file);
David Andersonb2988ab2019-04-16 17:14:09 -070079 }
Yo Chiangf194dce2020-08-24 17:21:10 +080080 return finished_status_;
David Andersonb2988ab2019-04-16 17:14:09 -070081}
82
Howard Chen4663de62019-11-05 20:46:20 +080083int PartitionInstaller::StartInstall() {
David Andersonb2988ab2019-04-16 17:14:09 -070084 if (int status = PerformSanityChecks()) {
85 return status;
86 }
Howard Chen18109b12019-08-13 17:00:44 +080087 if (int status = Preallocate()) {
David Andersonb2988ab2019-04-16 17:14:09 -070088 return status;
89 }
Howard Chen18109b12019-08-13 17:00:44 +080090 if (!readOnly_) {
91 if (!Format()) {
92 return IGsiService::INSTALL_ERROR_GENERIC;
93 }
Howard Chen18109b12019-08-13 17:00:44 +080094 } else {
95 // Map ${name}_gsi so we can write to it.
96 system_device_ = OpenPartition(GetBackingFile(name_));
97 if (!system_device_) {
98 return IGsiService::INSTALL_ERROR_GENERIC;
99 }
David Andersonb2988ab2019-04-16 17:14:09 -0700100
Howard Chen18109b12019-08-13 17:00:44 +0800101 // Clear the progress indicator.
102 service_->UpdateProgress(IGsiService::STATUS_NO_OPERATION, 0);
David Andersonb2988ab2019-04-16 17:14:09 -0700103 }
David Andersonb2988ab2019-04-16 17:14:09 -0700104 return IGsiService::INSTALL_OK;
105}
106
Howard Chen4663de62019-11-05 20:46:20 +0800107int PartitionInstaller::PerformSanityChecks() {
David Anderson64b53fb2019-07-01 19:05:35 -0700108 if (!images_) {
109 LOG(ERROR) << "unable to create image manager";
110 return IGsiService::INSTALL_ERROR_GENERIC;
111 }
Howard Chen18109b12019-08-13 17:00:44 +0800112 if (size_ < 0) {
113 LOG(ERROR) << "image size " << size_ << " is negative";
David Andersonb2988ab2019-04-16 17:14:09 -0700114 return IGsiService::INSTALL_ERROR_GENERIC;
115 }
116 if (android::gsi::IsGsiRunning()) {
117 LOG(ERROR) << "cannot install gsi inside a live gsi";
118 return IGsiService::INSTALL_ERROR_GENERIC;
119 }
120
121 struct statvfs sb;
122 if (statvfs(install_dir_.c_str(), &sb)) {
123 PLOG(ERROR) << "failed to read file system stats";
124 return IGsiService::INSTALL_ERROR_GENERIC;
125 }
126
127 // This is the same as android::vold::GetFreebytes() but we also
128 // need the total file system size so we open code it here.
Yi-Yo Chiang23a996f2021-02-12 01:57:44 +0800129 uint64_t free_space = static_cast<uint64_t>(sb.f_bavail) * sb.f_frsize;
130 uint64_t fs_size = static_cast<uint64_t>(sb.f_blocks) * sb.f_frsize;
Howard Chen18109b12019-08-13 17:00:44 +0800131 if (free_space <= (size_)) {
David Andersonb2988ab2019-04-16 17:14:09 -0700132 LOG(ERROR) << "not enough free space (only " << free_space << " bytes available)";
133 return IGsiService::INSTALL_ERROR_NO_SPACE;
134 }
135 // We are asking for 40% of the /data to be empty.
136 // TODO: may be not hard code it like this
137 double free_space_percent = ((1.0 * free_space) / fs_size) * 100;
138 if (free_space_percent < kMinimumFreeSpaceThreshold) {
139 LOG(ERROR) << "free space " << static_cast<uint64_t>(free_space_percent)
140 << "% is below the minimum threshold of " << kMinimumFreeSpaceThreshold << "%";
141 return IGsiService::INSTALL_ERROR_FILE_SYSTEM_CLUTTERED;
142 }
143 return IGsiService::INSTALL_OK;
144}
145
Howard Chen4663de62019-11-05 20:46:20 +0800146int PartitionInstaller::Preallocate() {
Howard Chen18109b12019-08-13 17:00:44 +0800147 std::string file = GetBackingFile(name_);
Howard Chen4663de62019-11-05 20:46:20 +0800148 if (!images_->UnmapImageIfExists(file)) {
149 LOG(ERROR) << "failed to UnmapImageIfExists " << file;
150 return IGsiService::INSTALL_ERROR_GENERIC;
David Andersonb2988ab2019-04-16 17:14:09 -0700151 }
Howard Chen4663de62019-11-05 20:46:20 +0800152 // always delete the old one when it presents in case there might a partition
153 // with same name but different size.
154 if (images_->BackingImageExists(file)) {
155 if (!images_->DeleteBackingImage(file)) {
156 LOG(ERROR) << "failed to DeleteBackingImage " << file;
Howard Chen18109b12019-08-13 17:00:44 +0800157 return IGsiService::INSTALL_ERROR_GENERIC;
158 }
David Andersonb2988ab2019-04-16 17:14:09 -0700159 }
Howard Chen4663de62019-11-05 20:46:20 +0800160 service_->StartAsyncOperation("create " + name_, size_);
161 if (!CreateImage(file, size_)) {
162 LOG(ERROR) << "Could not create userdata image";
163 return IGsiService::INSTALL_ERROR_GENERIC;
164 }
David Andersonb2988ab2019-04-16 17:14:09 -0700165 service_->UpdateProgress(IGsiService::STATUS_COMPLETE, 0);
166 return IGsiService::INSTALL_OK;
167}
168
Howard Chen4663de62019-11-05 20:46:20 +0800169bool PartitionInstaller::CreateImage(const std::string& name, uint64_t size) {
David Anderson64b53fb2019-07-01 19:05:35 -0700170 auto progress = [this](uint64_t bytes, uint64_t /* total */) -> bool {
171 service_->UpdateProgress(IGsiService::STATUS_WORKING, bytes);
172 if (service_->should_abort()) return false;
173 return true;
174 };
David Anderson1fdec262019-07-24 14:03:49 -0700175 int flags = ImageManager::CREATE_IMAGE_DEFAULT;
Howard Chen18109b12019-08-13 17:00:44 +0800176 if (readOnly_) {
David Anderson1fdec262019-07-24 14:03:49 -0700177 flags |= ImageManager::CREATE_IMAGE_READONLY;
178 }
179 return images_->CreateBackingImage(name, size, flags, std::move(progress));
David Andersonb2988ab2019-04-16 17:14:09 -0700180}
181
Howard Chen4663de62019-11-05 20:46:20 +0800182std::unique_ptr<MappedDevice> PartitionInstaller::OpenPartition(const std::string& name) {
Howard Chen73595fe2019-11-05 14:53:22 +0800183 return MappedDevice::Open(images_.get(), 10s, name);
David Andersonb2988ab2019-04-16 17:14:09 -0700184}
185
Howard Chen4663de62019-11-05 20:46:20 +0800186bool PartitionInstaller::CommitGsiChunk(int stream_fd, int64_t bytes) {
Howard Chen18109b12019-08-13 17:00:44 +0800187 service_->StartAsyncOperation("write " + name_, size_);
David Andersonb2988ab2019-04-16 17:14:09 -0700188
189 if (bytes < 0) {
190 LOG(ERROR) << "chunk size " << bytes << " is negative";
191 return false;
192 }
193
David Anderson64b53fb2019-07-01 19:05:35 -0700194 static const size_t kBlockSize = 4096;
195 auto buffer = std::make_unique<char[]>(kBlockSize);
David Andersonb2988ab2019-04-16 17:14:09 -0700196
197 int progress = -1;
198 uint64_t remaining = bytes;
199 while (remaining) {
David Anderson64b53fb2019-07-01 19:05:35 -0700200 size_t max_to_read = std::min(static_cast<uint64_t>(kBlockSize), remaining);
David Andersonb2988ab2019-04-16 17:14:09 -0700201 ssize_t rv = TEMP_FAILURE_RETRY(read(stream_fd, buffer.get(), max_to_read));
202 if (rv < 0) {
203 PLOG(ERROR) << "read gsi chunk";
204 return false;
205 }
206 if (rv == 0) {
207 LOG(ERROR) << "no bytes left in stream";
208 return false;
209 }
210 if (!CommitGsiChunk(buffer.get(), rv)) {
211 return false;
212 }
213 CHECK(static_cast<uint64_t>(rv) <= remaining);
214 remaining -= rv;
215
216 // Only update the progress when the % (or permille, in this case)
217 // significantly changes.
Howard Chen18109b12019-08-13 17:00:44 +0800218 int new_progress = ((size_ - remaining) * 1000) / size_;
David Andersonb2988ab2019-04-16 17:14:09 -0700219 if (new_progress != progress) {
Howard Chen18109b12019-08-13 17:00:44 +0800220 service_->UpdateProgress(IGsiService::STATUS_WORKING, size_ - remaining);
David Andersonb2988ab2019-04-16 17:14:09 -0700221 }
222 }
223
Howard Chen18109b12019-08-13 17:00:44 +0800224 service_->UpdateProgress(IGsiService::STATUS_COMPLETE, size_);
David Andersonb2988ab2019-04-16 17:14:09 -0700225 return true;
226}
227
Howard Chen4663de62019-11-05 20:46:20 +0800228bool PartitionInstaller::IsFinishedWriting() {
Howard Chen18109b12019-08-13 17:00:44 +0800229 return gsi_bytes_written_ == size_;
Howard Chen5676d962019-08-05 16:21:00 +0800230}
231
Howard Chen4663de62019-11-05 20:46:20 +0800232bool PartitionInstaller::IsAshmemMapped() {
Howard Chen5676d962019-08-05 16:21:00 +0800233 return ashmem_data_ != MAP_FAILED;
234}
235
Howard Chen4663de62019-11-05 20:46:20 +0800236bool PartitionInstaller::CommitGsiChunk(const void* data, size_t bytes) {
Howard Chen18109b12019-08-13 17:00:44 +0800237 if (static_cast<uint64_t>(bytes) > size_ - gsi_bytes_written_) {
David Andersonb2988ab2019-04-16 17:14:09 -0700238 // We cannot write past the end of the image file.
Howard Chen18109b12019-08-13 17:00:44 +0800239 LOG(ERROR) << "chunk size " << bytes << " exceeds remaining image size (" << size_
David Andersonb2988ab2019-04-16 17:14:09 -0700240 << " expected, " << gsi_bytes_written_ << " written)";
241 return false;
242 }
243 if (service_->should_abort()) {
244 return false;
245 }
David Anderson64b53fb2019-07-01 19:05:35 -0700246 if (!android::base::WriteFully(system_device_->fd(), data, bytes)) {
David Andersonb2988ab2019-04-16 17:14:09 -0700247 PLOG(ERROR) << "write failed";
248 return false;
249 }
250 gsi_bytes_written_ += bytes;
251 return true;
252}
253
Yo Chiang53bed1c2020-01-01 16:25:19 +0800254int PartitionInstaller::GetPartitionFd() {
255 return system_device_->fd();
256}
257
Howard Chen4663de62019-11-05 20:46:20 +0800258bool PartitionInstaller::MapAshmem(int fd, size_t size) {
Howard Chen5676d962019-08-05 16:21:00 +0800259 ashmem_size_ = size;
260 ashmem_data_ = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
261 return ashmem_data_ != MAP_FAILED;
262}
263
Howard Chen4663de62019-11-05 20:46:20 +0800264void PartitionInstaller::UnmapAshmem() {
Howard Chen5676d962019-08-05 16:21:00 +0800265 if (munmap(ashmem_data_, ashmem_size_) != 0) {
266 PLOG(ERROR) << "cannot munmap";
267 return;
268 }
269 ashmem_data_ = MAP_FAILED;
270 ashmem_size_ = -1;
271}
272
Howard Chen4663de62019-11-05 20:46:20 +0800273bool PartitionInstaller::CommitGsiChunk(size_t bytes) {
Howard Chen5676d962019-08-05 16:21:00 +0800274 if (!IsAshmemMapped()) {
275 PLOG(ERROR) << "ashmem is not mapped";
276 return false;
277 }
278 bool success = CommitGsiChunk(ashmem_data_, bytes);
279 if (success && IsFinishedWriting()) {
280 UnmapAshmem();
281 }
282 return success;
283}
284
Howard Chen4663de62019-11-05 20:46:20 +0800285const std::string PartitionInstaller::GetBackingFile(std::string name) {
Howard Chen18109b12019-08-13 17:00:44 +0800286 return name + "_gsi";
287}
288
Howard Chen4663de62019-11-05 20:46:20 +0800289bool PartitionInstaller::Format() {
Howard Chen18109b12019-08-13 17:00:44 +0800290 auto file = GetBackingFile(name_);
291 auto device = OpenPartition(file);
David Anderson64b53fb2019-07-01 19:05:35 -0700292 if (!device) {
David Andersonb2988ab2019-04-16 17:14:09 -0700293 return false;
294 }
295
296 // libcutils checks the first 4K, no matter the block size.
297 std::string zeroes(4096, 0);
David Anderson64b53fb2019-07-01 19:05:35 -0700298 if (!android::base::WriteFully(device->fd(), zeroes.data(), zeroes.size())) {
Howard Chen18109b12019-08-13 17:00:44 +0800299 PLOG(ERROR) << "write " << file;
David Andersonb2988ab2019-04-16 17:14:09 -0700300 return false;
301 }
302 return true;
303}
304
Yo Chiang53692202020-08-24 17:05:00 +0800305int PartitionInstaller::CheckInstallState() {
306 if (readOnly_ && !IsFinishedWriting()) {
David Andersonb2988ab2019-04-16 17:14:09 -0700307 // We cannot boot if the image is incomplete.
Howard Chen18109b12019-08-13 17:00:44 +0800308 LOG(ERROR) << "image incomplete; expected " << size_ << " bytes, waiting for "
309 << (size_ - gsi_bytes_written_) << " bytes";
David Andersonb2988ab2019-04-16 17:14:09 -0700310 return IGsiService::INSTALL_ERROR_GENERIC;
311 }
Yo Chiang53692202020-08-24 17:05:00 +0800312 if (system_device_ != nullptr && fsync(GetPartitionFd())) {
313 PLOG(ERROR) << "fsync failed for " << GetBackingFile(name_);
David Andersonb2988ab2019-04-16 17:14:09 -0700314 return IGsiService::INSTALL_ERROR_GENERIC;
315 }
David Andersonb2988ab2019-04-16 17:14:09 -0700316 // If files moved (are no longer pinned), the metadata file will be invalid.
David Anderson64b53fb2019-07-01 19:05:35 -0700317 // This check can be removed once b/133967059 is fixed.
318 if (!images_->Validate()) {
319 return IGsiService::INSTALL_ERROR_GENERIC;
David Andersonb2988ab2019-04-16 17:14:09 -0700320 }
David Andersonb2988ab2019-04-16 17:14:09 -0700321 return IGsiService::INSTALL_OK;
322}
323
Howard Chenee5c2b12019-11-08 11:57:47 +0800324int PartitionInstaller::WipeWritable(const std::string& active_dsu, const std::string& install_dir,
325 const std::string& name) {
326 auto image = ImageManager::Open(MetadataDir(active_dsu), install_dir);
Howard Chen73595fe2019-11-05 14:53:22 +0800327 // The device object has to be destroyed before the image object
328 auto device = MappedDevice::Open(image.get(), 10s, name);
David Anderson64b53fb2019-07-01 19:05:35 -0700329 if (!device) {
David Anderson8bdf6252019-06-11 16:43:24 -0700330 return IGsiService::INSTALL_ERROR_GENERIC;
331 }
332
333 // Wipe the first 1MiB of the device, ensuring both the first block and
334 // the superblock are destroyed.
335 static constexpr uint64_t kEraseSize = 1024 * 1024;
336
337 std::string zeroes(4096, 0);
David Anderson64b53fb2019-07-01 19:05:35 -0700338 uint64_t erase_size = std::min(kEraseSize, get_block_device_size(device->fd()));
David Anderson8bdf6252019-06-11 16:43:24 -0700339 for (uint64_t i = 0; i < erase_size; i += zeroes.size()) {
David Anderson64b53fb2019-07-01 19:05:35 -0700340 if (!android::base::WriteFully(device->fd(), zeroes.data(), zeroes.size())) {
Howard Chen46cc7522020-03-03 13:28:37 +0800341 PLOG(ERROR) << "write " << name;
David Anderson8bdf6252019-06-11 16:43:24 -0700342 return IGsiService::INSTALL_ERROR_GENERIC;
343 }
344 }
David Andersonb2988ab2019-04-16 17:14:09 -0700345 return IGsiService::INSTALL_OK;
346}
347
348} // namespace gsi
349} // namespace android