blob: e89586f151244a716a6835a941e515b6e37e4b6a [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 },
Bowgo Tsaide2472d2018-03-29 01:24:12 +0800126 { "odm", "odm.img", "odm.sig", "odm", true, false },
Bowgo Tsai7e50de42018-03-26 15:45:01 +0800127 { "product", "product.img", "product.sig", "product", true, false },
Elliott Hughes45964a82017-05-03 22:43:23 -0700128 { "recovery", "recovery.img", "recovery.sig", "recovery", true, false },
129 { "system", "system.img", "system.sig", "system", false, false },
130 { nullptr, "system_other.img", "system.sig", "system", true, true },
131 { "vbmeta", "vbmeta.img", "vbmeta.sig", "vbmeta", true, false },
132 { "vendor", "vendor.img", "vendor.sig", "vendor", true, false },
133 { nullptr, "vendor_other.img", "vendor.sig", "vendor", true, true },
134 // clang-format on
Rom Lemarchand622810c2013-06-28 09:54:59 -0700135};
Brian Swetland2a63bb72009-04-28 16:05:07 -0700136
Elliott Hughes45964a82017-05-03 22:43:23 -0700137static std::string find_item_given_name(const char* img_name) {
138 char* dir = getenv("ANDROID_PRODUCT_OUT");
Alex Lightbb9b8a52016-06-29 09:26:44 -0700139 if (dir == nullptr || dir[0] == '\0') {
Elliott Hughes45964a82017-05-03 22:43:23 -0700140 die("ANDROID_PRODUCT_OUT not set");
Alex Lightbb9b8a52016-06-29 09:26:44 -0700141 }
Alex Lightbb9b8a52016-06-29 09:26:44 -0700142 return android::base::StringPrintf("%s/%s", dir, img_name);
143}
144
Elliott Hughes29d5d7d2017-05-11 15:05:13 -0700145static std::string find_item(const std::string& item) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700146 for (size_t i = 0; i < arraysize(images); ++i) {
Elliott Hughesd6365a72017-05-08 18:04:49 -0700147 if (images[i].nickname && item == images[i].nickname) {
Elliott Hughes45964a82017-05-03 22:43:23 -0700148 return find_item_given_name(images[i].img_name);
149 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800150 }
151
Elliott Hughesd6365a72017-05-08 18:04:49 -0700152 if (item == "userdata") return find_item_given_name("userdata.img");
153 if (item == "cache") return find_item_given_name("cache.img");
Elliott Hughes45964a82017-05-03 22:43:23 -0700154
Elliott Hughesd6365a72017-05-08 18:04:49 -0700155 fprintf(stderr, "unknown partition '%s'\n", item.c_str());
Elliott Hughes45964a82017-05-03 22:43:23 -0700156 return "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800157}
158
Elliott Hughesfc797672015-04-07 20:12:50 -0700159static int64_t get_file_size(int fd) {
160 struct stat sb;
161 return fstat(fd, &sb) == -1 ? -1 : sb.st_size;
Colin Crossf8387882012-05-24 17:18:41 -0700162}
163
Elliott Hughesfc797672015-04-07 20:12:50 -0700164static void* load_fd(int fd, int64_t* sz) {
Matt Gumbel64ba2582011-12-08 11:59:38 -0800165 int errno_tmp;
Elliott Hughesfc797672015-04-07 20:12:50 -0700166 char* data = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800167
Elliott Hughesfc797672015-04-07 20:12:50 -0700168 *sz = get_file_size(fd);
169 if (*sz < 0) {
Rom Lemarchand622810c2013-06-28 09:54:59 -0700170 goto oops;
171 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800172
Elliott Hughesfc797672015-04-07 20:12:50 -0700173 data = (char*) malloc(*sz);
174 if (data == nullptr) goto oops;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800175
Elliott Hughesfc797672015-04-07 20:12:50 -0700176 if(read(fd, data, *sz) != *sz) goto oops;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800177 close(fd);
178
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800179 return data;
180
181oops:
Matt Gumbel64ba2582011-12-08 11:59:38 -0800182 errno_tmp = errno;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800183 close(fd);
184 if(data != 0) free(data);
Matt Gumbel64ba2582011-12-08 11:59:38 -0800185 errno = errno_tmp;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800186 return 0;
187}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800188
Elliott Hughes2810d002016-04-25 14:31:18 -0700189static void* load_file(const std::string& path, int64_t* sz) {
190 int fd = open(path.c_str(), O_RDONLY | O_BINARY);
Elliott Hughesfc797672015-04-07 20:12:50 -0700191 if (fd == -1) return nullptr;
192 return load_fd(fd, sz);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700193}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800194
Elliott Hughesfc797672015-04-07 20:12:50 -0700195static int match_fastboot_with_serial(usb_ifc_info* info, const char* local_serial) {
Elliott Hughese1746fd2015-08-10 15:30:54 -0700196 // Require a matching vendor id if the user specified one with -i.
Elliott Hughesb46964f2015-08-19 17:49:45 -0700197 if (vendor_id != 0 && info->dev_vendor != vendor_id) {
Elliott Hughese1746fd2015-08-10 15:30:54 -0700198 return -1;
199 }
200
201 if (info->ifc_class != 0xff || info->ifc_subclass != 0x42 || info->ifc_protocol != 0x03) {
202 return -1;
203 }
204
Scott Anderson13081c62012-04-06 12:39:30 -0700205 // require matching serial number or device path if requested
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800206 // at the command line with the -s option.
JP Abgralla032ded2012-06-06 11:53:33 -0700207 if (local_serial && (strcmp(local_serial, info->serial_number) != 0 &&
208 strcmp(local_serial, info->device_path) != 0)) return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800209 return 0;
210}
211
Elliott Hughesfc797672015-04-07 20:12:50 -0700212static int match_fastboot(usb_ifc_info* info) {
JP Abgrall7b8970c2013-03-07 17:06:41 -0800213 return match_fastboot_with_serial(info, serial);
214}
215
Elliott Hughesfc797672015-04-07 20:12:50 -0700216static int list_devices_callback(usb_ifc_info* info) {
217 if (match_fastboot_with_serial(info, nullptr) == 0) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800218 std::string serial = info->serial_number;
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700219 if (!info->writable) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800220 serial = UsbNoPermissionsShortHelpText();
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700221 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800222 if (!serial[0]) {
223 serial = "????????????";
224 }
Scott Anderson866b1bd2012-06-04 20:29:11 -0700225 // output compatible with "adb devices"
Scott Anderson13081c62012-04-06 12:39:30 -0700226 if (!long_listing) {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800227 printf("%s\tfastboot", serial.c_str());
Scott Anderson13081c62012-04-06 12:39:30 -0700228 } else {
Elliott Hughes1b708d32015-12-11 19:07:01 -0800229 printf("%-22s fastboot", serial.c_str());
230 if (strlen(info->device_path) > 0) printf(" %s", info->device_path);
Scott Anderson13081c62012-04-06 12:39:30 -0700231 }
Elliott Hughes1b708d32015-12-11 19:07:01 -0800232 putchar('\n');
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800233 }
234
235 return -1;
236}
237
David Pursell2ec418a2016-01-20 08:32:08 -0800238// Opens a new Transport connected to a device. If |serial| is non-null it will be used to identify
239// a specific device, otherwise the first USB device found will be used.
240//
241// If |serial| is non-null but invalid, this prints an error message to stderr and returns nullptr.
242// Otherwise it blocks until the target is available.
243//
244// The returned Transport is a singleton, so multiple calls to this function will return the same
245// object, and the caller should not attempt to delete the returned Transport.
David Pursell0b156632015-10-30 11:22:01 -0700246static Transport* open_device() {
247 static Transport* transport = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -0800248 bool announce = true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800249
David Pursell2ec418a2016-01-20 08:32:08 -0800250 if (transport != nullptr) {
251 return transport;
252 }
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800253
David Pursell4601c972016-02-05 15:35:09 -0800254 Socket::Protocol protocol = Socket::Protocol::kTcp;
David Pursell2ec418a2016-01-20 08:32:08 -0800255 std::string host;
David Pursell4601c972016-02-05 15:35:09 -0800256 int port = 0;
257 if (serial != nullptr) {
258 const char* net_address = nullptr;
David Pursell2ec418a2016-01-20 08:32:08 -0800259
David Pursell4601c972016-02-05 15:35:09 -0800260 if (android::base::StartsWith(serial, "tcp:")) {
261 protocol = Socket::Protocol::kTcp;
262 port = tcp::kDefaultPort;
263 net_address = serial + strlen("tcp:");
264 } else if (android::base::StartsWith(serial, "udp:")) {
265 protocol = Socket::Protocol::kUdp;
266 port = udp::kDefaultPort;
267 net_address = serial + strlen("udp:");
268 }
269
270 if (net_address != nullptr) {
271 std::string error;
272 if (!android::base::ParseNetAddress(net_address, &host, &port, nullptr, &error)) {
273 fprintf(stderr, "error: Invalid network address '%s': %s\n", net_address,
274 error.c_str());
275 return nullptr;
276 }
David Pursell2ec418a2016-01-20 08:32:08 -0800277 }
278 }
279
280 while (true) {
281 if (!host.empty()) {
282 std::string error;
David Pursell4601c972016-02-05 15:35:09 -0800283 if (protocol == Socket::Protocol::kTcp) {
284 transport = tcp::Connect(host, port, &error).release();
285 } else if (protocol == Socket::Protocol::kUdp) {
286 transport = udp::Connect(host, port, &error).release();
287 }
288
David Pursell2ec418a2016-01-20 08:32:08 -0800289 if (transport == nullptr && announce) {
290 fprintf(stderr, "error: %s\n", error.c_str());
291 }
292 } else {
293 transport = usb_open(match_fastboot);
294 }
295
296 if (transport != nullptr) {
297 return transport;
298 }
299
David Pursell0b156632015-10-30 11:22:01 -0700300 if (announce) {
David Pursell2ec418a2016-01-20 08:32:08 -0800301 announce = false;
Elliott Hughesb46964f2015-08-19 17:49:45 -0700302 fprintf(stderr, "< waiting for %s >\n", serial ? serial : "any device");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800303 }
Elliott Hughes290a2282016-11-14 17:08:47 -0800304 std::this_thread::sleep_for(std::chrono::milliseconds(1));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800305 }
306}
307
Elliott Hughesfc797672015-04-07 20:12:50 -0700308static void list_devices() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800309 // We don't actually open a USB device here,
310 // just getting our callback called so we can
311 // list all the connected devices.
312 usb_open(list_devices_callback);
313}
314
Elliott Hughesd6365a72017-05-08 18:04:49 -0700315static void syntax_error(const char* fmt, ...) {
316 fprintf(stderr, "fastboot: usage: ");
317
318 va_list ap;
319 va_start(ap, fmt);
320 vfprintf(stderr, fmt, ap);
321 va_end(ap);
322
323 fprintf(stderr, "\n");
324 exit(1);
325}
326
327static int show_help() {
328 // clang-format off
329 fprintf(stdout,
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800330/* 1234567890123456789012345678901234567890123456789012345678901234567890123456 */
331 "usage: fastboot [ <option> ] <command>\n"
332 "\n"
333 "commands:\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700334 " update <filename> Reflash device from update.zip.\n"
Daniel Rosenberg13454092016-06-27 19:43:11 -0700335 " Sets the flashed slot as active.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700336 " flashall Flash boot, system, vendor, and --\n"
Daniel Rosenberg13454092016-06-27 19:43:11 -0700337 " if found -- recovery. If the device\n"
338 " supports slots, the slot that has\n"
339 " been flashed to is set as active.\n"
Alex Lightbb9b8a52016-06-29 09:26:44 -0700340 " Secondary images may be flashed to\n"
341 " an inactive slot.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700342 " flash <partition> [ <filename> ] Write a file to a flash partition.\n"
343 " flashing lock Locks the device. Prevents flashing.\n"
344 " flashing unlock Unlocks the device. Allows flashing\n"
345 " any partition except\n"
346 " bootloader-related partitions.\n"
347 " flashing lock_critical Prevents flashing bootloader-related\n"
348 " partitions.\n"
349 " flashing unlock_critical Enables flashing bootloader-related\n"
350 " partitions.\n"
351 " flashing get_unlock_ability Queries bootloader to see if the\n"
352 " device is unlocked.\n"
Patrick Tjin51e8b032015-09-01 08:15:23 -0700353 " flashing get_unlock_bootloader_nonce Queries the bootloader to get the\n"
Elliott Hughes45be42e2015-09-02 20:15:48 -0700354 " unlock nonce.\n"
355 " flashing unlock_bootloader <request> Issue unlock bootloader using request.\n"
Patrick Tjin51e8b032015-09-01 08:15:23 -0700356 " flashing lock_bootloader Locks the bootloader to prevent\n"
Elliott Hughes45be42e2015-09-02 20:15:48 -0700357 " bootloader version rollback.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700358 " erase <partition> Erase a flash partition.\n"
359 " format[:[<fs type>][:[<size>]] <partition>\n"
360 " Format a flash partition. Can\n"
361 " override the fs type and/or size\n"
362 " the bootloader reports.\n"
363 " getvar <variable> Display a bootloader variable.\n"
Daniel Rosenberg80919472016-06-30 19:25:31 -0700364 " set_active <slot> Sets the active slot. If slots are\n"
Daniel Rosenberg9b432052015-11-25 15:17:10 -0800365 " not supported, this does nothing.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700366 " boot <kernel> [ <ramdisk> [ <second> ] ] Download and boot kernel.\n"
Elliott Hughesd6365a72017-05-08 18:04:49 -0700367 " flash:raw <bootable-partition> <kernel> [ <ramdisk> [ <second> ] ]\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700368 " Create bootimage and flash it.\n"
369 " devices [-l] List all connected devices [with\n"
370 " device paths].\n"
371 " continue Continue with autoboot.\n"
Alexey Polyudove0bfb752017-01-03 19:39:13 -0800372 " reboot [bootloader|emergency] Reboot device [into bootloader or emergency mode].\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700373 " reboot-bootloader Reboot device into bootloader.\n"
Jocelyn Bohr98cc2832017-01-26 19:20:53 -0800374 " oem <parameter1> ... <parameterN> Executes oem specific command.\n"
375 " stage <infile> Sends contents of <infile> to stage for\n"
376 " the next command. Supported only on\n"
377 " Android Things devices.\n"
Jocelyn Bohr91fefad2017-01-27 14:17:56 -0800378 " get_staged <outfile> Receives data to <outfile> staged by the\n"
379 " last command. Supported only on Android\n"
380 " Things devices.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700381 " help Show this help message.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800382 "\n"
383 "options:\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700384 " -w Erase userdata and cache (and format\n"
385 " if supported by partition type).\n"
386 " -u Do not erase partition before\n"
387 " formatting.\n"
David Pursell2ec418a2016-01-20 08:32:08 -0800388 " -s <specific device> Specify a device. For USB, provide either\n"
389 " a serial number or path to device port.\n"
Alex Deymof62d0cd2016-03-24 19:51:05 -0700390 " For ethernet, provide an address in the\n"
391 " form <protocol>:<hostname>[:port] where\n"
David Pursell4601c972016-02-05 15:35:09 -0800392 " <protocol> is either tcp or udp.\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700393 " -c <cmdline> Override kernel commandline.\n"
394 " -i <vendor id> Specify a custom USB vendor id.\n"
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800395 " -b, --base <base_addr> Specify a custom kernel base\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700396 " address (default: 0x10000000).\n"
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800397 " --kernel-offset Specify a custom kernel offset.\n"
398 " (default: 0x00008000)\n"
399 " --ramdisk-offset Specify a custom ramdisk offset.\n"
400 " (default: 0x01000000)\n"
401 " --tags-offset Specify a custom tags offset.\n"
402 " (default: 0x00000100)\n"
403 " -n, --page-size <page size> Specify the nand page size\n"
Elliott Hughes08df5332015-06-10 11:58:14 -0700404 " (default: 2048).\n"
405 " -S <size>[K|M|G] Automatically sparse files greater\n"
406 " than 'size'. 0 to disable.\n"
Daniel Rosenberg80919472016-06-30 19:25:31 -0700407 " --slot <slot> Specify slot name to be used if the\n"
408 " device supports slots. All operations\n"
409 " on partitions that support slots will\n"
410 " be done on the slot specified.\n"
411 " 'all' can be given to refer to all slots.\n"
412 " 'other' can be given to refer to a\n"
413 " non-current slot. If this flag is not\n"
414 " used, slotted partitions will default\n"
415 " to the current active slot.\n"
416 " -a, --set-active[=<slot>] Sets the active slot. If no slot is\n"
Daniel Rosenberg0d088562015-11-11 16:15:30 -0800417 " provided, this will default to the value\n"
418 " given by --slot. If slots are not\n"
Daniel Rosenberg9b432052015-11-25 15:17:10 -0800419 " supported, this does nothing. This will\n"
420 " run after all non-reboot commands.\n"
Daniel Rosenberg92b44762016-07-13 20:03:25 -0700421 " --skip-secondary Will not flash secondary slots when\n"
422 " performing a flashall or update. This\n"
423 " will preserve data on other slots.\n"
Mitchell Wills31dce302016-09-26 10:26:21 -0700424 " --skip-reboot Will not reboot the device when\n"
425 " performing commands that normally\n"
426 " trigger a reboot.\n"
David Zeuthenb6ea4352017-08-07 14:29:26 -0400427 " --disable-verity Set the disable-verity flag in the\n"
428 " the vbmeta image being flashed.\n"
429 " --disable-verification Set the disable-verification flag in"
430 " the vbmeta image being flashed.\n"
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000431#if !defined(_WIN32)
432 " --wipe-and-use-fbe On devices which support it,\n"
433 " erase userdata and cache, and\n"
434 " enable file-based encryption\n"
435#endif
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800436 " --unbuffered Do not buffer input or output.\n"
437 " --version Display version.\n"
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700438 " --header-version Set boot image header version while\n"
439 " using flash:raw and boot commands to \n"
440 " to create a boot image.\n"
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -0800441 " -h, --help show this message.\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800442 );
Elliott Hughesd6365a72017-05-08 18:04:49 -0700443 // clang-format off
444 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800445}
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000446
Elliott Hughesd6365a72017-05-08 18:04:49 -0700447static void* load_bootable_image(const std::string& kernel, const std::string& ramdisk,
448 const std::string& second_stage, int64_t* sz,
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700449 const char* cmdline, uint32_t header_version) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700450 int64_t ksize;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700451 void* kdata = load_file(kernel.c_str(), &ksize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700452 if (kdata == nullptr) die("cannot load '%s': %s", kernel.c_str(), strerror(errno));
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800453
Elliott Hughesfc797672015-04-07 20:12:50 -0700454 // Is this actually a boot image?
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700455 if (ksize < static_cast<int64_t>(sizeof(boot_img_hdr_v1))) {
Elliott Hughesaaa3b6b2018-01-18 16:08:24 -0800456 die("cannot load '%s': too short", kernel.c_str());
457 }
Elliott Hughesd6365a72017-05-08 18:04:49 -0700458 if (!memcmp(kdata, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700459 if (cmdline) bootimg_set_cmdline(reinterpret_cast<boot_img_hdr_v1*>(kdata), cmdline);
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800460
Elliott Hughes4089d342017-10-27 14:21:12 -0700461 if (!ramdisk.empty()) die("cannot boot a boot.img *and* ramdisk");
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800462
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463 *sz = ksize;
464 return kdata;
465 }
466
Elliott Hughesfc797672015-04-07 20:12:50 -0700467 void* rdata = nullptr;
468 int64_t rsize = 0;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700469 if (!ramdisk.empty()) {
470 rdata = load_file(ramdisk.c_str(), &rsize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700471 if (rdata == nullptr) die("cannot load '%s': %s", ramdisk.c_str(), strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800472 }
473
Elliott Hughesfc797672015-04-07 20:12:50 -0700474 void* sdata = nullptr;
475 int64_t ssize = 0;
Elliott Hughesd6365a72017-05-08 18:04:49 -0700476 if (!second_stage.empty()) {
477 sdata = load_file(second_stage.c_str(), &ssize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700478 if (sdata == nullptr) die("cannot load '%s': %s", second_stage.c_str(), strerror(errno));
Jeremy Compostellaa42adff2014-07-17 17:17:54 +0200479 }
480
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800481 fprintf(stderr,"creating boot image...\n");
Elliott Hughesfc797672015-04-07 20:12:50 -0700482 int64_t bsize = 0;
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700483 boot_img_hdr_v1* bdata = mkbootimg(kdata, ksize, kernel_offset,
JP Abgrall7b8970c2013-03-07 17:06:41 -0800484 rdata, rsize, ramdisk_offset,
Jeremy Compostellaa42adff2014-07-17 17:17:54 +0200485 sdata, ssize, second_offset,
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700486 page_size, base_addr, tags_offset, header_version, &bsize);
Elliott Hughes4089d342017-10-27 14:21:12 -0700487 if (bdata == nullptr) die("failed to create boot.img");
Elliott Hughesd6365a72017-05-08 18:04:49 -0700488
Hridya Valsaraju88de5552018-03-30 16:15:33 -0700489 if (cmdline) bootimg_set_cmdline(bdata, cmdline);
Elliott Hughesfc797672015-04-07 20:12:50 -0700490 fprintf(stderr, "creating boot image - %" PRId64 " bytes\n", bsize);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800491 *sz = bsize;
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800492
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800493 return bdata;
494}
495
Elliott Hughes23af1122017-11-10 08:42:17 -0800496static void* unzip_to_memory(ZipArchiveHandle zip, const char* entry_name, int64_t* sz) {
Yusuke Sato07447542015-06-25 14:39:19 -0700497 ZipString zip_entry_name(entry_name);
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700498 ZipEntry zip_entry;
499 if (FindEntry(zip, zip_entry_name, &zip_entry) != 0) {
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700500 fprintf(stderr, "archive does not contain '%s'\n", entry_name);
Elliott Hughes4089d342017-10-27 14:21:12 -0700501 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800502 }
503
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700504 *sz = zip_entry.uncompressed_length;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800505
Elliott Hughes23af1122017-11-10 08:42:17 -0800506 fprintf(stderr, "extracting %s (%" PRId64 " MB) to RAM...\n", entry_name, *sz / 1024 / 1024);
Elliott Hughesd30ad8a2015-03-18 23:12:44 -0700507 uint8_t* data = reinterpret_cast<uint8_t*>(malloc(zip_entry.uncompressed_length));
Elliott Hughes4089d342017-10-27 14:21:12 -0700508 if (data == nullptr) die("failed to allocate %" PRId64 " bytes for '%s'", *sz, entry_name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800509
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700510 int error = ExtractToMemory(zip, &zip_entry, data, zip_entry.uncompressed_length);
Elliott Hughes4089d342017-10-27 14:21:12 -0700511 if (error != 0) die("failed to extract '%s': %s", entry_name, ErrorCodeString(error));
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000512
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800513 return data;
514}
515
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700516#if defined(_WIN32)
517
518// TODO: move this to somewhere it can be shared.
519
520#include <windows.h>
521
522// Windows' tmpfile(3) requires administrator rights because
523// it creates temporary files in the root directory.
524static FILE* win32_tmpfile() {
525 char temp_path[PATH_MAX];
526 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path);
527 if (nchars == 0 || nchars >= sizeof(temp_path)) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700528 die("GetTempPath failed, error %ld", GetLastError());
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700529 }
530
531 char filename[PATH_MAX];
532 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700533 die("GetTempFileName failed, error %ld", GetLastError());
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700534 }
535
536 return fopen(filename, "w+bTD");
537}
538
539#define tmpfile win32_tmpfile
540
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000541static std::string make_temporary_directory() {
Elliott Hughes4089d342017-10-27 14:21:12 -0700542 die("make_temporary_directory not supported under Windows, sorry!");
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000543}
544
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700545static int make_temporary_fd() {
546 // TODO: reimplement to avoid leaking a FILE*.
547 return fileno(tmpfile());
548}
549
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000550#else
551
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700552static std::string make_temporary_template() {
553 const char* tmpdir = getenv("TMPDIR");
554 if (tmpdir == nullptr) tmpdir = P_tmpdir;
555 return std::string(tmpdir) + "/fastboot_userdata_XXXXXX";
556}
557
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000558static std::string make_temporary_directory() {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700559 std::string result(make_temporary_template());
560 if (mkdtemp(&result[0]) == nullptr) {
561 fprintf(stderr, "Unable to create temporary directory: %s\n", strerror(errno));
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000562 return "";
563 }
564 return result;
565}
566
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700567static int make_temporary_fd() {
568 std::string path_template(make_temporary_template());
569 int fd = mkstemp(&path_template[0]);
570 if (fd == -1) {
571 fprintf(stderr, "Unable to create temporary file: %s\n", strerror(errno));
572 return -1;
573 }
574 unlink(path_template.c_str());
575 return fd;
576}
577
Elliott Hughesa26fbee2015-06-03 15:22:11 -0700578#endif
579
Paul Crowley8f7f56e2015-11-27 09:29:37 +0000580static std::string create_fbemarker_tmpdir() {
581 std::string dir = make_temporary_directory();
582 if (dir.empty()) {
583 fprintf(stderr, "Unable to create local temp directory for FBE marker\n");
584 return "";
585 }
586 std::string marker_file = dir + "/" + convert_fbe_marker_filename;
587 int fd = open(marker_file.c_str(), O_CREAT | O_WRONLY | O_CLOEXEC, 0666);
588 if (fd == -1) {
589 fprintf(stderr, "Unable to create FBE marker file %s locally: %d, %s\n",
590 marker_file.c_str(), errno, strerror(errno));
591 return "";
592 }
593 close(fd);
594 return dir;
595}
596
597static void delete_fbemarker_tmpdir(const std::string& dir) {
598 std::string marker_file = dir + "/" + convert_fbe_marker_filename;
599 if (unlink(marker_file.c_str()) == -1) {
600 fprintf(stderr, "Unable to delete FBE marker file %s locally: %d, %s\n",
601 marker_file.c_str(), errno, strerror(errno));
602 return;
603 }
604 if (rmdir(dir.c_str()) == -1) {
605 fprintf(stderr, "Unable to delete FBE marker directory %s locally: %d, %s\n",
606 dir.c_str(), errno, strerror(errno));
607 return;
608 }
609}
610
Elliott Hughes45964a82017-05-03 22:43:23 -0700611static int unzip_to_file(ZipArchiveHandle zip, const char* entry_name) {
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700612 unique_fd fd(make_temporary_fd());
613 if (fd == -1) {
Elliott Hughes4089d342017-10-27 14:21:12 -0700614 die("failed to create temporary file for '%s': %s", entry_name, strerror(errno));
Rom Lemarchand622810c2013-06-28 09:54:59 -0700615 }
616
Yusuke Sato07447542015-06-25 14:39:19 -0700617 ZipString zip_entry_name(entry_name);
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700618 ZipEntry zip_entry;
619 if (FindEntry(zip, zip_entry_name, &zip_entry) != 0) {
620 fprintf(stderr, "archive does not contain '%s'\n", entry_name);
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000621 return -1;
622 }
623
Elliott Hughes23af1122017-11-10 08:42:17 -0800624 fprintf(stderr, "extracting %s (%" PRIu32 " MB) to disk...", entry_name,
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700625 zip_entry.uncompressed_length / 1024 / 1024);
Elliott Hughes23af1122017-11-10 08:42:17 -0800626 double start = now();
Elliott Hughesa82c89d2015-03-19 11:44:32 -0700627 int error = ExtractEntryToFile(zip, &zip_entry, fd);
628 if (error != 0) {
Elliott Hughes23af1122017-11-10 08:42:17 -0800629 die("\nfailed to extract '%s': %s", entry_name, ErrorCodeString(error));
Rom Lemarchand622810c2013-06-28 09:54:59 -0700630 }
631
Elliott Hughes4089d342017-10-27 14:21:12 -0700632 if (lseek(fd, 0, SEEK_SET) != 0) {
Elliott Hughes23af1122017-11-10 08:42:17 -0800633 die("\nlseek on extracted file '%s' failed: %s", entry_name, strerror(errno));
Elliott Hughes4089d342017-10-27 14:21:12 -0700634 }
635
Elliott Hughes23af1122017-11-10 08:42:17 -0800636 fprintf(stderr, " took %.3fs\n", now() - start);
637
Elliott Hughesbbfc2812017-04-25 18:33:09 -0700638 return fd.release();
Rom Lemarchand622810c2013-06-28 09:54:59 -0700639}
640
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700641static char* strip(char* s) {
642 while (*s && isspace(*s)) s++;
643
644 int n = strlen(s);
645 while (n-- > 0) {
646 if (!isspace(s[n])) break;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800647 s[n] = 0;
648 }
649 return s;
650}
651
652#define MAX_OPTIONS 32
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700653static void check_requirement(Transport* transport, char* line) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800654 char *val[MAX_OPTIONS];
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700655 unsigned count;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800656 char *x;
657 int invert = 0;
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800658
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700659 // "require product=alpha|beta|gamma"
660 // "require version-bootloader=1234"
661 // "require-for-product:gamma version-bootloader=istanbul|constantinople"
662 // "require partition-exists=vendor"
663
664 char* name = line;
665 const char* product = "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800666 if (!strncmp(name, "reject ", 7)) {
667 name += 7;
668 invert = 1;
669 } else if (!strncmp(name, "require ", 8)) {
670 name += 8;
671 invert = 0;
Wink Savilleb98762f2011-04-04 17:54:59 -0700672 } else if (!strncmp(name, "require-for-product:", 20)) {
673 // Get the product and point name past it
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700674 product = name + 20;
Wink Savilleb98762f2011-04-04 17:54:59 -0700675 name = strchr(name, ' ');
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700676 if (!name) die("android-info.txt syntax error: %s", line);
Wink Savilleb98762f2011-04-04 17:54:59 -0700677 *name = 0;
678 name += 1;
679 invert = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800680 }
681
682 x = strchr(name, '=');
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700683 if (x == 0) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800684 *x = 0;
685 val[0] = x + 1;
686
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700687 name = strip(name);
688
689 // "require partition-exists=x" is a special case, added because of the trouble we had when
690 // Pixel 2 shipped with new partitions and users used old versions of fastboot to flash them,
691 // missing out new partitions. A device with new partitions can use "partition-exists" to
692 // override the `is_optional` field in the `images` array.
693 if (!strcmp(name, "partition-exists")) {
694 const char* partition_name = val[0];
695 std::string has_slot;
696 if (!fb_getvar(transport, std::string("has-slot:") + partition_name, &has_slot) ||
697 (has_slot != "yes" && has_slot != "no")) {
698 die("device doesn't have required partition %s!", partition_name);
699 }
700 bool known_partition = false;
701 for (size_t i = 0; i < arraysize(images); ++i) {
702 if (images[i].nickname && !strcmp(images[i].nickname, partition_name)) {
703 images[i].is_optional = false;
704 known_partition = true;
705 }
706 }
707 if (!known_partition) {
708 die("device requires partition %s which is not known to this version of fastboot",
709 partition_name);
710 }
711 return;
712 }
713
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800714 for(count = 1; count < MAX_OPTIONS; count++) {
715 x = strchr(val[count - 1],'|');
716 if (x == 0) break;
717 *x = 0;
718 val[count] = x + 1;
719 }
Tsu Chiang Chuangee520552011-02-25 18:38:53 -0800720
Elliott Hughes253c18d2015-03-18 22:47:09 -0700721 // Work around an unfortunate name mismatch.
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700722 const char* var = name;
723 if (!strcmp(name, "board")) var = "product";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800724
Elliott Hughes253c18d2015-03-18 22:47:09 -0700725 const char** out = reinterpret_cast<const char**>(malloc(sizeof(char*) * count));
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700726 if (out == nullptr) die("out of memory");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800727
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700728 for (size_t i = 0; i < count; ++i) {
729 out[i] = xstrdup(strip(val[i]));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800730 }
731
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700732 fb_queue_require(product, var, invert, count, out);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800733}
734
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700735static void check_requirements(Transport* transport, char* data, int64_t sz) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700736 char* s = data;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800737 while (sz-- > 0) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700738 if (*s == '\n') {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800739 *s++ = 0;
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700740 check_requirement(transport, data);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800741 data = s;
742 } else {
743 s++;
744 }
745 }
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700746 if (fb_execute_queue(transport)) die("requirements not met!");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800747}
748
Elliott Hughesfc797672015-04-07 20:12:50 -0700749static void queue_info_dump() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800750 fb_queue_notice("--------------------------------------------");
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700751 fb_queue_display("Bootloader Version...", "version-bootloader");
752 fb_queue_display("Baseband Version.....", "version-baseband");
753 fb_queue_display("Serial Number........", "serialno");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800754 fb_queue_notice("--------------------------------------------");
755}
756
Elliott Hughes4089d342017-10-27 14:21:12 -0700757static struct sparse_file** load_sparse_files(int fd, int max_size) {
Mohamad Ayyash80cc1f62015-03-31 12:09:29 -0700758 struct sparse_file* s = sparse_file_import_auto(fd, false, true);
Elliott Hughes4089d342017-10-27 14:21:12 -0700759 if (!s) die("cannot sparse read file");
Colin Crossf8387882012-05-24 17:18:41 -0700760
Elliott Hughesfc797672015-04-07 20:12:50 -0700761 int files = sparse_file_resparse(s, max_size, nullptr, 0);
Elliott Hughes4089d342017-10-27 14:21:12 -0700762 if (files < 0) die("Failed to resparse");
Colin Crossf8387882012-05-24 17:18:41 -0700763
Elliott Hughes253c18d2015-03-18 22:47:09 -0700764 sparse_file** out_s = reinterpret_cast<sparse_file**>(calloc(sizeof(struct sparse_file *), files + 1));
Elliott Hughes4089d342017-10-27 14:21:12 -0700765 if (!out_s) die("Failed to allocate sparse file array");
Colin Crossf8387882012-05-24 17:18:41 -0700766
767 files = sparse_file_resparse(s, max_size, out_s, files);
Elliott Hughes4089d342017-10-27 14:21:12 -0700768 if (files < 0) die("Failed to resparse");
Colin Crossf8387882012-05-24 17:18:41 -0700769
770 return out_s;
771}
772
David Pursell0b156632015-10-30 11:22:01 -0700773static int64_t get_target_sparse_limit(Transport* transport) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700774 std::string max_download_size;
David Pursell0b156632015-10-30 11:22:01 -0700775 if (!fb_getvar(transport, "max-download-size", &max_download_size) ||
776 max_download_size.empty()) {
Elliott Hughes3ab05862015-11-02 09:01:53 -0800777 fprintf(stderr, "target didn't report max-download-size\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700778 return 0;
Colin Crossf8387882012-05-24 17:18:41 -0700779 }
780
Elliott Hughes77c0e662015-11-02 15:51:12 -0800781 // Some bootloaders (angler, for example) send spurious whitespace too.
782 max_download_size = android::base::Trim(max_download_size);
783
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700784 uint64_t limit;
Elliott Hughesda46b392016-10-11 17:09:00 -0700785 if (!android::base::ParseUint(max_download_size, &limit)) {
Elliott Hughes3ab05862015-11-02 09:01:53 -0800786 fprintf(stderr, "couldn't parse max-download-size '%s'\n", max_download_size.c_str());
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700787 return 0;
788 }
789 if (limit > 0) {
790 fprintf(stderr, "target reported max download size of %" PRId64 " bytes\n", limit);
791 }
Colin Crossf8387882012-05-24 17:18:41 -0700792 return limit;
793}
794
David Pursell0b156632015-10-30 11:22:01 -0700795static int64_t get_sparse_limit(Transport* transport, int64_t size) {
Colin Crossf8387882012-05-24 17:18:41 -0700796 int64_t limit;
797
798 if (sparse_limit == 0) {
799 return 0;
800 } else if (sparse_limit > 0) {
801 limit = sparse_limit;
802 } else {
803 if (target_sparse_limit == -1) {
David Pursell0b156632015-10-30 11:22:01 -0700804 target_sparse_limit = get_target_sparse_limit(transport);
Colin Crossf8387882012-05-24 17:18:41 -0700805 }
806 if (target_sparse_limit > 0) {
807 limit = target_sparse_limit;
808 } else {
Colin Cross0bbfb392012-07-24 18:05:21 -0700809 return 0;
Colin Crossf8387882012-05-24 17:18:41 -0700810 }
811 }
812
813 if (size > limit) {
Chris Fries6a999712017-04-04 09:52:47 -0500814 return std::min(limit, RESPARSE_LIMIT);
Colin Crossf8387882012-05-24 17:18:41 -0700815 }
816
817 return 0;
818}
819
Elliott Hughes2fd45a92015-10-30 11:49:47 -0700820// Until we get lazy inode table init working in make_ext4fs, we need to
821// erase partitions of type ext4 before flashing a filesystem so no stale
822// inodes are left lying around. Otherwise, e2fsck gets very upset.
David Pursell0b156632015-10-30 11:22:01 -0700823static bool needs_erase(Transport* transport, const char* partition) {
Elliott Hughes8ab9a322015-11-02 14:05:57 -0800824 std::string partition_type;
David Pursell0b156632015-10-30 11:22:01 -0700825 if (!fb_getvar(transport, std::string("partition-type:") + partition, &partition_type)) {
Elliott Hughes8ab9a322015-11-02 14:05:57 -0800826 return false;
827 }
828 return partition_type == "ext4";
Ken Sumrall5ee5d382012-09-29 14:46:25 -0700829}
830
Elliott Hughes53ec4952016-05-11 12:39:27 -0700831static bool load_buf_fd(Transport* transport, int fd, struct fastboot_buffer* buf) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700832 int64_t sz = get_file_size(fd);
833 if (sz == -1) {
Elliott Hughes53ec4952016-05-11 12:39:27 -0700834 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700835 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -0700836
Elliott Hughesfc797672015-04-07 20:12:50 -0700837 lseek64(fd, 0, SEEK_SET);
David Pursell0b156632015-10-30 11:22:01 -0700838 int64_t limit = get_sparse_limit(transport, sz);
Colin Crossf8387882012-05-24 17:18:41 -0700839 if (limit) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700840 sparse_file** s = load_sparse_files(fd, limit);
841 if (s == nullptr) {
Elliott Hughes53ec4952016-05-11 12:39:27 -0700842 return false;
Colin Crossf8387882012-05-24 17:18:41 -0700843 }
Rom Lemarchand622810c2013-06-28 09:54:59 -0700844 buf->type = FB_BUFFER_SPARSE;
845 buf->data = s;
Colin Crossf8387882012-05-24 17:18:41 -0700846 } else {
Chris Fries0ea946c2017-04-12 10:25:57 -0500847 buf->type = FB_BUFFER_FD;
848 buf->data = nullptr;
849 buf->fd = fd;
Alexander Levitskiy8d7ddb32014-05-07 23:31:59 +0000850 buf->sz = sz;
Colin Crossf8387882012-05-24 17:18:41 -0700851 }
Rom Lemarchand622810c2013-06-28 09:54:59 -0700852
Elliott Hughes53ec4952016-05-11 12:39:27 -0700853 return true;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700854}
855
Elliott Hughes53ec4952016-05-11 12:39:27 -0700856static bool load_buf(Transport* transport, const char* fname, struct fastboot_buffer* buf) {
Chris Fries0ea946c2017-04-12 10:25:57 -0500857 unique_fd fd(TEMP_FAILURE_RETRY(open(fname, O_RDONLY | O_BINARY)));
858
Elliott Hughes53ec4952016-05-11 12:39:27 -0700859 if (fd == -1) {
860 return false;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700861 }
Chris Fries0ea946c2017-04-12 10:25:57 -0500862
863 struct stat s;
864 if (fstat(fd, &s)) {
865 return false;
866 }
867 if (!S_ISREG(s.st_mode)) {
868 errno = S_ISDIR(s.st_mode) ? EISDIR : EINVAL;
869 return false;
870 }
871
872 return load_buf_fd(transport, fd.release(), buf);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700873}
874
David Zeuthenb6ea4352017-08-07 14:29:26 -0400875static void rewrite_vbmeta_buffer(struct fastboot_buffer* buf) {
876 // Buffer needs to be at least the size of the VBMeta struct which
877 // is 256 bytes.
878 if (buf->sz < 256) {
879 return;
880 }
881
882 int fd = make_temporary_fd();
883 if (fd == -1) {
884 die("Failed to create temporary file for vbmeta rewriting");
885 }
886
887 std::string data;
888 if (!android::base::ReadFdToString(buf->fd, &data)) {
889 die("Failed reading from vbmeta");
890 }
891
892 // There's a 32-bit big endian |flags| field at offset 120 where
893 // bit 0 corresponds to disable-verity and bit 1 corresponds to
894 // disable-verification.
895 //
896 // See external/avb/libavb/avb_vbmeta_image.h for the layout of
897 // the VBMeta struct.
898 if (g_disable_verity) {
899 data[123] |= 0x01;
900 }
901 if (g_disable_verification) {
902 data[123] |= 0x02;
903 }
904
905 if (!android::base::WriteStringToFd(data, fd)) {
906 die("Failed writing to modified vbmeta");
907 }
908 close(buf->fd);
909 buf->fd = fd;
910 lseek(fd, 0, SEEK_SET);
911}
912
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700913static void flash_buf(const std::string& partition, struct fastboot_buffer *buf)
Rom Lemarchand622810c2013-06-28 09:54:59 -0700914{
Elliott Hughes253c18d2015-03-18 22:47:09 -0700915 sparse_file** s;
Rom Lemarchand622810c2013-06-28 09:54:59 -0700916
David Zeuthenb6ea4352017-08-07 14:29:26 -0400917 // Rewrite vbmeta if that's what we're flashing and modification has been requested.
918 if ((g_disable_verity || g_disable_verification) &&
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700919 (partition == "vbmeta" || partition == "vbmeta_a" || partition == "vbmeta_b")) {
David Zeuthenb6ea4352017-08-07 14:29:26 -0400920 rewrite_vbmeta_buffer(buf);
921 }
922
Rom Lemarchand622810c2013-06-28 09:54:59 -0700923 switch (buf->type) {
Josh Gao9da9ac52016-01-19 14:50:18 -0800924 case FB_BUFFER_SPARSE: {
925 std::vector<std::pair<sparse_file*, int64_t>> sparse_files;
Elliott Hughes253c18d2015-03-18 22:47:09 -0700926 s = reinterpret_cast<sparse_file**>(buf->data);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700927 while (*s) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700928 int64_t sz = sparse_file_len(*s, true, false);
Josh Gao9da9ac52016-01-19 14:50:18 -0800929 sparse_files.emplace_back(*s, sz);
930 ++s;
931 }
932
933 for (size_t i = 0; i < sparse_files.size(); ++i) {
934 const auto& pair = sparse_files[i];
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700935 fb_queue_flash_sparse(partition, pair.first, pair.second, i + 1, sparse_files.size());
Rom Lemarchand622810c2013-06-28 09:54:59 -0700936 }
937 break;
Josh Gao9da9ac52016-01-19 14:50:18 -0800938 }
Chris Fries0ea946c2017-04-12 10:25:57 -0500939 case FB_BUFFER_FD:
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -0700940 fb_queue_flash_fd(partition, buf->fd, buf->sz);
Rom Lemarchand622810c2013-06-28 09:54:59 -0700941 break;
942 default:
943 die("unknown buffer type: %d", buf->type);
944 }
945}
946
Daniel Rosenberg80919472016-06-30 19:25:31 -0700947static std::string get_current_slot(Transport* transport)
948{
949 std::string current_slot;
950 if (fb_getvar(transport, "current-slot", &current_slot)) {
951 if (current_slot == "_a") return "a"; // Legacy support
952 if (current_slot == "_b") return "b"; // Legacy support
953 return current_slot;
954 }
955 return "";
956}
957
958// Legacy support
959static std::vector<std::string> get_suffixes_obsolete(Transport* transport) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700960 std::vector<std::string> suffixes;
961 std::string suffix_list;
David Pursell0b156632015-10-30 11:22:01 -0700962 if (!fb_getvar(transport, "slot-suffixes", &suffix_list)) {
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700963 return suffixes;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700964 }
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700965 suffixes = android::base::Split(suffix_list, ",");
966 // Unfortunately some devices will return an error message in the
967 // guise of a valid value. If we only see only one suffix, it's probably
968 // not real.
969 if (suffixes.size() == 1) {
970 suffixes.clear();
971 }
972 return suffixes;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -0700973}
974
Daniel Rosenberg80919472016-06-30 19:25:31 -0700975// Legacy support
976static bool supports_AB_obsolete(Transport* transport) {
977 return !get_suffixes_obsolete(transport).empty();
978}
979
980static int get_slot_count(Transport* transport) {
981 std::string var;
982 int count;
983 if (!fb_getvar(transport, "slot-count", &var)) {
984 if (supports_AB_obsolete(transport)) return 2; // Legacy support
985 }
Elliott Hughesda46b392016-10-11 17:09:00 -0700986 if (!android::base::ParseInt(var, &count)) return 0;
Daniel Rosenberg80919472016-06-30 19:25:31 -0700987 return count;
988}
989
Alex Lightbb9b8a52016-06-29 09:26:44 -0700990static bool supports_AB(Transport* transport) {
Daniel Rosenberg80919472016-06-30 19:25:31 -0700991 return get_slot_count(transport) >= 2;
Alex Lightbb9b8a52016-06-29 09:26:44 -0700992}
993
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700994// Given a current slot, this returns what the 'other' slot is.
Daniel Rosenberg80919472016-06-30 19:25:31 -0700995static std::string get_other_slot(const std::string& current_slot, int count) {
996 if (count == 0) return "";
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -0700997
Daniel Rosenberg80919472016-06-30 19:25:31 -0700998 char next = (current_slot[0] - 'a' + 1)%count + 'a';
999 return std::string(1, next);
1000}
1001
1002static std::string get_other_slot(Transport* transport, const std::string& current_slot) {
1003 return get_other_slot(current_slot, get_slot_count(transport));
1004}
1005
1006static std::string get_other_slot(Transport* transport, int count) {
1007 return get_other_slot(get_current_slot(transport), count);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001008}
1009
Alex Lightbb9b8a52016-06-29 09:26:44 -07001010static std::string get_other_slot(Transport* transport) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001011 return get_other_slot(get_current_slot(transport), get_slot_count(transport));
Alex Lightbb9b8a52016-06-29 09:26:44 -07001012}
1013
Daniel Rosenberg80919472016-06-30 19:25:31 -07001014static std::string verify_slot(Transport* transport, const std::string& slot_name, bool allow_all) {
1015 std::string slot = slot_name;
1016 if (slot == "_a") slot = "a"; // Legacy support
1017 if (slot == "_b") slot = "b"; // Legacy support
1018 if (slot == "all") {
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001019 if (allow_all) {
1020 return "all";
1021 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001022 int count = get_slot_count(transport);
1023 if (count > 0) {
1024 return "a";
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001025 } else {
Elliott Hughes4089d342017-10-27 14:21:12 -07001026 die("No known slots");
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001027 }
1028 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001029 }
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001030
Daniel Rosenberg80919472016-06-30 19:25:31 -07001031 int count = get_slot_count(transport);
Elliott Hughes4089d342017-10-27 14:21:12 -07001032 if (count == 0) die("Device does not support slots");
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001033
Daniel Rosenberg80919472016-06-30 19:25:31 -07001034 if (slot == "other") {
1035 std::string other = get_other_slot(transport, count);
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -07001036 if (other == "") {
Elliott Hughes4089d342017-10-27 14:21:12 -07001037 die("No known slots");
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001038 }
Daniel Rosenbergad3d3c12016-06-27 23:03:48 -07001039 return other;
Daniel Rosenbergc1743ba2016-01-05 16:54:40 -08001040 }
1041
Daniel Rosenberg80919472016-06-30 19:25:31 -07001042 if (slot.size() == 1 && (slot[0]-'a' >= 0 && slot[0]-'a' < count)) return slot;
1043
1044 fprintf(stderr, "Slot %s does not exist. supported slots are:\n", slot.c_str());
1045 for (int i=0; i<count; i++) {
1046 fprintf(stderr, "%c\n", (char)(i + 'a'));
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001047 }
Daniel Rosenberg80919472016-06-30 19:25:31 -07001048
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001049 exit(1);
1050}
1051
Daniel Rosenberg80919472016-06-30 19:25:31 -07001052static std::string verify_slot(Transport* transport, const std::string& slot) {
Daniel Rosenberg9b432052015-11-25 15:17:10 -08001053 return verify_slot(transport, slot, true);
1054}
1055
Daniel Rosenberg80919472016-06-30 19:25:31 -07001056static void do_for_partition(Transport* transport, const std::string& part, const std::string& slot,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001057 const std::function<void(const std::string&)>& func, bool force_slot) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001058 std::string has_slot;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001059 std::string current_slot;
1060
Daniel Rosenberg80919472016-06-30 19:25:31 -07001061 if (!fb_getvar(transport, "has-slot:" + part, &has_slot)) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001062 /* If has-slot is not supported, the answer is no. */
1063 has_slot = "no";
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001064 }
Daniel Rosenberga7974792015-11-11 16:13:13 -08001065 if (has_slot == "yes") {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001066 if (slot == "") {
1067 current_slot = get_current_slot(transport);
1068 if (current_slot == "") {
Elliott Hughes4089d342017-10-27 14:21:12 -07001069 die("Failed to identify current slot");
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001070 }
Daniel Rosenberg80919472016-06-30 19:25:31 -07001071 func(part + "_" + current_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001072 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001073 func(part + '_' + slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001074 }
1075 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001076 if (force_slot && slot != "") {
David Pursell0b156632015-10-30 11:22:01 -07001077 fprintf(stderr, "Warning: %s does not support slots, and slot %s was requested.\n",
Daniel Rosenberg80919472016-06-30 19:25:31 -07001078 part.c_str(), slot.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001079 }
1080 func(part);
1081 }
1082}
1083
David Pursell0b156632015-10-30 11:22:01 -07001084/* This function will find the real partition name given a base name, and a slot. If slot is NULL or
1085 * empty, it will use the current slot. If slot is "all", it will return a list of all possible
1086 * partition names. If force_slot is true, it will fail if a slot is specified, and the given
1087 * partition does not support slots.
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001088 */
Daniel Rosenberg80919472016-06-30 19:25:31 -07001089static void do_for_partitions(Transport* transport, const std::string& part, const std::string& slot,
Chih-Hung Hsieh8f7b9e32016-07-27 16:25:51 -07001090 const std::function<void(const std::string&)>& func, bool force_slot) {
Daniel Rosenberga7974792015-11-11 16:13:13 -08001091 std::string has_slot;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001092
Daniel Rosenberg80919472016-06-30 19:25:31 -07001093 if (slot == "all") {
1094 if (!fb_getvar(transport, "has-slot:" + part, &has_slot)) {
Elliott Hughes4089d342017-10-27 14:21:12 -07001095 die("Could not check if partition %s has slot %s", part.c_str(), slot.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001096 }
Daniel Rosenberga7974792015-11-11 16:13:13 -08001097 if (has_slot == "yes") {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001098 for (int i=0; i < get_slot_count(transport); i++) {
1099 do_for_partition(transport, part, std::string(1, (char)(i + 'a')), func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001100 }
1101 } else {
David Pursell0b156632015-10-30 11:22:01 -07001102 do_for_partition(transport, part, "", func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001103 }
1104 } else {
David Pursell0b156632015-10-30 11:22:01 -07001105 do_for_partition(transport, part, slot, func, force_slot);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001106 }
1107}
1108
David Pursell0b156632015-10-30 11:22:01 -07001109static void do_flash(Transport* transport, const char* pname, const char* fname) {
Rom Lemarchand622810c2013-06-28 09:54:59 -07001110 struct fastboot_buffer buf;
1111
Elliott Hughes53ec4952016-05-11 12:39:27 -07001112 if (!load_buf(transport, fname, &buf)) {
1113 die("cannot load '%s': %s", fname, strerror(errno));
Rom Lemarchand622810c2013-06-28 09:54:59 -07001114 }
1115 flash_buf(pname, &buf);
Colin Crossf8387882012-05-24 17:18:41 -07001116}
1117
Elliott Hughes45964a82017-05-03 22:43:23 -07001118static void do_update_signature(ZipArchiveHandle zip, const char* filename) {
Elliott Hughesfc797672015-04-07 20:12:50 -07001119 int64_t sz;
Elliott Hughes23af1122017-11-10 08:42:17 -08001120 void* data = unzip_to_memory(zip, filename, &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001121 if (data == nullptr) return;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001122 fb_queue_download("signature", data, sz);
1123 fb_queue_command("signature", "installing signature");
1124}
1125
Daniel Rosenberg13454092016-06-27 19:43:11 -07001126// Sets slot_override as the active slot. If slot_override is blank,
1127// set current slot as active instead. This clears slot-unbootable.
Alex Lightbb9b8a52016-06-29 09:26:44 -07001128static void set_active(Transport* transport, const std::string& slot_override) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001129 std::string separator = "";
Alex Lightbb9b8a52016-06-29 09:26:44 -07001130 if (!supports_AB(transport)) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001131 if (supports_AB_obsolete(transport)) {
1132 separator = "_"; // Legacy support
1133 } else {
1134 return;
1135 }
1136 }
1137 if (slot_override != "") {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001138 fb_set_active(separator + slot_override);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001139 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001140 std::string current_slot = get_current_slot(transport);
1141 if (current_slot != "") {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001142 fb_set_active(separator + current_slot);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001143 }
1144 }
1145}
1146
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001147static 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 -08001148 queue_info_dump();
1149
Wink Savilleb98762f2011-04-04 17:54:59 -07001150 fb_queue_query_save("product", cur_product, sizeof(cur_product));
1151
Elliott Hughesd30ad8a2015-03-18 23:12:44 -07001152 ZipArchiveHandle zip;
Elliott Hughesa82c89d2015-03-19 11:44:32 -07001153 int error = OpenArchive(filename, &zip);
1154 if (error != 0) {
1155 die("failed to open zip file '%s': %s", filename, ErrorCodeString(error));
Elliott Hughesd30ad8a2015-03-18 23:12:44 -07001156 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001157
Elliott Hughesfc797672015-04-07 20:12:50 -07001158 int64_t sz;
Elliott Hughes23af1122017-11-10 08:42:17 -08001159 void* data = unzip_to_memory(zip, "android-info.txt", &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001160 if (data == nullptr) {
Elliott Hughes7c6d8842015-03-19 10:30:53 -07001161 die("update package '%s' has no android-info.txt", filename);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001162 }
1163
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001164 check_requirements(transport, reinterpret_cast<char*>(data), sz);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001165
Alex Lightbb9b8a52016-06-29 09:26:44 -07001166 std::string secondary;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001167 if (!skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001168 if (slot_override != "") {
1169 secondary = get_other_slot(transport, slot_override);
1170 } else {
1171 secondary = get_other_slot(transport);
1172 }
1173 if (secondary == "") {
1174 if (supports_AB(transport)) {
1175 fprintf(stderr, "Warning: Could not determine slot for secondary images. Ignoring.\n");
1176 }
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001177 skip_secondary = true;
Alex Lightbb9b8a52016-06-29 09:26:44 -07001178 }
1179 }
Elliott Hughes749ae2d2016-06-28 14:48:45 -07001180 for (size_t i = 0; i < arraysize(images); ++i) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001181 const char* slot = slot_override.c_str();
1182 if (images[i].is_secondary) {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001183 if (!skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001184 slot = secondary.c_str();
1185 } else {
1186 continue;
1187 }
1188 }
1189
Elliott Hughes253c18d2015-03-18 22:47:09 -07001190 int fd = unzip_to_file(zip, images[i].img_name);
Elliott Hughesacdbe922015-06-02 21:37:05 -07001191 if (fd == -1) {
1192 if (images[i].is_optional) {
Elliott Hughes4089d342017-10-27 14:21:12 -07001193 continue; // An optional file is missing, so ignore it.
Elliott Hughesacdbe922015-06-02 21:37:05 -07001194 }
Elliott Hughes4089d342017-10-27 14:21:12 -07001195 die("non-optional file %s missing", images[i].img_name);
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001196 }
Elliott Hughes4089d342017-10-27 14:21:12 -07001197
Elliott Hughes253c18d2015-03-18 22:47:09 -07001198 fastboot_buffer buf;
Elliott Hughes53ec4952016-05-11 12:39:27 -07001199 if (!load_buf_fd(transport, fd, &buf)) {
1200 die("cannot load %s from flash: %s", images[i].img_name, strerror(errno));
1201 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001202
Elliott Hughes4089d342017-10-27 14:21:12 -07001203 auto update = [&](const std::string& partition) {
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001204 do_update_signature(zip, images[i].sig_name);
David Pursell0b156632015-10-30 11:22:01 -07001205 if (erase_first && needs_erase(transport, partition.c_str())) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001206 fb_queue_erase(partition);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001207 }
1208 flash_buf(partition.c_str(), &buf);
1209 /* not closing the fd here since the sparse code keeps the fd around
Elliott Hughesbbfc2812017-04-25 18:33:09 -07001210 * but hasn't mmaped data yet. The temporary file will get cleaned up when the
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001211 * program exits.
1212 */
1213 };
Alex Lightbb9b8a52016-06-29 09:26:44 -07001214 do_for_partitions(transport, images[i].part_name, slot, update, false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001215 }
Elliott Hughesd30ad8a2015-03-18 23:12:44 -07001216
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001217 if (slot_override == "all") {
1218 set_active(transport, "a");
1219 } else {
1220 set_active(transport, slot_override);
1221 }
Elliott Hughes4089d342017-10-27 14:21:12 -07001222
1223 CloseArchive(zip);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001224}
1225
Alex Lightbb9b8a52016-06-29 09:26:44 -07001226static void do_send_signature(const std::string& fn) {
1227 std::size_t extension_loc = fn.find(".img");
1228 if (extension_loc == std::string::npos) return;
Elliott Hughesfc797672015-04-07 20:12:50 -07001229
Alex Lightbb9b8a52016-06-29 09:26:44 -07001230 std::string fs_sig = fn.substr(0, extension_loc) + ".sig";
Elliott Hughesfc797672015-04-07 20:12:50 -07001231
1232 int64_t sz;
Alex Lightbb9b8a52016-06-29 09:26:44 -07001233 void* data = load_file(fs_sig.c_str(), &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001234 if (data == nullptr) return;
Elliott Hughes2810d002016-04-25 14:31:18 -07001235
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001236 fb_queue_download("signature", data, sz);
1237 fb_queue_command("signature", "installing signature");
1238}
1239
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001240static void do_flashall(Transport* transport, const std::string& slot_override, int erase_first, bool skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001241 std::string fname;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001242 queue_info_dump();
1243
Wink Savilleb98762f2011-04-04 17:54:59 -07001244 fb_queue_query_save("product", cur_product, sizeof(cur_product));
1245
Elliott Hughes45964a82017-05-03 22:43:23 -07001246 fname = find_item_given_name("android-info.txt");
Elliott Hughes2810d002016-04-25 14:31:18 -07001247 if (fname.empty()) die("cannot find android-info.txt");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001248
Elliott Hughesfc797672015-04-07 20:12:50 -07001249 int64_t sz;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001250 void* data = load_file(fname.c_str(), &sz);
Elliott Hughesfc797672015-04-07 20:12:50 -07001251 if (data == nullptr) die("could not load android-info.txt: %s", strerror(errno));
Elliott Hughes253c18d2015-03-18 22:47:09 -07001252
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001253 check_requirements(transport, reinterpret_cast<char*>(data), sz);
Elliott Hughes253c18d2015-03-18 22:47:09 -07001254
Alex Lightbb9b8a52016-06-29 09:26:44 -07001255 std::string secondary;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001256 if (!skip_secondary) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001257 if (slot_override != "") {
1258 secondary = get_other_slot(transport, slot_override);
1259 } else {
1260 secondary = get_other_slot(transport);
1261 }
1262 if (secondary == "") {
1263 if (supports_AB(transport)) {
1264 fprintf(stderr, "Warning: Could not determine slot for secondary images. Ignoring.\n");
1265 }
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001266 skip_secondary = true;
Alex Lightbb9b8a52016-06-29 09:26:44 -07001267 }
1268 }
Elliott Hughes253c18d2015-03-18 22:47:09 -07001269
Elliott Hughes749ae2d2016-06-28 14:48:45 -07001270 for (size_t i = 0; i < arraysize(images); i++) {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001271 const char* slot = NULL;
1272 if (images[i].is_secondary) {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001273 if (!skip_secondary) slot = secondary.c_str();
Alex Lightbb9b8a52016-06-29 09:26:44 -07001274 } else {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001275 slot = slot_override.c_str();
Alex Lightbb9b8a52016-06-29 09:26:44 -07001276 }
1277 if (!slot) continue;
Elliott Hughes45964a82017-05-03 22:43:23 -07001278 fname = find_item_given_name(images[i].img_name);
Elliott Hughes253c18d2015-03-18 22:47:09 -07001279 fastboot_buffer buf;
Elliott Hughes53ec4952016-05-11 12:39:27 -07001280 if (!load_buf(transport, fname.c_str(), &buf)) {
1281 if (images[i].is_optional) continue;
Elliott Hughes4089d342017-10-27 14:21:12 -07001282 die("could not load '%s': %s", images[i].img_name, strerror(errno));
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001283 }
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001284
1285 auto flashall = [&](const std::string &partition) {
Elliott Hughes2810d002016-04-25 14:31:18 -07001286 do_send_signature(fname.c_str());
David Pursell0b156632015-10-30 11:22:01 -07001287 if (erase_first && needs_erase(transport, partition.c_str())) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001288 fb_queue_erase(partition);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001289 }
1290 flash_buf(partition.c_str(), &buf);
1291 };
Alex Lightbb9b8a52016-06-29 09:26:44 -07001292 do_for_partitions(transport, images[i].part_name, slot, flashall, false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001293 }
Daniel Rosenberg13454092016-06-27 19:43:11 -07001294
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001295 if (slot_override == "all") {
1296 set_active(transport, "a");
1297 } else {
1298 set_active(transport, slot_override);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001299 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001300}
1301
Elliott Hughesd6365a72017-05-08 18:04:49 -07001302static std::string next_arg(std::vector<std::string>* args) {
1303 if (args->empty()) syntax_error("expected argument");
1304 std::string result = args->front();
1305 args->erase(args->begin());
1306 return result;
Patrick Tjin51e8b032015-09-01 08:15:23 -07001307}
1308
Elliott Hughesd6365a72017-05-08 18:04:49 -07001309static void do_bypass_unlock_command(std::vector<std::string>* args) {
1310 if (args->empty()) syntax_error("missing unlock_bootloader request");
1311
1312 std::string filename = next_arg(args);
1313
1314 int64_t sz;
1315 void* data = load_file(filename.c_str(), &sz);
1316 if (data == nullptr) die("could not load '%s': %s", filename.c_str(), strerror(errno));
1317 fb_queue_download("unlock_message", data, sz);
1318 fb_queue_command("flashing unlock_bootloader", "unlocking bootloader");
1319}
1320
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001321static void do_oem_command(const std::string& cmd, std::vector<std::string>* args) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001322 if (args->empty()) syntax_error("empty oem command");
Tsu Chiang Chuangee520552011-02-25 18:38:53 -08001323
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001324 std::string command(cmd);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001325 while (!args->empty()) {
Elliott Hughes29d5d7d2017-05-11 15:05:13 -07001326 command += " " + next_arg(args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001327 }
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001328 fb_queue_command(command, "");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001329}
1330
Colin Crossf8387882012-05-24 17:18:41 -07001331static int64_t parse_num(const char *arg)
1332{
1333 char *endptr;
1334 unsigned long long num;
1335
1336 num = strtoull(arg, &endptr, 0);
1337 if (endptr == arg) {
1338 return -1;
1339 }
1340
1341 if (*endptr == 'k' || *endptr == 'K') {
1342 if (num >= (-1ULL) / 1024) {
1343 return -1;
1344 }
1345 num *= 1024LL;
1346 endptr++;
1347 } else if (*endptr == 'm' || *endptr == 'M') {
1348 if (num >= (-1ULL) / (1024 * 1024)) {
1349 return -1;
1350 }
1351 num *= 1024LL * 1024LL;
1352 endptr++;
1353 } else if (*endptr == 'g' || *endptr == 'G') {
1354 if (num >= (-1ULL) / (1024 * 1024 * 1024)) {
1355 return -1;
1356 }
1357 num *= 1024LL * 1024LL * 1024LL;
1358 endptr++;
1359 }
1360
1361 if (*endptr != '\0') {
1362 return -1;
1363 }
1364
1365 if (num > INT64_MAX) {
1366 return -1;
1367 }
1368
1369 return num;
1370}
1371
Connor O'Brience16a8a2017-02-06 14:39:31 -08001372static std::string fb_fix_numeric_var(std::string var) {
1373 // Some bootloaders (angler, for example), send spurious leading whitespace.
1374 var = android::base::Trim(var);
1375 // Some bootloaders (hammerhead, for example) use implicit hex.
1376 // This code used to use strtol with base 16.
1377 if (!android::base::StartsWith(var, "0x")) var = "0x" + var;
1378 return var;
1379}
1380
1381static unsigned fb_get_flash_block_size(Transport* transport, std::string name) {
1382 std::string sizeString;
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001383 if (!fb_getvar(transport, name, &sizeString) || sizeString.empty()) {
1384 // This device does not report flash block sizes, so return 0.
Connor O'Brience16a8a2017-02-06 14:39:31 -08001385 return 0;
1386 }
1387 sizeString = fb_fix_numeric_var(sizeString);
1388
1389 unsigned size;
1390 if (!android::base::ParseUint(sizeString, &size)) {
1391 fprintf(stderr, "Couldn't parse %s '%s'.\n", name.c_str(), sizeString.c_str());
1392 return 0;
1393 }
Connor O'Brien6ef5c242017-11-01 17:37:32 -07001394 if ((size & (size - 1)) != 0) {
1395 fprintf(stderr, "Invalid %s %u: must be a power of 2.\n", name.c_str(), size);
Connor O'Brience16a8a2017-02-06 14:39:31 -08001396 return 0;
1397 }
1398 return size;
1399}
1400
David Pursell0b156632015-10-30 11:22:01 -07001401static void fb_perform_format(Transport* transport,
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001402 const std::string& partition, int skip_if_not_supported,
Elliott Hughesd6365a72017-05-08 18:04:49 -07001403 const std::string& type_override, const std::string& size_override,
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001404 const std::string& initial_dir) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001405 std::string partition_type, partition_size;
1406
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001407 struct fastboot_buffer buf;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001408 const char* errMsg = nullptr;
1409 const struct fs_generator* gen = nullptr;
Jin Qian4a335822017-04-18 16:23:18 -07001410 TemporaryFile output;
1411 unique_fd fd;
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001412
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001413 unsigned int limit = INT_MAX;
1414 if (target_sparse_limit > 0 && target_sparse_limit < limit) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001415 limit = target_sparse_limit;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001416 }
1417 if (sparse_limit > 0 && sparse_limit < limit) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001418 limit = sparse_limit;
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001419 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001420
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001421 if (!fb_getvar(transport, "partition-type:" + partition, &partition_type)) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001422 errMsg = "Can't determine partition type.\n";
1423 goto failed;
1424 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001425 if (!type_override.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001426 if (partition_type != type_override) {
1427 fprintf(stderr, "Warning: %s type is %s, but %s was requested for formatting.\n",
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001428 partition.c_str(), partition_type.c_str(), type_override.c_str());
JP Abgrall7e859742014-05-06 15:14:15 -07001429 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001430 partition_type = type_override;
JP Abgrall7e859742014-05-06 15:14:15 -07001431 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001432
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001433 if (!fb_getvar(transport, "partition-size:" + partition, &partition_size)) {
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001434 errMsg = "Unable to get partition size\n";
1435 goto failed;
1436 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001437 if (!size_override.empty()) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001438 if (partition_size != size_override) {
1439 fprintf(stderr, "Warning: %s size is %s, but %s was requested for formatting.\n",
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001440 partition.c_str(), partition_size.c_str(), size_override.c_str());
JP Abgrall7e859742014-05-06 15:14:15 -07001441 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001442 partition_size = size_override;
JP Abgrall7e859742014-05-06 15:14:15 -07001443 }
Connor O'Brience16a8a2017-02-06 14:39:31 -08001444 partition_size = fb_fix_numeric_var(partition_size);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001445
Elliott Hughes8ab9a322015-11-02 14:05:57 -08001446 gen = fs_get_generator(partition_type);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001447 if (!gen) {
1448 if (skip_if_not_supported) {
1449 fprintf(stderr, "Erase successful, but not automatically formatting.\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001450 fprintf(stderr, "File system type %s not supported.\n", partition_type.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001451 return;
1452 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001453 fprintf(stderr, "Formatting is not supported for file system with type '%s'.\n",
1454 partition_type.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001455 return;
1456 }
1457
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001458 int64_t size;
Elliott Hughesda46b392016-10-11 17:09:00 -07001459 if (!android::base::ParseInt(partition_size, &size)) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001460 fprintf(stderr, "Couldn't parse partition size '%s'.\n", partition_size.c_str());
1461 return;
1462 }
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001463
Connor O'Brience16a8a2017-02-06 14:39:31 -08001464 unsigned eraseBlkSize, logicalBlkSize;
1465 eraseBlkSize = fb_get_flash_block_size(transport, "erase-block-size");
1466 logicalBlkSize = fb_get_flash_block_size(transport, "logical-block-size");
1467
Jin Qian4a335822017-04-18 16:23:18 -07001468 if (fs_generator_generate(gen, output.path, size, initial_dir,
1469 eraseBlkSize, logicalBlkSize)) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001470 die("Cannot generate image for %s", partition.c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001471 return;
1472 }
1473
Jin Qian4a335822017-04-18 16:23:18 -07001474 fd.reset(open(output.path, O_RDONLY));
1475 if (fd == -1) {
1476 fprintf(stderr, "Cannot open generated image: %s\n", strerror(errno));
1477 return;
1478 }
1479 if (!load_buf_fd(transport, fd.release(), &buf)) {
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001480 fprintf(stderr, "Cannot read image: %s\n", strerror(errno));
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001481 return;
1482 }
1483 flash_buf(partition, &buf);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001484 return;
1485
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001486failed:
1487 if (skip_if_not_supported) {
1488 fprintf(stderr, "Erase successful, but not automatically formatting.\n");
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001489 if (errMsg) fprintf(stderr, "%s", errMsg);
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001490 }
Elliott Hughes2810d002016-04-25 14:31:18 -07001491 fprintf(stderr, "FAILED (%s)\n", fb_get_error().c_str());
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001492}
1493
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001494int main(int argc, char **argv)
1495{
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001496 bool wants_wipe = false;
1497 bool wants_reboot = false;
1498 bool wants_reboot_bootloader = false;
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001499 bool wants_reboot_emergency = false;
Mitchell Wills31dce302016-09-26 10:26:21 -07001500 bool skip_reboot = false;
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001501 bool wants_set_active = false;
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001502 bool skip_secondary = false;
Elliott Hughesfc797672015-04-07 20:12:50 -07001503 bool erase_first = true;
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001504 bool set_fbe_marker = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001505 void *data;
Hridya Valsaraju88de5552018-03-30 16:15:33 -07001506 uint32_t header_version = 0;
Elliott Hughesfc797672015-04-07 20:12:50 -07001507 int64_t sz;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001508 int longindex;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001509 std::string slot_override;
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001510 std::string next_active;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001511
JP Abgrall7b8970c2013-03-07 17:06:41 -08001512 const struct option longopts[] = {
1513 {"base", required_argument, 0, 'b'},
1514 {"kernel_offset", required_argument, 0, 'k'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001515 {"kernel-offset", required_argument, 0, 'k'},
JP Abgrall7b8970c2013-03-07 17:06:41 -08001516 {"page_size", required_argument, 0, 'n'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001517 {"page-size", required_argument, 0, 'n'},
JP Abgrall7b8970c2013-03-07 17:06:41 -08001518 {"ramdisk_offset", required_argument, 0, 'r'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001519 {"ramdisk-offset", required_argument, 0, 'r'},
Mohamad Ayyash29fd7b12014-01-14 18:27:25 -08001520 {"tags_offset", required_argument, 0, 't'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001521 {"tags-offset", required_argument, 0, 't'},
Elliott Hughes379646b2015-06-02 13:50:00 -07001522 {"help", no_argument, 0, 'h'},
1523 {"unbuffered", no_argument, 0, 0},
1524 {"version", no_argument, 0, 0},
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001525 {"slot", required_argument, 0, 0},
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001526 {"set_active", optional_argument, 0, 'a'},
Daniel Rosenberg7aa38bc2015-11-11 17:29:37 -08001527 {"set-active", optional_argument, 0, 'a'},
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001528 {"skip-secondary", no_argument, 0, 0},
Mitchell Wills31dce302016-09-26 10:26:21 -07001529 {"skip-reboot", no_argument, 0, 0},
David Zeuthenb6ea4352017-08-07 14:29:26 -04001530 {"disable-verity", no_argument, 0, 0},
1531 {"disable-verification", no_argument, 0, 0},
Hridya Valsaraju88de5552018-03-30 16:15:33 -07001532 {"header-version", required_argument, 0, 0},
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001533#if !defined(_WIN32)
1534 {"wipe-and-use-fbe", no_argument, 0, 0},
1535#endif
JP Abgrall7b8970c2013-03-07 17:06:41 -08001536 {0, 0, 0, 0}
1537 };
Colin Cross8879f982012-05-22 17:53:34 -07001538
1539 serial = getenv("ANDROID_SERIAL");
1540
1541 while (1) {
Elliott Hughes45964a82017-05-03 22:43:23 -07001542 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 -07001543 if (c < 0) {
1544 break;
1545 }
JP Abgrall7b8970c2013-03-07 17:06:41 -08001546 /* Alphabetical cases */
Colin Cross8879f982012-05-22 17:53:34 -07001547 switch (c) {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001548 case 'a':
1549 wants_set_active = true;
1550 if (optarg)
1551 next_active = optarg;
1552 break;
Colin Cross8879f982012-05-22 17:53:34 -07001553 case 'b':
1554 base_addr = strtoul(optarg, 0, 16);
1555 break;
Colin Cross8879f982012-05-22 17:53:34 -07001556 case 'c':
1557 cmdline = optarg;
1558 break;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001559 case 'h':
Elliott Hughesd6365a72017-05-08 18:04:49 -07001560 return show_help();
Colin Cross8879f982012-05-22 17:53:34 -07001561 case 'i': {
Elliott Hughesfc797672015-04-07 20:12:50 -07001562 char *endptr = nullptr;
Colin Cross8879f982012-05-22 17:53:34 -07001563 unsigned long val;
1564
1565 val = strtoul(optarg, &endptr, 0);
1566 if (!endptr || *endptr != '\0' || (val & ~0xffff))
1567 die("invalid vendor id '%s'", optarg);
1568 vendor_id = (unsigned short)val;
1569 break;
1570 }
JP Abgrall7b8970c2013-03-07 17:06:41 -08001571 case 'k':
1572 kernel_offset = strtoul(optarg, 0, 16);
1573 break;
1574 case 'l':
1575 long_listing = 1;
1576 break;
1577 case 'n':
Elliott Hughesfc797672015-04-07 20:12:50 -07001578 page_size = (unsigned)strtoul(optarg, nullptr, 0);
JP Abgrall7b8970c2013-03-07 17:06:41 -08001579 if (!page_size) die("invalid page size");
1580 break;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001581 case 'r':
1582 ramdisk_offset = strtoul(optarg, 0, 16);
1583 break;
Mohamad Ayyash29fd7b12014-01-14 18:27:25 -08001584 case 't':
1585 tags_offset = strtoul(optarg, 0, 16);
1586 break;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001587 case 's':
1588 serial = optarg;
1589 break;
1590 case 'S':
1591 sparse_limit = parse_num(optarg);
Elliott Hughes4089d342017-10-27 14:21:12 -07001592 if (sparse_limit < 0) die("invalid sparse limit");
JP Abgrall7b8970c2013-03-07 17:06:41 -08001593 break;
1594 case 'u':
Elliott Hughesfc797672015-04-07 20:12:50 -07001595 erase_first = false;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001596 break;
1597 case 'w':
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001598 wants_wipe = true;
JP Abgrall7b8970c2013-03-07 17:06:41 -08001599 break;
Colin Cross8879f982012-05-22 17:53:34 -07001600 case '?':
1601 return 1;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001602 case 0:
1603 if (strcmp("unbuffered", longopts[longindex].name) == 0) {
Elliott Hughesfc797672015-04-07 20:12:50 -07001604 setvbuf(stdout, nullptr, _IONBF, 0);
1605 setvbuf(stderr, nullptr, _IONBF, 0);
Elliott Hughes379646b2015-06-02 13:50:00 -07001606 } else if (strcmp("version", longopts[longindex].name) == 0) {
Elliott Hughes4d4f64f2017-05-08 11:30:34 -07001607 fprintf(stdout, "fastboot version %s\n", FASTBOOT_VERSION);
Elliott Hughes1fd46df2017-03-30 15:08:28 -07001608 fprintf(stdout, "Installed as %s\n", android::base::GetExecutablePath().c_str());
Elliott Hughes379646b2015-06-02 13:50:00 -07001609 return 0;
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001610 } else if (strcmp("slot", longopts[longindex].name) == 0) {
1611 slot_override = std::string(optarg);
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001612 } else if (strcmp("skip-secondary", longopts[longindex].name) == 0 ) {
1613 skip_secondary = true;
Mitchell Wills31dce302016-09-26 10:26:21 -07001614 } else if (strcmp("skip-reboot", longopts[longindex].name) == 0 ) {
1615 skip_reboot = true;
David Zeuthenb6ea4352017-08-07 14:29:26 -04001616 } else if (strcmp("disable-verity", longopts[longindex].name) == 0 ) {
1617 g_disable_verity = true;
1618 } else if (strcmp("disable-verification", longopts[longindex].name) == 0 ) {
1619 g_disable_verification = true;
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001620#if !defined(_WIN32)
1621 } else if (strcmp("wipe-and-use-fbe", longopts[longindex].name) == 0) {
1622 wants_wipe = true;
1623 set_fbe_marker = true;
1624#endif
Hridya Valsaraju88de5552018-03-30 16:15:33 -07001625 } else if (strcmp("header-version", longopts[longindex].name) == 0) {
1626 header_version = strtoul(optarg, nullptr, 0);
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001627 } else {
1628 fprintf(stderr, "Internal error in options processing for %s\n",
1629 longopts[longindex].name);
1630 return 1;
Florian Bäuerle27ded482014-11-24 11:29:34 +01001631 }
1632 break;
Colin Cross8879f982012-05-22 17:53:34 -07001633 default:
1634 abort();
1635 }
1636 }
1637
1638 argc -= optind;
1639 argv += optind;
1640
Elliott Hughesd6365a72017-05-08 18:04:49 -07001641 if (argc == 0 && !wants_wipe && !wants_set_active) syntax_error("no command");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001642
Colin Cross8fb6e062012-07-24 16:36:41 -07001643 if (argc > 0 && !strcmp(*argv, "devices")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001644 list_devices();
Tsu Chiang Chuangee520552011-02-25 18:38:53 -08001645 return 0;
1646 }
1647
Colin Crossc7b75dc2012-08-29 18:17:06 -07001648 if (argc > 0 && !strcmp(*argv, "help")) {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001649 return show_help();
Colin Crossc7b75dc2012-08-29 18:17:06 -07001650 }
1651
David Pursell0b156632015-10-30 11:22:01 -07001652 Transport* transport = open_device();
David Pursell2ec418a2016-01-20 08:32:08 -08001653 if (transport == nullptr) {
1654 return 1;
1655 }
1656
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001657 const double start = now();
1658
Daniel Rosenberg80919472016-06-30 19:25:31 -07001659 if (!supports_AB(transport) && supports_AB_obsolete(transport)) {
1660 fprintf(stderr, "Warning: Device A/B support is outdated. Bootloader update required.\n");
1661 }
1662 if (slot_override != "") slot_override = verify_slot(transport, slot_override);
1663 if (next_active != "") next_active = verify_slot(transport, next_active, false);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001664
1665 if (wants_set_active) {
1666 if (next_active == "") {
1667 if (slot_override == "") {
Daniel Rosenberg13454092016-06-27 19:43:11 -07001668 std::string current_slot;
1669 if (fb_getvar(transport, "current-slot", &current_slot)) {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001670 next_active = verify_slot(transport, current_slot, false);
Daniel Rosenberg13454092016-06-27 19:43:11 -07001671 } else {
1672 wants_set_active = false;
1673 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001674 } else {
Daniel Rosenberg80919472016-06-30 19:25:31 -07001675 next_active = verify_slot(transport, slot_override, false);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001676 }
1677 }
1678 }
Elliott Hughes31dbed72009-10-07 15:38:53 -07001679
Elliott Hughesd6365a72017-05-08 18:04:49 -07001680 std::vector<std::string> args(argv, argv + argc);
1681 while (!args.empty()) {
1682 std::string command = next_arg(&args);
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001683
Elliott Hughesd6365a72017-05-08 18:04:49 -07001684 if (command == "getvar") {
1685 std::string variable = next_arg(&args);
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001686 fb_queue_display(variable, variable);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001687 } else if (command == "erase") {
1688 std::string partition = next_arg(&args);
1689 auto erase = [&](const std::string& partition) {
David Pursell0b156632015-10-30 11:22:01 -07001690 std::string partition_type;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001691 if (fb_getvar(transport, std::string("partition-type:") + partition,
1692 &partition_type) &&
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001693 fs_get_generator(partition_type) != nullptr) {
1694 fprintf(stderr, "******** Did you mean to fastboot format this %s partition?\n",
1695 partition_type.c_str());
1696 }
Ken Sumrall5ee5d382012-09-29 14:46:25 -07001697
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001698 fb_queue_erase(partition);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001699 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001700 do_for_partitions(transport, partition, slot_override, erase, true);
1701 } else if (android::base::StartsWith(command, "format")) {
1702 // Parsing for: "format[:[type][:[size]]]"
1703 // Some valid things:
1704 // - select only the size, and leave default fs type:
1705 // format::0x4000000 userdata
1706 // - default fs type and size:
1707 // format userdata
1708 // format:: userdata
1709 std::vector<std::string> pieces = android::base::Split(command, ":");
1710 std::string type_override;
1711 if (pieces.size() > 1) type_override = pieces[1].c_str();
1712 std::string size_override;
1713 if (pieces.size() > 2) size_override = pieces[2].c_str();
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001714
Elliott Hughesd6365a72017-05-08 18:04:49 -07001715 std::string partition = next_arg(&args);
1716
1717 auto format = [&](const std::string& partition) {
David Pursell0b156632015-10-30 11:22:01 -07001718 if (erase_first && needs_erase(transport, partition.c_str())) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001719 fb_queue_erase(partition);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001720 }
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001721 fb_perform_format(transport, partition, 0, type_override, size_override, "");
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001722 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001723 do_for_partitions(transport, partition.c_str(), slot_override, format, true);
1724 } else if (command == "signature") {
1725 std::string filename = next_arg(&args);
1726 data = load_file(filename.c_str(), &sz);
1727 if (data == nullptr) die("could not load '%s': %s", filename.c_str(), strerror(errno));
Elliott Hughes4089d342017-10-27 14:21:12 -07001728 if (sz != 256) die("signature must be 256 bytes (got %" PRId64 ")", sz);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001729 fb_queue_download("signature", data, sz);
1730 fb_queue_command("signature", "installing signature");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001731 } else if (command == "reboot") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001732 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001733
1734 if (args.size() == 1) {
1735 std::string what = next_arg(&args);
1736 if (what == "bootloader") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001737 wants_reboot = false;
1738 wants_reboot_bootloader = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001739 } else if (what == "emergency") {
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001740 wants_reboot = false;
1741 wants_reboot_emergency = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001742 } else {
1743 syntax_error("unknown reboot target %s", what.c_str());
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001744 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001745
Elliott Hughesca85df02015-02-25 10:02:00 -08001746 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001747 if (!args.empty()) syntax_error("junk after reboot command");
1748 } else if (command == "reboot-bootloader") {
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001749 wants_reboot_bootloader = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001750 } else if (command == "continue") {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001751 fb_queue_command("continue", "resuming boot");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001752 } else if (command == "boot") {
1753 std::string kernel = next_arg(&args);
1754 std::string ramdisk;
1755 if (!args.empty()) ramdisk = next_arg(&args);
1756 std::string second_stage;
1757 if (!args.empty()) second_stage = next_arg(&args);
1758
Hridya Valsaraju88de5552018-03-30 16:15:33 -07001759 data = load_bootable_image(kernel, ramdisk, second_stage, &sz, cmdline, header_version);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001760 fb_queue_download("boot.img", data, sz);
1761 fb_queue_command("boot", "booting");
Elliott Hughesd6365a72017-05-08 18:04:49 -07001762 } else if (command == "flash") {
1763 std::string pname = next_arg(&args);
1764
Elliott Hughes2810d002016-04-25 14:31:18 -07001765 std::string fname;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001766 if (!args.empty()) {
1767 fname = next_arg(&args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001768 } else {
Elliott Hughes45964a82017-05-03 22:43:23 -07001769 fname = find_item(pname);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001770 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001771 if (fname.empty()) die("cannot determine image filename for '%s'", pname.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001772
1773 auto flash = [&](const std::string &partition) {
David Pursell0b156632015-10-30 11:22:01 -07001774 if (erase_first && needs_erase(transport, partition.c_str())) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001775 fb_queue_erase(partition);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001776 }
Elliott Hughes2810d002016-04-25 14:31:18 -07001777 do_flash(transport, partition.c_str(), fname.c_str());
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001778 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001779 do_for_partitions(transport, pname.c_str(), slot_override, flash, true);
1780 } else if (command == "flash:raw") {
1781 std::string partition = next_arg(&args);
1782 std::string kernel = next_arg(&args);
1783 std::string ramdisk;
1784 if (!args.empty()) ramdisk = next_arg(&args);
1785 std::string second_stage;
1786 if (!args.empty()) second_stage = next_arg(&args);
1787
Hridya Valsaraju88de5552018-03-30 16:15:33 -07001788 data = load_bootable_image(kernel, ramdisk, second_stage, &sz, cmdline, header_version);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001789 auto flashraw = [&](const std::string& partition) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001790 fb_queue_flash(partition, data, sz);
Daniel Rosenbergb7bd4ae2015-09-14 21:05:41 -07001791 };
Elliott Hughesd6365a72017-05-08 18:04:49 -07001792 do_for_partitions(transport, partition, slot_override, flashraw, true);
1793 } else if (command == "flashall") {
Alex Lightbb9b8a52016-06-29 09:26:44 -07001794 if (slot_override == "all") {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001795 fprintf(stderr, "Warning: slot set to 'all'. Secondary slots will not be flashed.\n");
1796 do_flashall(transport, slot_override, erase_first, true);
Alex Lightbb9b8a52016-06-29 09:26:44 -07001797 } else {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001798 do_flashall(transport, slot_override, erase_first, skip_secondary);
Alex Lightbb9b8a52016-06-29 09:26:44 -07001799 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001800 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001801 } else if (command == "update") {
Daniel Rosenberg92b44762016-07-13 20:03:25 -07001802 bool slot_all = (slot_override == "all");
1803 if (slot_all) {
1804 fprintf(stderr, "Warning: slot set to 'all'. Secondary slots will not be flashed.\n");
1805 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001806 std::string filename = "update.zip";
1807 if (!args.empty()) {
1808 filename = next_arg(&args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001809 }
Elliott Hughesd6365a72017-05-08 18:04:49 -07001810 do_update(transport, filename.c_str(), slot_override, erase_first,
1811 skip_secondary || slot_all);
Mitchell Wills31dce302016-09-26 10:26:21 -07001812 wants_reboot = true;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001813 } else if (command == "set_active") {
1814 std::string slot = verify_slot(transport, next_arg(&args), false);
1815
David Pursell04396f62016-12-15 16:16:10 -08001816 // Legacy support: verify_slot() removes leading underscores, we need to put them back
1817 // in for old bootloaders. Legacy bootloaders do not have the slot-count variable but
1818 // do have slot-suffixes.
1819 std::string var;
1820 if (!fb_getvar(transport, "slot-count", &var) &&
1821 fb_getvar(transport, "slot-suffixes", &var)) {
1822 slot = "_" + slot;
1823 }
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001824 fb_set_active(slot);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001825 } else if (command == "stage") {
1826 std::string filename = next_arg(&args);
1827
Jocelyn Bohr98cc2832017-01-26 19:20:53 -08001828 struct fastboot_buffer buf;
Elliott Hughesd6365a72017-05-08 18:04:49 -07001829 if (!load_buf(transport, filename.c_str(), &buf) || buf.type != FB_BUFFER_FD) {
1830 die("cannot load '%s'", filename.c_str());
Jocelyn Bohr98cc2832017-01-26 19:20:53 -08001831 }
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001832 fb_queue_download_fd(filename, buf.fd, buf.sz);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001833 } else if (command == "get_staged") {
1834 std::string filename = next_arg(&args);
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001835 fb_queue_upload(filename);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001836 } else if (command == "oem") {
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001837 do_oem_command("oem", &args);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001838 } else if (command == "flashing") {
1839 if (args.empty()) {
1840 syntax_error("missing 'flashing' command");
1841 } else if (args.size() == 1 && (args[0] == "unlock" || args[0] == "lock" ||
1842 args[0] == "unlock_critical" ||
1843 args[0] == "lock_critical" ||
1844 args[0] == "get_unlock_ability" ||
1845 args[0] == "get_unlock_bootloader_nonce" ||
1846 args[0] == "lock_bootloader")) {
Elliott Hughes1eec97a2017-05-15 16:53:53 -07001847 do_oem_command("flashing", &args);
Elliott Hughesd6365a72017-05-08 18:04:49 -07001848 } else if (args.size() == 2 && args[0] == "unlock_bootloader") {
1849 do_bypass_unlock_command(&args);
Badhri Jagan Sridharanbf110952015-05-15 16:43:47 -07001850 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001851 syntax_error("unknown 'flashing' command %s", args[0].c_str());
Badhri Jagan Sridharanbf110952015-05-15 16:43:47 -07001852 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001853 } else {
Elliott Hughesd6365a72017-05-08 18:04:49 -07001854 syntax_error("unknown command %s", command.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001855 }
1856 }
1857
1858 if (wants_wipe) {
Paul Crowleyd8525002018-04-24 17:06:30 -07001859 std::vector<std::string> partitions = { "userdata", "cache", "metadata" };
1860 for (const auto& partition : partitions) {
1861 std::string partition_type;
1862 if (!fb_getvar(transport, std::string{"partition-type:"} + partition, &partition_type)) continue;
1863 if (partition_type.empty()) continue;
1864 fb_queue_erase(partition);
1865 if (partition == "userdata" && set_fbe_marker) {
1866 fprintf(stderr, "setting FBE marker on initial userdata...\n");
1867 std::string initial_userdata_dir = create_fbemarker_tmpdir();
1868 fb_perform_format(transport, partition, 1, "", "", initial_userdata_dir);
1869 delete_fbemarker_tmpdir(initial_userdata_dir);
1870 } else {
1871 fb_perform_format(transport, partition, 1, "", "", "");
Paul Crowley8f7f56e2015-11-27 09:29:37 +00001872 }
Elliott Hughes2fd45a92015-10-30 11:49:47 -07001873 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001874 }
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001875 if (wants_set_active) {
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001876 fb_set_active(next_active);
Daniel Rosenberg0d088562015-11-11 16:15:30 -08001877 }
Mitchell Wills31dce302016-09-26 10:26:21 -07001878 if (wants_reboot && !skip_reboot) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001879 fb_queue_reboot();
Mark Wachslerec25e7b2014-06-24 11:04:54 -04001880 fb_queue_wait_for_disconnect();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001881 } else if (wants_reboot_bootloader) {
1882 fb_queue_command("reboot-bootloader", "rebooting into bootloader");
Mark Wachsler157b0012013-10-02 09:35:38 -04001883 fb_queue_wait_for_disconnect();
Alexey Polyudove0bfb752017-01-03 19:39:13 -08001884 } else if (wants_reboot_emergency) {
1885 fb_queue_command("reboot-emergency", "rebooting into emergency download (EDL) mode");
1886 fb_queue_wait_for_disconnect();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001887 }
1888
Elliott Hughes9b7cd9a2018-03-28 08:20:00 -07001889 int status = fb_execute_queue(transport) ? EXIT_FAILURE : EXIT_SUCCESS;
1890 fprintf(stderr, "Finished. Total time: %.3fs\n", (now() - start));
1891 return status;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001892}