blob: 536d64e4c05b12b120d0b777cdfd1cf5513e4fe1 [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
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070029#include <ctype.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030#include <errno.h>
31#include <fcntl.h>
Colin Cross8879f982012-05-22 17:53:34 -070032#include <getopt.h>
Ying Wangcf86e2f2014-05-15 20:06:40 -070033#include <inttypes.h>
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070034#include <limits.h>
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070035#include <stdint.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <sys/stat.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080040#include <sys/time.h>
Colin Crossf8387882012-05-24 17:18:41 -070041#include <sys/types.h>
Mark Salyzyn5957c1f2014-04-30 14:05:28 -070042#include <unistd.h>
David Pursell2ec418a2016-01-20 08:32:08 -080043
Elliott Hughes290a2282016-11-14 17:08:47 -080044#include <chrono>
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -070045#include <functional>
Elliott Hughes290a2282016-11-14 17:08:47 -080046#include <thread>
Josh Gao9da9ac52016-01-19 14:50:18 -080047#include <utility>
48#include <vector>
Colin Crossf8387882012-05-24 17:18:41 -070049
Elliott Hughes82ff3152016-08-31 15:07:18 -070050#include <android-base/file.h>
Elliott Hughes749ae2d2016-06-28 14:48:45 -070051#include <android-base/macros.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080052#include <android-base/parseint.h>
David Pursell2ec418a2016-01-20 08:32:08 -080053#include <android-base/parsenetaddress.h>
Elliott Hughes2810d002016-04-25 14:31:18 -070054#include <android-base/stringprintf.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080055#include <android-base/strings.h>
Jin Qian4a335822017-04-18 16:23:18 -070056#include <android-base/test_utils.h>
Chris Fries0ea946c2017-04-12 10:25:57 -050057#include <android-base/unique_fd.h>
Colin Crossf8387882012-05-24 17:18:41 -070058#include <sparse/sparse.h>
Elliott Hughesd30ad8a2015-03-18 23:12:44 -070059#include <ziparchive/zip_archive.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060
Elliott Hughes253c18d2015-03-18 22:47:09 -070061#include "bootimg_utils.h"
Elliott Hughes1b708d32015-12-11 19:07:01 -080062#include "diagnose_usb.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063#include "fastboot.h"
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -070064#include "fs.h"
David Pursell2ec418a2016-01-20 08:32:08 -080065#include "tcp.h"
David Pursell0b156632015-10-30 11:22:01 -070066#include "transport.h"
David Pursell4601c972016-02-05 15:35:09 -080067#include "udp.h"
David Pursell0b156632015-10-30 11:22:01 -070068#include "usb.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080069
Chris Fries0ea946c2017-04-12 10:25:57 -050070using android::base::unique_fd;
71
Colin Crossf8387882012-05-24 17:18:41 -070072#ifndef O_BINARY
73#define O_BINARY 0
74#endif
75
Wink Savilleb98762f2011-04-04 17:54:59 -070076char cur_product[FB_RESPONSE_SZ + 1];
77
David Pursell2ec418a2016-01-20 08:32:08 -080078static const char* serial = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -080079static const char* cmdline = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080080static unsigned short vendor_id = 0;
Scott Anderson13081c62012-04-06 12:39:30 -070081static int long_listing = 0;
Chris Fries6a999712017-04-04 09:52:47 -050082// Don't resparse files in too-big chunks.
83// libsparse will support INT_MAX, but this results in large allocations, so
84// let's keep it at 1GB to avoid memory pressure on the host.
85static constexpr int64_t RESPARSE_LIMIT = 1 * 1024 * 1024 * 1024;
Colin Crossf8387882012-05-24 17:18:41 -070086static int64_t sparse_limit = -1;
87static int64_t target_sparse_limit = -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080088
Elliott Hughesfc797672015-04-07 20:12:50 -070089static unsigned page_size = 2048;
90static unsigned base_addr = 0x10000000;
91static unsigned kernel_offset = 0x00008000;
92static unsigned ramdisk_offset = 0x01000000;
93static unsigned second_offset = 0x00f00000;
94static unsigned tags_offset = 0x00000100;
JP Abgrall7b8970c2013-03-07 17:06:41 -080095
David Zeuthenb6ea4352017-08-07 14:29:26 -040096static bool g_disable_verity = false;
97static bool g_disable_verification = false;
98
Paul Crowley8f7f56e2015-11-27 09:29:37 +000099static const std::string convert_fbe_marker_filename("convert_fbe");
100
Rom Lemarchand622810c2013-06-28 09:54:59 -0700101enum fb_buffer_type {
Chris Fries0ea946c2017-04-12 10:25:57 -0500102 FB_BUFFER_FD,
Rom Lemarchand622810c2013-06-28 09:54:59 -0700103 FB_BUFFER_SPARSE,
104};
105
106struct fastboot_buffer {
107 enum fb_buffer_type type;
Elliott Hughesfc797672015-04-07 20:12:50 -0700108 void* data;
109 int64_t sz;
Chris Fries0ea946c2017-04-12 10:25:57 -0500110 int fd;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700111};
112
113static struct {
Elliott Hughes45964a82017-05-03 22:43:23 -0700114 const char* nickname;
115 const char* img_name;
116 const char* sig_name;
117 const char* part_name;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700118 bool is_optional;
Alex Lightbb9b8a52016-06-29 09:26:44 -0700119 bool is_secondary;
Daniel Rosenbergf530c932014-05-28 14:10:01 -0700120} images[] = {
Elliott Hughes45964a82017-05-03 22:43:23 -0700121 // clang-format off
122 { "boot", "boot.img", "boot.sig", "boot", false, false },
123 { nullptr, "boot_other.img", "boot.sig", "boot", true, true },
124 { "dtbo", "dtbo.img", "dtbo.sig", "dtbo", true, false },
Dmitry Shmidtde8c08c2017-05-15 10:24:04 -0700125 { "dts", "dt.img", "dt.sig", "dts", true, false },
Elliott Hughes45964a82017-05-03 22:43:23 -0700126 { "recovery", "recovery.img", "recovery.sig", "recovery", true, false },
127 { "system", "system.img", "system.sig", "system", false, false },
128 { nullptr, "system_other.img", "system.sig", "system", true, true },
129 { "vbmeta", "vbmeta.img", "vbmeta.sig", "vbmeta", true, false },
130 { "vendor", "vendor.img", "vendor.sig", "vendor", true, false },
131 { nullptr, "vendor_other.img", "vendor.sig", "vendor", true, true },
132 // clang-format on
Rom Lemarchand622810c2013-06-28 09:54:59 -0700133};
Brian Swetland2a63bb72009-04-28 16:05:07 -0700134
Elliott Hughes45964a82017-05-03 22:43:23 -0700135static std::string find_item_given_name(const char* img_name) {
136 char* dir = getenv("ANDROID_PRODUCT_OUT");
Alex Lightbb9b8a52016-06-29 09:26:44 -0700137 if (dir == nullptr || dir[0] == '\0') {
Elliott Hughes45964a82017-05-03 22:43:23 -0700138 die("ANDROID_PRODUCT_OUT not set");
Alex Lightbb9b8a52016-06-29 09:26:44 -0700139 }
Alex Lightbb9b8a52016-06-29 09:26:44 -0700140 return android::base::StringPrintf("%s/%s", dir, img_name);
141}
142
Elliott Hughes29d5d7d2017-05-11 15:05:13 -0700143static std::string find_item(const std::string& item) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700144 for (size_t i = 0; i < arraysize(images); ++i) {
Elliott Hughesd6365a72017-05-08 18:04:49 -0700145 if (images[i].nickname && item == images[i].nickname) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700146 return find_item_given_name(images[i].img_name);
147 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800148 }
149
Elliott Hughesd6365a72017-05-08 18:04:49 -0700150 if (item == "userdata") return find_item_given_name("userdata.img");
151 if (item == "cache") return find_item_given_name("cache.img");
Elliott Hughes45964a82017-05-03 22:43:23 -0700152
Elliott Hughesd6365a72017-05-08 18:04:49 -0700153 fprintf(stderr, "unknown partition '%s'\n", item.c_str());
Elliott Hughes45964a82017-05-03 22:43:23 -0700154 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800155}
156
Elliott Hughesfc797672015-04-07 20:12:50 -0700157static int64_t get_file_size(int fd) {
158 struct stat sb;
159 return fstat(fd, &sb) == -1 ? -1 : sb.st_size;
Colin Crossf8387882012-05-24 17:18:41 -0700160}
161
Elliott Hughesfc797672015-04-07 20:12:50 -0700162static void* load_fd(int fd, int64_t* sz) {
Matt Gumbel64ba2582011-12-08 11:59:38 -0800163 int errno_tmp;
Elliott Hughesfc797672015-04-07 20:12:50 -0700164 char* data = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800165
Elliott Hughesfc797672015-04-07 20:12:50 -0700166 *sz = get_file_size(fd);
167 if (*sz < 0) {
Rom Lemarchand622810c2013-06-28 09:54:59 -0700168 goto oops;
169 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800170
Elliott Hughesfc797672015-04-07 20:12:50 -0700171 data = (char*) malloc(*sz);
172 if (data == nullptr) goto oops;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800173
Elliott Hughesfc797672015-04-07 20:12:50 -0700174 if(read(fd, data, *sz) != *sz) goto oops;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800175 close(fd);
176
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800177 return data;
178
179oops:
Matt Gumbel64ba2582011-12-08 11:59:38 -0800180 errno_tmp = errno;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800181 close(fd);
182 if(data != 0) free(data);
Matt Gumbel64ba2582011-12-08 11:59:38 -0800183 errno = errno_tmp;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800184 return 0;
185}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800186
Elliott Hughes2810d002016-04-25 14:31:18 -0700187static void* load_file(const std::string& path, int64_t* sz) {
188 int fd = open(path.c_str(), O_RDONLY | O_BINARY);
Elliott Hughesfc797672015-04-07 20:12:50 -0700189 if (fd == -1) return nullptr;
190 return load_fd(fd, sz);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700191}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800192
Elliott Hughesfc797672015-04-07 20:12:50 -0700193static int match_fastboot_with_serial(usb_ifc_info* info, const char* local_serial) {
Elliott Hughese1746fd2015-08-10 15:30:54 -0700194 // Require a matching vendor id if the user specified one with -i.
Elliott Hughesb46964f2015-08-19 17:49:45 -0700195 if (vendor_id != 0 && info->dev_vendor != vendor_id) {
Elliott Hughese1746fd2015-08-10 15:30:54 -0700196 return -1;
197 }
198
199 if (info->ifc_class != 0xff || info->ifc_subclass != 0x42 || info->ifc_protocol != 0x03) {
200 return -1;
201 }
202
Scott Anderson13081c62012-04-06 12:39:30 -0700203 // require matching serial number or device path if requested
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800204 // at the command line with the -s option.
JP Abgralla032ded2012-06-06 11:53:33 -0700205 if (local_serial && (strcmp(local_serial, info->serial_number) != 0 &&
206 strcmp(local_serial, info->device_path) != 0)) return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800207 return 0;
208}
209
Elliott Hughesfc797672015-04-07 20:12:50 -0700210static int match_fastboot(usb_ifc_info* info) {
JP Abgrall7b8970c2013-03-07 17:06:41 -0800211 return match_fastboot_with_serial(info, serial);
212}
213
Elliott Hughesfc797672015-04-07 20:12:50 -0700214static int list_devices_callback(usb_ifc_info* info) {
215 if (match_fastboot_with_serial(info, nullptr) == 0) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800216 std::string serial = info->serial_number;
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700217 if (!info->writable) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800218 serial = UsbNoPermissionsShortHelpText();
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700219 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800220 if (!serial[0]) {
221 serial = "????????????";
222 }
Scott Anderson866b1bd2012-06-04 20:29:11 -0700223 // output compatible with "adb devices"
Scott Anderson13081c62012-04-06 12:39:30 -0700224 if (!long_listing) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800225 printf("%s\tfastboot", serial.c_str());
Scott Anderson13081c62012-04-06 12:39:30 -0700226 } else {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800227 printf("%-22s fastboot", serial.c_str());
228 if (strlen(info->device_path) > 0) printf(" %s", info->device_path);
Scott Anderson13081c62012-04-06 12:39:30 -0700229 }
Elliott Hughes1b708d32015-12-11 19:07:01 -0800230 putchar('\n');
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800231 }
232
233 return -1;
234}
235
David Pursell2ec418a2016-01-20 08:32:08 -0800236// Opens a new Transport connected to a device. If |serial| is non-null it will be used to identify
237// a specific device, otherwise the first USB device found will be used.
238//
239// If |serial| is non-null but invalid, this prints an error message to stderr and returns nullptr.
240// Otherwise it blocks until the target is available.
241//
242// The returned Transport is a singleton, so multiple calls to this function will return the same
243// object, and the caller should not attempt to delete the returned Transport.
David Pursell0b156632015-10-30 11:22:01 -0700244static Transport* open_device() {
245 static Transport* transport = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -0800246 bool announce = true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800247
David Pursell2ec418a2016-01-20 08:32:08 -0800248 if (transport != nullptr) {
249 return transport;
250 }
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800251
David Pursell4601c972016-02-05 15:35:09 -0800252 Socket::Protocol protocol = Socket::Protocol::kTcp;
David Pursell2ec418a2016-01-20 08:32:08 -0800253 std::string host;
David Pursell4601c972016-02-05 15:35:09 -0800254 int port = 0;
255 if (serial != nullptr) {
256 const char* net_address = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -0800257
David Pursell4601c972016-02-05 15:35:09 -0800258 if (android::base::StartsWith(serial, "tcp:")) {
259 protocol = Socket::Protocol::kTcp;
260 port = tcp::kDefaultPort;
261 net_address = serial + strlen("tcp:");
262 } else if (android::base::StartsWith(serial, "udp:")) {
263 protocol = Socket::Protocol::kUdp;
264 port = udp::kDefaultPort;
265 net_address = serial + strlen("udp:");
266 }
267
268 if (net_address != nullptr) {
269 std::string error;
270 if (!android::base::ParseNetAddress(net_address, &host, &port, nullptr, &error)) {
271 fprintf(stderr, "error: Invalid network address '%s': %s\n", net_address,
272 error.c_str());
273 return nullptr;
274 }
David Pursell2ec418a2016-01-20 08:32:08 -0800275 }
276 }
277
278 while (true) {
279 if (!host.empty()) {
280 std::string error;
David Pursell4601c972016-02-05 15:35:09 -0800281 if (protocol == Socket::Protocol::kTcp) {
282 transport = tcp::Connect(host, port, &error).release();
283 } else if (protocol == Socket::Protocol::kUdp) {
284 transport = udp::Connect(host, port, &error).release();
285 }
286
David Pursell2ec418a2016-01-20 08:32:08 -0800287 if (transport == nullptr && announce) {
288 fprintf(stderr, "error: %s\n", error.c_str());
289 }
290 } else {
291 transport = usb_open(match_fastboot);
292 }
293
294 if (transport != nullptr) {
295 return transport;
296 }
297
David Pursell0b156632015-10-30 11:22:01 -0700298 if (announce) {
David Pursell2ec418a2016-01-20 08:32:08 -0800299 announce = false;
Elliott Hughesb46964f2015-08-19 17:49:45 -0700300 fprintf(stderr, "< waiting for %s >\n", serial ? serial : "any device");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800301 }
Elliott Hughes290a2282016-11-14 17:08:47 -0800302 std::this_thread::sleep_for(std::chrono::milliseconds(1));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800303 }
304}
305
Elliott Hughesfc797672015-04-07 20:12:50 -0700306static void list_devices() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800307 // We don't actually open a USB device here,
308 // just getting our callback called so we can
309 // list all the connected devices.
310 usb_open(list_devices_callback);
311}
312
Elliott Hughesd6365a72017-05-08 18:04:49 -0700313static void syntax_error(const char* fmt, ...) {
314 fprintf(stderr, "fastboot: usage: ");
315
316 va_list ap;
317 va_start(ap, fmt);
318 vfprintf(stderr, fmt, ap);
319 va_end(ap);
320
321 fprintf(stderr, "\n");
322 exit(1);
323}
324
325static int show_help() {
326 // clang-format off
327 fprintf(stdout,
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800328/* 1234567890123456789012345678901234567890123456789012345678901234567890123456 */
329 "usage: fastboot [ <option> ] <command>\n"
330 "\n"
331 "commands:\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700332 " update <filename> Reflash device from update.zip.\n"
Daniel Rosenberg13454092016-06-27 19:43:11 -0700333 " Sets the flashed slot as active.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700334 " flashall Flash boot, system, vendor, and --\n"
Daniel Rosenberg13454092016-06-27 19:43:11 -0700335 " if found -- recovery. If the device\n"
336 " supports slots, the slot that has\n"
337 " been flashed to is set as active.\n"
Alex Lightbb9b8a52016-06-29 09:26:44 -0700338 " Secondary images may be flashed to\n"
339 " an inactive slot.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700340 " flash <partition> [ <filename> ] Write a file to a flash partition.\n"
341 " flashing lock Locks the device. Prevents flashing.\n"
342 " flashing unlock Unlocks the device. Allows flashing\n"
343 " any partition except\n"
344 " bootloader-related partitions.\n"
345 " flashing lock_critical Prevents flashing bootloader-related\n"
346 " partitions.\n"
347 " flashing unlock_critical Enables flashing bootloader-related\n"
348 " partitions.\n"
349 " flashing get_unlock_ability Queries bootloader to see if the\n"
350 " device is unlocked.\n"
Patrick Tjin51e8b032015-09-01 08:15:23 -0700351 " flashing get_unlock_bootloader_nonce Queries the bootloader to get the\n"
Elliott Hughes45be42e2015-09-02 20:15:48 -0700352 " unlock nonce.\n"
353 " flashing unlock_bootloader <request> Issue unlock bootloader using request.\n"
Patrick Tjin51e8b032015-09-01 08:15:23 -0700354 " flashing lock_bootloader Locks the bootloader to prevent\n"
Elliott Hughes45be42e2015-09-02 20:15:48 -0700355 " bootloader version rollback.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700356 " erase <partition> Erase a flash partition.\n"
357 " format[:[<fs type>][:[<size>]] <partition>\n"
358 " Format a flash partition. Can\n"
359 " override the fs type and/or size\n"
360 " the bootloader reports.\n"
361 " getvar <variable> Display a bootloader variable.\n"
Daniel Rosenberg80919472016-06-30 19:25:31 -0700362 " set_active <slot> Sets the active slot. If slots are\n"
Daniel Rosenberg9b432052015-11-25 15:17:10 -0800363 " not supported, this does nothing.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700364 " boot <kernel> [ <ramdisk> [ <second> ] ] Download and boot kernel.\n"
Elliott Hughesd6365a72017-05-08 18:04:49 -0700365 " flash:raw <bootable-partition> <kernel> [ <ramdisk> [ <second> ] ]\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700366 " Create bootimage and flash it.\n"
367 " devices [-l] List all connected devices [with\n"
368 " device paths].\n"
369 " continue Continue with autoboot.\n"
Alexey Polyudove0bfb752017-01-03 19:39:13 -0800370 " reboot [bootloader|emergency] Reboot device [into bootloader or emergency mode].\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700371 " reboot-bootloader Reboot device into bootloader.\n"
Jocelyn Bohr98cc2832017-01-26 19:20:53 -0800372 " oem <parameter1> ... <parameterN> Executes oem specific command.\n"
373 " stage <infile> Sends contents of <infile> to stage for\n"
374 " the next command. Supported only on\n"
375 " Android Things devices.\n"
Jocelyn Bohr91fefad2017-01-27 14:17:56 -0800376 " get_staged <outfile> Receives data to <outfile> staged by the\n"
377 " last command. Supported only on Android\n"
378 " Things devices.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700379 " help Show this help message.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800380 "\n"
381 "options:\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700382 " -w Erase userdata and cache (and format\n"
383 " if supported by partition type).\n"
384 " -u Do not erase partition before\n"
385 " formatting.\n"
David Pursell2ec418a2016-01-20 08:32:08 -0800386 " -s <specific device> Specify a device. For USB, provide either\n"
387 " a serial number or path to device port.\n"
Alex Deymof62d0cd2016-03-24 19:51:05 -0700388 " For ethernet, provide an address in the\n"
389 " form <protocol>:<hostname>[:port] where\n"
David Pursell4601c972016-02-05 15:35:09 -0800390 " <protocol> is either tcp or udp.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700391 " -c <cmdline> Override kernel commandline.\n"
392 " -i <vendor id> Specify a custom USB vendor id.\n"
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800393 " -b, --base <base_addr> Specify a custom kernel base\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700394 " address (default: 0x10000000).\n"
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800395 " --kernel-offset Specify a custom kernel offset.\n"
396 " (default: 0x00008000)\n"
397 " --ramdisk-offset Specify a custom ramdisk offset.\n"
398 " (default: 0x01000000)\n"
399 " --tags-offset Specify a custom tags offset.\n"
400 " (default: 0x00000100)\n"
401 " -n, --page-size <page size> Specify the nand page size\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700402 " (default: 2048).\n"
403 " -S <size>[K|M|G] Automatically sparse files greater\n"
404 " than 'size'. 0 to disable.\n"
Daniel Rosenberg80919472016-06-30 19:25:31 -0700405 " --slot <slot> Specify slot name to be used if the\n"
406 " device supports slots. All operations\n"
407 " on partitions that support slots will\n"
408 " be done on the slot specified.\n"
409 " 'all' can be given to refer to all slots.\n"
410 " 'other' can be given to refer to a\n"
411 " non-current slot. If this flag is not\n"
412 " used, slotted partitions will default\n"
413 " to the current active slot.\n"
414 " -a, --set-active[=<slot>] Sets the active slot. If no slot is\n"
Daniel Rosenberg0d088562015-11-11 16:15:30 -0800415 " provided, this will default to the value\n"
416 " given by --slot. If slots are not\n"
Daniel Rosenberg9b432052015-11-25 15:17:10 -0800417 " supported, this does nothing. This will\n"
418 " run after all non-reboot commands.\n"
Daniel Rosenberg92b44762016-07-13 20:03:25 -0700419 " --skip-secondary Will not flash secondary slots when\n"
420 " performing a flashall or update. This\n"
421 " will preserve data on other slots.\n"
Mitchell Wills31dce302016-09-26 10:26:21 -0700422 " --skip-reboot Will not reboot the device when\n"
423 " performing commands that normally\n"
424 " trigger a reboot.\n"
David Zeuthenb6ea4352017-08-07 14:29:26 -0400425 " --disable-verity Set the disable-verity flag in the\n"
426 " the vbmeta image being flashed.\n"
427 " --disable-verification Set the disable-verification flag in"
428 " the vbmeta image being flashed.\n"
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000429#if !defined(_WIN32)
430 " --wipe-and-use-fbe On devices which support it,\n"
431 " erase userdata and cache, and\n"
432 " enable file-based encryption\n"
433#endif
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800434 " --unbuffered Do not buffer input or output.\n"
435 " --version Display version.\n"
436 " -h, --help 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
Elliott Hughesd6365a72017-05-08 18:04:49 -0700442static void* load_bootable_image(const std::string& kernel, const std::string& ramdisk,
443 const std::string& second_stage, int64_t* sz,
Elliott Hughesfc797672015-04-07 20:12:50 -0700444 const char* cmdline) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700445 int64_t ksize;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700446 void* kdata = load_file(kernel.c_str(), &ksize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700447 if (kdata == nullptr) die("cannot load '%s': %s", kernel.c_str(), strerror(errno));
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800448
Elliott Hughesfc797672015-04-07 20:12:50 -0700449 // Is this actually a boot image?
Elliott Hughesaaa3b6b2018-01-18 16:08:24 -0800450 if (ksize < static_cast<int64_t>(sizeof(boot_img_hdr))) {
451 die("cannot load '%s': too short", kernel.c_str());
452 }
Elliott Hughesd6365a72017-05-08 18:04:49 -0700453 if (!memcmp(kdata, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Elliott Hughesaaa3b6b2018-01-18 16:08:24 -0800454 if (cmdline) bootimg_set_cmdline(reinterpret_cast<boot_img_hdr*>(kdata), cmdline);
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800455
Elliott Hughes4089d342017-10-27 14:21:12 -0700456 if (!ramdisk.empty()) die("cannot boot a boot.img *and* ramdisk");
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800457
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800458 *sz = ksize;
459 return kdata;
460 }
461
Elliott Hughesfc797672015-04-07 20:12:50 -0700462 void* rdata = nullptr;
463 int64_t rsize = 0;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700464 if (!ramdisk.empty()) {
465 rdata = load_file(ramdisk.c_str(), &rsize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700466 if (rdata == nullptr) die("cannot load '%s': %s", ramdisk.c_str(), strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800467 }
468
Elliott Hughesfc797672015-04-07 20:12:50 -0700469 void* sdata = nullptr;
470 int64_t ssize = 0;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700471 if (!second_stage.empty()) {
472 sdata = load_file(second_stage.c_str(), &ssize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700473 if (sdata == nullptr) die("cannot load '%s': %s", second_stage.c_str(), strerror(errno));
Jeremy Compostellaa42adff2014-07-17 17:17:54 +0200474 }
475
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800476 fprintf(stderr,"creating boot image...\n");
Elliott Hughesfc797672015-04-07 20:12:50 -0700477 int64_t bsize = 0;
478 void* bdata = mkbootimg(kdata, ksize, kernel_offset,
JP Abgrall7b8970c2013-03-07 17:06:41 -0800479 rdata, rsize, ramdisk_offset,
Jeremy Compostellaa42adff2014-07-17 17:17:54 +0200480 sdata, ssize, second_offset,
JP Abgrall7b8970c2013-03-07 17:06:41 -0800481 page_size, base_addr, tags_offset, &bsize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700482 if (bdata == nullptr) die("failed to create boot.img");
Elliott Hughesd6365a72017-05-08 18:04:49 -0700483
Elliott Hughesfc797672015-04-07 20:12:50 -0700484 if (cmdline) bootimg_set_cmdline((boot_img_hdr*) bdata, cmdline);
485 fprintf(stderr, "creating boot image - %" PRId64 " bytes\n", bsize);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800486 *sz = bsize;
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800487
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800488 return bdata;
489}
490
Elliott Hughes23af1122017-11-10 08:42:17 -0800491static void* unzip_to_memory(ZipArchiveHandle zip, const char* entry_name, int64_t* sz) {
Yusuke Sato07447542015-06-25 14:39:19 -0700492 ZipString zip_entry_name(entry_name);
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700493 ZipEntry zip_entry;
494 if (FindEntry(zip, zip_entry_name, &zip_entry) != 0) {
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700495 fprintf(stderr, "archive does not contain '%s'\n", entry_name);
Elliott Hughes4089d342017-10-27 14:21:12 -0700496 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800497 }
498
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700499 *sz = zip_entry.uncompressed_length;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800500
Elliott Hughes23af1122017-11-10 08:42:17 -0800501 fprintf(stderr, "extracting %s (%" PRId64 " MB) to RAM...\n", entry_name, *sz / 1024 / 1024);
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700502 uint8_t* data = reinterpret_cast<uint8_t*>(malloc(zip_entry.uncompressed_length));
Elliott Hughes4089d342017-10-27 14:21:12 -0700503 if (data == nullptr) die("failed to allocate %" PRId64 " bytes for '%s'", *sz, entry_name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800504
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700505 int error = ExtractToMemory(zip, &zip_entry, data, zip_entry.uncompressed_length);
Elliott Hughes4089d342017-10-27 14:21:12 -0700506 if (error != 0) die("failed to extract '%s': %s", entry_name, ErrorCodeString(error));
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000507
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800508 return data;
509}
510
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700511#if defined(_WIN32)
512
513// TODO: move this to somewhere it can be shared.
514
515#include <windows.h>
516
517// Windows' tmpfile(3) requires administrator rights because
518// it creates temporary files in the root directory.
519static FILE* win32_tmpfile() {
520 char temp_path[PATH_MAX];
521 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path);
522 if (nchars == 0 || nchars >= sizeof(temp_path)) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700523 die("GetTempPath failed, error %ld", GetLastError());
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700524 }
525
526 char filename[PATH_MAX];
527 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700528 die("GetTempFileName failed, error %ld", GetLastError());
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700529 }
530
531 return fopen(filename, "w+bTD");
532}
533
534#define tmpfile win32_tmpfile
535
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000536static std::string make_temporary_directory() {
Elliott Hughes4089d342017-10-27 14:21:12 -0700537 die("make_temporary_directory not supported under Windows, sorry!");
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000538}
539
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700540static int make_temporary_fd() {
541 // TODO: reimplement to avoid leaking a FILE*.
542 return fileno(tmpfile());
543}
544
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000545#else
546
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700547static std::string make_temporary_template() {
548 const char* tmpdir = getenv("TMPDIR");
549 if (tmpdir == nullptr) tmpdir = P_tmpdir;
550 return std::string(tmpdir) + "/fastboot_userdata_XXXXXX";
551}
552
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000553static std::string make_temporary_directory() {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700554 std::string result(make_temporary_template());
555 if (mkdtemp(&result[0]) == nullptr) {
556 fprintf(stderr, "Unable to create temporary directory: %s\n", strerror(errno));
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000557 return "";
558 }
559 return result;
560}
561
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700562static int make_temporary_fd() {
563 std::string path_template(make_temporary_template());
564 int fd = mkstemp(&path_template[0]);
565 if (fd == -1) {
566 fprintf(stderr, "Unable to create temporary file: %s\n", strerror(errno));
567 return -1;
568 }
569 unlink(path_template.c_str());
570 return fd;
571}
572
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700573#endif
574
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000575static std::string create_fbemarker_tmpdir() {
576 std::string dir = make_temporary_directory();
577 if (dir.empty()) {
578 fprintf(stderr, "Unable to create local temp directory for FBE marker\n");
579 return "";
580 }
581 std::string marker_file = dir + "/" + convert_fbe_marker_filename;
582 int fd = open(marker_file.c_str(), O_CREAT | O_WRONLY | O_CLOEXEC, 0666);
583 if (fd == -1) {
584 fprintf(stderr, "Unable to create FBE marker file %s locally: %d, %s\n",
585 marker_file.c_str(), errno, strerror(errno));
586 return "";
587 }
588 close(fd);
589 return dir;
590}
591
592static void delete_fbemarker_tmpdir(const std::string& dir) {
593 std::string marker_file = dir + "/" + convert_fbe_marker_filename;
594 if (unlink(marker_file.c_str()) == -1) {
595 fprintf(stderr, "Unable to delete FBE marker file %s locally: %d, %s\n",
596 marker_file.c_str(), errno, strerror(errno));
597 return;
598 }
599 if (rmdir(dir.c_str()) == -1) {
600 fprintf(stderr, "Unable to delete FBE marker directory %s locally: %d, %s\n",
601 dir.c_str(), errno, strerror(errno));
602 return;
603 }
604}
605
Elliott Hughes45964a82017-05-03 22:43:23 -0700606static int unzip_to_file(ZipArchiveHandle zip, const char* entry_name) {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700607 unique_fd fd(make_temporary_fd());
608 if (fd == -1) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700609 die("failed to create temporary file for '%s': %s", entry_name, strerror(errno));
Rom Lemarchand622810c2013-06-28 09:54:59 -0700610 }
611
Yusuke Sato07447542015-06-25 14:39:19 -0700612 ZipString zip_entry_name(entry_name);
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700613 ZipEntry zip_entry;
614 if (FindEntry(zip, zip_entry_name, &zip_entry) != 0) {
615 fprintf(stderr, "archive does not contain '%s'\n", entry_name);
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000616 return -1;
617 }
618
Elliott Hughes23af1122017-11-10 08:42:17 -0800619 fprintf(stderr, "extracting %s (%" PRIu32 " MB) to disk...", entry_name,
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700620 zip_entry.uncompressed_length / 1024 / 1024);
Elliott Hughes23af1122017-11-10 08:42:17 -0800621 double start = now();
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700622 int error = ExtractEntryToFile(zip, &zip_entry, fd);
623 if (error != 0) {
Elliott Hughes23af1122017-11-10 08:42:17 -0800624 die("\nfailed to extract '%s': %s", entry_name, ErrorCodeString(error));
Rom Lemarchand622810c2013-06-28 09:54:59 -0700625 }
626
Elliott Hughes4089d342017-10-27 14:21:12 -0700627 if (lseek(fd, 0, SEEK_SET) != 0) {
Elliott Hughes23af1122017-11-10 08:42:17 -0800628 die("\nlseek on extracted file '%s' failed: %s", entry_name, strerror(errno));
Elliott Hughes4089d342017-10-27 14:21:12 -0700629 }
630
Elliott Hughes23af1122017-11-10 08:42:17 -0800631 fprintf(stderr, " took %.3fs\n", now() - start);
632
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700633 return fd.release();
Rom Lemarchand622810c2013-06-28 09:54:59 -0700634}
635
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800636static char *strip(char *s)
637{
638 int n;
639 while(*s && isspace(*s)) s++;
640 n = strlen(s);
641 while(n-- > 0) {
642 if(!isspace(s[n])) break;
643 s[n] = 0;
644 }
645 return s;
646}
647
648#define MAX_OPTIONS 32
649static int setup_requirement_line(char *name)
650{
651 char *val[MAX_OPTIONS];
Elliott Hughesfc797672015-04-07 20:12:50 -0700652 char *prod = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800653 unsigned n, count;
654 char *x;
655 int invert = 0;
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800656
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800657 if (!strncmp(name, "reject ", 7)) {
658 name += 7;
659 invert = 1;
660 } else if (!strncmp(name, "require ", 8)) {
661 name += 8;
662 invert = 0;
Wink Savilleb98762f2011-04-04 17:54:59 -0700663 } else if (!strncmp(name, "require-for-product:", 20)) {
664 // Get the product and point name past it
665 prod = name + 20;
666 name = strchr(name, ' ');
667 if (!name) return -1;
668 *name = 0;
669 name += 1;
670 invert = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800671 }
672
673 x = strchr(name, '=');
674 if (x == 0) return 0;
675 *x = 0;
676 val[0] = x + 1;
677
678 for(count = 1; count < MAX_OPTIONS; count++) {
679 x = strchr(val[count - 1],'|');
680 if (x == 0) break;
681 *x = 0;
682 val[count] = x + 1;
683 }
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800684
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800685 name = strip(name);
686 for(n = 0; n < count; n++) val[n] = strip(val[n]);
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800687
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800688 name = strip(name);
689 if (name == 0) return -1;
690
Elliott Hughes253c18d2015-03-18 22:47:09 -0700691 const char* var = name;
692 // Work around an unfortunate name mismatch.
693 if (!strcmp(name,"board")) var = "product";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800694
Elliott Hughes253c18d2015-03-18 22:47:09 -0700695 const char** out = reinterpret_cast<const char**>(malloc(sizeof(char*) * count));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800696 if (out == 0) return -1;
697
698 for(n = 0; n < count; n++) {
699 out[n] = strdup(strip(val[n]));
Elliott Hughes14e28d32013-10-29 14:12:46 -0700700 if (out[n] == 0) {
701 for(size_t i = 0; i < n; ++i) {
702 free((char*) out[i]);
703 }
704 free(out);
705 return -1;
706 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800707 }
708
Elliott Hughes253c18d2015-03-18 22:47:09 -0700709 fb_queue_require(prod, var, invert, n, out);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800710 return 0;
711}
712
Elliott Hughesfc797672015-04-07 20:12:50 -0700713static void setup_requirements(char* data, int64_t sz) {
714 char* s = data;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800715 while (sz-- > 0) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700716 if (*s == '\n') {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800717 *s++ = 0;
718 if (setup_requirement_line(data)) {
719 die("out of memory");
720 }
721 data = s;
722 } else {
723 s++;
724 }
725 }
726}
727
Elliott Hughesfc797672015-04-07 20:12:50 -0700728static void queue_info_dump() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800729 fb_queue_notice("--------------------------------------------");
730 fb_queue_display("version-bootloader", "Bootloader Version...");
731 fb_queue_display("version-baseband", "Baseband Version.....");
732 fb_queue_display("serialno", "Serial Number........");
733 fb_queue_notice("--------------------------------------------");
734}
735
Elliott Hughes4089d342017-10-27 14:21:12 -0700736static struct sparse_file** load_sparse_files(int fd, int max_size) {
Mohamad Ayyash80cc1f62015-03-31 12:09:29 -0700737 struct sparse_file* s = sparse_file_import_auto(fd, false, true);
Elliott Hughes4089d342017-10-27 14:21:12 -0700738 if (!s) die("cannot sparse read file");
Colin Crossf8387882012-05-24 17:18:41 -0700739
Elliott Hughesfc797672015-04-07 20:12:50 -0700740 int files = sparse_file_resparse(s, max_size, nullptr, 0);
Elliott Hughes4089d342017-10-27 14:21:12 -0700741 if (files < 0) die("Failed to resparse");
Colin Crossf8387882012-05-24 17:18:41 -0700742
Elliott Hughes253c18d2015-03-18 22:47:09 -0700743 sparse_file** out_s = reinterpret_cast<sparse_file**>(calloc(sizeof(struct sparse_file *), files + 1));
Elliott Hughes4089d342017-10-27 14:21:12 -0700744 if (!out_s) die("Failed to allocate sparse file array");
Colin Crossf8387882012-05-24 17:18:41 -0700745
746 files = sparse_file_resparse(s, max_size, out_s, files);
Elliott Hughes4089d342017-10-27 14:21:12 -0700747 if (files < 0) die("Failed to resparse");
Colin Crossf8387882012-05-24 17:18:41 -0700748
749 return out_s;
750}
751
David Pursell0b156632015-10-30 11:22:01 -0700752static int64_t get_target_sparse_limit(Transport* transport) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700753 std::string max_download_size;
David Pursell0b156632015-10-30 11:22:01 -0700754 if (!fb_getvar(transport, "max-download-size", &max_download_size) ||
755 max_download_size.empty()) {
Elliott Hughes3ab05862015-11-02 09:01:53 -0800756 fprintf(stderr, "target didn't report max-download-size\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700757 return 0;
Colin Crossf8387882012-05-24 17:18:41 -0700758 }
759
Elliott Hughes77c0e662015-11-02 15:51:12 -0800760 // Some bootloaders (angler, for example) send spurious whitespace too.
761 max_download_size = android::base::Trim(max_download_size);
762
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700763 uint64_t limit;
Elliott Hughesda46b392016-10-11 17:09:00 -0700764 if (!android::base::ParseUint(max_download_size, &limit)) {
Elliott Hughes3ab05862015-11-02 09:01:53 -0800765 fprintf(stderr, "couldn't parse max-download-size '%s'\n", max_download_size.c_str());
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700766 return 0;
767 }
768 if (limit > 0) {
769 fprintf(stderr, "target reported max download size of %" PRId64 " bytes\n", limit);
770 }
Colin Crossf8387882012-05-24 17:18:41 -0700771 return limit;
772}
773
David Pursell0b156632015-10-30 11:22:01 -0700774static int64_t get_sparse_limit(Transport* transport, int64_t size) {
Colin Crossf8387882012-05-24 17:18:41 -0700775 int64_t limit;
776
777 if (sparse_limit == 0) {
778 return 0;
779 } else if (sparse_limit > 0) {
780 limit = sparse_limit;
781 } else {
782 if (target_sparse_limit == -1) {
David Pursell0b156632015-10-30 11:22:01 -0700783 target_sparse_limit = get_target_sparse_limit(transport);
Colin Crossf8387882012-05-24 17:18:41 -0700784 }
785 if (target_sparse_limit > 0) {
786 limit = target_sparse_limit;
787 } else {
Colin Cross0bbfb392012-07-24 18:05:21 -0700788 return 0;
Colin Crossf8387882012-05-24 17:18:41 -0700789 }
790 }
791
792 if (size > limit) {
Chris Fries6a999712017-04-04 09:52:47 -0500793 return std::min(limit, RESPARSE_LIMIT);
Colin Crossf8387882012-05-24 17:18:41 -0700794 }
795
796 return 0;
797}
798
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700799// Until we get lazy inode table init working in make_ext4fs, we need to
800// erase partitions of type ext4 before flashing a filesystem so no stale
801// inodes are left lying around. Otherwise, e2fsck gets very upset.
David Pursell0b156632015-10-30 11:22:01 -0700802static bool needs_erase(Transport* transport, const char* partition) {
Elliott Hughes8ab9a322015-11-02 14:05:57 -0800803 std::string partition_type;
David Pursell0b156632015-10-30 11:22:01 -0700804 if (!fb_getvar(transport, std::string("partition-type:") + partition, &partition_type)) {
Elliott Hughes8ab9a322015-11-02 14:05:57 -0800805 return false;
806 }
807 return partition_type == "ext4";
Ken Sumrall5ee5d382012-09-29 14:46:25 -0700808}
809
Elliott Hughes53ec4952016-05-11 12:39:27 -0700810static bool load_buf_fd(Transport* transport, int fd, struct fastboot_buffer* buf) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700811 int64_t sz = get_file_size(fd);
812 if (sz == -1) {
Elliott Hughes53ec4952016-05-11 12:39:27 -0700813 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700814 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -0700815
Elliott Hughesfc797672015-04-07 20:12:50 -0700816 lseek64(fd, 0, SEEK_SET);
David Pursell0b156632015-10-30 11:22:01 -0700817 int64_t limit = get_sparse_limit(transport, sz);
Colin Crossf8387882012-05-24 17:18:41 -0700818 if (limit) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700819 sparse_file** s = load_sparse_files(fd, limit);
820 if (s == nullptr) {
Elliott Hughes53ec4952016-05-11 12:39:27 -0700821 return false;
Colin Crossf8387882012-05-24 17:18:41 -0700822 }
Rom Lemarchand622810c2013-06-28 09:54:59 -0700823 buf->type = FB_BUFFER_SPARSE;
824 buf->data = s;
Colin Crossf8387882012-05-24 17:18:41 -0700825 } else {
Chris Fries0ea946c2017-04-12 10:25:57 -0500826 buf->type = FB_BUFFER_FD;
827 buf->data = nullptr;
828 buf->fd = fd;
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000829 buf->sz = sz;
Colin Crossf8387882012-05-24 17:18:41 -0700830 }
Rom Lemarchand622810c2013-06-28 09:54:59 -0700831
Elliott Hughes53ec4952016-05-11 12:39:27 -0700832 return true;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700833}
834
Elliott Hughes53ec4952016-05-11 12:39:27 -0700835static bool load_buf(Transport* transport, const char* fname, struct fastboot_buffer* buf) {
Chris Fries0ea946c2017-04-12 10:25:57 -0500836 unique_fd fd(TEMP_FAILURE_RETRY(open(fname, O_RDONLY | O_BINARY)));
837
Elliott Hughes53ec4952016-05-11 12:39:27 -0700838 if (fd == -1) {
839 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700840 }
Chris Fries0ea946c2017-04-12 10:25:57 -0500841
842 struct stat s;
843 if (fstat(fd, &s)) {
844 return false;
845 }
846 if (!S_ISREG(s.st_mode)) {
847 errno = S_ISDIR(s.st_mode) ? EISDIR : EINVAL;
848 return false;
849 }
850
851 return load_buf_fd(transport, fd.release(), buf);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700852}
853
David Zeuthenb6ea4352017-08-07 14:29:26 -0400854static void rewrite_vbmeta_buffer(struct fastboot_buffer* buf) {
855 // Buffer needs to be at least the size of the VBMeta struct which
856 // is 256 bytes.
857 if (buf->sz < 256) {
858 return;
859 }
860
861 int fd = make_temporary_fd();
862 if (fd == -1) {
863 die("Failed to create temporary file for vbmeta rewriting");
864 }
865
866 std::string data;
867 if (!android::base::ReadFdToString(buf->fd, &data)) {
868 die("Failed reading from vbmeta");
869 }
870
871 // There's a 32-bit big endian |flags| field at offset 120 where
872 // bit 0 corresponds to disable-verity and bit 1 corresponds to
873 // disable-verification.
874 //
875 // See external/avb/libavb/avb_vbmeta_image.h for the layout of
876 // the VBMeta struct.
877 if (g_disable_verity) {
878 data[123] |= 0x01;
879 }
880 if (g_disable_verification) {
881 data[123] |= 0x02;
882 }
883
884 if (!android::base::WriteStringToFd(data, fd)) {
885 die("Failed writing to modified vbmeta");
886 }
887 close(buf->fd);
888 buf->fd = fd;
889 lseek(fd, 0, SEEK_SET);
890}
891
Rom Lemarchand622810c2013-06-28 09:54:59 -0700892static void flash_buf(const char *pname, struct fastboot_buffer *buf)
893{
Elliott Hughes253c18d2015-03-18 22:47:09 -0700894 sparse_file** s;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700895
David Zeuthenb6ea4352017-08-07 14:29:26 -0400896 // Rewrite vbmeta if that's what we're flashing and modification has been requested.
897 if ((g_disable_verity || g_disable_verification) &&
898 (strcmp(pname, "vbmeta") == 0 || strcmp(pname, "vbmeta_a") == 0 ||
899 strcmp(pname, "vbmeta_b") == 0)) {
900 rewrite_vbmeta_buffer(buf);
901 }
902
Rom Lemarchand622810c2013-06-28 09:54:59 -0700903 switch (buf->type) {
Josh Gao9da9ac52016-01-19 14:50:18 -0800904 case FB_BUFFER_SPARSE: {
905 std::vector<std::pair<sparse_file*, int64_t>> sparse_files;
Elliott Hughes253c18d2015-03-18 22:47:09 -0700906 s = reinterpret_cast<sparse_file**>(buf->data);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700907 while (*s) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700908 int64_t sz = sparse_file_len(*s, true, false);
Josh Gao9da9ac52016-01-19 14:50:18 -0800909 sparse_files.emplace_back(*s, sz);
910 ++s;
911 }
912
913 for (size_t i = 0; i < sparse_files.size(); ++i) {
914 const auto& pair = sparse_files[i];
915 fb_queue_flash_sparse(pname, pair.first, pair.second, i + 1, sparse_files.size());
Rom Lemarchand622810c2013-06-28 09:54:59 -0700916 }
917 break;
Josh Gao9da9ac52016-01-19 14:50:18 -0800918 }
Chris Fries0ea946c2017-04-12 10:25:57 -0500919 case FB_BUFFER_FD:
920 fb_queue_flash_fd(pname, buf->fd, buf->sz);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700921 break;
922 default:
923 die("unknown buffer type: %d", buf->type);
924 }
925}
926
Daniel Rosenberg80919472016-06-30 19:25:31 -0700927static std::string get_current_slot(Transport* transport)
928{
929 std::string current_slot;
930 if (fb_getvar(transport, "current-slot", &current_slot)) {
931 if (current_slot == "_a") return "a"; // Legacy support
932 if (current_slot == "_b") return "b"; // Legacy support
933 return current_slot;
934 }
935 return "";
936}
937
938// Legacy support
939static std::vector<std::string> get_suffixes_obsolete(Transport* transport) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700940 std::vector<std::string> suffixes;
941 std::string suffix_list;
David Pursell0b156632015-10-30 11:22:01 -0700942 if (!fb_getvar(transport, "slot-suffixes", &suffix_list)) {
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700943 return suffixes;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700944 }
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700945 suffixes = android::base::Split(suffix_list, ",");
946 // Unfortunately some devices will return an error message in the
947 // guise of a valid value. If we only see only one suffix, it's probably
948 // not real.
949 if (suffixes.size() == 1) {
950 suffixes.clear();
951 }
952 return suffixes;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700953}
954
Daniel Rosenberg80919472016-06-30 19:25:31 -0700955// Legacy support
956static bool supports_AB_obsolete(Transport* transport) {
957 return !get_suffixes_obsolete(transport).empty();
958}
959
960static int get_slot_count(Transport* transport) {
961 std::string var;
962 int count;
963 if (!fb_getvar(transport, "slot-count", &var)) {
964 if (supports_AB_obsolete(transport)) return 2; // Legacy support
965 }
Elliott Hughesda46b392016-10-11 17:09:00 -0700966 if (!android::base::ParseInt(var, &count)) return 0;
Daniel Rosenberg80919472016-06-30 19:25:31 -0700967 return count;
968}
969
Alex Lightbb9b8a52016-06-29 09:26:44 -0700970static bool supports_AB(Transport* transport) {
Daniel Rosenberg80919472016-06-30 19:25:31 -0700971 return get_slot_count(transport) >= 2;
Alex Lightbb9b8a52016-06-29 09:26:44 -0700972}
973
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700974// Given a current slot, this returns what the 'other' slot is.
Daniel Rosenberg80919472016-06-30 19:25:31 -0700975static std::string get_other_slot(const std::string& current_slot, int count) {
976 if (count == 0) return "";
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700977
Daniel Rosenberg80919472016-06-30 19:25:31 -0700978 char next = (current_slot[0] - 'a' + 1)%count + 'a';
979 return std::string(1, next);
980}
981
982static std::string get_other_slot(Transport* transport, const std::string& current_slot) {
983 return get_other_slot(current_slot, get_slot_count(transport));
984}
985
986static std::string get_other_slot(Transport* transport, int count) {
987 return get_other_slot(get_current_slot(transport), count);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700988}
989
Alex Lightbb9b8a52016-06-29 09:26:44 -0700990static std::string get_other_slot(Transport* transport) {
Daniel Rosenberg80919472016-06-30 19:25:31 -0700991 return get_other_slot(get_current_slot(transport), get_slot_count(transport));
Alex Lightbb9b8a52016-06-29 09:26:44 -0700992}
993
Daniel Rosenberg80919472016-06-30 19:25:31 -0700994static std::string verify_slot(Transport* transport, const std::string& slot_name, bool allow_all) {
995 std::string slot = slot_name;
996 if (slot == "_a") slot = "a"; // Legacy support
997 if (slot == "_b") slot = "b"; // Legacy support
998 if (slot == "all") {
Daniel Rosenberg9b432052015-11-25 15:17:10 -0800999 if (allow_all) {
1000 return "all";
1001 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001002 int count = get_slot_count(transport);
1003 if (count > 0) {
1004 return "a";
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001005 } else {
Elliott Hughes4089d342017-10-27 14:21:12 -07001006 die("No known slots");
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001007 }
1008 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001009 }
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001010
Daniel Rosenberg80919472016-06-30 19:25:31 -07001011 int count = get_slot_count(transport);
Elliott Hughes4089d342017-10-27 14:21:12 -07001012 if (count == 0) die("Device does not support slots");
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001013
Daniel Rosenberg80919472016-06-30 19:25:31 -07001014 if (slot == "other") {
1015 std::string other = get_other_slot(transport, count);
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -07001016 if (other == "") {
Elliott Hughes4089d342017-10-27 14:21:12 -07001017 die("No known slots");
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001018 }
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -07001019 return other;
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001020 }
1021
Daniel Rosenberg80919472016-06-30 19:25:31 -07001022 if (slot.size() == 1 && (slot[0]-'a' >= 0 && slot[0]-'a' < count)) return slot;
1023
1024 fprintf(stderr, "Slot %s does not exist. supported slots are:\n", slot.c_str());
1025 for (int i=0; i<count; i++) {
1026 fprintf(stderr, "%c\n", (char)(i + 'a'));
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001027 }
Daniel Rosenberg80919472016-06-30 19:25:31 -07001028
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001029 exit(1);
1030}
1031
Daniel Rosenberg80919472016-06-30 19:25:31 -07001032static std::string verify_slot(Transport* transport, const std::string& slot) {
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001033 return verify_slot(transport, slot, true);
1034}
1035
Daniel Rosenberg80919472016-06-30 19:25:31 -07001036static void do_for_partition(Transport* transport, const std::string& part, const std::string& slot,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001037 const std::function<void(const std::string&)>& func, bool force_slot) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001038 std::string has_slot;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001039 std::string current_slot;
1040
Daniel Rosenberg80919472016-06-30 19:25:31 -07001041 if (!fb_getvar(transport, "has-slot:" + part, &has_slot)) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001042 /* If has-slot is not supported, the answer is no. */
1043 has_slot = "no";
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001044 }
Daniel Rosenberga7974792015-11-11 16:13:13 -08001045 if (has_slot == "yes") {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001046 if (slot == "") {
1047 current_slot = get_current_slot(transport);
1048 if (current_slot == "") {
Elliott Hughes4089d342017-10-27 14:21:12 -07001049 die("Failed to identify current slot");
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001050 }
Daniel Rosenberg80919472016-06-30 19:25:31 -07001051 func(part + "_" + current_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001052 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001053 func(part + '_' + slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001054 }
1055 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001056 if (force_slot && slot != "") {
David Pursell0b156632015-10-30 11:22:01 -07001057 fprintf(stderr, "Warning: %s does not support slots, and slot %s was requested.\n",
Daniel Rosenberg80919472016-06-30 19:25:31 -07001058 part.c_str(), slot.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001059 }
1060 func(part);
1061 }
1062}
1063
David Pursell0b156632015-10-30 11:22:01 -07001064/* This function will find the real partition name given a base name, and a slot. If slot is NULL or
1065 * empty, it will use the current slot. If slot is "all", it will return a list of all possible
1066 * partition names. If force_slot is true, it will fail if a slot is specified, and the given
1067 * partition does not support slots.
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001068 */
Daniel Rosenberg80919472016-06-30 19:25:31 -07001069static void do_for_partitions(Transport* transport, const std::string& part, const std::string& slot,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001070 const std::function<void(const std::string&)>& func, bool force_slot) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001071 std::string has_slot;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001072
Daniel Rosenberg80919472016-06-30 19:25:31 -07001073 if (slot == "all") {
1074 if (!fb_getvar(transport, "has-slot:" + part, &has_slot)) {
Elliott Hughes4089d342017-10-27 14:21:12 -07001075 die("Could not check if partition %s has slot %s", part.c_str(), slot.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001076 }
Daniel Rosenberga7974792015-11-11 16:13:13 -08001077 if (has_slot == "yes") {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001078 for (int i=0; i < get_slot_count(transport); i++) {
1079 do_for_partition(transport, part, std::string(1, (char)(i + 'a')), func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001080 }
1081 } else {
David Pursell0b156632015-10-30 11:22:01 -07001082 do_for_partition(transport, part, "", func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001083 }
1084 } else {
David Pursell0b156632015-10-30 11:22:01 -07001085 do_for_partition(transport, part, slot, func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001086 }
1087}
1088
David Pursell0b156632015-10-30 11:22:01 -07001089static void do_flash(Transport* transport, const char* pname, const char* fname) {
Rom Lemarchand622810c2013-06-28 09:54:59 -07001090 struct fastboot_buffer buf;
1091
Elliott Hughes53ec4952016-05-11 12:39:27 -07001092 if (!load_buf(transport, fname, &buf)) {
1093 die("cannot load '%s': %s", fname, strerror(errno));
Rom Lemarchand622810c2013-06-28 09:54:59 -07001094 }
1095 flash_buf(pname, &buf);
Colin Crossf8387882012-05-24 17:18:41 -07001096}
1097
Elliott Hughes45964a82017-05-03 22:43:23 -07001098static void do_update_signature(ZipArchiveHandle zip, const char* filename) {
Elliott Hughesfc797672015-04-07 20:12:50 -07001099 int64_t sz;
Elliott Hughes23af1122017-11-10 08:42:17 -08001100 void* data = unzip_to_memory(zip, filename, &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001101 if (data == nullptr) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001102 fb_queue_download("signature", data, sz);
1103 fb_queue_command("signature", "installing signature");
1104}
1105
Daniel Rosenberg13454092016-06-27 19:43:11 -07001106// Sets slot_override as the active slot. If slot_override is blank,
1107// set current slot as active instead. This clears slot-unbootable.
Alex Lightbb9b8a52016-06-29 09:26:44 -07001108static void set_active(Transport* transport, const std::string& slot_override) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001109 std::string separator = "";
Alex Lightbb9b8a52016-06-29 09:26:44 -07001110 if (!supports_AB(transport)) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001111 if (supports_AB_obsolete(transport)) {
1112 separator = "_"; // Legacy support
1113 } else {
1114 return;
1115 }
1116 }
1117 if (slot_override != "") {
1118 fb_set_active((separator + slot_override).c_str());
Daniel Rosenberg13454092016-06-27 19:43:11 -07001119 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001120 std::string current_slot = get_current_slot(transport);
1121 if (current_slot != "") {
1122 fb_set_active((separator + current_slot).c_str());
Daniel Rosenberg13454092016-06-27 19:43:11 -07001123 }
1124 }
1125}
1126
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001127static void do_update(Transport* transport, const char* filename, const std::string& slot_override, bool erase_first, bool skip_secondary) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001128 queue_info_dump();
1129
Wink Savilleb98762f2011-04-04 17:54:59 -07001130 fb_queue_query_save("product", cur_product, sizeof(cur_product));
1131
Elliott Hughesd30ad8a2015-03-18 23:12:44 -07001132 ZipArchiveHandle zip;
Elliott Hughesa82c89d2015-03-19 11:44:32 -07001133 int error = OpenArchive(filename, &zip);
1134 if (error != 0) {
1135 die("failed to open zip file '%s': %s", filename, ErrorCodeString(error));
Elliott Hughesd30ad8a2015-03-18 23:12:44 -07001136 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001137
Elliott Hughesfc797672015-04-07 20:12:50 -07001138 int64_t sz;
Elliott Hughes23af1122017-11-10 08:42:17 -08001139 void* data = unzip_to_memory(zip, "android-info.txt", &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001140 if (data == nullptr) {
Elliott Hughes7c6d8842015-03-19 10:30:53 -07001141 die("update package '%s' has no android-info.txt", filename);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001142 }
1143
Elliott Hughes253c18d2015-03-18 22:47:09 -07001144 setup_requirements(reinterpret_cast<char*>(data), sz);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001145
Alex Lightbb9b8a52016-06-29 09:26:44 -07001146 std::string secondary;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001147 if (!skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001148 if (slot_override != "") {
1149 secondary = get_other_slot(transport, slot_override);
1150 } else {
1151 secondary = get_other_slot(transport);
1152 }
1153 if (secondary == "") {
1154 if (supports_AB(transport)) {
1155 fprintf(stderr, "Warning: Could not determine slot for secondary images. Ignoring.\n");
1156 }
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001157 skip_secondary = true;
Alex Lightbb9b8a52016-06-29 09:26:44 -07001158 }
1159 }
Elliott Hughes749ae2d2016-06-28 14:48:45 -07001160 for (size_t i = 0; i < arraysize(images); ++i) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001161 const char* slot = slot_override.c_str();
1162 if (images[i].is_secondary) {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001163 if (!skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001164 slot = secondary.c_str();
1165 } else {
1166 continue;
1167 }
1168 }
1169
Elliott Hughes253c18d2015-03-18 22:47:09 -07001170 int fd = unzip_to_file(zip, images[i].img_name);
Elliott Hughesacdbe922015-06-02 21:37:05 -07001171 if (fd == -1) {
1172 if (images[i].is_optional) {
Elliott Hughes4089d342017-10-27 14:21:12 -07001173 continue; // An optional file is missing, so ignore it.
Elliott Hughesacdbe922015-06-02 21:37:05 -07001174 }
Elliott Hughes4089d342017-10-27 14:21:12 -07001175 die("non-optional file %s missing", images[i].img_name);
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001176 }
Elliott Hughes4089d342017-10-27 14:21:12 -07001177
Elliott Hughes253c18d2015-03-18 22:47:09 -07001178 fastboot_buffer buf;
Elliott Hughes53ec4952016-05-11 12:39:27 -07001179 if (!load_buf_fd(transport, fd, &buf)) {
1180 die("cannot load %s from flash: %s", images[i].img_name, strerror(errno));
1181 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001182
Elliott Hughes4089d342017-10-27 14:21:12 -07001183 auto update = [&](const std::string& partition) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001184 do_update_signature(zip, images[i].sig_name);
David Pursell0b156632015-10-30 11:22:01 -07001185 if (erase_first && needs_erase(transport, partition.c_str())) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001186 fb_queue_erase(partition.c_str());
1187 }
1188 flash_buf(partition.c_str(), &buf);
1189 /* not closing the fd here since the sparse code keeps the fd around
Elliott Hughesbbfc2812017-04-25 18:33:09 -07001190 * but hasn't mmaped data yet. The temporary file will get cleaned up when the
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001191 * program exits.
1192 */
1193 };
Alex Lightbb9b8a52016-06-29 09:26:44 -07001194 do_for_partitions(transport, images[i].part_name, slot, update, false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001195 }
Elliott Hughesd30ad8a2015-03-18 23:12:44 -07001196
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001197 if (slot_override == "all") {
1198 set_active(transport, "a");
1199 } else {
1200 set_active(transport, slot_override);
1201 }
Elliott Hughes4089d342017-10-27 14:21:12 -07001202
1203 CloseArchive(zip);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001204}
1205
Alex Lightbb9b8a52016-06-29 09:26:44 -07001206static void do_send_signature(const std::string& fn) {
1207 std::size_t extension_loc = fn.find(".img");
1208 if (extension_loc == std::string::npos) return;
Elliott Hughesfc797672015-04-07 20:12:50 -07001209
Alex Lightbb9b8a52016-06-29 09:26:44 -07001210 std::string fs_sig = fn.substr(0, extension_loc) + ".sig";
Elliott Hughesfc797672015-04-07 20:12:50 -07001211
1212 int64_t sz;
Alex Lightbb9b8a52016-06-29 09:26:44 -07001213 void* data = load_file(fs_sig.c_str(), &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001214 if (data == nullptr) return;
Elliott Hughes2810d002016-04-25 14:31:18 -07001215
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001216 fb_queue_download("signature", data, sz);
1217 fb_queue_command("signature", "installing signature");
1218}
1219
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001220static void do_flashall(Transport* transport, const std::string& slot_override, int erase_first, bool skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001221 std::string fname;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001222 queue_info_dump();
1223
Wink Savilleb98762f2011-04-04 17:54:59 -07001224 fb_queue_query_save("product", cur_product, sizeof(cur_product));
1225
Elliott Hughes45964a82017-05-03 22:43:23 -07001226 fname = find_item_given_name("android-info.txt");
Elliott Hughes2810d002016-04-25 14:31:18 -07001227 if (fname.empty()) die("cannot find android-info.txt");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001228
Elliott Hughesfc797672015-04-07 20:12:50 -07001229 int64_t sz;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001230 void* data = load_file(fname.c_str(), &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001231 if (data == nullptr) die("could not load android-info.txt: %s", strerror(errno));
Elliott Hughes253c18d2015-03-18 22:47:09 -07001232
1233 setup_requirements(reinterpret_cast<char*>(data), sz);
1234
Alex Lightbb9b8a52016-06-29 09:26:44 -07001235 std::string secondary;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001236 if (!skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001237 if (slot_override != "") {
1238 secondary = get_other_slot(transport, slot_override);
1239 } else {
1240 secondary = get_other_slot(transport);
1241 }
1242 if (secondary == "") {
1243 if (supports_AB(transport)) {
1244 fprintf(stderr, "Warning: Could not determine slot for secondary images. Ignoring.\n");
1245 }
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001246 skip_secondary = true;
Alex Lightbb9b8a52016-06-29 09:26:44 -07001247 }
1248 }
Elliott Hughes253c18d2015-03-18 22:47:09 -07001249
Elliott Hughes749ae2d2016-06-28 14:48:45 -07001250 for (size_t i = 0; i < arraysize(images); i++) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001251 const char* slot = NULL;
1252 if (images[i].is_secondary) {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001253 if (!skip_secondary) slot = secondary.c_str();
Alex Lightbb9b8a52016-06-29 09:26:44 -07001254 } else {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001255 slot = slot_override.c_str();
Alex Lightbb9b8a52016-06-29 09:26:44 -07001256 }
1257 if (!slot) continue;
Elliott Hughes45964a82017-05-03 22:43:23 -07001258 fname = find_item_given_name(images[i].img_name);
Elliott Hughes253c18d2015-03-18 22:47:09 -07001259 fastboot_buffer buf;
Elliott Hughes53ec4952016-05-11 12:39:27 -07001260 if (!load_buf(transport, fname.c_str(), &buf)) {
1261 if (images[i].is_optional) continue;
Elliott Hughes4089d342017-10-27 14:21:12 -07001262 die("could not load '%s': %s", images[i].img_name, strerror(errno));
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001263 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001264
1265 auto flashall = [&](const std::string &partition) {
Elliott Hughes2810d002016-04-25 14:31:18 -07001266 do_send_signature(fname.c_str());
David Pursell0b156632015-10-30 11:22:01 -07001267 if (erase_first && needs_erase(transport, partition.c_str())) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001268 fb_queue_erase(partition.c_str());
1269 }
1270 flash_buf(partition.c_str(), &buf);
1271 };
Alex Lightbb9b8a52016-06-29 09:26:44 -07001272 do_for_partitions(transport, images[i].part_name, slot, flashall, false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001273 }
Daniel Rosenberg13454092016-06-27 19:43:11 -07001274
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001275 if (slot_override == "all") {
1276 set_active(transport, "a");
1277 } else {
1278 set_active(transport, slot_override);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001279 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001280}
1281
Elliott Hughesd6365a72017-05-08 18:04:49 -07001282static std::string next_arg(std::vector<std::string>* args) {
1283 if (args->empty()) syntax_error("expected argument");
1284 std::string result = args->front();
1285 args->erase(args->begin());
1286 return result;
Patrick Tjin51e8b032015-09-01 08:15:23 -07001287}
1288
Elliott Hughesd6365a72017-05-08 18:04:49 -07001289static void do_bypass_unlock_command(std::vector<std::string>* args) {
1290 if (args->empty()) syntax_error("missing unlock_bootloader request");
1291
1292 std::string filename = next_arg(args);
1293
1294 int64_t sz;
1295 void* data = load_file(filename.c_str(), &sz);
1296 if (data == nullptr) die("could not load '%s': %s", filename.c_str(), strerror(errno));
1297 fb_queue_download("unlock_message", data, sz);
1298 fb_queue_command("flashing unlock_bootloader", "unlocking bootloader");
1299}
1300
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001301static void do_oem_command(const std::string& cmd, std::vector<std::string>* args) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001302 if (args->empty()) syntax_error("empty oem command");
Tsu Chiang Chuangee520552011-02-25 18:38:53 -08001303
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001304 std::string command(cmd);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001305 while (!args->empty()) {
Elliott Hughes29d5d7d2017-05-11 15:05:13 -07001306 command += " " + next_arg(args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001307 }
Elliott Hughes4a667302017-03-15 09:37:28 -07001308 fb_queue_command(command.c_str(), "");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001309}
1310
Colin Crossf8387882012-05-24 17:18:41 -07001311static int64_t parse_num(const char *arg)
1312{
1313 char *endptr;
1314 unsigned long long num;
1315
1316 num = strtoull(arg, &endptr, 0);
1317 if (endptr == arg) {
1318 return -1;
1319 }
1320
1321 if (*endptr == 'k' || *endptr == 'K') {
1322 if (num >= (-1ULL) / 1024) {
1323 return -1;
1324 }
1325 num *= 1024LL;
1326 endptr++;
1327 } else if (*endptr == 'm' || *endptr == 'M') {
1328 if (num >= (-1ULL) / (1024 * 1024)) {
1329 return -1;
1330 }
1331 num *= 1024LL * 1024LL;
1332 endptr++;
1333 } else if (*endptr == 'g' || *endptr == 'G') {
1334 if (num >= (-1ULL) / (1024 * 1024 * 1024)) {
1335 return -1;
1336 }
1337 num *= 1024LL * 1024LL * 1024LL;
1338 endptr++;
1339 }
1340
1341 if (*endptr != '\0') {
1342 return -1;
1343 }
1344
1345 if (num > INT64_MAX) {
1346 return -1;
1347 }
1348
1349 return num;
1350}
1351
Connor O'Brience16a8a2017-02-06 14:39:31 -08001352static std::string fb_fix_numeric_var(std::string var) {
1353 // Some bootloaders (angler, for example), send spurious leading whitespace.
1354 var = android::base::Trim(var);
1355 // Some bootloaders (hammerhead, for example) use implicit hex.
1356 // This code used to use strtol with base 16.
1357 if (!android::base::StartsWith(var, "0x")) var = "0x" + var;
1358 return var;
1359}
1360
1361static unsigned fb_get_flash_block_size(Transport* transport, std::string name) {
1362 std::string sizeString;
Tao Bao67212f92017-11-02 15:40:36 -07001363 if (!fb_getvar(transport, name.c_str(), &sizeString) || sizeString.empty()) {
Connor O'Brience16a8a2017-02-06 14:39:31 -08001364 /* This device does not report flash block sizes, so return 0 */
1365 return 0;
1366 }
1367 sizeString = fb_fix_numeric_var(sizeString);
1368
1369 unsigned size;
1370 if (!android::base::ParseUint(sizeString, &size)) {
1371 fprintf(stderr, "Couldn't parse %s '%s'.\n", name.c_str(), sizeString.c_str());
1372 return 0;
1373 }
Connor O'Brien6ef5c242017-11-01 17:37:32 -07001374 if ((size & (size - 1)) != 0) {
1375 fprintf(stderr, "Invalid %s %u: must be a power of 2.\n", name.c_str(), size);
Connor O'Brience16a8a2017-02-06 14:39:31 -08001376 return 0;
1377 }
1378 return size;
1379}
1380
David Pursell0b156632015-10-30 11:22:01 -07001381static void fb_perform_format(Transport* transport,
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001382 const char* partition, int skip_if_not_supported,
Elliott Hughesd6365a72017-05-08 18:04:49 -07001383 const std::string& type_override, const std::string& size_override,
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001384 const std::string& initial_dir) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001385 std::string partition_type, partition_size;
1386
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001387 struct fastboot_buffer buf;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001388 const char* errMsg = nullptr;
1389 const struct fs_generator* gen = nullptr;
Jin Qian4a335822017-04-18 16:23:18 -07001390 TemporaryFile output;
1391 unique_fd fd;
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001392
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001393 unsigned int limit = INT_MAX;
1394 if (target_sparse_limit > 0 && target_sparse_limit < limit) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001395 limit = target_sparse_limit;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001396 }
1397 if (sparse_limit > 0 && sparse_limit < limit) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001398 limit = sparse_limit;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001399 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001400
David Pursell0b156632015-10-30 11:22:01 -07001401 if (!fb_getvar(transport, std::string("partition-type:") + partition, &partition_type)) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001402 errMsg = "Can't determine partition type.\n";
1403 goto failed;
1404 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001405 if (!type_override.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001406 if (partition_type != type_override) {
1407 fprintf(stderr, "Warning: %s type is %s, but %s was requested for formatting.\n",
Elliott Hughesd6365a72017-05-08 18:04:49 -07001408 partition, partition_type.c_str(), type_override.c_str());
JP Abgrall7e859742014-05-06 15:14:15 -07001409 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001410 partition_type = type_override;
JP Abgrall7e859742014-05-06 15:14:15 -07001411 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001412
David Pursell0b156632015-10-30 11:22:01 -07001413 if (!fb_getvar(transport, std::string("partition-size:") + partition, &partition_size)) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001414 errMsg = "Unable to get partition size\n";
1415 goto failed;
1416 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001417 if (!size_override.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001418 if (partition_size != size_override) {
1419 fprintf(stderr, "Warning: %s size is %s, but %s was requested for formatting.\n",
Elliott Hughesd6365a72017-05-08 18:04:49 -07001420 partition, partition_size.c_str(), size_override.c_str());
JP Abgrall7e859742014-05-06 15:14:15 -07001421 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001422 partition_size = size_override;
JP Abgrall7e859742014-05-06 15:14:15 -07001423 }
Connor O'Brience16a8a2017-02-06 14:39:31 -08001424 partition_size = fb_fix_numeric_var(partition_size);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001425
Elliott Hughes8ab9a322015-11-02 14:05:57 -08001426 gen = fs_get_generator(partition_type);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001427 if (!gen) {
1428 if (skip_if_not_supported) {
1429 fprintf(stderr, "Erase successful, but not automatically formatting.\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001430 fprintf(stderr, "File system type %s not supported.\n", partition_type.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001431 return;
1432 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001433 fprintf(stderr, "Formatting is not supported for file system with type '%s'.\n",
1434 partition_type.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001435 return;
1436 }
1437
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001438 int64_t size;
Elliott Hughesda46b392016-10-11 17:09:00 -07001439 if (!android::base::ParseInt(partition_size, &size)) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001440 fprintf(stderr, "Couldn't parse partition size '%s'.\n", partition_size.c_str());
1441 return;
1442 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001443
Connor O'Brience16a8a2017-02-06 14:39:31 -08001444 unsigned eraseBlkSize, logicalBlkSize;
1445 eraseBlkSize = fb_get_flash_block_size(transport, "erase-block-size");
1446 logicalBlkSize = fb_get_flash_block_size(transport, "logical-block-size");
1447
Jin Qian4a335822017-04-18 16:23:18 -07001448 if (fs_generator_generate(gen, output.path, size, initial_dir,
1449 eraseBlkSize, logicalBlkSize)) {
Elliott Hughes4089d342017-10-27 14:21:12 -07001450 die("Cannot generate image for %s", partition);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001451 return;
1452 }
1453
Jin Qian4a335822017-04-18 16:23:18 -07001454 fd.reset(open(output.path, O_RDONLY));
1455 if (fd == -1) {
1456 fprintf(stderr, "Cannot open generated image: %s\n", strerror(errno));
1457 return;
1458 }
1459 if (!load_buf_fd(transport, fd.release(), &buf)) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001460 fprintf(stderr, "Cannot read image: %s\n", strerror(errno));
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001461 return;
1462 }
1463 flash_buf(partition, &buf);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001464 return;
1465
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001466failed:
1467 if (skip_if_not_supported) {
1468 fprintf(stderr, "Erase successful, but not automatically formatting.\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001469 if (errMsg) fprintf(stderr, "%s", errMsg);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001470 }
Elliott Hughes2810d002016-04-25 14:31:18 -07001471 fprintf(stderr, "FAILED (%s)\n", fb_get_error().c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001472}
1473
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001474int main(int argc, char **argv)
1475{
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001476 bool wants_wipe = false;
1477 bool wants_reboot = false;
1478 bool wants_reboot_bootloader = false;
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001479 bool wants_reboot_emergency = false;
Mitchell Wills31dce302016-09-26 10:26:21 -07001480 bool skip_reboot = false;
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001481 bool wants_set_active = false;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001482 bool skip_secondary = false;
Elliott Hughesfc797672015-04-07 20:12:50 -07001483 bool erase_first = true;
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001484 bool set_fbe_marker = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001485 void *data;
Elliott Hughesfc797672015-04-07 20:12:50 -07001486 int64_t sz;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001487 int longindex;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001488 std::string slot_override;
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001489 std::string next_active;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001490
JP Abgrall7b8970c2013-03-07 17:06:41 -08001491 const struct option longopts[] = {
1492 {"base", required_argument, 0, 'b'},
1493 {"kernel_offset", required_argument, 0, 'k'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001494 {"kernel-offset", required_argument, 0, 'k'},
JP Abgrall7b8970c2013-03-07 17:06:41 -08001495 {"page_size", required_argument, 0, 'n'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001496 {"page-size", required_argument, 0, 'n'},
JP Abgrall7b8970c2013-03-07 17:06:41 -08001497 {"ramdisk_offset", required_argument, 0, 'r'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001498 {"ramdisk-offset", required_argument, 0, 'r'},
Mohamad Ayyash29fd7b12014-01-14 18:27:25 -08001499 {"tags_offset", required_argument, 0, 't'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001500 {"tags-offset", required_argument, 0, 't'},
Elliott Hughes379646b2015-06-02 13:50:00 -07001501 {"help", no_argument, 0, 'h'},
1502 {"unbuffered", no_argument, 0, 0},
1503 {"version", no_argument, 0, 0},
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001504 {"slot", required_argument, 0, 0},
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001505 {"set_active", optional_argument, 0, 'a'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001506 {"set-active", optional_argument, 0, 'a'},
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001507 {"skip-secondary", no_argument, 0, 0},
Mitchell Wills31dce302016-09-26 10:26:21 -07001508 {"skip-reboot", no_argument, 0, 0},
David Zeuthenb6ea4352017-08-07 14:29:26 -04001509 {"disable-verity", no_argument, 0, 0},
1510 {"disable-verification", no_argument, 0, 0},
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001511#if !defined(_WIN32)
1512 {"wipe-and-use-fbe", no_argument, 0, 0},
1513#endif
JP Abgrall7b8970c2013-03-07 17:06:41 -08001514 {0, 0, 0, 0}
1515 };
Colin Cross8879f982012-05-22 17:53:34 -07001516
1517 serial = getenv("ANDROID_SERIAL");
1518
1519 while (1) {
Elliott Hughes45964a82017-05-03 22:43:23 -07001520 int c = getopt_long(argc, argv, "wub:k:n:r:t:s:S:lc:i:m:ha::", longopts, &longindex);
Colin Cross8879f982012-05-22 17:53:34 -07001521 if (c < 0) {
1522 break;
1523 }
JP Abgrall7b8970c2013-03-07 17:06:41 -08001524 /* Alphabetical cases */
Colin Cross8879f982012-05-22 17:53:34 -07001525 switch (c) {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001526 case 'a':
1527 wants_set_active = true;
1528 if (optarg)
1529 next_active = optarg;
1530 break;
Colin Cross8879f982012-05-22 17:53:34 -07001531 case 'b':
1532 base_addr = strtoul(optarg, 0, 16);
1533 break;
Colin Cross8879f982012-05-22 17:53:34 -07001534 case 'c':
1535 cmdline = optarg;
1536 break;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001537 case 'h':
Elliott Hughesd6365a72017-05-08 18:04:49 -07001538 return show_help();
Colin Cross8879f982012-05-22 17:53:34 -07001539 case 'i': {
Elliott Hughesfc797672015-04-07 20:12:50 -07001540 char *endptr = nullptr;
Colin Cross8879f982012-05-22 17:53:34 -07001541 unsigned long val;
1542
1543 val = strtoul(optarg, &endptr, 0);
1544 if (!endptr || *endptr != '\0' || (val & ~0xffff))
1545 die("invalid vendor id '%s'", optarg);
1546 vendor_id = (unsigned short)val;
1547 break;
1548 }
JP Abgrall7b8970c2013-03-07 17:06:41 -08001549 case 'k':
1550 kernel_offset = strtoul(optarg, 0, 16);
1551 break;
1552 case 'l':
1553 long_listing = 1;
1554 break;
1555 case 'n':
Elliott Hughesfc797672015-04-07 20:12:50 -07001556 page_size = (unsigned)strtoul(optarg, nullptr, 0);
JP Abgrall7b8970c2013-03-07 17:06:41 -08001557 if (!page_size) die("invalid page size");
1558 break;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001559 case 'r':
1560 ramdisk_offset = strtoul(optarg, 0, 16);
1561 break;
Mohamad Ayyash29fd7b12014-01-14 18:27:25 -08001562 case 't':
1563 tags_offset = strtoul(optarg, 0, 16);
1564 break;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001565 case 's':
1566 serial = optarg;
1567 break;
1568 case 'S':
1569 sparse_limit = parse_num(optarg);
Elliott Hughes4089d342017-10-27 14:21:12 -07001570 if (sparse_limit < 0) die("invalid sparse limit");
JP Abgrall7b8970c2013-03-07 17:06:41 -08001571 break;
1572 case 'u':
Elliott Hughesfc797672015-04-07 20:12:50 -07001573 erase_first = false;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001574 break;
1575 case 'w':
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001576 wants_wipe = true;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001577 break;
Colin Cross8879f982012-05-22 17:53:34 -07001578 case '?':
1579 return 1;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001580 case 0:
1581 if (strcmp("unbuffered", longopts[longindex].name) == 0) {
Elliott Hughesfc797672015-04-07 20:12:50 -07001582 setvbuf(stdout, nullptr, _IONBF, 0);
1583 setvbuf(stderr, nullptr, _IONBF, 0);
Elliott Hughes379646b2015-06-02 13:50:00 -07001584 } else if (strcmp("version", longopts[longindex].name) == 0) {
Elliott Hughes4d4f64f2017-05-08 11:30:34 -07001585 fprintf(stdout, "fastboot version %s\n", FASTBOOT_VERSION);
Elliott Hughes1fd46df2017-03-30 15:08:28 -07001586 fprintf(stdout, "Installed as %s\n", android::base::GetExecutablePath().c_str());
Elliott Hughes379646b2015-06-02 13:50:00 -07001587 return 0;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001588 } else if (strcmp("slot", longopts[longindex].name) == 0) {
1589 slot_override = std::string(optarg);
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001590 } else if (strcmp("skip-secondary", longopts[longindex].name) == 0 ) {
1591 skip_secondary = true;
Mitchell Wills31dce302016-09-26 10:26:21 -07001592 } else if (strcmp("skip-reboot", longopts[longindex].name) == 0 ) {
1593 skip_reboot = true;
David Zeuthenb6ea4352017-08-07 14:29:26 -04001594 } else if (strcmp("disable-verity", longopts[longindex].name) == 0 ) {
1595 g_disable_verity = true;
1596 } else if (strcmp("disable-verification", longopts[longindex].name) == 0 ) {
1597 g_disable_verification = true;
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001598#if !defined(_WIN32)
1599 } else if (strcmp("wipe-and-use-fbe", longopts[longindex].name) == 0) {
1600 wants_wipe = true;
1601 set_fbe_marker = true;
1602#endif
1603 } else {
1604 fprintf(stderr, "Internal error in options processing for %s\n",
1605 longopts[longindex].name);
1606 return 1;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001607 }
1608 break;
Colin Cross8879f982012-05-22 17:53:34 -07001609 default:
1610 abort();
1611 }
1612 }
1613
1614 argc -= optind;
1615 argv += optind;
1616
Elliott Hughesd6365a72017-05-08 18:04:49 -07001617 if (argc == 0 && !wants_wipe && !wants_set_active) syntax_error("no command");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001618
Colin Cross8fb6e062012-07-24 16:36:41 -07001619 if (argc > 0 && !strcmp(*argv, "devices")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001620 list_devices();
Tsu Chiang Chuangee520552011-02-25 18:38:53 -08001621 return 0;
1622 }
1623
Colin Crossc7b75dc2012-08-29 18:17:06 -07001624 if (argc > 0 && !strcmp(*argv, "help")) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001625 return show_help();
Colin Crossc7b75dc2012-08-29 18:17:06 -07001626 }
1627
David Pursell0b156632015-10-30 11:22:01 -07001628 Transport* transport = open_device();
David Pursell2ec418a2016-01-20 08:32:08 -08001629 if (transport == nullptr) {
1630 return 1;
1631 }
1632
Daniel Rosenberg80919472016-06-30 19:25:31 -07001633 if (!supports_AB(transport) && supports_AB_obsolete(transport)) {
1634 fprintf(stderr, "Warning: Device A/B support is outdated. Bootloader update required.\n");
1635 }
1636 if (slot_override != "") slot_override = verify_slot(transport, slot_override);
1637 if (next_active != "") next_active = verify_slot(transport, next_active, false);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001638
1639 if (wants_set_active) {
1640 if (next_active == "") {
1641 if (slot_override == "") {
Daniel Rosenberg13454092016-06-27 19:43:11 -07001642 std::string current_slot;
1643 if (fb_getvar(transport, "current-slot", &current_slot)) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001644 next_active = verify_slot(transport, current_slot, false);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001645 } else {
1646 wants_set_active = false;
1647 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001648 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001649 next_active = verify_slot(transport, slot_override, false);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001650 }
1651 }
1652 }
Elliott Hughes31dbed72009-10-07 15:38:53 -07001653
Elliott Hughesd6365a72017-05-08 18:04:49 -07001654 std::vector<std::string> args(argv, argv + argc);
1655 while (!args.empty()) {
1656 std::string command = next_arg(&args);
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001657
Elliott Hughesd6365a72017-05-08 18:04:49 -07001658 if (command == "getvar") {
1659 std::string variable = next_arg(&args);
1660 fb_queue_display(variable.c_str(), variable.c_str());
1661 } else if (command == "erase") {
1662 std::string partition = next_arg(&args);
1663 auto erase = [&](const std::string& partition) {
David Pursell0b156632015-10-30 11:22:01 -07001664 std::string partition_type;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001665 if (fb_getvar(transport, std::string("partition-type:") + partition,
1666 &partition_type) &&
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001667 fs_get_generator(partition_type) != nullptr) {
1668 fprintf(stderr, "******** Did you mean to fastboot format this %s partition?\n",
1669 partition_type.c_str());
1670 }
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001671
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001672 fb_queue_erase(partition.c_str());
1673 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001674 do_for_partitions(transport, partition, slot_override, erase, true);
1675 } else if (android::base::StartsWith(command, "format")) {
1676 // Parsing for: "format[:[type][:[size]]]"
1677 // Some valid things:
1678 // - select only the size, and leave default fs type:
1679 // format::0x4000000 userdata
1680 // - default fs type and size:
1681 // format userdata
1682 // format:: userdata
1683 std::vector<std::string> pieces = android::base::Split(command, ":");
1684 std::string type_override;
1685 if (pieces.size() > 1) type_override = pieces[1].c_str();
1686 std::string size_override;
1687 if (pieces.size() > 2) size_override = pieces[2].c_str();
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001688
Elliott Hughesd6365a72017-05-08 18:04:49 -07001689 std::string partition = next_arg(&args);
1690
1691 auto format = [&](const std::string& partition) {
David Pursell0b156632015-10-30 11:22:01 -07001692 if (erase_first && needs_erase(transport, partition.c_str())) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001693 fb_queue_erase(partition.c_str());
1694 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001695 fb_perform_format(transport, partition.c_str(), 0, type_override, size_override,
1696 "");
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001697 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001698 do_for_partitions(transport, partition.c_str(), slot_override, format, true);
1699 } else if (command == "signature") {
1700 std::string filename = next_arg(&args);
1701 data = load_file(filename.c_str(), &sz);
1702 if (data == nullptr) die("could not load '%s': %s", filename.c_str(), strerror(errno));
Elliott Hughes4089d342017-10-27 14:21:12 -07001703 if (sz != 256) die("signature must be 256 bytes (got %" PRId64 ")", sz);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001704 fb_queue_download("signature", data, sz);
1705 fb_queue_command("signature", "installing signature");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001706 } else if (command == "reboot") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001707 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001708
1709 if (args.size() == 1) {
1710 std::string what = next_arg(&args);
1711 if (what == "bootloader") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001712 wants_reboot = false;
1713 wants_reboot_bootloader = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001714 } else if (what == "emergency") {
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001715 wants_reboot = false;
1716 wants_reboot_emergency = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001717 } else {
1718 syntax_error("unknown reboot target %s", what.c_str());
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001719 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001720
Elliott Hughesca85df02015-02-25 10:02:00 -08001721 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001722 if (!args.empty()) syntax_error("junk after reboot command");
1723 } else if (command == "reboot-bootloader") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001724 wants_reboot_bootloader = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001725 } else if (command == "continue") {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001726 fb_queue_command("continue", "resuming boot");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001727 } else if (command == "boot") {
1728 std::string kernel = next_arg(&args);
1729 std::string ramdisk;
1730 if (!args.empty()) ramdisk = next_arg(&args);
1731 std::string second_stage;
1732 if (!args.empty()) second_stage = next_arg(&args);
1733
1734 data = load_bootable_image(kernel, ramdisk, second_stage, &sz, cmdline);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001735 fb_queue_download("boot.img", data, sz);
1736 fb_queue_command("boot", "booting");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001737 } else if (command == "flash") {
1738 std::string pname = next_arg(&args);
1739
Elliott Hughes2810d002016-04-25 14:31:18 -07001740 std::string fname;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001741 if (!args.empty()) {
1742 fname = next_arg(&args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001743 } else {
Elliott Hughes45964a82017-05-03 22:43:23 -07001744 fname = find_item(pname);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001745 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001746 if (fname.empty()) die("cannot determine image filename for '%s'", pname.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001747
1748 auto flash = [&](const std::string &partition) {
David Pursell0b156632015-10-30 11:22:01 -07001749 if (erase_first && needs_erase(transport, partition.c_str())) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001750 fb_queue_erase(partition.c_str());
1751 }
Elliott Hughes2810d002016-04-25 14:31:18 -07001752 do_flash(transport, partition.c_str(), fname.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001753 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001754 do_for_partitions(transport, pname.c_str(), slot_override, flash, true);
1755 } else if (command == "flash:raw") {
1756 std::string partition = next_arg(&args);
1757 std::string kernel = next_arg(&args);
1758 std::string ramdisk;
1759 if (!args.empty()) ramdisk = next_arg(&args);
1760 std::string second_stage;
1761 if (!args.empty()) second_stage = next_arg(&args);
1762
1763 data = load_bootable_image(kernel, ramdisk, second_stage, &sz, cmdline);
1764 auto flashraw = [&](const std::string& partition) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001765 fb_queue_flash(partition.c_str(), data, sz);
1766 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001767 do_for_partitions(transport, partition, slot_override, flashraw, true);
1768 } else if (command == "flashall") {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001769 if (slot_override == "all") {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001770 fprintf(stderr, "Warning: slot set to 'all'. Secondary slots will not be flashed.\n");
1771 do_flashall(transport, slot_override, erase_first, true);
Alex Lightbb9b8a52016-06-29 09:26:44 -07001772 } else {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001773 do_flashall(transport, slot_override, erase_first, skip_secondary);
Alex Lightbb9b8a52016-06-29 09:26:44 -07001774 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001775 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001776 } else if (command == "update") {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001777 bool slot_all = (slot_override == "all");
1778 if (slot_all) {
1779 fprintf(stderr, "Warning: slot set to 'all'. Secondary slots will not be flashed.\n");
1780 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001781 std::string filename = "update.zip";
1782 if (!args.empty()) {
1783 filename = next_arg(&args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001784 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001785 do_update(transport, filename.c_str(), slot_override, erase_first,
1786 skip_secondary || slot_all);
Mitchell Wills31dce302016-09-26 10:26:21 -07001787 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001788 } else if (command == "set_active") {
1789 std::string slot = verify_slot(transport, next_arg(&args), false);
1790
David Pursell04396f62016-12-15 16:16:10 -08001791 // Legacy support: verify_slot() removes leading underscores, we need to put them back
1792 // in for old bootloaders. Legacy bootloaders do not have the slot-count variable but
1793 // do have slot-suffixes.
1794 std::string var;
1795 if (!fb_getvar(transport, "slot-count", &var) &&
1796 fb_getvar(transport, "slot-suffixes", &var)) {
1797 slot = "_" + slot;
1798 }
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001799 fb_set_active(slot.c_str());
Elliott Hughesd6365a72017-05-08 18:04:49 -07001800 } else if (command == "stage") {
1801 std::string filename = next_arg(&args);
1802
Jocelyn Bohr98cc2832017-01-26 19:20:53 -08001803 struct fastboot_buffer buf;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001804 if (!load_buf(transport, filename.c_str(), &buf) || buf.type != FB_BUFFER_FD) {
1805 die("cannot load '%s'", filename.c_str());
Jocelyn Bohr98cc2832017-01-26 19:20:53 -08001806 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001807 fb_queue_download_fd(filename.c_str(), buf.fd, buf.sz);
1808 } else if (command == "get_staged") {
1809 std::string filename = next_arg(&args);
1810 fb_queue_upload(filename.c_str());
1811 } else if (command == "oem") {
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001812 do_oem_command("oem", &args);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001813 } else if (command == "flashing") {
1814 if (args.empty()) {
1815 syntax_error("missing 'flashing' command");
1816 } else if (args.size() == 1 && (args[0] == "unlock" || args[0] == "lock" ||
1817 args[0] == "unlock_critical" ||
1818 args[0] == "lock_critical" ||
1819 args[0] == "get_unlock_ability" ||
1820 args[0] == "get_unlock_bootloader_nonce" ||
1821 args[0] == "lock_bootloader")) {
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001822 do_oem_command("flashing", &args);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001823 } else if (args.size() == 2 && args[0] == "unlock_bootloader") {
1824 do_bypass_unlock_command(&args);
Badhri Jagan Sridharanbf110952015-05-15 16:43:47 -07001825 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001826 syntax_error("unknown 'flashing' command %s", args[0].c_str());
Badhri Jagan Sridharanbf110952015-05-15 16:43:47 -07001827 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001828 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001829 syntax_error("unknown command %s", command.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001830 }
1831 }
1832
1833 if (wants_wipe) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001834 fprintf(stderr, "wiping userdata...\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001835 fb_queue_erase("userdata");
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001836 if (set_fbe_marker) {
1837 fprintf(stderr, "setting FBE marker...\n");
1838 std::string initial_userdata_dir = create_fbemarker_tmpdir();
1839 if (initial_userdata_dir.empty()) {
1840 return 1;
1841 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001842 fb_perform_format(transport, "userdata", 1, "", "", initial_userdata_dir);
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001843 delete_fbemarker_tmpdir(initial_userdata_dir);
1844 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001845 fb_perform_format(transport, "userdata", 1, "", "", "");
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001846 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001847
1848 std::string cache_type;
David Pursell0b156632015-10-30 11:22:01 -07001849 if (fb_getvar(transport, "partition-type:cache", &cache_type) && !cache_type.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001850 fprintf(stderr, "wiping cache...\n");
1851 fb_queue_erase("cache");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001852 fb_perform_format(transport, "cache", 1, "", "", "");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001853 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001854 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001855 if (wants_set_active) {
1856 fb_set_active(next_active.c_str());
1857 }
Mitchell Wills31dce302016-09-26 10:26:21 -07001858 if (wants_reboot && !skip_reboot) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001859 fb_queue_reboot();
Mark Wachslerec25e7b2014-06-24 11:04:54 -04001860 fb_queue_wait_for_disconnect();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001861 } else if (wants_reboot_bootloader) {
1862 fb_queue_command("reboot-bootloader", "rebooting into bootloader");
Mark Wachsler157b0012013-10-02 09:35:38 -04001863 fb_queue_wait_for_disconnect();
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001864 } else if (wants_reboot_emergency) {
1865 fb_queue_command("reboot-emergency", "rebooting into emergency download (EDL) mode");
1866 fb_queue_wait_for_disconnect();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001867 }
1868
David Pursell0b156632015-10-30 11:22:01 -07001869 return fb_execute_queue(transport) ? EXIT_FAILURE : EXIT_SUCCESS;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001870}