2013-10-02 15:35:38 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-01-28 05:39:06 +01:00
|
|
|
#include <sys/stat.h>
|
2024-02-08 01:55:49 +01:00
|
|
|
#include <time.h>
|
2013-10-02 15:35:38 +02:00
|
|
|
|
2023-03-17 05:21:28 +01:00
|
|
|
#include <android-base/parseint.h>
|
|
|
|
#include <android-base/strings.h>
|
|
|
|
|
2018-06-26 22:38:35 +02:00
|
|
|
#include "util.h"
|
2013-10-02 15:35:38 +02:00
|
|
|
|
2023-01-28 05:39:06 +01:00
|
|
|
using android::base::borrowed_fd;
|
|
|
|
|
2018-04-02 23:24:03 +02:00
|
|
|
static bool g_verbose = false;
|
|
|
|
|
2018-03-28 17:20:00 +02:00
|
|
|
double now() {
|
2024-02-08 01:55:49 +01:00
|
|
|
struct timespec ts;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
return (double)ts.tv_sec + (double)ts.tv_nsec / 1000000000;
|
2013-10-02 15:35:38 +02:00
|
|
|
}
|
|
|
|
|
2018-03-28 17:20:00 +02:00
|
|
|
void die(const char* fmt, ...) {
|
2013-10-02 15:35:38 +02:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2018-03-29 23:46:29 +02:00
|
|
|
fprintf(stderr, "fastboot: error: ");
|
2013-10-02 15:35:38 +02:00
|
|
|
vfprintf(stderr, fmt, ap);
|
2018-04-02 23:24:03 +02:00
|
|
|
fprintf(stderr, "\n");
|
2013-10-02 15:35:38 +02:00
|
|
|
va_end(ap);
|
2018-03-28 17:20:00 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2019-06-28 07:15:29 +02:00
|
|
|
void die(const std::string& str) {
|
|
|
|
die("%s", str.c_str());
|
|
|
|
}
|
|
|
|
|
2018-04-02 23:24:03 +02:00
|
|
|
void set_verbose() {
|
|
|
|
g_verbose = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void verbose(const char* fmt, ...) {
|
|
|
|
if (!g_verbose) return;
|
|
|
|
|
|
|
|
if (*fmt != '\n') {
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
fprintf(stderr, "fastboot: verbose: ");
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
2023-01-28 05:39:06 +01:00
|
|
|
|
|
|
|
bool should_flash_in_userspace(const android::fs_mgr::LpMetadata& metadata,
|
|
|
|
const std::string& partition_name) {
|
|
|
|
for (const auto& partition : metadata.partitions) {
|
|
|
|
auto candidate = android::fs_mgr::GetPartitionName(partition);
|
|
|
|
if (partition.attributes & LP_PARTITION_ATTR_SLOT_SUFFIXED) {
|
|
|
|
// On retrofit devices, we don't know if, or whether, the A or B
|
|
|
|
// slot has been flashed for dynamic partitions. Instead we add
|
|
|
|
// both names to the list as a conservative guess.
|
|
|
|
if (candidate + "_a" == partition_name || candidate + "_b" == partition_name) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (candidate == partition_name) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_sparse_file(borrowed_fd fd) {
|
|
|
|
SparsePtr s(sparse_file_import(fd.get(), false, false), sparse_file_destroy);
|
|
|
|
return !!s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t get_file_size(borrowed_fd fd) {
|
|
|
|
struct stat sb;
|
|
|
|
if (fstat(fd.get(), &sb) == -1) {
|
|
|
|
die("could not get file size");
|
|
|
|
}
|
|
|
|
return sb.st_size;
|
|
|
|
}
|
2023-03-17 05:21:28 +01:00
|
|
|
|
|
|
|
std::string fb_fix_numeric_var(std::string var) {
|
|
|
|
// Some bootloaders (angler, for example), send spurious leading whitespace.
|
|
|
|
var = android::base::Trim(var);
|
|
|
|
// Some bootloaders (hammerhead, for example) use implicit hex.
|
|
|
|
// This code used to use strtol with base 16.
|
|
|
|
if (!android::base::StartsWith(var, "0x")) var = "0x" + var;
|
|
|
|
return var;
|
|
|
|
}
|