blob: fee08577c7f12cc29e19dbd05eae265ac6755eb9 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
Tsu Chiang Chuangee520552011-02-25 18:38:53 -080012 * the documentation and/or other materials provided with the
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080013 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
Tsu Chiang Chuangee520552011-02-25 18:38:53 -080022 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
Tom Cherry9027af02018-09-24 15:48:09 -070029#include "fastboot.h"
30
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070031#include <ctype.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032#include <errno.h>
33#include <fcntl.h>
Colin Cross8879f982012-05-22 17:53:34 -070034#include <getopt.h>
Ying Wangcf86e2f2014-05-15 20:06:40 -070035#include <inttypes.h>
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070036#include <limits.h>
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070037#include <stdint.h>
38#include <stdio.h>
39#include <stdlib.h>
40#include <string.h>
41#include <sys/stat.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080042#include <sys/time.h>
Colin Crossf8387882012-05-24 17:18:41 -070043#include <sys/types.h>
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070044#include <unistd.h>
David Pursell2ec418a2016-01-20 08:32:08 -080045
Elliott Hughes290a2282016-11-14 17:08:47 -080046#include <chrono>
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -070047#include <functional>
Tom Cherry4aa60b32018-09-05 15:11:44 -070048#include <regex>
David Anderson0c732342018-11-28 17:10:42 -080049#include <string>
Elliott Hughes290a2282016-11-14 17:08:47 -080050#include <thread>
Josh Gao9da9ac52016-01-19 14:50:18 -080051#include <utility>
52#include <vector>
Colin Crossf8387882012-05-24 17:18:41 -070053
Elliott Hughes82ff3152016-08-31 15:07:18 -070054#include <android-base/file.h>
Elliott Hughes749ae2d2016-06-28 14:48:45 -070055#include <android-base/macros.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080056#include <android-base/parseint.h>
David Pursell2ec418a2016-01-20 08:32:08 -080057#include <android-base/parsenetaddress.h>
Elliott Hughes2810d002016-04-25 14:31:18 -070058#include <android-base/stringprintf.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080059#include <android-base/strings.h>
Chris Fries0ea946c2017-04-12 10:25:57 -050060#include <android-base/unique_fd.h>
Dan Willemsenab971b52018-08-29 14:58:02 -070061#include <build/version.h>
David Anderson89569642018-11-16 15:53:35 -080062#include <liblp/liblp.h>
Dan Willemsenab971b52018-08-29 14:58:02 -070063#include <platform_tools_version.h>
Colin Crossf8387882012-05-24 17:18:41 -070064#include <sparse/sparse.h>
Elliott Hughesd30ad8a2015-03-18 23:12:44 -070065#include <ziparchive/zip_archive.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066
Elliott Hughes253c18d2015-03-18 22:47:09 -070067#include "bootimg_utils.h"
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -070068#include "constants.h"
Elliott Hughes1b708d32015-12-11 19:07:01 -080069#include "diagnose_usb.h"
Tom Cherry9027af02018-09-24 15:48:09 -070070#include "fastboot_driver.h"
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -070071#include "fs.h"
David Pursell2ec418a2016-01-20 08:32:08 -080072#include "tcp.h"
David Pursell0b156632015-10-30 11:22:01 -070073#include "transport.h"
David Pursell4601c972016-02-05 15:35:09 -080074#include "udp.h"
David Pursell0b156632015-10-30 11:22:01 -070075#include "usb.h"
Tom Cherry9027af02018-09-24 15:48:09 -070076#include "util.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077
Tom Cherrydfd85df2018-09-20 14:45:05 -070078using android::base::ReadFully;
Tom Cherry4aa60b32018-09-05 15:11:44 -070079using android::base::Split;
80using android::base::Trim;
Chris Fries0ea946c2017-04-12 10:25:57 -050081using android::base::unique_fd;
David Anderson0c732342018-11-28 17:10:42 -080082using namespace std::string_literals;
Chris Fries0ea946c2017-04-12 10:25:57 -050083
David Pursell2ec418a2016-01-20 08:32:08 -080084static const char* serial = nullptr;
Elliott Hughes577e8b42018-04-05 16:12:47 -070085
Elliott Hughes577e8b42018-04-05 16:12:47 -070086static bool g_long_listing = false;
Chris Fries6a999712017-04-04 09:52:47 -050087// Don't resparse files in too-big chunks.
88// libsparse will support INT_MAX, but this results in large allocations, so
89// let's keep it at 1GB to avoid memory pressure on the host.
90static constexpr int64_t RESPARSE_LIMIT = 1 * 1024 * 1024 * 1024;
Elliott Hughes542370d2018-04-19 19:49:44 -070091static uint64_t sparse_limit = 0;
Colin Crossf8387882012-05-24 17:18:41 -070092static int64_t target_sparse_limit = -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080093
Elliott Hughes577e8b42018-04-05 16:12:47 -070094static unsigned g_base_addr = 0x10000000;
95static boot_img_hdr_v1 g_boot_img_hdr = {};
96static std::string g_cmdline;
JP Abgrall7b8970c2013-03-07 17:06:41 -080097
David Zeuthenb6ea4352017-08-07 14:29:26 -040098static bool g_disable_verity = false;
99static bool g_disable_verification = false;
100
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000101static const std::string convert_fbe_marker_filename("convert_fbe");
102
Tom Cherry9027af02018-09-24 15:48:09 -0700103fastboot::FastBootDriver* fb = nullptr;
104
Rom Lemarchand622810c2013-06-28 09:54:59 -0700105enum fb_buffer_type {
Chris Fries0ea946c2017-04-12 10:25:57 -0500106 FB_BUFFER_FD,
Rom Lemarchand622810c2013-06-28 09:54:59 -0700107 FB_BUFFER_SPARSE,
108};
109
110struct fastboot_buffer {
111 enum fb_buffer_type type;
Elliott Hughesfc797672015-04-07 20:12:50 -0700112 void* data;
113 int64_t sz;
Chris Fries0ea946c2017-04-12 10:25:57 -0500114 int fd;
David Anderson32e376f2018-08-16 13:43:11 -0700115 int64_t image_size;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700116};
117
David Anderson0debda02018-08-28 13:54:03 -0700118enum class ImageType {
119 // Must be flashed for device to boot into the kernel.
120 BootCritical,
121 // Normal partition to be flashed during "flashall".
122 Normal,
123 // Partition that is never flashed during "flashall".
124 Extra
125};
126
David Anderson32e376f2018-08-16 13:43:11 -0700127struct Image {
Elliott Hughes45964a82017-05-03 22:43:23 -0700128 const char* nickname;
129 const char* img_name;
130 const char* sig_name;
131 const char* part_name;
Hridya Valsarajuf1f0a9c2018-08-02 10:46:21 -0700132 bool optional_if_no_image;
David Anderson0debda02018-08-28 13:54:03 -0700133 ImageType type;
Hridya Valsarajuf1f0a9c2018-08-02 10:46:21 -0700134 bool IsSecondary() const { return nickname == nullptr; }
David Anderson32e376f2018-08-16 13:43:11 -0700135};
136
137static Image images[] = {
Dario Frenic7ea1af2018-05-25 16:07:19 +0100138 // clang-format off
David Anderson0debda02018-08-28 13:54:03 -0700139 { "boot", "boot.img", "boot.sig", "boot", false, ImageType::BootCritical },
140 { nullptr, "boot_other.img", "boot.sig", "boot", true, ImageType::Normal },
141 { "cache", "cache.img", "cache.sig", "cache", true, ImageType::Extra },
142 { "dtbo", "dtbo.img", "dtbo.sig", "dtbo", true, ImageType::BootCritical },
143 { "dts", "dt.img", "dt.sig", "dts", true, ImageType::BootCritical },
144 { "odm", "odm.img", "odm.sig", "odm", true, ImageType::Normal },
145 { "product", "product.img", "product.sig", "product", true, ImageType::Normal },
Dario Freniab5583b2018-08-17 01:01:25 +0100146 { "product_services",
147 "product_services.img",
148 "product_services.sig",
David Anderson8cdea7f2018-08-06 15:36:00 -0700149 "product_services",
David Anderson0debda02018-08-28 13:54:03 -0700150 true, ImageType::Normal },
151 { "recovery", "recovery.img", "recovery.sig", "recovery", true, ImageType::BootCritical },
152 { "super", "super.img", "super.sig", "super", true, ImageType::Extra },
153 { "system", "system.img", "system.sig", "system", false, ImageType::Normal },
154 { nullptr, "system_other.img", "system.sig", "system", true, ImageType::Normal },
155 { "userdata", "userdata.img", "userdata.sig", "userdata", true, ImageType::Extra },
156 { "vbmeta", "vbmeta.img", "vbmeta.sig", "vbmeta", true, ImageType::BootCritical },
David Anderson166bfef2018-10-15 14:46:59 -0700157 { "vbmeta_system",
158 "vbmeta_system.img",
159 "vbmeta_system.sig",
160 "vbmeta_system",
David Anderson1109c922018-09-17 17:32:54 -0700161 true, ImageType::BootCritical },
David Anderson0debda02018-08-28 13:54:03 -0700162 { "vendor", "vendor.img", "vendor.sig", "vendor", true, ImageType::Normal },
163 { nullptr, "vendor_other.img", "vendor.sig", "vendor", true, ImageType::Normal },
Dario Frenic7ea1af2018-05-25 16:07:19 +0100164 // clang-format on
Rom Lemarchand622810c2013-06-28 09:54:59 -0700165};
Brian Swetland2a63bb72009-04-28 16:05:07 -0700166
David Andersone0e693c2018-11-27 20:19:26 -0800167static char* get_android_product_out() {
Elliott Hughes45964a82017-05-03 22:43:23 -0700168 char* dir = getenv("ANDROID_PRODUCT_OUT");
Alex Lightbb9b8a52016-06-29 09:26:44 -0700169 if (dir == nullptr || dir[0] == '\0') {
David Andersone0e693c2018-11-27 20:19:26 -0800170 return nullptr;
171 }
172 return dir;
173}
174
175static std::string find_item_given_name(const std::string& img_name) {
176 char* dir = get_android_product_out();
177 if (!dir) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700178 die("ANDROID_PRODUCT_OUT not set");
Alex Lightbb9b8a52016-06-29 09:26:44 -0700179 }
David Anderson0debda02018-08-28 13:54:03 -0700180 return std::string(dir) + "/" + img_name;
Alex Lightbb9b8a52016-06-29 09:26:44 -0700181}
182
Elliott Hughes29d5d7d2017-05-11 15:05:13 -0700183static std::string find_item(const std::string& item) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700184 for (size_t i = 0; i < arraysize(images); ++i) {
Elliott Hughesd6365a72017-05-08 18:04:49 -0700185 if (images[i].nickname && item == images[i].nickname) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700186 return find_item_given_name(images[i].img_name);
187 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800188 }
189
Elliott Hughesd6365a72017-05-08 18:04:49 -0700190 fprintf(stderr, "unknown partition '%s'\n", item.c_str());
Elliott Hughes45964a82017-05-03 22:43:23 -0700191 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800192}
193
Tom Cherry9027af02018-09-24 15:48:09 -0700194double last_start_time;
195
196static void Status(const std::string& message) {
197 static constexpr char kStatusFormat[] = "%-50s ";
198 fprintf(stderr, kStatusFormat, message.c_str());
199 last_start_time = now();
200}
201
202static void Epilog(int status) {
203 if (status) {
204 fprintf(stderr, "FAILED (%s)\n", fb->Error().c_str());
205 die("Command failed");
206 } else {
207 double split = now();
208 fprintf(stderr, "OKAY [%7.3fs]\n", (split - last_start_time));
209 }
210}
211
212static void InfoMessage(const std::string& info) {
213 fprintf(stderr, "(bootloader) %s\n", info.c_str());
214}
215
Elliott Hughesfc797672015-04-07 20:12:50 -0700216static int64_t get_file_size(int fd) {
217 struct stat sb;
Tom Cherrydfd85df2018-09-20 14:45:05 -0700218 if (fstat(fd, &sb) == -1) {
219 die("could not get file size");
220 }
221 return sb.st_size;
Colin Crossf8387882012-05-24 17:18:41 -0700222}
223
Tom Cherrydfd85df2018-09-20 14:45:05 -0700224bool ReadFileToVector(const std::string& file, std::vector<char>* out) {
225 out->clear();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226
Tom Cherrydfd85df2018-09-20 14:45:05 -0700227 unique_fd fd(TEMP_FAILURE_RETRY(open(file.c_str(), O_RDONLY | O_CLOEXEC | O_BINARY)));
228 if (fd == -1) {
229 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700230 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800231
Tom Cherrydfd85df2018-09-20 14:45:05 -0700232 out->resize(get_file_size(fd));
233 return ReadFully(fd, out->data(), out->size());
Rom Lemarchand622810c2013-06-28 09:54:59 -0700234}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800235
Elliott Hughesfc797672015-04-07 20:12:50 -0700236static int match_fastboot_with_serial(usb_ifc_info* info, const char* local_serial) {
Elliott Hughese1746fd2015-08-10 15:30:54 -0700237 if (info->ifc_class != 0xff || info->ifc_subclass != 0x42 || info->ifc_protocol != 0x03) {
238 return -1;
239 }
240
Scott Anderson13081c62012-04-06 12:39:30 -0700241 // require matching serial number or device path if requested
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800242 // at the command line with the -s option.
JP Abgralla032ded2012-06-06 11:53:33 -0700243 if (local_serial && (strcmp(local_serial, info->serial_number) != 0 &&
244 strcmp(local_serial, info->device_path) != 0)) return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800245 return 0;
246}
247
Elliott Hughesfc797672015-04-07 20:12:50 -0700248static int match_fastboot(usb_ifc_info* info) {
JP Abgrall7b8970c2013-03-07 17:06:41 -0800249 return match_fastboot_with_serial(info, serial);
250}
251
Elliott Hughesfc797672015-04-07 20:12:50 -0700252static int list_devices_callback(usb_ifc_info* info) {
253 if (match_fastboot_with_serial(info, nullptr) == 0) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800254 std::string serial = info->serial_number;
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700255 if (!info->writable) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800256 serial = UsbNoPermissionsShortHelpText();
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700257 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258 if (!serial[0]) {
259 serial = "????????????";
260 }
Scott Anderson866b1bd2012-06-04 20:29:11 -0700261 // output compatible with "adb devices"
Elliott Hughes577e8b42018-04-05 16:12:47 -0700262 if (!g_long_listing) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800263 printf("%s\tfastboot", serial.c_str());
Scott Anderson13081c62012-04-06 12:39:30 -0700264 } else {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800265 printf("%-22s fastboot", serial.c_str());
266 if (strlen(info->device_path) > 0) printf(" %s", info->device_path);
Scott Anderson13081c62012-04-06 12:39:30 -0700267 }
Elliott Hughes1b708d32015-12-11 19:07:01 -0800268 putchar('\n');
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800269 }
270
271 return -1;
272}
273
David Pursell2ec418a2016-01-20 08:32:08 -0800274// Opens a new Transport connected to a device. If |serial| is non-null it will be used to identify
275// a specific device, otherwise the first USB device found will be used.
276//
Elliott Hughes855cdf82018-04-02 14:24:03 -0700277// If |serial| is non-null but invalid, this exits.
David Pursell2ec418a2016-01-20 08:32:08 -0800278// Otherwise it blocks until the target is available.
279//
280// The returned Transport is a singleton, so multiple calls to this function will return the same
281// object, and the caller should not attempt to delete the returned Transport.
David Pursell0b156632015-10-30 11:22:01 -0700282static Transport* open_device() {
David Pursell2ec418a2016-01-20 08:32:08 -0800283 bool announce = true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800284
David Pursell4601c972016-02-05 15:35:09 -0800285 Socket::Protocol protocol = Socket::Protocol::kTcp;
David Pursell2ec418a2016-01-20 08:32:08 -0800286 std::string host;
David Pursell4601c972016-02-05 15:35:09 -0800287 int port = 0;
288 if (serial != nullptr) {
289 const char* net_address = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -0800290
David Pursell4601c972016-02-05 15:35:09 -0800291 if (android::base::StartsWith(serial, "tcp:")) {
292 protocol = Socket::Protocol::kTcp;
293 port = tcp::kDefaultPort;
294 net_address = serial + strlen("tcp:");
295 } else if (android::base::StartsWith(serial, "udp:")) {
296 protocol = Socket::Protocol::kUdp;
297 port = udp::kDefaultPort;
298 net_address = serial + strlen("udp:");
299 }
300
301 if (net_address != nullptr) {
302 std::string error;
303 if (!android::base::ParseNetAddress(net_address, &host, &port, nullptr, &error)) {
Elliott Hughes855cdf82018-04-02 14:24:03 -0700304 die("invalid network address '%s': %s\n", net_address, error.c_str());
David Pursell4601c972016-02-05 15:35:09 -0800305 }
David Pursell2ec418a2016-01-20 08:32:08 -0800306 }
307 }
308
David Anderson1d887432018-08-27 16:47:32 -0700309 Transport* transport = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -0800310 while (true) {
311 if (!host.empty()) {
312 std::string error;
David Pursell4601c972016-02-05 15:35:09 -0800313 if (protocol == Socket::Protocol::kTcp) {
314 transport = tcp::Connect(host, port, &error).release();
315 } else if (protocol == Socket::Protocol::kUdp) {
316 transport = udp::Connect(host, port, &error).release();
317 }
318
David Pursell2ec418a2016-01-20 08:32:08 -0800319 if (transport == nullptr && announce) {
320 fprintf(stderr, "error: %s\n", error.c_str());
321 }
322 } else {
323 transport = usb_open(match_fastboot);
324 }
325
326 if (transport != nullptr) {
327 return transport;
328 }
329
David Pursell0b156632015-10-30 11:22:01 -0700330 if (announce) {
David Pursell2ec418a2016-01-20 08:32:08 -0800331 announce = false;
Elliott Hughesb46964f2015-08-19 17:49:45 -0700332 fprintf(stderr, "< waiting for %s >\n", serial ? serial : "any device");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800333 }
Elliott Hughes290a2282016-11-14 17:08:47 -0800334 std::this_thread::sleep_for(std::chrono::milliseconds(1));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800335 }
336}
337
Elliott Hughesfc797672015-04-07 20:12:50 -0700338static void list_devices() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800339 // We don't actually open a USB device here,
340 // just getting our callback called so we can
341 // list all the connected devices.
342 usb_open(list_devices_callback);
343}
344
Elliott Hughesd6365a72017-05-08 18:04:49 -0700345static void syntax_error(const char* fmt, ...) {
346 fprintf(stderr, "fastboot: usage: ");
347
348 va_list ap;
349 va_start(ap, fmt);
350 vfprintf(stderr, fmt, ap);
351 va_end(ap);
352
353 fprintf(stderr, "\n");
354 exit(1);
355}
356
357static int show_help() {
358 // clang-format off
359 fprintf(stdout,
Elliott Hughes07fc6822018-05-24 16:36:05 -0700360// 1 2 3 4 5 6 7 8
361// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
Elliott Hughesb76188f2018-04-03 13:30:18 -0700362 "usage: fastboot [OPTION...] COMMAND...\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800363 "\n"
Elliott Hughesb76188f2018-04-03 13:30:18 -0700364 "flashing:\n"
365 " update ZIP Flash all partitions from an update.zip package.\n"
366 " flashall Flash all partitions from $ANDROID_PRODUCT_OUT.\n"
367 " On A/B devices, flashed slot is set as active.\n"
368 " Secondary images may be flashed to inactive slot.\n"
Elliott Hughes07fc6822018-05-24 16:36:05 -0700369 " flash PARTITION [FILENAME] Flash given partition, using the image from\n"
370 " $ANDROID_PRODUCT_OUT if no filename is given.\n"
Elliott Hughesb76188f2018-04-03 13:30:18 -0700371 "\n"
372 "basics:\n"
373 " devices [-l] List devices in bootloader (-l: with device paths).\n"
374 " getvar NAME Display given bootloader variable.\n"
375 " reboot [bootloader] Reboot device.\n"
376 "\n"
377 "locking/unlocking:\n"
378 " flashing lock|unlock Lock/unlock partitions for flashing\n"
379 " flashing lock_critical|unlock_critical\n"
380 " Lock/unlock 'critical' bootloader partitions.\n"
381 " flashing get_unlock_ability\n"
382 " Check whether unlocking is allowed (1) or not(0).\n"
383 "\n"
384 "advanced:\n"
385 " erase PARTITION Erase a flash partition.\n"
386 " format[:FS_TYPE[:SIZE]] PARTITION\n"
387 " Format a flash partition.\n"
388 " set_active SLOT Set the active slot.\n"
389 " oem [COMMAND...] Execute OEM-specific command.\n"
390 "\n"
391 "boot image:\n"
392 " boot KERNEL [RAMDISK [SECOND]]\n"
393 " Download and boot kernel from RAM.\n"
394 " flash:raw PARTITION KERNEL [RAMDISK [SECOND]]\n"
395 " Create boot image and flash it.\n"
Elliott Hughes577e8b42018-04-05 16:12:47 -0700396 " --cmdline CMDLINE Override kernel command line.\n"
Elliott Hughesb76188f2018-04-03 13:30:18 -0700397 " --base ADDRESS Set kernel base address (default: 0x10000000).\n"
398 " --kernel-offset Set kernel offset (default: 0x00008000).\n"
399 " --ramdisk-offset Set ramdisk offset (default: 0x01000000).\n"
400 " --tags-offset Set tags offset (default: 0x00000100).\n"
401 " --page-size BYTES Set flash page size (default: 2048).\n"
402 " --header-version VERSION Set boot image header version.\n"
Elliott Hughes577e8b42018-04-05 16:12:47 -0700403 " --os-version MAJOR[.MINOR[.PATCH]]\n"
404 " Set boot image OS version (default: 0.0.0).\n"
405 " --os-patch-level YYYY-MM-DD\n"
406 " Set boot image OS security patch level.\n"
407 // TODO: still missing: `second_addr`, `name`, `id`, `recovery_dtbo_*`.
Elliott Hughesb76188f2018-04-03 13:30:18 -0700408 "\n"
Elliott Hughes2e9b7792018-04-04 13:36:44 -0700409 // TODO: what device(s) used this? is there any documentation?
Elliott Hughesb76188f2018-04-03 13:30:18 -0700410 //" continue Continue with autoboot.\n"
411 //"\n"
412 "Android Things:\n"
413 " stage IN_FILE Sends given file to stage for the next command.\n"
414 " get_staged OUT_FILE Writes data staged by the last command to a file.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800415 "\n"
416 "options:\n"
Elliott Hughesb76188f2018-04-03 13:30:18 -0700417 " -w Wipe userdata.\n"
Elliott Hughesb76188f2018-04-03 13:30:18 -0700418 " -s SERIAL Specify a USB device.\n"
419 " -s tcp|udp:HOST[:PORT] Specify a network device.\n"
Elliott Hughes542370d2018-04-19 19:49:44 -0700420 " -S SIZE[K|M|G] Break into sparse files no larger than SIZE.\n"
David Anderson89569642018-11-16 15:53:35 -0800421 " --force Force a flash operation that may be unsafe.\n"
Elliott Hughesb76188f2018-04-03 13:30:18 -0700422 " --slot SLOT Use SLOT; 'all' for both slots, 'other' for\n"
423 " non-current slot (default: current active slot).\n"
424 " --set-active[=SLOT] Sets the active slot before rebooting.\n"
425 " --skip-secondary Don't flash secondary slots in flashall/update.\n"
426 " --skip-reboot Don't reboot device after flashing.\n"
427 " --disable-verity Sets disable-verity when flashing vbmeta.\n"
428 " --disable-verification Sets disable-verification when flashing vbmeta.\n"
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000429#if !defined(_WIN32)
Elliott Hughesb76188f2018-04-03 13:30:18 -0700430 " --wipe-and-use-fbe Enable file-based encryption, wiping userdata.\n"
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000431#endif
Elliott Hughesb76188f2018-04-03 13:30:18 -0700432 // TODO: remove --unbuffered?
433 " --unbuffered Don't buffer input or output.\n"
434 " --verbose, -v Verbose output.\n"
435 " --version Display version.\n"
436 " --help, -h Show this message.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800437 );
Elliott Hughesd6365a72017-05-08 18:04:49 -0700438 // clang-format off
439 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440}
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000441
Tom Cherrydfd85df2018-09-20 14:45:05 -0700442static std::vector<char> LoadBootableImage(const std::string& kernel, const std::string& ramdisk,
443 const std::string& second_stage) {
444 std::vector<char> kernel_data;
445 if (!ReadFileToVector(kernel, &kernel_data)) {
446 die("cannot load '%s': %s", kernel.c_str(), strerror(errno));
447 }
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800448
Elliott Hughesfc797672015-04-07 20:12:50 -0700449 // Is this actually a boot image?
Tom Cherrydfd85df2018-09-20 14:45:05 -0700450 if (kernel_data.size() < sizeof(boot_img_hdr_v1)) {
Elliott Hughesaaa3b6b2018-01-18 16:08:24 -0800451 die("cannot load '%s': too short", kernel.c_str());
452 }
Tom Cherrydfd85df2018-09-20 14:45:05 -0700453 if (!memcmp(kernel_data.data(), BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Elliott Hughes577e8b42018-04-05 16:12:47 -0700454 if (!g_cmdline.empty()) {
Tom Cherrydfd85df2018-09-20 14:45:05 -0700455 bootimg_set_cmdline(reinterpret_cast<boot_img_hdr_v1*>(kernel_data.data()), g_cmdline);
Elliott Hughes577e8b42018-04-05 16:12:47 -0700456 }
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800457
Elliott Hughes4089d342017-10-27 14:21:12 -0700458 if (!ramdisk.empty()) die("cannot boot a boot.img *and* ramdisk");
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800459
Tom Cherrydfd85df2018-09-20 14:45:05 -0700460 return kernel_data;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 }
462
Tom Cherrydfd85df2018-09-20 14:45:05 -0700463 std::vector<char> ramdisk_data;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700464 if (!ramdisk.empty()) {
Tom Cherrydfd85df2018-09-20 14:45:05 -0700465 if (!ReadFileToVector(ramdisk, &ramdisk_data)) {
466 die("cannot load '%s': %s", ramdisk.c_str(), strerror(errno));
467 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800468 }
469
Tom Cherrydfd85df2018-09-20 14:45:05 -0700470 std::vector<char> second_stage_data;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700471 if (!second_stage.empty()) {
Tom Cherrydfd85df2018-09-20 14:45:05 -0700472 if (!ReadFileToVector(second_stage, &second_stage_data)) {
473 die("cannot load '%s': %s", second_stage.c_str(), strerror(errno));
474 }
Jeremy Compostellaa42adff2014-07-17 17:17:54 +0200475 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800476 fprintf(stderr,"creating boot image...\n");
Elliott Hughesd6365a72017-05-08 18:04:49 -0700477
Tom Cherrydfd85df2018-09-20 14:45:05 -0700478 std::vector<char> out;
479 boot_img_hdr_v1* boot_image_data = mkbootimg(kernel_data, ramdisk_data, second_stage_data,
480 g_base_addr, g_boot_img_hdr, &out);
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800481
Tom Cherrydfd85df2018-09-20 14:45:05 -0700482 if (!g_cmdline.empty()) bootimg_set_cmdline(boot_image_data, g_cmdline);
483 fprintf(stderr, "creating boot image - %zu bytes\n", out.size());
484
485 return out;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800486}
487
Tom Cherrydfd85df2018-09-20 14:45:05 -0700488static bool UnzipToMemory(ZipArchiveHandle zip, const std::string& entry_name,
489 std::vector<char>* out) {
490 ZipString zip_entry_name(entry_name.c_str());
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700491 ZipEntry zip_entry;
492 if (FindEntry(zip, zip_entry_name, &zip_entry) != 0) {
Tom Cherrydfd85df2018-09-20 14:45:05 -0700493 fprintf(stderr, "archive does not contain '%s'\n", entry_name.c_str());
494 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800495 }
496
Tom Cherrydfd85df2018-09-20 14:45:05 -0700497 out->resize(zip_entry.uncompressed_length);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800498
Tom Cherrydfd85df2018-09-20 14:45:05 -0700499 fprintf(stderr, "extracting %s (%zu MB) to RAM...\n", entry_name.c_str(),
500 out->size() / 1024 / 1024);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800501
Tom Cherrydfd85df2018-09-20 14:45:05 -0700502 int error = ExtractToMemory(zip, &zip_entry, reinterpret_cast<uint8_t*>(out->data()),
503 out->size());
504 if (error != 0) die("failed to extract '%s': %s", entry_name.c_str(), ErrorCodeString(error));
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000505
Tom Cherrydfd85df2018-09-20 14:45:05 -0700506 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800507}
508
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700509#if defined(_WIN32)
510
511// TODO: move this to somewhere it can be shared.
512
513#include <windows.h>
514
515// Windows' tmpfile(3) requires administrator rights because
516// it creates temporary files in the root directory.
517static FILE* win32_tmpfile() {
518 char temp_path[PATH_MAX];
519 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path);
520 if (nchars == 0 || nchars >= sizeof(temp_path)) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700521 die("GetTempPath failed, error %ld", GetLastError());
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700522 }
523
524 char filename[PATH_MAX];
525 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700526 die("GetTempFileName failed, error %ld", GetLastError());
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700527 }
528
529 return fopen(filename, "w+bTD");
530}
531
532#define tmpfile win32_tmpfile
533
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000534static std::string make_temporary_directory() {
Elliott Hughes4089d342017-10-27 14:21:12 -0700535 die("make_temporary_directory not supported under Windows, sorry!");
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000536}
537
Elliott Hughes855cdf82018-04-02 14:24:03 -0700538static int make_temporary_fd(const char* /*what*/) {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700539 // TODO: reimplement to avoid leaking a FILE*.
540 return fileno(tmpfile());
541}
542
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000543#else
544
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700545static std::string make_temporary_template() {
546 const char* tmpdir = getenv("TMPDIR");
547 if (tmpdir == nullptr) tmpdir = P_tmpdir;
548 return std::string(tmpdir) + "/fastboot_userdata_XXXXXX";
549}
550
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000551static std::string make_temporary_directory() {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700552 std::string result(make_temporary_template());
553 if (mkdtemp(&result[0]) == nullptr) {
Elliott Hughesda1dbd62018-05-21 23:02:26 -0700554 die("unable to create temporary directory with template %s: %s",
555 result.c_str(), strerror(errno));
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000556 }
557 return result;
558}
559
Elliott Hughes855cdf82018-04-02 14:24:03 -0700560static int make_temporary_fd(const char* what) {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700561 std::string path_template(make_temporary_template());
562 int fd = mkstemp(&path_template[0]);
563 if (fd == -1) {
Elliott Hughesda1dbd62018-05-21 23:02:26 -0700564 die("failed to create temporary file for %s with template %s: %s\n",
565 path_template.c_str(), what, strerror(errno));
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700566 }
567 unlink(path_template.c_str());
568 return fd;
569}
570
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700571#endif
572
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000573static std::string create_fbemarker_tmpdir() {
574 std::string dir = make_temporary_directory();
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000575 std::string marker_file = dir + "/" + convert_fbe_marker_filename;
576 int fd = open(marker_file.c_str(), O_CREAT | O_WRONLY | O_CLOEXEC, 0666);
577 if (fd == -1) {
Elliott Hughes855cdf82018-04-02 14:24:03 -0700578 die("unable to create FBE marker file %s locally: %s",
579 marker_file.c_str(), strerror(errno));
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000580 }
581 close(fd);
582 return dir;
583}
584
585static void delete_fbemarker_tmpdir(const std::string& dir) {
586 std::string marker_file = dir + "/" + convert_fbe_marker_filename;
587 if (unlink(marker_file.c_str()) == -1) {
588 fprintf(stderr, "Unable to delete FBE marker file %s locally: %d, %s\n",
589 marker_file.c_str(), errno, strerror(errno));
590 return;
591 }
592 if (rmdir(dir.c_str()) == -1) {
593 fprintf(stderr, "Unable to delete FBE marker directory %s locally: %d, %s\n",
594 dir.c_str(), errno, strerror(errno));
595 return;
596 }
597}
598
Elliott Hughes45964a82017-05-03 22:43:23 -0700599static int unzip_to_file(ZipArchiveHandle zip, const char* entry_name) {
Elliott Hughes855cdf82018-04-02 14:24:03 -0700600 unique_fd fd(make_temporary_fd(entry_name));
Rom Lemarchand622810c2013-06-28 09:54:59 -0700601
Yusuke Sato07447542015-06-25 14:39:19 -0700602 ZipString zip_entry_name(entry_name);
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700603 ZipEntry zip_entry;
604 if (FindEntry(zip, zip_entry_name, &zip_entry) != 0) {
605 fprintf(stderr, "archive does not contain '%s'\n", entry_name);
David Andersoncf444f32018-08-29 14:15:49 -0700606 errno = ENOENT;
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000607 return -1;
608 }
609
Elliott Hughes23af1122017-11-10 08:42:17 -0800610 fprintf(stderr, "extracting %s (%" PRIu32 " MB) to disk...", entry_name,
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700611 zip_entry.uncompressed_length / 1024 / 1024);
Elliott Hughes23af1122017-11-10 08:42:17 -0800612 double start = now();
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700613 int error = ExtractEntryToFile(zip, &zip_entry, fd);
614 if (error != 0) {
Elliott Hughes23af1122017-11-10 08:42:17 -0800615 die("\nfailed to extract '%s': %s", entry_name, ErrorCodeString(error));
Rom Lemarchand622810c2013-06-28 09:54:59 -0700616 }
617
Elliott Hughes4089d342017-10-27 14:21:12 -0700618 if (lseek(fd, 0, SEEK_SET) != 0) {
Elliott Hughes23af1122017-11-10 08:42:17 -0800619 die("\nlseek on extracted file '%s' failed: %s", entry_name, strerror(errno));
Elliott Hughes4089d342017-10-27 14:21:12 -0700620 }
621
Elliott Hughes23af1122017-11-10 08:42:17 -0800622 fprintf(stderr, " took %.3fs\n", now() - start);
623
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700624 return fd.release();
Rom Lemarchand622810c2013-06-28 09:54:59 -0700625}
626
Tom Cherry4aa60b32018-09-05 15:11:44 -0700627static void CheckRequirement(const std::string& cur_product, const std::string& var,
628 const std::string& product, bool invert,
629 const std::vector<std::string>& options) {
630 Status("Checking '" + var + "'");
Elliott Hughes5620d222018-03-28 08:20:00 -0700631
Tom Cherry4aa60b32018-09-05 15:11:44 -0700632 double start = now();
633
634 if (!product.empty()) {
635 if (product != cur_product) {
636 double split = now();
637 fprintf(stderr, "IGNORE, product is %s required only for %s [%7.3fs]\n",
638 cur_product.c_str(), product.c_str(), (split - start));
639 return;
640 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800641 }
Tom Cherry4aa60b32018-09-05 15:11:44 -0700642
643 std::string var_value;
Tom Cherry9027af02018-09-24 15:48:09 -0700644 if (fb->GetVar(var, &var_value) != fastboot::SUCCESS) {
Tom Cherry4aa60b32018-09-05 15:11:44 -0700645 fprintf(stderr, "FAILED\n\n");
Tom Cherry9027af02018-09-24 15:48:09 -0700646 fprintf(stderr, "Could not getvar for '%s' (%s)\n\n", var.c_str(),
647 fb->Error().c_str());
Tom Cherry4aa60b32018-09-05 15:11:44 -0700648 die("requirements not met!");
649 }
650
651 bool match = false;
652 for (const auto& option : options) {
653 if (option == var_value || (option.back() == '*' &&
654 !var_value.compare(0, option.length() - 1, option, 0,
655 option.length() - 1))) {
656 match = true;
657 break;
658 }
659 }
660
661 if (invert) {
662 match = !match;
663 }
664
665 if (match) {
666 double split = now();
667 fprintf(stderr, "OKAY [%7.3fs]\n", (split - start));
668 return;
669 }
670
671 fprintf(stderr, "FAILED\n\n");
672 fprintf(stderr, "Device %s is '%s'.\n", var.c_str(), var_value.c_str());
673 fprintf(stderr, "Update %s '%s'", invert ? "rejects" : "requires", options[0].c_str());
674 for (auto it = std::next(options.begin()); it != options.end(); ++it) {
675 fprintf(stderr, " or '%s'", it->c_str());
676 }
677 fprintf(stderr, ".\n\n");
678 die("requirements not met!");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800679}
680
Tom Cherry4aa60b32018-09-05 15:11:44 -0700681bool ParseRequirementLine(const std::string& line, std::string* name, std::string* product,
682 bool* invert, std::vector<std::string>* options) {
Elliott Hughes5620d222018-03-28 08:20:00 -0700683 // "require product=alpha|beta|gamma"
684 // "require version-bootloader=1234"
685 // "require-for-product:gamma version-bootloader=istanbul|constantinople"
686 // "require partition-exists=vendor"
Tom Cherry4aa60b32018-09-05 15:11:44 -0700687 *product = "";
688 *invert = false;
Elliott Hughes5620d222018-03-28 08:20:00 -0700689
Tom Cherry4aa60b32018-09-05 15:11:44 -0700690 auto require_reject_regex = std::regex{"(require\\s+|reject\\s+)?\\s*(\\S+)\\s*=\\s*(.*)"};
691 auto require_product_regex =
692 std::regex{"require-for-product:\\s*(\\S+)\\s+(\\S+)\\s*=\\s*(.*)"};
693 std::smatch match_results;
694
695 if (std::regex_match(line, match_results, require_reject_regex)) {
696 *invert = Trim(match_results[1]) == "reject";
697 } else if (std::regex_match(line, match_results, require_product_regex)) {
698 *product = match_results[1];
699 } else {
700 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800701 }
702
Tom Cherry4aa60b32018-09-05 15:11:44 -0700703 *name = match_results[2];
Elliott Hughes253c18d2015-03-18 22:47:09 -0700704 // Work around an unfortunate name mismatch.
Tom Cherry4aa60b32018-09-05 15:11:44 -0700705 if (*name == "board") {
706 *name = "product";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800707 }
708
Tom Cherry4aa60b32018-09-05 15:11:44 -0700709 auto raw_options = Split(match_results[3], "|");
710 for (const auto& option : raw_options) {
711 auto trimmed_option = Trim(option);
712 options->emplace_back(trimmed_option);
713 }
714
715 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800716}
717
Tom Cherry4aa60b32018-09-05 15:11:44 -0700718// "require partition-exists=x" is a special case, added because of the trouble we had when
719// Pixel 2 shipped with new partitions and users used old versions of fastboot to flash them,
720// missing out new partitions. A device with new partitions can use "partition-exists" to
721// override the fields `optional_if_no_image` in the `images` array.
722static void HandlePartitionExists(const std::vector<std::string>& options) {
723 const std::string& partition_name = options[0];
724 std::string has_slot;
Tom Cherry9027af02018-09-24 15:48:09 -0700725 if (fb->GetVar("has-slot:" + partition_name, &has_slot) != fastboot::SUCCESS ||
Tom Cherry4aa60b32018-09-05 15:11:44 -0700726 (has_slot != "yes" && has_slot != "no")) {
727 die("device doesn't have required partition %s!", partition_name.c_str());
728 }
729 bool known_partition = false;
730 for (size_t i = 0; i < arraysize(images); ++i) {
731 if (images[i].nickname && images[i].nickname == partition_name) {
732 images[i].optional_if_no_image = false;
733 known_partition = true;
734 }
735 }
736 if (!known_partition) {
737 die("device requires partition %s which is not known to this version of fastboot",
738 partition_name.c_str());
739 }
740}
741
742static void CheckRequirements(const std::string& data) {
743 std::string cur_product;
Tom Cherry9027af02018-09-24 15:48:09 -0700744 if (fb->GetVar("product", &cur_product) != fastboot::SUCCESS) {
745 fprintf(stderr, "getvar:product FAILED (%s)\n", fb->Error().c_str());
Tom Cherry4aa60b32018-09-05 15:11:44 -0700746 }
747
748 auto lines = Split(data, "\n");
749 for (const auto& line : lines) {
750 if (line.empty()) {
751 continue;
752 }
753
754 std::string name;
755 std::string product;
756 bool invert;
757 std::vector<std::string> options;
758
759 if (!ParseRequirementLine(line, &name, &product, &invert, &options)) {
760 fprintf(stderr, "android-info.txt syntax error: %s\n", line.c_str());
761 continue;
762 }
763 if (name == "partition-exists") {
764 HandlePartitionExists(options);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800765 } else {
Tom Cherry4aa60b32018-09-05 15:11:44 -0700766 CheckRequirement(cur_product, name, product, invert, options);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800767 }
768 }
769}
770
Tom Cherry9027af02018-09-24 15:48:09 -0700771static void DisplayVarOrError(const std::string& label, const std::string& var) {
772 std::string value;
773
774 if (fb->GetVar(var, &value) != fastboot::SUCCESS) {
775 Status("getvar:" + var);
776 fprintf(stderr, "FAILED (%s)\n", fb->Error().c_str());
777 return;
778 }
779 fprintf(stderr, "%s: %s\n", label.c_str(), value.c_str());
780}
781
782static void DumpInfo() {
783 fprintf(stderr, "--------------------------------------------\n");
784 DisplayVarOrError("Bootloader Version...", "version-bootloader");
785 DisplayVarOrError("Baseband Version.....", "version-baseband");
786 DisplayVarOrError("Serial Number........", "serialno");
787 fprintf(stderr, "--------------------------------------------\n");
788
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800789}
790
Tao Bao41cf35f2018-04-24 10:54:21 -0700791static struct sparse_file** load_sparse_files(int fd, int64_t max_size) {
Mohamad Ayyash80cc1f62015-03-31 12:09:29 -0700792 struct sparse_file* s = sparse_file_import_auto(fd, false, true);
Elliott Hughes4089d342017-10-27 14:21:12 -0700793 if (!s) die("cannot sparse read file");
Colin Crossf8387882012-05-24 17:18:41 -0700794
Tao Bao41cf35f2018-04-24 10:54:21 -0700795 if (max_size <= 0 || max_size > std::numeric_limits<uint32_t>::max()) {
796 die("invalid max size %" PRId64, max_size);
797 }
798
Elliott Hughesfc797672015-04-07 20:12:50 -0700799 int files = sparse_file_resparse(s, max_size, nullptr, 0);
Elliott Hughes4089d342017-10-27 14:21:12 -0700800 if (files < 0) die("Failed to resparse");
Colin Crossf8387882012-05-24 17:18:41 -0700801
Elliott Hughes253c18d2015-03-18 22:47:09 -0700802 sparse_file** out_s = reinterpret_cast<sparse_file**>(calloc(sizeof(struct sparse_file *), files + 1));
Elliott Hughes4089d342017-10-27 14:21:12 -0700803 if (!out_s) die("Failed to allocate sparse file array");
Colin Crossf8387882012-05-24 17:18:41 -0700804
805 files = sparse_file_resparse(s, max_size, out_s, files);
Elliott Hughes4089d342017-10-27 14:21:12 -0700806 if (files < 0) die("Failed to resparse");
Colin Crossf8387882012-05-24 17:18:41 -0700807
808 return out_s;
809}
810
Aaron Wisnerdb511202018-06-26 15:38:35 -0500811static int64_t get_target_sparse_limit() {
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700812 std::string max_download_size;
Tom Cherry9027af02018-09-24 15:48:09 -0700813 if (fb->GetVar("max-download-size", &max_download_size) != fastboot::SUCCESS ||
Elliott Hughes855cdf82018-04-02 14:24:03 -0700814 max_download_size.empty()) {
815 verbose("target didn't report max-download-size");
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700816 return 0;
Colin Crossf8387882012-05-24 17:18:41 -0700817 }
818
Elliott Hughes77c0e662015-11-02 15:51:12 -0800819 // Some bootloaders (angler, for example) send spurious whitespace too.
820 max_download_size = android::base::Trim(max_download_size);
821
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700822 uint64_t limit;
Elliott Hughesda46b392016-10-11 17:09:00 -0700823 if (!android::base::ParseUint(max_download_size, &limit)) {
Elliott Hughes3ab05862015-11-02 09:01:53 -0800824 fprintf(stderr, "couldn't parse max-download-size '%s'\n", max_download_size.c_str());
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700825 return 0;
826 }
Elliott Hughes855cdf82018-04-02 14:24:03 -0700827 if (limit > 0) verbose("target reported max download size of %" PRId64 " bytes", limit);
Colin Crossf8387882012-05-24 17:18:41 -0700828 return limit;
829}
830
Aaron Wisnerdb511202018-06-26 15:38:35 -0500831static int64_t get_sparse_limit(int64_t size) {
Elliott Hughes542370d2018-04-19 19:49:44 -0700832 int64_t limit = sparse_limit;
833 if (limit == 0) {
834 // Unlimited, so see what the target device's limit is.
835 // TODO: shouldn't we apply this limit even if you've used -S?
Colin Crossf8387882012-05-24 17:18:41 -0700836 if (target_sparse_limit == -1) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500837 target_sparse_limit = get_target_sparse_limit();
Colin Crossf8387882012-05-24 17:18:41 -0700838 }
839 if (target_sparse_limit > 0) {
840 limit = target_sparse_limit;
841 } else {
Colin Cross0bbfb392012-07-24 18:05:21 -0700842 return 0;
Colin Crossf8387882012-05-24 17:18:41 -0700843 }
844 }
845
846 if (size > limit) {
Chris Fries6a999712017-04-04 09:52:47 -0500847 return std::min(limit, RESPARSE_LIMIT);
Colin Crossf8387882012-05-24 17:18:41 -0700848 }
849
850 return 0;
851}
852
Aaron Wisnerdb511202018-06-26 15:38:35 -0500853static bool load_buf_fd(int fd, struct fastboot_buffer* buf) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700854 int64_t sz = get_file_size(fd);
855 if (sz == -1) {
Elliott Hughes53ec4952016-05-11 12:39:27 -0700856 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700857 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -0700858
David Anderson32e376f2018-08-16 13:43:11 -0700859 if (sparse_file* s = sparse_file_import_auto(fd, false, false)) {
860 buf->image_size = sparse_file_len(s, false, false);
861 sparse_file_destroy(s);
862 } else {
863 buf->image_size = sz;
864 }
865
Elliott Hughesa56a7292018-10-26 10:34:53 -0700866 lseek(fd, 0, SEEK_SET);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500867 int64_t limit = get_sparse_limit(sz);
Colin Crossf8387882012-05-24 17:18:41 -0700868 if (limit) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700869 sparse_file** s = load_sparse_files(fd, limit);
870 if (s == nullptr) {
Elliott Hughes53ec4952016-05-11 12:39:27 -0700871 return false;
Colin Crossf8387882012-05-24 17:18:41 -0700872 }
Rom Lemarchand622810c2013-06-28 09:54:59 -0700873 buf->type = FB_BUFFER_SPARSE;
874 buf->data = s;
Colin Crossf8387882012-05-24 17:18:41 -0700875 } else {
Chris Fries0ea946c2017-04-12 10:25:57 -0500876 buf->type = FB_BUFFER_FD;
877 buf->data = nullptr;
878 buf->fd = fd;
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000879 buf->sz = sz;
Colin Crossf8387882012-05-24 17:18:41 -0700880 }
Rom Lemarchand622810c2013-06-28 09:54:59 -0700881
Elliott Hughes53ec4952016-05-11 12:39:27 -0700882 return true;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700883}
884
Aaron Wisnerdb511202018-06-26 15:38:35 -0500885static bool load_buf(const char* fname, struct fastboot_buffer* buf) {
Chris Fries0ea946c2017-04-12 10:25:57 -0500886 unique_fd fd(TEMP_FAILURE_RETRY(open(fname, O_RDONLY | O_BINARY)));
887
Elliott Hughes53ec4952016-05-11 12:39:27 -0700888 if (fd == -1) {
889 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700890 }
Chris Fries0ea946c2017-04-12 10:25:57 -0500891
892 struct stat s;
893 if (fstat(fd, &s)) {
894 return false;
895 }
896 if (!S_ISREG(s.st_mode)) {
897 errno = S_ISDIR(s.st_mode) ? EISDIR : EINVAL;
898 return false;
899 }
900
Aaron Wisnerdb511202018-06-26 15:38:35 -0500901 return load_buf_fd(fd.release(), buf);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700902}
903
David Zeuthenb6ea4352017-08-07 14:29:26 -0400904static void rewrite_vbmeta_buffer(struct fastboot_buffer* buf) {
905 // Buffer needs to be at least the size of the VBMeta struct which
906 // is 256 bytes.
907 if (buf->sz < 256) {
908 return;
909 }
910
Elliott Hughes855cdf82018-04-02 14:24:03 -0700911 int fd = make_temporary_fd("vbmeta rewriting");
David Zeuthenb6ea4352017-08-07 14:29:26 -0400912
913 std::string data;
914 if (!android::base::ReadFdToString(buf->fd, &data)) {
915 die("Failed reading from vbmeta");
916 }
917
918 // There's a 32-bit big endian |flags| field at offset 120 where
919 // bit 0 corresponds to disable-verity and bit 1 corresponds to
920 // disable-verification.
921 //
922 // See external/avb/libavb/avb_vbmeta_image.h for the layout of
923 // the VBMeta struct.
924 if (g_disable_verity) {
925 data[123] |= 0x01;
926 }
927 if (g_disable_verification) {
928 data[123] |= 0x02;
929 }
930
931 if (!android::base::WriteStringToFd(data, fd)) {
932 die("Failed writing to modified vbmeta");
933 }
934 close(buf->fd);
935 buf->fd = fd;
936 lseek(fd, 0, SEEK_SET);
937}
938
Elliott Hughes5620d222018-03-28 08:20:00 -0700939static void flash_buf(const std::string& partition, struct fastboot_buffer *buf)
Rom Lemarchand622810c2013-06-28 09:54:59 -0700940{
Elliott Hughes253c18d2015-03-18 22:47:09 -0700941 sparse_file** s;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700942
David Zeuthenb6ea4352017-08-07 14:29:26 -0400943 // Rewrite vbmeta if that's what we're flashing and modification has been requested.
944 if ((g_disable_verity || g_disable_verification) &&
Elliott Hughes5620d222018-03-28 08:20:00 -0700945 (partition == "vbmeta" || partition == "vbmeta_a" || partition == "vbmeta_b")) {
David Zeuthenb6ea4352017-08-07 14:29:26 -0400946 rewrite_vbmeta_buffer(buf);
947 }
948
Rom Lemarchand622810c2013-06-28 09:54:59 -0700949 switch (buf->type) {
Josh Gao9da9ac52016-01-19 14:50:18 -0800950 case FB_BUFFER_SPARSE: {
951 std::vector<std::pair<sparse_file*, int64_t>> sparse_files;
Elliott Hughes253c18d2015-03-18 22:47:09 -0700952 s = reinterpret_cast<sparse_file**>(buf->data);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700953 while (*s) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700954 int64_t sz = sparse_file_len(*s, true, false);
Josh Gao9da9ac52016-01-19 14:50:18 -0800955 sparse_files.emplace_back(*s, sz);
956 ++s;
957 }
958
959 for (size_t i = 0; i < sparse_files.size(); ++i) {
960 const auto& pair = sparse_files[i];
Tom Cherry9027af02018-09-24 15:48:09 -0700961 fb->FlashPartition(partition, pair.first, pair.second, i + 1, sparse_files.size());
Rom Lemarchand622810c2013-06-28 09:54:59 -0700962 }
963 break;
Josh Gao9da9ac52016-01-19 14:50:18 -0800964 }
Chris Fries0ea946c2017-04-12 10:25:57 -0500965 case FB_BUFFER_FD:
Tom Cherry9027af02018-09-24 15:48:09 -0700966 fb->FlashPartition(partition, buf->fd, buf->sz);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700967 break;
968 default:
969 die("unknown buffer type: %d", buf->type);
970 }
971}
972
Aaron Wisnerdb511202018-06-26 15:38:35 -0500973static std::string get_current_slot() {
Daniel Rosenberg80919472016-06-30 19:25:31 -0700974 std::string current_slot;
Tom Cherry9027af02018-09-24 15:48:09 -0700975 if (fb->GetVar("current-slot", &current_slot) != fastboot::SUCCESS) return "";
Elliott Hughes42b18a52018-04-10 15:32:21 -0700976 return current_slot;
Daniel Rosenberg80919472016-06-30 19:25:31 -0700977}
978
Aaron Wisnerdb511202018-06-26 15:38:35 -0500979static int get_slot_count() {
Daniel Rosenberg80919472016-06-30 19:25:31 -0700980 std::string var;
Elliott Hughes42b18a52018-04-10 15:32:21 -0700981 int count = 0;
Tom Cherry9027af02018-09-24 15:48:09 -0700982 if (fb->GetVar("slot-count", &var) != fastboot::SUCCESS ||
983 !android::base::ParseInt(var, &count)) {
Elliott Hughes42b18a52018-04-10 15:32:21 -0700984 return 0;
Daniel Rosenberg80919472016-06-30 19:25:31 -0700985 }
Daniel Rosenberg80919472016-06-30 19:25:31 -0700986 return count;
987}
988
Aaron Wisnerdb511202018-06-26 15:38:35 -0500989static bool supports_AB() {
990 return get_slot_count() >= 2;
Alex Lightbb9b8a52016-06-29 09:26:44 -0700991}
992
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700993// Given a current slot, this returns what the 'other' slot is.
Daniel Rosenberg80919472016-06-30 19:25:31 -0700994static std::string get_other_slot(const std::string& current_slot, int count) {
995 if (count == 0) return "";
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700996
Daniel Rosenberg80919472016-06-30 19:25:31 -0700997 char next = (current_slot[0] - 'a' + 1)%count + 'a';
998 return std::string(1, next);
999}
1000
Aaron Wisnerdb511202018-06-26 15:38:35 -05001001static std::string get_other_slot(const std::string& current_slot) {
1002 return get_other_slot(current_slot, get_slot_count());
Daniel Rosenberg80919472016-06-30 19:25:31 -07001003}
1004
Aaron Wisnerdb511202018-06-26 15:38:35 -05001005static std::string get_other_slot(int count) {
1006 return get_other_slot(get_current_slot(), count);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001007}
1008
Aaron Wisnerdb511202018-06-26 15:38:35 -05001009static std::string get_other_slot() {
1010 return get_other_slot(get_current_slot(), get_slot_count());
Alex Lightbb9b8a52016-06-29 09:26:44 -07001011}
1012
Aaron Wisnerdb511202018-06-26 15:38:35 -05001013static std::string verify_slot(const std::string& slot_name, bool allow_all) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001014 std::string slot = slot_name;
Daniel Rosenberg80919472016-06-30 19:25:31 -07001015 if (slot == "all") {
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001016 if (allow_all) {
1017 return "all";
1018 } else {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001019 int count = get_slot_count();
Daniel Rosenberg80919472016-06-30 19:25:31 -07001020 if (count > 0) {
1021 return "a";
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001022 } else {
Elliott Hughes4089d342017-10-27 14:21:12 -07001023 die("No known slots");
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001024 }
1025 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001026 }
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001027
Aaron Wisnerdb511202018-06-26 15:38:35 -05001028 int count = get_slot_count();
Elliott Hughes4089d342017-10-27 14:21:12 -07001029 if (count == 0) die("Device does not support slots");
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001030
Daniel Rosenberg80919472016-06-30 19:25:31 -07001031 if (slot == "other") {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001032 std::string other = get_other_slot( count);
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -07001033 if (other == "") {
Elliott Hughes4089d342017-10-27 14:21:12 -07001034 die("No known slots");
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001035 }
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -07001036 return other;
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001037 }
1038
Daniel Rosenberg80919472016-06-30 19:25:31 -07001039 if (slot.size() == 1 && (slot[0]-'a' >= 0 && slot[0]-'a' < count)) return slot;
1040
1041 fprintf(stderr, "Slot %s does not exist. supported slots are:\n", slot.c_str());
1042 for (int i=0; i<count; i++) {
1043 fprintf(stderr, "%c\n", (char)(i + 'a'));
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001044 }
Daniel Rosenberg80919472016-06-30 19:25:31 -07001045
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001046 exit(1);
1047}
1048
Aaron Wisnerdb511202018-06-26 15:38:35 -05001049static std::string verify_slot(const std::string& slot) {
1050 return verify_slot(slot, true);
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001051}
1052
Aaron Wisnerdb511202018-06-26 15:38:35 -05001053static void do_for_partition(const std::string& part, const std::string& slot,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001054 const std::function<void(const std::string&)>& func, bool force_slot) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001055 std::string has_slot;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001056 std::string current_slot;
1057
Tom Cherry9027af02018-09-24 15:48:09 -07001058 if (fb->GetVar("has-slot:" + part, &has_slot) != fastboot::SUCCESS) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001059 /* If has-slot is not supported, the answer is no. */
1060 has_slot = "no";
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001061 }
Daniel Rosenberga7974792015-11-11 16:13:13 -08001062 if (has_slot == "yes") {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001063 if (slot == "") {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001064 current_slot = get_current_slot();
Daniel Rosenberg80919472016-06-30 19:25:31 -07001065 if (current_slot == "") {
Elliott Hughes4089d342017-10-27 14:21:12 -07001066 die("Failed to identify current slot");
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001067 }
Daniel Rosenberg80919472016-06-30 19:25:31 -07001068 func(part + "_" + current_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001069 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001070 func(part + '_' + slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001071 }
1072 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001073 if (force_slot && slot != "") {
David Pursell0b156632015-10-30 11:22:01 -07001074 fprintf(stderr, "Warning: %s does not support slots, and slot %s was requested.\n",
Daniel Rosenberg80919472016-06-30 19:25:31 -07001075 part.c_str(), slot.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001076 }
1077 func(part);
1078 }
1079}
1080
David Pursell0b156632015-10-30 11:22:01 -07001081/* This function will find the real partition name given a base name, and a slot. If slot is NULL or
1082 * empty, it will use the current slot. If slot is "all", it will return a list of all possible
1083 * partition names. If force_slot is true, it will fail if a slot is specified, and the given
1084 * partition does not support slots.
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001085 */
Aaron Wisnerdb511202018-06-26 15:38:35 -05001086static void do_for_partitions(const std::string& part, const std::string& slot,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001087 const std::function<void(const std::string&)>& func, bool force_slot) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001088 std::string has_slot;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001089
Daniel Rosenberg80919472016-06-30 19:25:31 -07001090 if (slot == "all") {
Tom Cherry9027af02018-09-24 15:48:09 -07001091 if (fb->GetVar("has-slot:" + part, &has_slot) != fastboot::SUCCESS) {
Elliott Hughes4089d342017-10-27 14:21:12 -07001092 die("Could not check if partition %s has slot %s", part.c_str(), slot.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001093 }
Daniel Rosenberga7974792015-11-11 16:13:13 -08001094 if (has_slot == "yes") {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001095 for (int i=0; i < get_slot_count(); i++) {
1096 do_for_partition(part, std::string(1, (char)(i + 'a')), func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001097 }
1098 } else {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001099 do_for_partition(part, "", func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001100 }
1101 } else {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001102 do_for_partition(part, slot, func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001103 }
1104}
1105
David Anderson629e51c2018-10-25 12:51:25 -07001106static bool is_logical(const std::string& partition) {
1107 std::string value;
1108 return fb->GetVar("is-logical:" + partition, &value) == fastboot::SUCCESS && value == "yes";
1109}
1110
David Anderson0c732342018-11-28 17:10:42 -08001111static bool is_retrofit_device() {
1112 std::string value;
1113 if (fb->GetVar("super-partition-name", &value) != fastboot::SUCCESS) {
1114 return false;
1115 }
1116 return android::base::StartsWith(value, "system_");
1117}
1118
Aaron Wisnerdb511202018-06-26 15:38:35 -05001119static void do_flash(const char* pname, const char* fname) {
Rom Lemarchand622810c2013-06-28 09:54:59 -07001120 struct fastboot_buffer buf;
1121
Aaron Wisnerdb511202018-06-26 15:38:35 -05001122 if (!load_buf(fname, &buf)) {
Elliott Hughes53ec4952016-05-11 12:39:27 -07001123 die("cannot load '%s': %s", fname, strerror(errno));
Rom Lemarchand622810c2013-06-28 09:54:59 -07001124 }
David Anderson629e51c2018-10-25 12:51:25 -07001125 if (is_logical(pname)) {
1126 fb->ResizePartition(pname, std::to_string(buf.image_size));
1127 }
Rom Lemarchand622810c2013-06-28 09:54:59 -07001128 flash_buf(pname, &buf);
Colin Crossf8387882012-05-24 17:18:41 -07001129}
1130
Daniel Rosenberg13454092016-06-27 19:43:11 -07001131// Sets slot_override as the active slot. If slot_override is blank,
1132// set current slot as active instead. This clears slot-unbootable.
Aaron Wisnerdb511202018-06-26 15:38:35 -05001133static void set_active(const std::string& slot_override) {
1134 if (!supports_AB()) return;
Elliott Hughes42b18a52018-04-10 15:32:21 -07001135
Daniel Rosenberg80919472016-06-30 19:25:31 -07001136 if (slot_override != "") {
Tom Cherry9027af02018-09-24 15:48:09 -07001137 fb->SetActive(slot_override);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001138 } else {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001139 std::string current_slot = get_current_slot();
Daniel Rosenberg80919472016-06-30 19:25:31 -07001140 if (current_slot != "") {
Tom Cherry9027af02018-09-24 15:48:09 -07001141 fb->SetActive(current_slot);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001142 }
1143 }
1144}
1145
David Anderson32e376f2018-08-16 13:43:11 -07001146static bool is_userspace_fastboot() {
1147 std::string value;
Tom Cherry9027af02018-09-24 15:48:09 -07001148 return fb->GetVar("is-userspace", &value) == fastboot::SUCCESS && value == "yes";
David Anderson32e376f2018-08-16 13:43:11 -07001149}
1150
David Anderson1d887432018-08-27 16:47:32 -07001151static void reboot_to_userspace_fastboot() {
Tom Cherry9027af02018-09-24 15:48:09 -07001152 fb->RebootTo("fastboot");
1153
1154 auto* old_transport = fb->set_transport(nullptr);
1155 delete old_transport;
David Anderson1d887432018-08-27 16:47:32 -07001156
1157 // Give the current connection time to close.
1158 std::this_thread::sleep_for(std::chrono::milliseconds(1000));
1159
Tom Cherry9027af02018-09-24 15:48:09 -07001160 fb->set_transport(open_device());
David Anderson1d887432018-08-27 16:47:32 -07001161}
1162
David Andersoncf444f32018-08-29 14:15:49 -07001163class ImageSource {
1164 public:
Tom Cherrydfd85df2018-09-20 14:45:05 -07001165 virtual bool ReadFile(const std::string& name, std::vector<char>* out) const = 0;
David Andersoncf444f32018-08-29 14:15:49 -07001166 virtual int OpenFile(const std::string& name) const = 0;
1167};
David Anderson32e376f2018-08-16 13:43:11 -07001168
David Andersoncf444f32018-08-29 14:15:49 -07001169class FlashAllTool {
1170 public:
1171 FlashAllTool(const ImageSource& source, const std::string& slot_override, bool skip_secondary, bool wipe);
David Anderson32e376f2018-08-16 13:43:11 -07001172
David Andersoncf444f32018-08-29 14:15:49 -07001173 void Flash();
David Anderson32e376f2018-08-16 13:43:11 -07001174
David Andersoncf444f32018-08-29 14:15:49 -07001175 private:
1176 void CheckRequirements();
1177 void DetermineSecondarySlot();
1178 void CollectImages();
1179 void FlashImages(const std::vector<std::pair<const Image*, std::string>>& images);
1180 void FlashImage(const Image& image, const std::string& slot, fastboot_buffer* buf);
1181 void UpdateSuperPartition();
David Anderson32e376f2018-08-16 13:43:11 -07001182
David Andersoncf444f32018-08-29 14:15:49 -07001183 const ImageSource& source_;
1184 std::string slot_override_;
1185 bool skip_secondary_;
1186 bool wipe_;
1187 std::string secondary_slot_;
1188 std::vector<std::pair<const Image*, std::string>> boot_images_;
1189 std::vector<std::pair<const Image*, std::string>> os_images_;
1190};
1191
1192FlashAllTool::FlashAllTool(const ImageSource& source, const std::string& slot_override, bool skip_secondary, bool wipe)
1193 : source_(source),
1194 slot_override_(slot_override),
1195 skip_secondary_(skip_secondary),
1196 wipe_(wipe)
1197{
David Anderson32e376f2018-08-16 13:43:11 -07001198}
1199
David Andersoncf444f32018-08-29 14:15:49 -07001200void FlashAllTool::Flash() {
Tom Cherry9027af02018-09-24 15:48:09 -07001201 DumpInfo();
David Andersoncf444f32018-08-29 14:15:49 -07001202 CheckRequirements();
David Anderson96a9fd42018-11-05 15:21:44 -08001203
1204 // Change the slot first, so we boot into the correct recovery image when
1205 // using fastbootd.
1206 if (slot_override_ == "all") {
1207 set_active("a");
1208 } else {
1209 set_active(slot_override_);
1210 }
1211
David Andersoncf444f32018-08-29 14:15:49 -07001212 DetermineSecondarySlot();
1213 CollectImages();
David Anderson32e376f2018-08-16 13:43:11 -07001214
David Anderson95d40932018-08-28 12:14:33 -07001215 // First flash boot partitions. We allow this to happen either in userspace
1216 // or in bootloader fastboot.
David Andersoncf444f32018-08-29 14:15:49 -07001217 FlashImages(boot_images_);
David Anderson95d40932018-08-28 12:14:33 -07001218
1219 // Sync the super partition. This will reboot to userspace fastboot if needed.
David Andersoncf444f32018-08-29 14:15:49 -07001220 UpdateSuperPartition();
David Anderson95d40932018-08-28 12:14:33 -07001221
1222 // Resize any logical partition to 0, so each partition is reset to 0
1223 // extents, and will achieve more optimal allocation.
David Andersoncf444f32018-08-29 14:15:49 -07001224 for (const auto& [image, slot] : os_images_) {
David Anderson32e376f2018-08-16 13:43:11 -07001225 auto resize_partition = [](const std::string& partition) -> void {
1226 if (is_logical(partition)) {
Tom Cherry9027af02018-09-24 15:48:09 -07001227 fb->ResizePartition(partition, "0");
David Anderson32e376f2018-08-16 13:43:11 -07001228 }
1229 };
David Anderson95d40932018-08-28 12:14:33 -07001230 do_for_partitions(image->part_name, slot, resize_partition, false);
David Anderson32e376f2018-08-16 13:43:11 -07001231 }
1232
David Anderson95d40932018-08-28 12:14:33 -07001233 // Flash OS images, resizing logical partitions as needed.
David Andersoncf444f32018-08-29 14:15:49 -07001234 FlashImages(os_images_);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001235}
1236
David Andersoncf444f32018-08-29 14:15:49 -07001237void FlashAllTool::CheckRequirements() {
Tom Cherrydfd85df2018-09-20 14:45:05 -07001238 std::vector<char> contents;
1239 if (!source_.ReadFile("android-info.txt", &contents)) {
David Andersoncf444f32018-08-29 14:15:49 -07001240 die("could not read android-info.txt");
1241 }
Tom Cherry4aa60b32018-09-05 15:11:44 -07001242 ::CheckRequirements({contents.data(), contents.size()});
David Andersoncf444f32018-08-29 14:15:49 -07001243}
1244
1245void FlashAllTool::DetermineSecondarySlot() {
1246 if (skip_secondary_) {
1247 return;
1248 }
David Anderson96a9fd42018-11-05 15:21:44 -08001249 if (slot_override_ != "" && slot_override_ != "all") {
David Andersoncf444f32018-08-29 14:15:49 -07001250 secondary_slot_ = get_other_slot(slot_override_);
1251 } else {
1252 secondary_slot_ = get_other_slot();
1253 }
1254 if (secondary_slot_ == "") {
1255 if (supports_AB()) {
1256 fprintf(stderr, "Warning: Could not determine slot for secondary images. Ignoring.\n");
1257 }
1258 skip_secondary_ = true;
1259 }
1260}
1261
1262void FlashAllTool::CollectImages() {
1263 for (size_t i = 0; i < arraysize(images); ++i) {
1264 std::string slot = slot_override_;
1265 if (images[i].IsSecondary()) {
1266 if (skip_secondary_) {
1267 continue;
1268 }
1269 slot = secondary_slot_;
1270 }
1271 if (images[i].type == ImageType::BootCritical) {
1272 boot_images_.emplace_back(&images[i], slot);
1273 } else if (images[i].type == ImageType::Normal) {
1274 os_images_.emplace_back(&images[i], slot);
1275 }
1276 }
1277}
1278
1279void FlashAllTool::FlashImages(const std::vector<std::pair<const Image*, std::string>>& images) {
1280 for (const auto& [image, slot] : images) {
1281 fastboot_buffer buf;
1282 int fd = source_.OpenFile(image->img_name);
1283 if (fd < 0 || !load_buf_fd(fd, &buf)) {
1284 if (image->optional_if_no_image) {
1285 continue;
1286 }
1287 die("could not load '%s': %s", image->img_name, strerror(errno));
1288 }
1289 FlashImage(*image, slot, &buf);
1290 }
1291}
1292
1293void FlashAllTool::FlashImage(const Image& image, const std::string& slot, fastboot_buffer* buf) {
1294 auto flash = [&, this](const std::string& partition_name) {
Tom Cherrydfd85df2018-09-20 14:45:05 -07001295 std::vector<char> signature_data;
1296 if (source_.ReadFile(image.sig_name, &signature_data)) {
Tom Cherry9027af02018-09-24 15:48:09 -07001297 fb->Download("signature", signature_data);
1298 fb->RawCommand("signature", "installing signature");
David Andersoncf444f32018-08-29 14:15:49 -07001299 }
1300
1301 if (is_logical(partition_name)) {
Tom Cherry9027af02018-09-24 15:48:09 -07001302 fb->ResizePartition(partition_name, std::to_string(buf->image_size));
David Andersoncf444f32018-08-29 14:15:49 -07001303 }
1304 flash_buf(partition_name.c_str(), buf);
1305 };
1306 do_for_partitions(image.part_name, slot, flash, false);
1307}
1308
1309void FlashAllTool::UpdateSuperPartition() {
David Andersoncf444f32018-08-29 14:15:49 -07001310 int fd = source_.OpenFile("super_empty.img");
1311 if (fd < 0) {
1312 return;
1313 }
1314 if (!is_userspace_fastboot()) {
1315 reboot_to_userspace_fastboot();
1316 }
David Anderson0444a8c2018-10-25 12:01:17 -07001317 if (!is_userspace_fastboot()) {
1318 die("Failed to boot into userspace; one or more components might be unbootable.");
1319 }
David Andersoncf444f32018-08-29 14:15:49 -07001320
David Anderson90fe0a42018-11-05 18:01:32 -08001321 std::string super_name;
1322 if (fb->GetVar("super-partition-name", &super_name) != fastboot::RetCode::SUCCESS) {
1323 super_name = "super";
1324 }
1325 fb->Download(super_name, fd, get_file_size(fd));
1326
1327 std::string command = "update-super:" + super_name;
David Andersoncf444f32018-08-29 14:15:49 -07001328 if (wipe_) {
1329 command += ":wipe";
1330 }
Tom Cherry9027af02018-09-24 15:48:09 -07001331 fb->RawCommand(command, "Updating super partition");
David Anderson0c732342018-11-28 17:10:42 -08001332
1333 // Retrofit devices have two super partitions, named super_a and super_b.
1334 // On these devices, secondary slots must be flashed as physical
1335 // partitions (otherwise they would not mount on first boot). To enforce
1336 // this, we delete any logical partitions for the "other" slot.
1337 if (is_retrofit_device()) {
1338 for (const auto& [image, slot] : os_images_) {
1339 std::string partition_name = image->part_name + "_"s + slot;
1340 if (image->IsSecondary() && is_logical(partition_name)) {
1341 fb->DeletePartition(partition_name);
1342 }
1343 }
1344 }
David Andersoncf444f32018-08-29 14:15:49 -07001345}
1346
1347class ZipImageSource final : public ImageSource {
1348 public:
1349 explicit ZipImageSource(ZipArchiveHandle zip) : zip_(zip) {}
Tom Cherrydfd85df2018-09-20 14:45:05 -07001350 bool ReadFile(const std::string& name, std::vector<char>* out) const override;
David Andersoncf444f32018-08-29 14:15:49 -07001351 int OpenFile(const std::string& name) const override;
1352
1353 private:
1354 ZipArchiveHandle zip_;
1355};
1356
Tom Cherrydfd85df2018-09-20 14:45:05 -07001357bool ZipImageSource::ReadFile(const std::string& name, std::vector<char>* out) const {
1358 return UnzipToMemory(zip_, name, out);
David Andersoncf444f32018-08-29 14:15:49 -07001359}
1360
1361int ZipImageSource::OpenFile(const std::string& name) const {
1362 return unzip_to_file(zip_, name.c_str());
1363}
1364
1365static void do_update(const char* filename, const std::string& slot_override, bool skip_secondary) {
David Andersoncf444f32018-08-29 14:15:49 -07001366 ZipArchiveHandle zip;
1367 int error = OpenArchive(filename, &zip);
1368 if (error != 0) {
1369 die("failed to open zip file '%s': %s", filename, ErrorCodeString(error));
1370 }
1371
1372 FlashAllTool tool(ZipImageSource(zip), slot_override, skip_secondary, false);
1373 tool.Flash();
1374
1375 CloseArchive(zip);
1376}
1377
1378class LocalImageSource final : public ImageSource {
1379 public:
Tom Cherrydfd85df2018-09-20 14:45:05 -07001380 bool ReadFile(const std::string& name, std::vector<char>* out) const override;
David Andersoncf444f32018-08-29 14:15:49 -07001381 int OpenFile(const std::string& name) const override;
1382};
1383
Tom Cherrydfd85df2018-09-20 14:45:05 -07001384bool LocalImageSource::ReadFile(const std::string& name, std::vector<char>* out) const {
David Andersoncf444f32018-08-29 14:15:49 -07001385 auto path = find_item_given_name(name);
1386 if (path.empty()) {
Tom Cherrydfd85df2018-09-20 14:45:05 -07001387 return false;
David Andersoncf444f32018-08-29 14:15:49 -07001388 }
Tom Cherrydfd85df2018-09-20 14:45:05 -07001389 return ReadFileToVector(path, out);
David Andersoncf444f32018-08-29 14:15:49 -07001390}
1391
1392int LocalImageSource::OpenFile(const std::string& name) const {
1393 auto path = find_item_given_name(name);
1394 return open(path.c_str(), O_RDONLY);
1395}
1396
1397static void do_flashall(const std::string& slot_override, bool skip_secondary, bool wipe) {
David Andersoncf444f32018-08-29 14:15:49 -07001398 FlashAllTool tool(LocalImageSource(), slot_override, skip_secondary, wipe);
1399 tool.Flash();
1400}
1401
Elliott Hughesd6365a72017-05-08 18:04:49 -07001402static std::string next_arg(std::vector<std::string>* args) {
1403 if (args->empty()) syntax_error("expected argument");
1404 std::string result = args->front();
1405 args->erase(args->begin());
1406 return result;
Patrick Tjin51e8b032015-09-01 08:15:23 -07001407}
1408
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001409static void do_oem_command(const std::string& cmd, std::vector<std::string>* args) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001410 if (args->empty()) syntax_error("empty oem command");
Tsu Chiang Chuangee520552011-02-25 18:38:53 -08001411
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001412 std::string command(cmd);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001413 while (!args->empty()) {
Elliott Hughes29d5d7d2017-05-11 15:05:13 -07001414 command += " " + next_arg(args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001415 }
Tom Cherry9027af02018-09-24 15:48:09 -07001416 fb->RawCommand(command, "");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001417}
1418
Connor O'Brience16a8a2017-02-06 14:39:31 -08001419static std::string fb_fix_numeric_var(std::string var) {
1420 // Some bootloaders (angler, for example), send spurious leading whitespace.
1421 var = android::base::Trim(var);
1422 // Some bootloaders (hammerhead, for example) use implicit hex.
1423 // This code used to use strtol with base 16.
1424 if (!android::base::StartsWith(var, "0x")) var = "0x" + var;
1425 return var;
1426}
1427
Aaron Wisnerdb511202018-06-26 15:38:35 -05001428static unsigned fb_get_flash_block_size(std::string name) {
Connor O'Brience16a8a2017-02-06 14:39:31 -08001429 std::string sizeString;
Tom Cherry9027af02018-09-24 15:48:09 -07001430 if (fb->GetVar(name, &sizeString) != fastboot::SUCCESS || sizeString.empty()) {
Elliott Hughes5620d222018-03-28 08:20:00 -07001431 // This device does not report flash block sizes, so return 0.
Connor O'Brience16a8a2017-02-06 14:39:31 -08001432 return 0;
1433 }
1434 sizeString = fb_fix_numeric_var(sizeString);
1435
1436 unsigned size;
1437 if (!android::base::ParseUint(sizeString, &size)) {
1438 fprintf(stderr, "Couldn't parse %s '%s'.\n", name.c_str(), sizeString.c_str());
1439 return 0;
1440 }
Connor O'Brien6ef5c242017-11-01 17:37:32 -07001441 if ((size & (size - 1)) != 0) {
1442 fprintf(stderr, "Invalid %s %u: must be a power of 2.\n", name.c_str(), size);
Connor O'Brience16a8a2017-02-06 14:39:31 -08001443 return 0;
1444 }
1445 return size;
1446}
1447
Aaron Wisnerdb511202018-06-26 15:38:35 -05001448static void fb_perform_format(
Elliott Hughes5620d222018-03-28 08:20:00 -07001449 const std::string& partition, int skip_if_not_supported,
Elliott Hughesd6365a72017-05-08 18:04:49 -07001450 const std::string& type_override, const std::string& size_override,
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001451 const std::string& initial_dir) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001452 std::string partition_type, partition_size;
1453
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001454 struct fastboot_buffer buf;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001455 const char* errMsg = nullptr;
1456 const struct fs_generator* gen = nullptr;
Jin Qian4a335822017-04-18 16:23:18 -07001457 TemporaryFile output;
1458 unique_fd fd;
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001459
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001460 unsigned int limit = INT_MAX;
1461 if (target_sparse_limit > 0 && target_sparse_limit < limit) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001462 limit = target_sparse_limit;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001463 }
1464 if (sparse_limit > 0 && sparse_limit < limit) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001465 limit = sparse_limit;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001466 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001467
Tom Cherry9027af02018-09-24 15:48:09 -07001468 if (fb->GetVar("partition-type:" + partition, &partition_type) != fastboot::SUCCESS) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001469 errMsg = "Can't determine partition type.\n";
1470 goto failed;
1471 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001472 if (!type_override.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001473 if (partition_type != type_override) {
1474 fprintf(stderr, "Warning: %s type is %s, but %s was requested for formatting.\n",
Elliott Hughes5620d222018-03-28 08:20:00 -07001475 partition.c_str(), partition_type.c_str(), type_override.c_str());
JP Abgrall7e859742014-05-06 15:14:15 -07001476 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001477 partition_type = type_override;
JP Abgrall7e859742014-05-06 15:14:15 -07001478 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001479
Tom Cherry9027af02018-09-24 15:48:09 -07001480 if (fb->GetVar("partition-size:" + partition, &partition_size) != fastboot::SUCCESS) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001481 errMsg = "Unable to get partition size\n";
1482 goto failed;
1483 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001484 if (!size_override.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001485 if (partition_size != size_override) {
1486 fprintf(stderr, "Warning: %s size is %s, but %s was requested for formatting.\n",
Elliott Hughes5620d222018-03-28 08:20:00 -07001487 partition.c_str(), partition_size.c_str(), size_override.c_str());
JP Abgrall7e859742014-05-06 15:14:15 -07001488 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001489 partition_size = size_override;
JP Abgrall7e859742014-05-06 15:14:15 -07001490 }
Connor O'Brience16a8a2017-02-06 14:39:31 -08001491 partition_size = fb_fix_numeric_var(partition_size);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001492
Elliott Hughes8ab9a322015-11-02 14:05:57 -08001493 gen = fs_get_generator(partition_type);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001494 if (!gen) {
1495 if (skip_if_not_supported) {
1496 fprintf(stderr, "Erase successful, but not automatically formatting.\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001497 fprintf(stderr, "File system type %s not supported.\n", partition_type.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001498 return;
1499 }
Mark Salyzyna30b6962018-11-20 11:04:15 -08001500 die("Formatting is not supported for file system with type '%s'.",
1501 partition_type.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001502 }
1503
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001504 int64_t size;
Elliott Hughesda46b392016-10-11 17:09:00 -07001505 if (!android::base::ParseInt(partition_size, &size)) {
Mark Salyzyna30b6962018-11-20 11:04:15 -08001506 die("Couldn't parse partition size '%s'.", partition_size.c_str());
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001507 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001508
Connor O'Brience16a8a2017-02-06 14:39:31 -08001509 unsigned eraseBlkSize, logicalBlkSize;
Aaron Wisnerdb511202018-06-26 15:38:35 -05001510 eraseBlkSize = fb_get_flash_block_size("erase-block-size");
1511 logicalBlkSize = fb_get_flash_block_size("logical-block-size");
Connor O'Brience16a8a2017-02-06 14:39:31 -08001512
Jin Qian4a335822017-04-18 16:23:18 -07001513 if (fs_generator_generate(gen, output.path, size, initial_dir,
1514 eraseBlkSize, logicalBlkSize)) {
Elliott Hughes5620d222018-03-28 08:20:00 -07001515 die("Cannot generate image for %s", partition.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001516 }
1517
Jin Qian4a335822017-04-18 16:23:18 -07001518 fd.reset(open(output.path, O_RDONLY));
1519 if (fd == -1) {
Mark Salyzyna30b6962018-11-20 11:04:15 -08001520 die("Cannot open generated image: %s", strerror(errno));
Jin Qian4a335822017-04-18 16:23:18 -07001521 }
Aaron Wisnerdb511202018-06-26 15:38:35 -05001522 if (!load_buf_fd(fd.release(), &buf)) {
Mark Salyzyna30b6962018-11-20 11:04:15 -08001523 die("Cannot read image: %s", strerror(errno));
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001524 }
1525 flash_buf(partition, &buf);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001526 return;
1527
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001528failed:
1529 if (skip_if_not_supported) {
1530 fprintf(stderr, "Erase successful, but not automatically formatting.\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001531 if (errMsg) fprintf(stderr, "%s", errMsg);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001532 }
Tom Cherry9027af02018-09-24 15:48:09 -07001533 fprintf(stderr, "FAILED (%s)\n", fb->Error().c_str());
Mark Salyzyna30b6962018-11-20 11:04:15 -08001534 if (!skip_if_not_supported) {
1535 die("Command failed");
1536 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001537}
1538
David Anderson89569642018-11-16 15:53:35 -08001539static bool should_flash_in_userspace(const std::string& partition_name) {
David Andersone0e693c2018-11-27 20:19:26 -08001540 if (!get_android_product_out()) {
1541 return false;
1542 }
David Anderson89569642018-11-16 15:53:35 -08001543 auto path = find_item_given_name("super_empty.img");
1544 if (path.empty()) {
1545 return false;
1546 }
1547 auto metadata = android::fs_mgr::ReadFromImageFile(path);
1548 if (!metadata) {
1549 return false;
1550 }
1551 for (const auto& partition : metadata->partitions) {
1552 auto candidate = android::fs_mgr::GetPartitionName(partition);
1553 if (partition.attributes & LP_PARTITION_ATTR_SLOT_SUFFIXED) {
1554 // On retrofit devices, we don't know if, or whether, the A or B
1555 // slot has been flashed for dynamic partitions. Instead we add
1556 // both names to the list as a conservative guess.
1557 if (candidate + "_a" == partition_name || candidate + "_b" == partition_name) {
1558 return true;
1559 }
1560 } else if (candidate == partition_name) {
1561 return true;
1562 }
1563 }
1564 return false;
1565}
1566
Aaron Wisnerdb511202018-06-26 15:38:35 -05001567int FastBootTool::Main(int argc, char* argv[]) {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001568 bool wants_wipe = false;
1569 bool wants_reboot = false;
1570 bool wants_reboot_bootloader = false;
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001571 bool wants_reboot_recovery = false;
1572 bool wants_reboot_fastboot = false;
Mitchell Wills31dce302016-09-26 10:26:21 -07001573 bool skip_reboot = false;
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001574 bool wants_set_active = false;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001575 bool skip_secondary = false;
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001576 bool set_fbe_marker = false;
David Anderson89569642018-11-16 15:53:35 -08001577 bool force_flash = false;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001578 int longindex;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001579 std::string slot_override;
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001580 std::string next_active;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001581
Elliott Hughes577e8b42018-04-05 16:12:47 -07001582 g_boot_img_hdr.kernel_addr = 0x00008000;
1583 g_boot_img_hdr.ramdisk_addr = 0x01000000;
1584 g_boot_img_hdr.second_addr = 0x00f00000;
1585 g_boot_img_hdr.tags_addr = 0x00000100;
1586 g_boot_img_hdr.page_size = 2048;
1587
JP Abgrall7b8970c2013-03-07 17:06:41 -08001588 const struct option longopts[] = {
Elliott Hughes577e8b42018-04-05 16:12:47 -07001589 {"base", required_argument, 0, 0},
1590 {"cmdline", required_argument, 0, 0},
1591 {"disable-verification", no_argument, 0, 0},
1592 {"disable-verity", no_argument, 0, 0},
David Anderson89569642018-11-16 15:53:35 -08001593 {"force", no_argument, 0, 0},
Elliott Hughes577e8b42018-04-05 16:12:47 -07001594 {"header-version", required_argument, 0, 0},
Elliott Hughes379646b2015-06-02 13:50:00 -07001595 {"help", no_argument, 0, 'h'},
Elliott Hughes577e8b42018-04-05 16:12:47 -07001596 {"kernel-offset", required_argument, 0, 0},
1597 {"os-patch-level", required_argument, 0, 0},
1598 {"os-version", required_argument, 0, 0},
1599 {"page-size", required_argument, 0, 0},
1600 {"ramdisk-offset", required_argument, 0, 0},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001601 {"set-active", optional_argument, 0, 'a'},
Mitchell Wills31dce302016-09-26 10:26:21 -07001602 {"skip-reboot", no_argument, 0, 0},
Elliott Hughes577e8b42018-04-05 16:12:47 -07001603 {"skip-secondary", no_argument, 0, 0},
1604 {"slot", required_argument, 0, 0},
1605 {"tags-offset", required_argument, 0, 0},
1606 {"unbuffered", no_argument, 0, 0},
Elliott Hughesf238d872018-03-29 14:46:29 -07001607 {"verbose", no_argument, 0, 'v'},
1608 {"version", no_argument, 0, 0},
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001609#if !defined(_WIN32)
1610 {"wipe-and-use-fbe", no_argument, 0, 0},
1611#endif
JP Abgrall7b8970c2013-03-07 17:06:41 -08001612 {0, 0, 0, 0}
1613 };
Colin Cross8879f982012-05-22 17:53:34 -07001614
1615 serial = getenv("ANDROID_SERIAL");
1616
Elliott Hughes577e8b42018-04-05 16:12:47 -07001617 int c;
Elliott Hughesf3192bd2018-04-10 15:38:08 -07001618 while ((c = getopt_long(argc, argv, "a::hls:S:vw", longopts, &longindex)) != -1) {
Elliott Hughes577e8b42018-04-05 16:12:47 -07001619 if (c == 0) {
1620 std::string name{longopts[longindex].name};
1621 if (name == "base") {
1622 g_base_addr = strtoul(optarg, 0, 16);
1623 } else if (name == "cmdline") {
1624 g_cmdline = optarg;
1625 } else if (name == "disable-verification") {
1626 g_disable_verification = true;
1627 } else if (name == "disable-verity") {
1628 g_disable_verity = true;
David Anderson89569642018-11-16 15:53:35 -08001629 } else if (name == "force") {
1630 force_flash = true;
Elliott Hughes577e8b42018-04-05 16:12:47 -07001631 } else if (name == "header-version") {
1632 g_boot_img_hdr.header_version = strtoul(optarg, nullptr, 0);
1633 } else if (name == "kernel-offset") {
1634 g_boot_img_hdr.kernel_addr = strtoul(optarg, 0, 16);
1635 } else if (name == "os-patch-level") {
Elliott Hughes6ebec932018-04-10 14:22:13 -07001636 ParseOsPatchLevel(&g_boot_img_hdr, optarg);
Elliott Hughes577e8b42018-04-05 16:12:47 -07001637 } else if (name == "os-version") {
Elliott Hughes6ebec932018-04-10 14:22:13 -07001638 ParseOsVersion(&g_boot_img_hdr, optarg);
Elliott Hughes577e8b42018-04-05 16:12:47 -07001639 } else if (name == "page-size") {
1640 g_boot_img_hdr.page_size = strtoul(optarg, nullptr, 0);
1641 if (g_boot_img_hdr.page_size == 0) die("invalid page size");
1642 } else if (name == "ramdisk-offset") {
1643 g_boot_img_hdr.ramdisk_addr = strtoul(optarg, 0, 16);
1644 } else if (name == "skip-reboot") {
1645 skip_reboot = true;
1646 } else if (name == "skip-secondary") {
1647 skip_secondary = true;
1648 } else if (name == "slot") {
1649 slot_override = optarg;
1650 } else if (name == "tags-offset") {
1651 g_boot_img_hdr.tags_addr = strtoul(optarg, 0, 16);
1652 } else if (name == "unbuffered") {
Elliott Hughesfc797672015-04-07 20:12:50 -07001653 setvbuf(stdout, nullptr, _IONBF, 0);
1654 setvbuf(stderr, nullptr, _IONBF, 0);
Elliott Hughes577e8b42018-04-05 16:12:47 -07001655 } else if (name == "version") {
Dan Willemsenab971b52018-08-29 14:58:02 -07001656 fprintf(stdout, "fastboot version %s-%s\n", PLATFORM_TOOLS_VERSION, android::build::GetBuildNumber().c_str());
Elliott Hughes1fd46df2017-03-30 15:08:28 -07001657 fprintf(stdout, "Installed as %s\n", android::base::GetExecutablePath().c_str());
Elliott Hughes379646b2015-06-02 13:50:00 -07001658 return 0;
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001659#if !defined(_WIN32)
Elliott Hughes577e8b42018-04-05 16:12:47 -07001660 } else if (name == "wipe-and-use-fbe") {
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001661 wants_wipe = true;
1662 set_fbe_marker = true;
1663#endif
1664 } else {
Elliott Hughes855cdf82018-04-02 14:24:03 -07001665 die("unknown option %s", longopts[longindex].name);
Florian Bäuerle27ded482014-11-24 11:29:34 +01001666 }
Elliott Hughes577e8b42018-04-05 16:12:47 -07001667 } else {
1668 switch (c) {
1669 case 'a':
1670 wants_set_active = true;
1671 if (optarg) next_active = optarg;
1672 break;
1673 case 'h':
1674 return show_help();
Elliott Hughes577e8b42018-04-05 16:12:47 -07001675 case 'l':
1676 g_long_listing = true;
1677 break;
1678 case 's':
1679 serial = optarg;
1680 break;
1681 case 'S':
Elliott Hughes542370d2018-04-19 19:49:44 -07001682 if (!android::base::ParseByteCount(optarg, &sparse_limit)) {
1683 die("invalid sparse limit %s", optarg);
1684 }
Elliott Hughes577e8b42018-04-05 16:12:47 -07001685 break;
1686 case 'v':
1687 set_verbose();
1688 break;
1689 case 'w':
1690 wants_wipe = true;
1691 break;
1692 case '?':
1693 return 1;
1694 default:
1695 abort();
1696 }
Colin Cross8879f982012-05-22 17:53:34 -07001697 }
1698 }
1699
1700 argc -= optind;
1701 argv += optind;
1702
Elliott Hughesd6365a72017-05-08 18:04:49 -07001703 if (argc == 0 && !wants_wipe && !wants_set_active) syntax_error("no command");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001704
Colin Cross8fb6e062012-07-24 16:36:41 -07001705 if (argc > 0 && !strcmp(*argv, "devices")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001706 list_devices();
Tsu Chiang Chuangee520552011-02-25 18:38:53 -08001707 return 0;
1708 }
1709
Colin Crossc7b75dc2012-08-29 18:17:06 -07001710 if (argc > 0 && !strcmp(*argv, "help")) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001711 return show_help();
Colin Crossc7b75dc2012-08-29 18:17:06 -07001712 }
1713
David Pursell0b156632015-10-30 11:22:01 -07001714 Transport* transport = open_device();
David Pursell2ec418a2016-01-20 08:32:08 -08001715 if (transport == nullptr) {
1716 return 1;
1717 }
Tom Cherry9027af02018-09-24 15:48:09 -07001718 fastboot::DriverCallbacks driver_callbacks = {
1719 .prolog = Status,
1720 .epilog = Epilog,
1721 .info = InfoMessage,
1722 };
1723 fastboot::FastBootDriver fastboot_driver(transport, driver_callbacks, false);
1724 fb = &fastboot_driver;
David Pursell2ec418a2016-01-20 08:32:08 -08001725
Elliott Hughes5620d222018-03-28 08:20:00 -07001726 const double start = now();
1727
Aaron Wisnerdb511202018-06-26 15:38:35 -05001728 if (slot_override != "") slot_override = verify_slot(slot_override);
1729 if (next_active != "") next_active = verify_slot(next_active, false);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001730
1731 if (wants_set_active) {
1732 if (next_active == "") {
1733 if (slot_override == "") {
Daniel Rosenberg13454092016-06-27 19:43:11 -07001734 std::string current_slot;
Tom Cherry9027af02018-09-24 15:48:09 -07001735 if (fb->GetVar("current-slot", &current_slot) == fastboot::SUCCESS) {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001736 next_active = verify_slot(current_slot, false);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001737 } else {
1738 wants_set_active = false;
1739 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001740 } else {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001741 next_active = verify_slot(slot_override, false);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001742 }
1743 }
1744 }
Elliott Hughes31dbed72009-10-07 15:38:53 -07001745
Elliott Hughesd6365a72017-05-08 18:04:49 -07001746 std::vector<std::string> args(argv, argv + argc);
1747 while (!args.empty()) {
1748 std::string command = next_arg(&args);
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001749
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001750 if (command == FB_CMD_GETVAR) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001751 std::string variable = next_arg(&args);
Tom Cherry9027af02018-09-24 15:48:09 -07001752 DisplayVarOrError(variable, variable);
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001753 } else if (command == FB_CMD_ERASE) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001754 std::string partition = next_arg(&args);
1755 auto erase = [&](const std::string& partition) {
David Pursell0b156632015-10-30 11:22:01 -07001756 std::string partition_type;
Tom Cherry9027af02018-09-24 15:48:09 -07001757 if (fb->GetVar("partition-type:" + partition, &partition_type) == fastboot::SUCCESS &&
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001758 fs_get_generator(partition_type) != nullptr) {
1759 fprintf(stderr, "******** Did you mean to fastboot format this %s partition?\n",
1760 partition_type.c_str());
1761 }
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001762
Tom Cherry9027af02018-09-24 15:48:09 -07001763 fb->Erase(partition);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001764 };
Aaron Wisnerdb511202018-06-26 15:38:35 -05001765 do_for_partitions(partition, slot_override, erase, true);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001766 } else if (android::base::StartsWith(command, "format")) {
1767 // Parsing for: "format[:[type][:[size]]]"
1768 // Some valid things:
1769 // - select only the size, and leave default fs type:
1770 // format::0x4000000 userdata
1771 // - default fs type and size:
1772 // format userdata
1773 // format:: userdata
1774 std::vector<std::string> pieces = android::base::Split(command, ":");
1775 std::string type_override;
1776 if (pieces.size() > 1) type_override = pieces[1].c_str();
1777 std::string size_override;
1778 if (pieces.size() > 2) size_override = pieces[2].c_str();
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001779
Elliott Hughesd6365a72017-05-08 18:04:49 -07001780 std::string partition = next_arg(&args);
1781
1782 auto format = [&](const std::string& partition) {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001783 fb_perform_format(partition, 0, type_override, size_override, "");
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001784 };
Aaron Wisnerdb511202018-06-26 15:38:35 -05001785 do_for_partitions(partition.c_str(), slot_override, format, true);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001786 } else if (command == "signature") {
1787 std::string filename = next_arg(&args);
Tom Cherrydfd85df2018-09-20 14:45:05 -07001788 std::vector<char> data;
1789 if (!ReadFileToVector(filename, &data)) {
1790 die("could not load '%s': %s", filename.c_str(), strerror(errno));
1791 }
1792 if (data.size() != 256) die("signature must be 256 bytes (got %zu)", data.size());
Tom Cherry9027af02018-09-24 15:48:09 -07001793 fb->Download("signature", data);
1794 fb->RawCommand("signature", "installing signature");
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001795 } else if (command == FB_CMD_REBOOT) {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001796 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001797
1798 if (args.size() == 1) {
1799 std::string what = next_arg(&args);
1800 if (what == "bootloader") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001801 wants_reboot = false;
1802 wants_reboot_bootloader = true;
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001803 } else if (what == "recovery") {
1804 wants_reboot = false;
1805 wants_reboot_recovery = true;
1806 } else if (what == "fastboot") {
1807 wants_reboot = false;
1808 wants_reboot_fastboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001809 } else {
1810 syntax_error("unknown reboot target %s", what.c_str());
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001811 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001812
Elliott Hughesca85df02015-02-25 10:02:00 -08001813 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001814 if (!args.empty()) syntax_error("junk after reboot command");
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001815 } else if (command == FB_CMD_REBOOT_BOOTLOADER) {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001816 wants_reboot_bootloader = true;
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001817 } else if (command == FB_CMD_REBOOT_RECOVERY) {
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001818 wants_reboot_recovery = true;
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001819 } else if (command == FB_CMD_REBOOT_FASTBOOT) {
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001820 wants_reboot_fastboot = true;
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001821 } else if (command == FB_CMD_CONTINUE) {
Tom Cherry9027af02018-09-24 15:48:09 -07001822 fb->Continue();
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001823 } else if (command == FB_CMD_BOOT) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001824 std::string kernel = next_arg(&args);
1825 std::string ramdisk;
1826 if (!args.empty()) ramdisk = next_arg(&args);
1827 std::string second_stage;
1828 if (!args.empty()) second_stage = next_arg(&args);
1829
Tom Cherrydfd85df2018-09-20 14:45:05 -07001830 auto data = LoadBootableImage(kernel, ramdisk, second_stage);
Tom Cherry9027af02018-09-24 15:48:09 -07001831 fb->Download("boot.img", data);
1832 fb->Boot();
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001833 } else if (command == FB_CMD_FLASH) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001834 std::string pname = next_arg(&args);
1835
Elliott Hughes2810d002016-04-25 14:31:18 -07001836 std::string fname;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001837 if (!args.empty()) {
1838 fname = next_arg(&args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001839 } else {
Elliott Hughes45964a82017-05-03 22:43:23 -07001840 fname = find_item(pname);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001841 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001842 if (fname.empty()) die("cannot determine image filename for '%s'", pname.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001843
1844 auto flash = [&](const std::string &partition) {
David Anderson89569642018-11-16 15:53:35 -08001845 if (should_flash_in_userspace(partition) && !is_userspace_fastboot() &&
1846 !force_flash) {
1847 die("The partition you are trying to flash is dynamic, and "
1848 "should be flashed via fastbootd. Please run:\n"
1849 "\n"
1850 " fastboot reboot fastboot\n"
1851 "\n"
1852 "And try again. If you are intentionally trying to "
1853 "overwrite a fixed partition, use --force.");
1854 }
Aaron Wisnerdb511202018-06-26 15:38:35 -05001855 do_flash(partition.c_str(), fname.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001856 };
Aaron Wisnerdb511202018-06-26 15:38:35 -05001857 do_for_partitions(pname.c_str(), slot_override, flash, true);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001858 } else if (command == "flash:raw") {
1859 std::string partition = next_arg(&args);
1860 std::string kernel = next_arg(&args);
1861 std::string ramdisk;
1862 if (!args.empty()) ramdisk = next_arg(&args);
1863 std::string second_stage;
1864 if (!args.empty()) second_stage = next_arg(&args);
1865
Tom Cherrydfd85df2018-09-20 14:45:05 -07001866 auto data = LoadBootableImage(kernel, ramdisk, second_stage);
1867 auto flashraw = [&data](const std::string& partition) {
Tom Cherry9027af02018-09-24 15:48:09 -07001868 fb->FlashPartition(partition, data);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001869 };
Aaron Wisnerdb511202018-06-26 15:38:35 -05001870 do_for_partitions(partition, slot_override, flashraw, true);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001871 } else if (command == "flashall") {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001872 if (slot_override == "all") {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001873 fprintf(stderr, "Warning: slot set to 'all'. Secondary slots will not be flashed.\n");
David Anderson32e376f2018-08-16 13:43:11 -07001874 do_flashall(slot_override, true, wants_wipe);
Alex Lightbb9b8a52016-06-29 09:26:44 -07001875 } else {
David Anderson32e376f2018-08-16 13:43:11 -07001876 do_flashall(slot_override, skip_secondary, wants_wipe);
Alex Lightbb9b8a52016-06-29 09:26:44 -07001877 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001878 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001879 } else if (command == "update") {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001880 bool slot_all = (slot_override == "all");
1881 if (slot_all) {
1882 fprintf(stderr, "Warning: slot set to 'all'. Secondary slots will not be flashed.\n");
1883 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001884 std::string filename = "update.zip";
1885 if (!args.empty()) {
1886 filename = next_arg(&args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001887 }
Aaron Wisnerdb511202018-06-26 15:38:35 -05001888 do_update(filename.c_str(), slot_override, skip_secondary || slot_all);
Mitchell Wills31dce302016-09-26 10:26:21 -07001889 wants_reboot = true;
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001890 } else if (command == FB_CMD_SET_ACTIVE) {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001891 std::string slot = verify_slot(next_arg(&args), false);
Tom Cherry9027af02018-09-24 15:48:09 -07001892 fb->SetActive(slot);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001893 } else if (command == "stage") {
1894 std::string filename = next_arg(&args);
1895
Jocelyn Bohr98cc2832017-01-26 19:20:53 -08001896 struct fastboot_buffer buf;
Aaron Wisnerdb511202018-06-26 15:38:35 -05001897 if (!load_buf(filename.c_str(), &buf) || buf.type != FB_BUFFER_FD) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001898 die("cannot load '%s'", filename.c_str());
Jocelyn Bohr98cc2832017-01-26 19:20:53 -08001899 }
Tom Cherry9027af02018-09-24 15:48:09 -07001900 fb->Download(filename, buf.fd, buf.sz);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001901 } else if (command == "get_staged") {
1902 std::string filename = next_arg(&args);
Tom Cherry9027af02018-09-24 15:48:09 -07001903 fb->Upload(filename);
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001904 } else if (command == FB_CMD_OEM) {
1905 do_oem_command(FB_CMD_OEM, &args);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001906 } else if (command == "flashing") {
1907 if (args.empty()) {
1908 syntax_error("missing 'flashing' command");
1909 } else if (args.size() == 1 && (args[0] == "unlock" || args[0] == "lock" ||
1910 args[0] == "unlock_critical" ||
1911 args[0] == "lock_critical" ||
Elliott Hughes2e9b7792018-04-04 13:36:44 -07001912 args[0] == "get_unlock_ability")) {
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001913 do_oem_command("flashing", &args);
Badhri Jagan Sridharanbf110952015-05-15 16:43:47 -07001914 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001915 syntax_error("unknown 'flashing' command %s", args[0].c_str());
Badhri Jagan Sridharanbf110952015-05-15 16:43:47 -07001916 }
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001917 } else if (command == FB_CMD_CREATE_PARTITION) {
David Anderson0d4277d2018-07-31 13:27:37 -07001918 std::string partition = next_arg(&args);
1919 std::string size = next_arg(&args);
Tom Cherry9027af02018-09-24 15:48:09 -07001920 fb->CreatePartition(partition, size);
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001921 } else if (command == FB_CMD_DELETE_PARTITION) {
David Anderson0d4277d2018-07-31 13:27:37 -07001922 std::string partition = next_arg(&args);
Tom Cherry9027af02018-09-24 15:48:09 -07001923 fb->DeletePartition(partition);
Mark Salyzyn8e7e9cb2018-08-29 10:44:33 -07001924 } else if (command == FB_CMD_RESIZE_PARTITION) {
David Anderson0d4277d2018-07-31 13:27:37 -07001925 std::string partition = next_arg(&args);
1926 std::string size = next_arg(&args);
Tom Cherry9027af02018-09-24 15:48:09 -07001927 fb->ResizePartition(partition, size);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001928 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001929 syntax_error("unknown command %s", command.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001930 }
1931 }
1932
1933 if (wants_wipe) {
Paul Crowley4d170062018-04-24 17:06:30 -07001934 std::vector<std::string> partitions = { "userdata", "cache", "metadata" };
1935 for (const auto& partition : partitions) {
1936 std::string partition_type;
Tom Cherry9027af02018-09-24 15:48:09 -07001937 if (fb->GetVar("partition-type:" + partition, &partition_type) != fastboot::SUCCESS) {
1938 continue;
1939 }
Paul Crowley4d170062018-04-24 17:06:30 -07001940 if (partition_type.empty()) continue;
Tom Cherry9027af02018-09-24 15:48:09 -07001941 fb->Erase(partition);
Paul Crowley4d170062018-04-24 17:06:30 -07001942 if (partition == "userdata" && set_fbe_marker) {
1943 fprintf(stderr, "setting FBE marker on initial userdata...\n");
1944 std::string initial_userdata_dir = create_fbemarker_tmpdir();
Aaron Wisnerdb511202018-06-26 15:38:35 -05001945 fb_perform_format(partition, 1, "", "", initial_userdata_dir);
Paul Crowley4d170062018-04-24 17:06:30 -07001946 delete_fbemarker_tmpdir(initial_userdata_dir);
1947 } else {
Aaron Wisnerdb511202018-06-26 15:38:35 -05001948 fb_perform_format(partition, 1, "", "", "");
Paul Crowley4d170062018-04-24 17:06:30 -07001949 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001950 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001951 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001952 if (wants_set_active) {
Tom Cherry9027af02018-09-24 15:48:09 -07001953 fb->SetActive(next_active);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001954 }
Mitchell Wills31dce302016-09-26 10:26:21 -07001955 if (wants_reboot && !skip_reboot) {
Tom Cherry9027af02018-09-24 15:48:09 -07001956 fb->Reboot();
1957 fb->WaitForDisconnect();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001958 } else if (wants_reboot_bootloader) {
Tom Cherry9027af02018-09-24 15:48:09 -07001959 fb->RebootTo("bootloader");
1960 fb->WaitForDisconnect();
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001961 } else if (wants_reboot_recovery) {
Tom Cherry9027af02018-09-24 15:48:09 -07001962 fb->RebootTo("recovery");
1963 fb->WaitForDisconnect();
Hridya Valsarajudea91b42018-07-17 11:14:01 -07001964 } else if (wants_reboot_fastboot) {
Tom Cherry9027af02018-09-24 15:48:09 -07001965 fb->RebootTo("fastboot");
1966 fb->WaitForDisconnect();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001967 }
1968
Elliott Hughes5620d222018-03-28 08:20:00 -07001969 fprintf(stderr, "Finished. Total time: %.3fs\n", (now() - start));
David Anderson03de6452018-09-04 14:32:54 -07001970
Tom Cherry9027af02018-09-24 15:48:09 -07001971 auto* old_transport = fb->set_transport(nullptr);
1972 delete old_transport;
1973
Tom Cherry11f12092018-08-29 21:36:28 -07001974 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001975}
Elliott Hughes6ebec932018-04-10 14:22:13 -07001976
Aaron Wisnerdb511202018-06-26 15:38:35 -05001977void FastBootTool::ParseOsPatchLevel(boot_img_hdr_v1* hdr, const char* arg) {
Elliott Hughes6ebec932018-04-10 14:22:13 -07001978 unsigned year, month, day;
1979 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) {
1980 syntax_error("OS patch level should be YYYY-MM-DD: %s", arg);
1981 }
1982 if (year < 2000 || year >= 2128) syntax_error("year out of range: %d", year);
1983 if (month < 1 || month > 12) syntax_error("month out of range: %d", month);
1984 hdr->SetOsPatchLevel(year, month);
1985}
1986
Aaron Wisnerdb511202018-06-26 15:38:35 -05001987void FastBootTool::ParseOsVersion(boot_img_hdr_v1* hdr, const char* arg) {
Elliott Hughes6ebec932018-04-10 14:22:13 -07001988 unsigned major = 0, minor = 0, patch = 0;
1989 std::vector<std::string> versions = android::base::Split(arg, ".");
1990 if (versions.size() < 1 || versions.size() > 3 ||
1991 (versions.size() >= 1 && !android::base::ParseUint(versions[0], &major)) ||
1992 (versions.size() >= 2 && !android::base::ParseUint(versions[1], &minor)) ||
1993 (versions.size() == 3 && !android::base::ParseUint(versions[2], &patch)) ||
1994 (major > 0x7f || minor > 0x7f || patch > 0x7f)) {
1995 syntax_error("bad OS version: %s", arg);
1996 }
1997 hdr->SetOsVersion(major, minor, patch);
1998}