1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
|
// Copyright (C) 2019 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 <getopt.h>
#include <sysexits.h>
#include <unistd.h>
#include <iostream>
#include <optional>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/unique_fd.h>
#include <liblp/builder.h>
#include <sparse/sparse.h>
using android::base::borrowed_fd;
using android::base::unique_fd;
using android::fs_mgr::LpMetadata;
using android::fs_mgr::MetadataBuilder;
using android::fs_mgr::ReadMetadata;
using android::fs_mgr::UpdatePartitionTable;
using SparsePtr = std::unique_ptr<sparse_file, decltype(&sparse_file_destroy)>;
std::optional<TemporaryDir> gTempDir;
static int usage(const char* program) {
std::cerr << program << " - command-line tool for adding partitions to a super.img\n";
std::cerr << "\n";
std::cerr << "Usage:\n";
std::cerr << " " << program << " [options] SUPER PARTNAME PARTGROUP [IMAGE]\n";
std::cerr << "\n";
std::cerr << " SUPER Path to the super image. It can be sparsed or\n"
<< " unsparsed. If sparsed, it will be unsparsed\n"
<< " temporarily and re-sparsed over the original\n"
<< " file. This will consume extra space during the\n"
<< " execution of " << program << ".\n";
std::cerr << " PARTNAME Name of the partition to add.\n";
std::cerr << " PARTGROUP Name of the partition group to use. If the\n"
<< " partition can be updated over OTA, the group\n"
<< " should match its updatable group.\n";
std::cerr << " IMAGE If specified, the contents of the given image\n"
<< " will be added to the super image. If the image\n"
<< " is sparsed, it will be temporarily unsparsed.\n"
<< " If no image is specified, the partition will\n"
<< " be zero-sized.\n";
std::cerr << "\n";
std::cerr << "Extra options:\n";
std::cerr << " --readonly The partition should be mapped read-only.\n";
std::cerr << "\n";
return EX_USAGE;
}
enum class OptionCode : int {
kReadonly = 1,
// Special options.
kHelp = (int)'h',
};
static std::string GetTemporaryDir() {
if (!gTempDir) {
gTempDir.emplace();
int saved_errno = errno;
if (access(gTempDir->path, F_OK) != 0) {
std::cerr << "Could not create temporary dir: " << gTempDir->path << ": "
<< strerror(saved_errno) << std::endl;
abort();
}
}
return gTempDir->path;
}
class LocalSuperOpener final : public android::fs_mgr::PartitionOpener {
public:
LocalSuperOpener(const std::string& path, borrowed_fd fd)
: local_super_(path), local_super_fd_(fd) {}
unique_fd Open(const std::string& partition_name, int flags) const override {
if (partition_name == local_super_) {
return unique_fd{dup(local_super_fd_.get())};
}
return PartitionOpener::Open(partition_name, flags);
}
private:
std::string local_super_;
borrowed_fd local_super_fd_;
};
class SuperHelper final {
public:
explicit SuperHelper(const std::string& super_path) : super_path_(super_path) {}
bool Open();
bool AddPartition(const std::string& partition_name, const std::string& group_name,
uint32_t attributes, const std::string& image_path);
bool Finalize();
private:
bool OpenSuperFile();
bool UpdateSuper();
bool WritePartition(borrowed_fd fd, uint64_t file_size, const std::string& partition_name);
bool WriteExtent(borrowed_fd fd, uint64_t file_size, const LpMetadataExtent& extent);
// Returns true if |fd| does not contain a sparsed file. If |fd| does
// contain a sparsed file, |temp_file| will contain the unsparsed output.
// If |fd| cannot be read or failed to unsparse, false is returned.
bool MaybeUnsparse(const std::string& file, borrowed_fd fd,
std::optional<TemporaryFile>* temp_file, uint32_t* block_size = nullptr);
std::string super_path_;
std::string abs_super_path_;
bool was_empty_ = false;
// fd for the super file, sparsed or temporarily unsparsed.
int super_fd_;
// fd for the super file if unsparsed.
unique_fd output_fd_;
// If the super file is sparse, this holds the temp unsparsed file.
std::optional<TemporaryFile> temp_super_;
uint32_t sparse_block_size_ = 0;
std::unique_ptr<LpMetadata> metadata_;
std::unique_ptr<MetadataBuilder> builder_;
};
bool SuperHelper::Open() {
if (!OpenSuperFile()) {
return false;
}
was_empty_ = android::fs_mgr::IsEmptySuperImage(abs_super_path_);
if (was_empty_) {
metadata_ = android::fs_mgr::ReadFromImageFile(abs_super_path_);
} else {
metadata_ = android::fs_mgr::ReadMetadata(abs_super_path_, 0);
}
if (!metadata_) {
std::cerr << "Could not read super partition metadata for " << super_path_ << "\n";
return false;
}
builder_ = MetadataBuilder::New(*metadata_.get());
if (!builder_) {
std::cerr << "Could not create MetadataBuilder for " << super_path_ << "\n";
return false;
}
return true;
}
bool SuperHelper::AddPartition(const std::string& partition_name, const std::string& group_name,
uint32_t attributes, const std::string& image_path) {
if (!image_path.empty() && was_empty_) {
std::cerr << "Cannot add a partition image to an empty super file.\n";
return false;
}
auto partition = builder_->AddPartition(partition_name, group_name, attributes);
if (!partition) {
std::cerr << "Could not add partition: " << partition_name << "\n";
return false;
}
// Open the source image and get its file size so we can resize the
// partition.
int source_fd = -1;
uint64_t file_size;
unique_fd raw_image_fd;
std::optional<TemporaryFile> temp_image;
if (!image_path.empty()) {
raw_image_fd.reset(open(image_path.c_str(), O_RDONLY | O_CLOEXEC));
if (raw_image_fd < 0) {
std::cerr << "open failed: " << image_path << ": " << strerror(errno) << "\n";
return false;
}
if (!MaybeUnsparse(image_path, raw_image_fd, &temp_image)) {
return false;
}
source_fd = temp_image ? temp_image->fd : raw_image_fd.get();
auto size = lseek(source_fd, 0, SEEK_END);
if (size < 0 || lseek(source_fd, 0, SEEK_SET) < 0) {
std::cerr << "lseek failed: " << image_path << ": " << strerror(errno) << "\n";
return false;
}
if (!builder_->ResizePartition(partition, size)) {
std::cerr << "Failed to set partition " << partition_name << " size to " << size
<< "bytes.\n";
return false;
}
file_size = (uint64_t)size;
}
// Write the new metadata out. We do this by re-using the on-device flashing
// logic, and using the local file instead of a block device.
if (!UpdateSuper()) {
return false;
}
// If no partition contents were specified, early return. Otherwise, we
// require a full super image to continue writing.
if (source_fd >= 0 && !WritePartition(source_fd, file_size, partition_name)) {
return false;
}
return true;
}
bool SuperHelper::OpenSuperFile() {
auto actual_path = super_path_;
output_fd_.reset(open(actual_path.c_str(), O_RDWR | O_CLOEXEC));
if (output_fd_ < 0) {
std::cerr << "open failed: " << actual_path << ": " << strerror(errno) << "\n";
return false;
}
super_fd_ = output_fd_.get();
if (!MaybeUnsparse(super_path_, super_fd_, &temp_super_, &sparse_block_size_)) {
return false;
}
if (temp_super_) {
actual_path = temp_super_->path;
super_fd_ = temp_super_->fd;
}
// PartitionOpener will decorate relative paths with /dev/block/by-name
// so get an absolute path here.
if (!android::base::Realpath(actual_path, &abs_super_path_)) {
std::cerr << "realpath failed: " << actual_path << ": " << strerror(errno) << "\n";
return false;
}
return true;
}
bool SuperHelper::MaybeUnsparse(const std::string& file, borrowed_fd fd,
std::optional<TemporaryFile>* temp_file,
uint32_t* block_size) {
SparsePtr sf(sparse_file_import(fd.get(), false, false), sparse_file_destroy);
if (!sf) {
return true;
}
temp_file->emplace(GetTemporaryDir());
if ((*temp_file)->fd < 0) {
std::cerr << "mkstemp failed: " << strerror(errno) << "\n";
return false;
}
std::cout << "Unsparsing " << file << "... " << std::endl;
if (sparse_file_write(sf.get(), (*temp_file)->fd, false, false, false) != 0) {
std::cerr << "Could not write unsparsed file.\n";
return false;
}
if (block_size) {
*block_size = sparse_file_block_size(sf.get());
}
return true;
}
bool SuperHelper::UpdateSuper() {
metadata_ = builder_->Export();
if (!metadata_) {
std::cerr << "Failed to export new metadata.\n";
return false;
}
// Empty images get written at the very end.
if (was_empty_) {
return true;
}
// Note: A/B devices have an extra metadata slot that is unused, so we cap
// the writes to the first two slots.
LocalSuperOpener opener(abs_super_path_, super_fd_);
uint32_t slots = std::min(metadata_->geometry.metadata_slot_count, (uint32_t)2);
for (uint32_t i = 0; i < slots; i++) {
if (!UpdatePartitionTable(opener, abs_super_path_, *metadata_.get(), i)) {
std::cerr << "Could not write new super partition metadata.\n";
return false;
}
}
return true;
}
bool SuperHelper::WritePartition(borrowed_fd fd, uint64_t file_size,
const std::string& partition_name) {
auto partition = android::fs_mgr::FindPartition(*metadata_.get(), partition_name);
if (!partition) {
std::cerr << "Could not find partition in metadata: " << partition_name << "\n";
return false;
}
std::cout << "Writing data for partition " << partition_name << "..." << std::endl;
for (uint32_t i = 0; i < partition->num_extents; i++) {
auto extent_index = partition->first_extent_index + i;
const auto& extent = metadata_->extents[extent_index];
if (!WriteExtent(fd, file_size, extent)) {
return false;
}
}
// Assert that the full file was written.
[[maybe_unused]] auto pos = lseek(fd.get(), 0, SEEK_CUR);
CHECK(pos >= 0 && (uint64_t)pos == file_size);
return true;
}
bool SuperHelper::WriteExtent(borrowed_fd fd, uint64_t file_size, const LpMetadataExtent& extent) {
// Must be a linear extent, and there must only be one block device.
CHECK(extent.target_type == LP_TARGET_TYPE_LINEAR);
CHECK(extent.target_source == 0);
auto pos = lseek(fd.get(), 0, SEEK_CUR);
if (pos < 0) {
std::cerr << "lseek failed: " << strerror(errno) << "\n";
return false;
}
// Clamp the number of bytes to either remaining data in the file, or the
// size of this extent.
CHECK((uint64_t)pos <= file_size);
uint64_t bytes_remaining =
std::min(file_size - (uint64_t)pos, extent.num_sectors * LP_SECTOR_SIZE);
// Reposition to the appropriate offset in super.
if (lseek(super_fd_, extent.target_data * LP_SECTOR_SIZE, SEEK_SET) < 0) {
std::cerr << "lseek failed: " << strerror(errno) << "\n";
return false;
}
uint8_t buffer[4096];
while (bytes_remaining > 0) {
uint64_t bytes = std::min((uint64_t)sizeof(buffer), bytes_remaining);
if (!android::base::ReadFully(fd.get(), buffer, bytes)) {
std::cerr << "read failed: " << strerror(errno) << "\n";
return false;
}
if (!android::base::WriteFully(super_fd_, buffer, bytes)) {
std::cerr << "write failed: " << strerror(errno) << "\n";
return false;
}
bytes_remaining -= bytes;
}
return true;
}
static bool Truncate(borrowed_fd fd) {
if (ftruncate(fd.get(), 0) < 0) {
std::cerr << "truncate failed: " << strerror(errno) << "\n";
return false;
}
if (lseek(fd.get(), 0, SEEK_SET) < 0) {
std::cerr << "lseek failed: " << strerror(errno) << "\n";
return false;
}
return true;
}
bool SuperHelper::Finalize() {
if (was_empty_) {
if (!Truncate(super_fd_)) {
return false;
}
if (!android::fs_mgr::WriteToImageFile(super_fd_, *metadata_.get())) {
std::cerr << "Could not write image file.\n";
return false;
}
}
// If the super image wasn't original sparsed, we don't have to do anything
// else.
if (!temp_super_) {
return true;
}
// Otherwise, we have to sparse the temporary file. Find its length.
auto len = lseek(super_fd_, 0, SEEK_END);
if (len < 0 || lseek(super_fd_, 0, SEEK_SET < 0)) {
std::cerr << "lseek failed: " << strerror(errno) << "\n";
return false;
}
SparsePtr sf(sparse_file_new(sparse_block_size_, len), sparse_file_destroy);
if (!sf) {
std::cerr << "Could not allocate sparse file.\n";
return false;
}
sparse_file_verbose(sf.get());
std::cout << "Writing sparse super image... " << std::endl;
if (sparse_file_read(sf.get(), super_fd_, false, false) != 0) {
std::cerr << "Could not import super partition for sparsing.\n";
return false;
}
if (!Truncate(output_fd_)) {
return false;
}
if (sparse_file_write(sf.get(), output_fd_, false, true, false)) {
return false;
}
return true;
}
static void ErrorLogger(android::base::LogId, android::base::LogSeverity severity, const char*,
const char*, unsigned int, const char* msg) {
if (severity < android::base::WARNING) {
return;
}
std::cerr << msg << std::endl;
}
int main(int argc, char* argv[]) {
struct option options[] = {
{"readonly", no_argument, nullptr, (int)OptionCode::kReadonly},
{nullptr, 0, nullptr, 0},
};
bool readonly = false;
int rv, index;
while ((rv = getopt_long(argc, argv, "h", options, &index)) != -1) {
switch ((OptionCode)rv) {
case OptionCode::kHelp:
usage(argv[0]);
return EX_OK;
case OptionCode::kReadonly:
readonly = true;
break;
default:
return usage(argv[0]);
}
}
if (optind + 3 > argc) {
std::cerr << "Missing required arguments.\n\n";
return usage(argv[0]);
}
std::string super_path = argv[optind++];
std::string partition_name = argv[optind++];
std::string group_name = argv[optind++];
std::string image_path;
if (optind < argc) {
image_path = argv[optind++];
}
if (optind != argc) {
std::cerr << "Unexpected arguments.\n\n";
return usage(argv[0]);
}
// Suppress log spam from liblp.
android::base::SetLogger(ErrorLogger);
SuperHelper super(super_path);
if (!super.Open()) {
return EX_SOFTWARE;
}
uint32_t attributes = LP_PARTITION_ATTR_NONE;
if (readonly) {
attributes |= LP_PARTITION_ATTR_READONLY;
}
if (!super.AddPartition(partition_name, group_name, attributes, image_path)) {
return EX_SOFTWARE;
}
if (!super.Finalize()) {
return EX_SOFTWARE;
}
std::cout << "Done.\n";
return EX_OK;
}
|