2009-03-04 04:32:55 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
2011-02-26 03:38:53 +01:00
|
|
|
* the documentation and/or other materials provided with the
|
2009-03-04 04:32:55 +01:00
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
2011-02-26 03:38:53 +01:00
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
2009-03-04 04:32:55 +01:00
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2012-05-25 02:18:41 +02:00
|
|
|
#define _LARGEFILE64_SOURCE
|
|
|
|
|
2014-04-30 23:05:28 +02:00
|
|
|
#include <ctype.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2012-05-23 02:53:34 +02:00
|
|
|
#include <getopt.h>
|
2014-05-16 05:06:40 +02:00
|
|
|
#include <inttypes.h>
|
2014-04-30 23:05:28 +02:00
|
|
|
#include <limits.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <sys/time.h>
|
2012-05-25 02:18:41 +02:00
|
|
|
#include <sys/types.h>
|
2014-04-30 23:05:28 +02:00
|
|
|
#include <unistd.h>
|
2012-05-25 02:18:41 +02:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <bootimg.h>
|
2012-05-25 02:18:41 +02:00
|
|
|
#include <sparse/sparse.h>
|
2009-03-04 04:32:55 +01:00
|
|
|
#include <zipfile/zipfile.h>
|
|
|
|
|
|
|
|
#include "fastboot.h"
|
2014-03-12 02:28:15 +01:00
|
|
|
#include "fs.h"
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2012-05-25 02:18:41 +02:00
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(*(a)))
|
|
|
|
|
2011-04-05 02:54:59 +02:00
|
|
|
char cur_product[FB_RESPONSE_SZ + 1];
|
|
|
|
|
2009-04-29 01:05:07 +02:00
|
|
|
void bootimg_set_cmdline(boot_img_hdr *h, const char *cmdline);
|
|
|
|
|
2013-03-08 02:06:41 +01:00
|
|
|
boot_img_hdr *mkbootimg(void *kernel, unsigned kernel_size, unsigned kernel_offset,
|
|
|
|
void *ramdisk, unsigned ramdisk_size, unsigned ramdisk_offset,
|
|
|
|
void *second, unsigned second_size, unsigned second_offset,
|
|
|
|
unsigned page_size, unsigned base, unsigned tags_offset,
|
2009-04-29 01:05:07 +02:00
|
|
|
unsigned *bootimg_size);
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
static usb_handle *usb = 0;
|
|
|
|
static const char *serial = 0;
|
|
|
|
static const char *product = 0;
|
|
|
|
static const char *cmdline = 0;
|
|
|
|
static unsigned short vendor_id = 0;
|
2012-04-06 21:39:30 +02:00
|
|
|
static int long_listing = 0;
|
2012-05-25 02:18:41 +02:00
|
|
|
static int64_t sparse_limit = -1;
|
|
|
|
static int64_t target_sparse_limit = -1;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2013-03-08 02:06:41 +01:00
|
|
|
unsigned page_size = 2048;
|
|
|
|
unsigned base_addr = 0x10000000;
|
|
|
|
unsigned kernel_offset = 0x00008000;
|
|
|
|
unsigned ramdisk_offset = 0x01000000;
|
|
|
|
unsigned second_offset = 0x00f00000;
|
|
|
|
unsigned tags_offset = 0x00000100;
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
enum fb_buffer_type {
|
|
|
|
FB_BUFFER,
|
|
|
|
FB_BUFFER_SPARSE,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fastboot_buffer {
|
|
|
|
enum fb_buffer_type type;
|
|
|
|
void *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned int sz;
|
2013-06-28 18:54:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
char img_name[13];
|
|
|
|
char sig_name[13];
|
|
|
|
char part_name[9];
|
|
|
|
bool is_optional;
|
2014-05-28 23:10:01 +02:00
|
|
|
} images[] = {
|
2013-06-28 18:54:59 +02:00
|
|
|
{"boot.img", "boot.sig", "boot", false},
|
|
|
|
{"recovery.img", "recovery.sig", "recovery", true},
|
|
|
|
{"system.img", "system.sig", "system", false},
|
2014-05-28 23:10:01 +02:00
|
|
|
{"vendor.img", "vendor.sig", "vendor", true},
|
2013-06-28 18:54:59 +02:00
|
|
|
};
|
2009-04-29 01:05:07 +02:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
void get_my_path(char *path);
|
|
|
|
|
|
|
|
char *find_item(const char *item, const char *product)
|
|
|
|
{
|
|
|
|
char *dir;
|
|
|
|
char *fn;
|
|
|
|
char path[PATH_MAX + 128];
|
|
|
|
|
|
|
|
if(!strcmp(item,"boot")) {
|
|
|
|
fn = "boot.img";
|
|
|
|
} else if(!strcmp(item,"recovery")) {
|
|
|
|
fn = "recovery.img";
|
|
|
|
} else if(!strcmp(item,"system")) {
|
|
|
|
fn = "system.img";
|
2014-05-28 23:10:01 +02:00
|
|
|
} else if(!strcmp(item,"vendor")) {
|
|
|
|
fn = "vendor.img";
|
2009-03-04 04:32:55 +01:00
|
|
|
} else if(!strcmp(item,"userdata")) {
|
|
|
|
fn = "userdata.img";
|
2011-09-30 23:39:25 +02:00
|
|
|
} else if(!strcmp(item,"cache")) {
|
|
|
|
fn = "cache.img";
|
2009-03-04 04:32:55 +01:00
|
|
|
} else if(!strcmp(item,"info")) {
|
|
|
|
fn = "android-info.txt";
|
|
|
|
} else {
|
|
|
|
fprintf(stderr,"unknown partition '%s'\n", item);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(product) {
|
|
|
|
get_my_path(path);
|
|
|
|
sprintf(path + strlen(path),
|
|
|
|
"../../../target/product/%s/%s", product, fn);
|
|
|
|
return strdup(path);
|
|
|
|
}
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
dir = getenv("ANDROID_PRODUCT_OUT");
|
|
|
|
if((dir == 0) || (dir[0] == 0)) {
|
|
|
|
die("neither -p product specified nor ANDROID_PRODUCT_OUT set");
|
|
|
|
return 0;
|
|
|
|
}
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
sprintf(path, "%s/%s", dir, fn);
|
|
|
|
return strdup(path);
|
|
|
|
}
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
static int64_t file_size(int fd)
|
2012-05-25 02:18:41 +02:00
|
|
|
{
|
2013-06-28 18:54:59 +02:00
|
|
|
struct stat st;
|
|
|
|
int ret;
|
2012-05-25 02:18:41 +02:00
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
ret = fstat(fd, &st);
|
2012-05-25 02:18:41 +02:00
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
return ret ? -1 : st.st_size;
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
static void *load_fd(int fd, unsigned *_sz)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
2014-05-08 01:31:59 +02:00
|
|
|
char *data;
|
|
|
|
int sz;
|
2011-12-08 20:59:38 +01:00
|
|
|
int errno_tmp;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
data = 0;
|
|
|
|
|
|
|
|
sz = file_size(fd);
|
2013-06-28 18:54:59 +02:00
|
|
|
if (sz < 0) {
|
|
|
|
goto oops;
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
data = (char*) malloc(sz);
|
|
|
|
if(data == 0) goto oops;
|
|
|
|
|
|
|
|
if(read(fd, data, sz) != sz) goto oops;
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if(_sz) *_sz = sz;
|
|
|
|
return data;
|
|
|
|
|
|
|
|
oops:
|
2011-12-08 20:59:38 +01:00
|
|
|
errno_tmp = errno;
|
2009-03-04 04:32:55 +01:00
|
|
|
close(fd);
|
|
|
|
if(data != 0) free(data);
|
2011-12-08 20:59:38 +01:00
|
|
|
errno = errno_tmp;
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
static void *load_file(const char *fn, unsigned *_sz)
|
2013-06-28 18:54:59 +02:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = open(fn, O_RDONLY | O_BINARY);
|
|
|
|
if(fd < 0) return 0;
|
|
|
|
|
|
|
|
return load_fd(fd, _sz);
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2012-06-06 20:53:33 +02:00
|
|
|
int match_fastboot_with_serial(usb_ifc_info *info, const char *local_serial)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
|
|
|
if(!(vendor_id && (info->dev_vendor == vendor_id)) &&
|
2009-08-05 23:04:36 +02:00
|
|
|
(info->dev_vendor != 0x18d1) && // Google
|
2012-01-17 21:04:11 +01:00
|
|
|
(info->dev_vendor != 0x8087) && // Intel
|
2009-03-19 01:39:49 +01:00
|
|
|
(info->dev_vendor != 0x0451) &&
|
2009-09-21 03:51:35 +02:00
|
|
|
(info->dev_vendor != 0x0502) &&
|
2010-05-14 23:48:30 +02:00
|
|
|
(info->dev_vendor != 0x0fce) && // Sony Ericsson
|
|
|
|
(info->dev_vendor != 0x05c6) && // Qualcomm
|
2009-08-05 23:04:36 +02:00
|
|
|
(info->dev_vendor != 0x22b8) && // Motorola
|
2010-01-21 02:40:05 +01:00
|
|
|
(info->dev_vendor != 0x0955) && // Nvidia
|
2010-01-22 02:39:25 +01:00
|
|
|
(info->dev_vendor != 0x413c) && // DELL
|
2012-01-14 01:03:37 +01:00
|
|
|
(info->dev_vendor != 0x2314) && // INQ Mobile
|
2012-02-24 22:00:34 +01:00
|
|
|
(info->dev_vendor != 0x0b05) && // Asus
|
2009-08-05 23:04:36 +02:00
|
|
|
(info->dev_vendor != 0x0bb4)) // HTC
|
|
|
|
return -1;
|
2009-03-04 04:32:55 +01:00
|
|
|
if(info->ifc_class != 0xff) return -1;
|
|
|
|
if(info->ifc_subclass != 0x42) return -1;
|
|
|
|
if(info->ifc_protocol != 0x03) return -1;
|
2012-04-06 21:39:30 +02:00
|
|
|
// require matching serial number or device path if requested
|
2009-03-04 04:32:55 +01:00
|
|
|
// at the command line with the -s option.
|
2012-06-06 20:53:33 +02:00
|
|
|
if (local_serial && (strcmp(local_serial, info->serial_number) != 0 &&
|
|
|
|
strcmp(local_serial, info->device_path) != 0)) return -1;
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-08 02:06:41 +01:00
|
|
|
int match_fastboot(usb_ifc_info *info)
|
|
|
|
{
|
|
|
|
return match_fastboot_with_serial(info, serial);
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
int list_devices_callback(usb_ifc_info *info)
|
|
|
|
{
|
2012-06-06 20:53:33 +02:00
|
|
|
if (match_fastboot_with_serial(info, NULL) == 0) {
|
2009-03-04 04:32:55 +01:00
|
|
|
char* serial = info->serial_number;
|
2009-10-07 03:07:49 +02:00
|
|
|
if (!info->writable) {
|
|
|
|
serial = "no permissions"; // like "adb devices"
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
if (!serial[0]) {
|
|
|
|
serial = "????????????";
|
|
|
|
}
|
2012-06-05 05:29:11 +02:00
|
|
|
// output compatible with "adb devices"
|
2012-04-06 21:39:30 +02:00
|
|
|
if (!long_listing) {
|
|
|
|
printf("%s\tfastboot\n", serial);
|
2012-06-05 05:29:11 +02:00
|
|
|
} else if (!info->device_path) {
|
|
|
|
printf("%-22s fastboot\n", serial);
|
2012-04-06 21:39:30 +02:00
|
|
|
} else {
|
2012-06-05 05:29:11 +02:00
|
|
|
printf("%-22s fastboot %s\n", serial, info->device_path);
|
2012-04-06 21:39:30 +02:00
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
usb_handle *open_device(void)
|
|
|
|
{
|
|
|
|
static usb_handle *usb = 0;
|
|
|
|
int announce = 1;
|
|
|
|
|
|
|
|
if(usb) return usb;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
for(;;) {
|
|
|
|
usb = usb_open(match_fastboot);
|
|
|
|
if(usb) return usb;
|
|
|
|
if(announce) {
|
2011-02-26 03:38:53 +01:00
|
|
|
announce = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
fprintf(stderr,"< waiting for device >\n");
|
|
|
|
}
|
2014-04-30 23:05:28 +02:00
|
|
|
usleep(1000);
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void list_devices(void) {
|
|
|
|
// We don't actually open a USB device here,
|
|
|
|
// just getting our callback called so we can
|
|
|
|
// list all the connected devices.
|
|
|
|
usb_open(list_devices_callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
/* 1234567890123456789012345678901234567890123456789012345678901234567890123456 */
|
|
|
|
"usage: fastboot [ <option> ] <command>\n"
|
|
|
|
"\n"
|
|
|
|
"commands:\n"
|
|
|
|
" update <filename> reflash device from update.zip\n"
|
2014-05-28 23:10:01 +02:00
|
|
|
" flashall flash boot, system, vendor and if found,\n"
|
2014-09-15 22:44:07 +02:00
|
|
|
" recovery\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
" flash <partition> [ <filename> ] write a file to a flash partition\n"
|
|
|
|
" erase <partition> erase a flash partition\n"
|
2014-05-07 00:14:15 +02:00
|
|
|
" format[:[<fs type>][:[<size>]] <partition> format a flash partition.\n"
|
|
|
|
" Can override the fs type and/or\n"
|
|
|
|
" size the bootloader reports.\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
" getvar <variable> display a bootloader variable\n"
|
2014-07-17 17:17:54 +02:00
|
|
|
" boot <kernel> [ <ramdisk> [ <second> ] ] download and boot kernel\n"
|
|
|
|
" flash:raw boot <kernel> [ <ramdisk> [ <second> ] ] create bootimage and \n"
|
|
|
|
" flash it\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
" devices list all connected devices\n"
|
2010-10-14 18:43:26 +02:00
|
|
|
" continue continue with autoboot\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
" reboot reboot device normally\n"
|
|
|
|
" reboot-bootloader reboot device into bootloader\n"
|
2011-02-26 03:38:53 +01:00
|
|
|
" help show this help message\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
"\n"
|
|
|
|
"options:\n"
|
2012-09-29 23:46:25 +02:00
|
|
|
" -w erase userdata and cache (and format\n"
|
|
|
|
" if supported by partition type)\n"
|
|
|
|
" -u do not first erase partition before\n"
|
|
|
|
" formatting\n"
|
2012-04-06 21:39:30 +02:00
|
|
|
" -s <specific device> specify device serial number\n"
|
|
|
|
" or path to device port\n"
|
|
|
|
" -l with \"devices\", lists device paths\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
" -p <product> specify product name\n"
|
|
|
|
" -c <cmdline> override kernel commandline\n"
|
|
|
|
" -i <vendor id> specify a custom USB vendor id\n"
|
2014-05-07 00:14:15 +02:00
|
|
|
" -b <base_addr> specify a custom kernel base address.\n"
|
|
|
|
" default: 0x10000000\n"
|
|
|
|
" -n <page size> specify the nand page size.\n"
|
|
|
|
" default: 2048\n"
|
|
|
|
" -S <size>[K|M|G] automatically sparse files greater\n"
|
|
|
|
" than size. 0 to disable\n"
|
2009-03-04 04:32:55 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-03-08 02:06:41 +01:00
|
|
|
void *load_bootable_image(const char *kernel, const char *ramdisk,
|
2014-07-17 17:17:54 +02:00
|
|
|
const char *secondstage, unsigned *sz,
|
|
|
|
const char *cmdline)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
2014-07-17 17:17:54 +02:00
|
|
|
void *kdata = 0, *rdata = 0, *sdata = 0;
|
|
|
|
unsigned ksize = 0, rsize = 0, ssize = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
void *bdata;
|
|
|
|
unsigned bsize;
|
|
|
|
|
|
|
|
if(kernel == 0) {
|
|
|
|
fprintf(stderr, "no image specified\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
kdata = load_file(kernel, &ksize);
|
|
|
|
if(kdata == 0) {
|
2011-12-08 20:59:38 +01:00
|
|
|
fprintf(stderr, "cannot load '%s': %s\n", kernel, strerror(errno));
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
/* is this actually a boot image? */
|
|
|
|
if(!memcmp(kdata, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
|
|
|
|
if(cmdline) bootimg_set_cmdline((boot_img_hdr*) kdata, cmdline);
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
if(ramdisk) {
|
|
|
|
fprintf(stderr, "cannot boot a boot.img *and* ramdisk\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
*sz = ksize;
|
|
|
|
return kdata;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ramdisk) {
|
|
|
|
rdata = load_file(ramdisk, &rsize);
|
|
|
|
if(rdata == 0) {
|
2011-12-08 20:59:38 +01:00
|
|
|
fprintf(stderr,"cannot load '%s': %s\n", ramdisk, strerror(errno));
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-17 17:17:54 +02:00
|
|
|
if (secondstage) {
|
|
|
|
sdata = load_file(secondstage, &ssize);
|
|
|
|
if(sdata == 0) {
|
|
|
|
fprintf(stderr,"cannot load '%s': %s\n", secondstage, strerror(errno));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
fprintf(stderr,"creating boot image...\n");
|
2013-03-08 02:06:41 +01:00
|
|
|
bdata = mkbootimg(kdata, ksize, kernel_offset,
|
|
|
|
rdata, rsize, ramdisk_offset,
|
2014-07-17 17:17:54 +02:00
|
|
|
sdata, ssize, second_offset,
|
2013-03-08 02:06:41 +01:00
|
|
|
page_size, base_addr, tags_offset, &bsize);
|
2009-03-04 04:32:55 +01:00
|
|
|
if(bdata == 0) {
|
|
|
|
fprintf(stderr,"failed to create boot.img\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(cmdline) bootimg_set_cmdline((boot_img_hdr*) bdata, cmdline);
|
|
|
|
fprintf(stderr,"creating boot image - %d bytes\n", bsize);
|
|
|
|
*sz = bsize;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
return bdata;
|
|
|
|
}
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
void *unzip_file(zipfile_t zip, const char *name, unsigned *sz)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
|
|
|
void *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
zipentry_t entry;
|
|
|
|
unsigned datasz;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
entry = lookup_zipentry(zip, name);
|
2009-03-04 04:32:55 +01:00
|
|
|
if (entry == NULL) {
|
|
|
|
fprintf(stderr, "archive does not contain '%s'\n", name);
|
2014-05-08 01:31:59 +02:00
|
|
|
return 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
*sz = get_zipentry_size(entry);
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
datasz = *sz * 1.001;
|
2009-03-04 04:32:55 +01:00
|
|
|
data = malloc(datasz);
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
if(data == 0) {
|
|
|
|
fprintf(stderr, "failed to allocate %d bytes\n", *sz);
|
|
|
|
return 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (decompress_zipentry(entry, data, datasz)) {
|
|
|
|
fprintf(stderr, "failed to unzip '%s' from archive\n", name);
|
|
|
|
free(data);
|
2014-05-08 01:31:59 +02:00
|
|
|
return 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2014-05-08 01:31:59 +02:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
static int unzip_to_file(zipfile_t zip, char *name)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
char *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned sz;
|
2013-06-28 18:54:59 +02:00
|
|
|
|
|
|
|
fd = fileno(tmpfile());
|
|
|
|
if (fd < 0) {
|
2014-05-08 01:31:59 +02:00
|
|
|
return -1;
|
2013-06-28 18:54:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
data = unzip_file(zip, name, &sz);
|
2014-05-08 01:31:59 +02:00
|
|
|
if (data == 0) {
|
2013-06-28 18:54:59 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-04-30 23:05:28 +02:00
|
|
|
if (write(fd, data, sz) != (ssize_t)sz) {
|
2013-06-28 18:54:59 +02:00
|
|
|
fd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(data);
|
2014-05-08 01:31:59 +02:00
|
|
|
lseek(fd, 0, SEEK_SET);
|
2013-06-28 18:54:59 +02:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
static char *strip(char *s)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
while(*s && isspace(*s)) s++;
|
|
|
|
n = strlen(s);
|
|
|
|
while(n-- > 0) {
|
|
|
|
if(!isspace(s[n])) break;
|
|
|
|
s[n] = 0;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_OPTIONS 32
|
|
|
|
static int setup_requirement_line(char *name)
|
|
|
|
{
|
|
|
|
char *val[MAX_OPTIONS];
|
|
|
|
const char **out;
|
2011-04-05 02:54:59 +02:00
|
|
|
char *prod = NULL;
|
2009-03-04 04:32:55 +01:00
|
|
|
unsigned n, count;
|
|
|
|
char *x;
|
|
|
|
int invert = 0;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
if (!strncmp(name, "reject ", 7)) {
|
|
|
|
name += 7;
|
|
|
|
invert = 1;
|
|
|
|
} else if (!strncmp(name, "require ", 8)) {
|
|
|
|
name += 8;
|
|
|
|
invert = 0;
|
2011-04-05 02:54:59 +02:00
|
|
|
} else if (!strncmp(name, "require-for-product:", 20)) {
|
|
|
|
// Get the product and point name past it
|
|
|
|
prod = name + 20;
|
|
|
|
name = strchr(name, ' ');
|
|
|
|
if (!name) return -1;
|
|
|
|
*name = 0;
|
|
|
|
name += 1;
|
|
|
|
invert = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
x = strchr(name, '=');
|
|
|
|
if (x == 0) return 0;
|
|
|
|
*x = 0;
|
|
|
|
val[0] = x + 1;
|
|
|
|
|
|
|
|
for(count = 1; count < MAX_OPTIONS; count++) {
|
|
|
|
x = strchr(val[count - 1],'|');
|
|
|
|
if (x == 0) break;
|
|
|
|
*x = 0;
|
|
|
|
val[count] = x + 1;
|
|
|
|
}
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
name = strip(name);
|
|
|
|
for(n = 0; n < count; n++) val[n] = strip(val[n]);
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
name = strip(name);
|
|
|
|
if (name == 0) return -1;
|
|
|
|
|
|
|
|
/* work around an unfortunate name mismatch */
|
|
|
|
if (!strcmp(name,"board")) name = "product";
|
|
|
|
|
|
|
|
out = malloc(sizeof(char*) * count);
|
|
|
|
if (out == 0) return -1;
|
|
|
|
|
|
|
|
for(n = 0; n < count; n++) {
|
|
|
|
out[n] = strdup(strip(val[n]));
|
2013-10-29 22:12:46 +01:00
|
|
|
if (out[n] == 0) {
|
|
|
|
for(size_t i = 0; i < n; ++i) {
|
|
|
|
free((char*) out[i]);
|
|
|
|
}
|
|
|
|
free(out);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2011-04-05 02:54:59 +02:00
|
|
|
fb_queue_require(prod, name, invert, n, out);
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
static void setup_requirements(char *data, unsigned sz)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
2014-05-08 01:31:59 +02:00
|
|
|
char *s;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
s = data;
|
2009-03-04 04:32:55 +01:00
|
|
|
while (sz-- > 0) {
|
|
|
|
if(*s == '\n') {
|
|
|
|
*s++ = 0;
|
|
|
|
if (setup_requirement_line(data)) {
|
|
|
|
die("out of memory");
|
|
|
|
}
|
|
|
|
data = s;
|
|
|
|
} else {
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void queue_info_dump(void)
|
|
|
|
{
|
|
|
|
fb_queue_notice("--------------------------------------------");
|
|
|
|
fb_queue_display("version-bootloader", "Bootloader Version...");
|
|
|
|
fb_queue_display("version-baseband", "Baseband Version.....");
|
|
|
|
fb_queue_display("serialno", "Serial Number........");
|
|
|
|
fb_queue_notice("--------------------------------------------");
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
static struct sparse_file **load_sparse_files(int fd, int max_size)
|
2012-05-25 02:18:41 +02:00
|
|
|
{
|
|
|
|
struct sparse_file *s;
|
|
|
|
int files;
|
|
|
|
struct sparse_file **out_s;
|
|
|
|
|
|
|
|
s = sparse_file_import_auto(fd, false);
|
|
|
|
if (!s) {
|
2013-06-28 18:54:59 +02:00
|
|
|
die("cannot sparse read file\n");
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
files = sparse_file_resparse(s, max_size, NULL, 0);
|
|
|
|
if (files < 0) {
|
2013-06-28 18:54:59 +02:00
|
|
|
die("Failed to resparse\n");
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
out_s = calloc(sizeof(struct sparse_file *), files + 1);
|
|
|
|
if (!out_s) {
|
|
|
|
die("Failed to allocate sparse file array\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
files = sparse_file_resparse(s, max_size, out_s, files);
|
|
|
|
if (files < 0) {
|
2013-06-28 18:54:59 +02:00
|
|
|
die("Failed to resparse\n");
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return out_s;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t get_target_sparse_limit(struct usb_handle *usb)
|
|
|
|
{
|
|
|
|
int64_t limit = 0;
|
|
|
|
char response[FB_RESPONSE_SZ + 1];
|
|
|
|
int status = fb_getvar(usb, response, "max-download-size");
|
|
|
|
|
|
|
|
if (!status) {
|
|
|
|
limit = strtoul(response, NULL, 0);
|
|
|
|
if (limit > 0) {
|
2014-05-16 05:06:40 +02:00
|
|
|
fprintf(stderr, "target reported max download size of %" PRId64 " bytes\n",
|
2012-05-25 02:18:41 +02:00
|
|
|
limit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t get_sparse_limit(struct usb_handle *usb, int64_t size)
|
|
|
|
{
|
|
|
|
int64_t limit;
|
|
|
|
|
|
|
|
if (sparse_limit == 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (sparse_limit > 0) {
|
|
|
|
limit = sparse_limit;
|
|
|
|
} else {
|
|
|
|
if (target_sparse_limit == -1) {
|
|
|
|
target_sparse_limit = get_target_sparse_limit(usb);
|
|
|
|
}
|
|
|
|
if (target_sparse_limit > 0) {
|
|
|
|
limit = target_sparse_limit;
|
|
|
|
} else {
|
2012-07-25 03:05:21 +02:00
|
|
|
return 0;
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size > limit) {
|
|
|
|
return limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-29 23:46:25 +02:00
|
|
|
/* Until we get lazy inode table init working in make_ext4fs, we need to
|
|
|
|
* erase partitions of type ext4 before flashing a filesystem so no stale
|
|
|
|
* inodes are left lying around. Otherwise, e2fsck gets very upset.
|
|
|
|
*/
|
|
|
|
static int needs_erase(const char *part)
|
|
|
|
{
|
|
|
|
/* The function fb_format_supported() currently returns the value
|
|
|
|
* we want, so just call it.
|
|
|
|
*/
|
2014-05-07 00:14:15 +02:00
|
|
|
return fb_format_supported(usb, part, NULL);
|
2012-09-29 23:46:25 +02:00
|
|
|
}
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
static int load_buf_fd(usb_handle *usb, int fd,
|
|
|
|
struct fastboot_buffer *buf)
|
2012-05-25 02:18:41 +02:00
|
|
|
{
|
2014-05-06 04:43:15 +02:00
|
|
|
int64_t sz64;
|
2014-05-08 01:31:59 +02:00
|
|
|
void *data;
|
|
|
|
int64_t limit;
|
2012-05-25 02:18:41 +02:00
|
|
|
|
2014-05-08 01:31:59 +02:00
|
|
|
|
|
|
|
sz64 = file_size(fd);
|
|
|
|
if (sz64 < 0) {
|
|
|
|
return -1;
|
2013-06-28 18:54:59 +02:00
|
|
|
}
|
2014-03-12 02:28:15 +01:00
|
|
|
|
|
|
|
lseek(fd, 0, SEEK_SET);
|
2012-05-25 02:18:41 +02:00
|
|
|
limit = get_sparse_limit(usb, sz64);
|
|
|
|
if (limit) {
|
2013-06-28 18:54:59 +02:00
|
|
|
struct sparse_file **s = load_sparse_files(fd, limit);
|
2012-05-25 02:18:41 +02:00
|
|
|
if (s == NULL) {
|
2013-06-28 18:54:59 +02:00
|
|
|
return -1;
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
2013-06-28 18:54:59 +02:00
|
|
|
buf->type = FB_BUFFER_SPARSE;
|
|
|
|
buf->data = s;
|
2012-05-25 02:18:41 +02:00
|
|
|
} else {
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned int sz;
|
2013-06-28 18:54:59 +02:00
|
|
|
data = load_fd(fd, &sz);
|
2014-05-08 01:31:59 +02:00
|
|
|
if (data == 0) return -1;
|
2013-06-28 18:54:59 +02:00
|
|
|
buf->type = FB_BUFFER;
|
2014-05-06 04:43:15 +02:00
|
|
|
buf->data = data;
|
2014-05-08 01:31:59 +02:00
|
|
|
buf->sz = sz;
|
2013-06-28 18:54:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int load_buf(usb_handle *usb, const char *fname,
|
|
|
|
struct fastboot_buffer *buf)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = open(fname, O_RDONLY | O_BINARY);
|
|
|
|
if (fd < 0) {
|
2014-04-29 22:45:05 +02:00
|
|
|
return -1;
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
2013-06-28 18:54:59 +02:00
|
|
|
|
|
|
|
return load_buf_fd(usb, fd, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void flash_buf(const char *pname, struct fastboot_buffer *buf)
|
|
|
|
{
|
|
|
|
struct sparse_file **s;
|
|
|
|
|
|
|
|
switch (buf->type) {
|
|
|
|
case FB_BUFFER_SPARSE:
|
|
|
|
s = buf->data;
|
|
|
|
while (*s) {
|
|
|
|
int64_t sz64 = sparse_file_len(*s, true, false);
|
|
|
|
fb_queue_flash_sparse(pname, *s++, sz64);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FB_BUFFER:
|
|
|
|
fb_queue_flash(pname, buf->data, buf->sz);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("unknown buffer type: %d", buf->type);
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
void do_flash(usb_handle *usb, const char *pname, const char *fname)
|
|
|
|
{
|
|
|
|
struct fastboot_buffer buf;
|
|
|
|
|
|
|
|
if (load_buf(usb, fname, &buf)) {
|
|
|
|
die("cannot load '%s'", fname);
|
|
|
|
}
|
|
|
|
flash_buf(pname, &buf);
|
2012-05-25 02:18:41 +02:00
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
void do_update_signature(zipfile_t zip, char *fn)
|
|
|
|
{
|
2014-05-08 01:31:59 +02:00
|
|
|
void *data;
|
|
|
|
unsigned sz;
|
|
|
|
data = unzip_file(zip, fn, &sz);
|
|
|
|
if (data == 0) return;
|
2009-03-04 04:32:55 +01:00
|
|
|
fb_queue_download("signature", data, sz);
|
|
|
|
fb_queue_command("signature", "installing signature");
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
void do_update(usb_handle *usb, char *fn, int erase_first)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
|
|
|
void *zdata;
|
|
|
|
unsigned zsize;
|
|
|
|
void *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned sz;
|
2009-03-04 04:32:55 +01:00
|
|
|
zipfile_t zip;
|
2013-06-28 18:54:59 +02:00
|
|
|
int fd;
|
|
|
|
int rc;
|
|
|
|
struct fastboot_buffer buf;
|
2014-04-30 23:05:28 +02:00
|
|
|
size_t i;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
queue_info_dump();
|
|
|
|
|
2011-04-05 02:54:59 +02:00
|
|
|
fb_queue_query_save("product", cur_product, sizeof(cur_product));
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
zdata = load_file(fn, &zsize);
|
2011-12-08 20:59:38 +01:00
|
|
|
if (zdata == 0) die("failed to load '%s': %s", fn, strerror(errno));
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
zip = init_zipfile(zdata, zsize);
|
|
|
|
if(zip == 0) die("failed to access zipdata in '%s'");
|
|
|
|
|
|
|
|
data = unzip_file(zip, "android-info.txt", &sz);
|
2014-05-08 01:31:59 +02:00
|
|
|
if (data == 0) {
|
2009-03-04 04:32:55 +01:00
|
|
|
char *tmp;
|
|
|
|
/* fallback for older zipfiles */
|
|
|
|
data = unzip_file(zip, "android-product.txt", &sz);
|
2014-05-08 01:31:59 +02:00
|
|
|
if ((data == 0) || (sz < 1)) {
|
2009-03-04 04:32:55 +01:00
|
|
|
die("update package has no android-info.txt or android-product.txt");
|
|
|
|
}
|
|
|
|
tmp = malloc(sz + 128);
|
|
|
|
if (tmp == 0) die("out of memory");
|
|
|
|
sprintf(tmp,"board=%sversion-baseband=0.66.04.19\n",(char*)data);
|
|
|
|
data = tmp;
|
|
|
|
sz = strlen(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_requirements(data, sz);
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
for (i = 0; i < ARRAY_SIZE(images); i++) {
|
|
|
|
fd = unzip_to_file(zip, images[i].img_name);
|
|
|
|
if (fd < 0) {
|
|
|
|
if (images[i].is_optional)
|
|
|
|
continue;
|
|
|
|
die("update package missing %s", images[i].img_name);
|
2012-09-29 23:46:25 +02:00
|
|
|
}
|
2013-06-28 18:54:59 +02:00
|
|
|
rc = load_buf_fd(usb, fd, &buf);
|
|
|
|
if (rc) die("cannot load %s from flash", images[i].img_name);
|
|
|
|
do_update_signature(zip, images[i].sig_name);
|
|
|
|
if (erase_first && needs_erase(images[i].part_name)) {
|
|
|
|
fb_queue_erase(images[i].part_name);
|
|
|
|
}
|
|
|
|
flash_buf(images[i].part_name, &buf);
|
|
|
|
/* not closing the fd here since the sparse code keeps the fd around
|
|
|
|
* but hasn't mmaped data yet. The tmpfile will get cleaned up when the
|
|
|
|
* program exits.
|
|
|
|
*/
|
2012-09-29 23:46:25 +02:00
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void do_send_signature(char *fn)
|
|
|
|
{
|
|
|
|
void *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned sz;
|
2009-03-04 04:32:55 +01:00
|
|
|
char *xtn;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
xtn = strrchr(fn, '.');
|
|
|
|
if (!xtn) return;
|
|
|
|
if (strcmp(xtn, ".img")) return;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
strcpy(xtn,".sig");
|
|
|
|
data = load_file(fn, &sz);
|
|
|
|
strcpy(xtn,".img");
|
|
|
|
if (data == 0) return;
|
|
|
|
fb_queue_download("signature", data, sz);
|
|
|
|
fb_queue_command("signature", "installing signature");
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
void do_flashall(usb_handle *usb, int erase_first)
|
2009-03-04 04:32:55 +01:00
|
|
|
{
|
|
|
|
char *fname;
|
|
|
|
void *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned sz;
|
2013-06-28 18:54:59 +02:00
|
|
|
struct fastboot_buffer buf;
|
2014-04-30 23:05:28 +02:00
|
|
|
size_t i;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
queue_info_dump();
|
|
|
|
|
2011-04-05 02:54:59 +02:00
|
|
|
fb_queue_query_save("product", cur_product, sizeof(cur_product));
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
fname = find_item("info", product);
|
|
|
|
if (fname == 0) die("cannot find android-info.txt");
|
|
|
|
data = load_file(fname, &sz);
|
2011-12-08 20:59:38 +01:00
|
|
|
if (data == 0) die("could not load android-info.txt: %s", strerror(errno));
|
2009-03-04 04:32:55 +01:00
|
|
|
setup_requirements(data, sz);
|
|
|
|
|
2013-06-28 18:54:59 +02:00
|
|
|
for (i = 0; i < ARRAY_SIZE(images); i++) {
|
|
|
|
fname = find_item(images[i].part_name, product);
|
|
|
|
if (load_buf(usb, fname, &buf)) {
|
|
|
|
if (images[i].is_optional)
|
|
|
|
continue;
|
|
|
|
die("could not load %s\n", images[i].img_name);
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
do_send_signature(fname);
|
2013-06-28 18:54:59 +02:00
|
|
|
if (erase_first && needs_erase(images[i].part_name)) {
|
|
|
|
fb_queue_erase(images[i].part_name);
|
2012-09-29 23:46:25 +02:00
|
|
|
}
|
2013-06-28 18:54:59 +02:00
|
|
|
flash_buf(images[i].part_name, &buf);
|
2012-09-29 23:46:25 +02:00
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define skip(n) do { argc -= (n); argv += (n); } while (0)
|
2011-03-02 08:35:07 +01:00
|
|
|
#define require(n) do { if (argc < (n)) {usage(); exit(1);}} while (0)
|
2009-03-04 04:32:55 +01:00
|
|
|
|
|
|
|
int do_oem_command(int argc, char **argv)
|
|
|
|
{
|
|
|
|
char command[256];
|
|
|
|
if (argc <= 1) return 0;
|
2011-02-26 03:38:53 +01:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
command[0] = 0;
|
|
|
|
while(1) {
|
|
|
|
strcat(command,*argv);
|
|
|
|
skip(1);
|
|
|
|
if(argc == 0) break;
|
|
|
|
strcat(command," ");
|
|
|
|
}
|
|
|
|
|
2011-02-26 03:38:53 +01:00
|
|
|
fb_queue_command(command,"");
|
2009-03-04 04:32:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-25 02:18:41 +02:00
|
|
|
static int64_t parse_num(const char *arg)
|
|
|
|
{
|
|
|
|
char *endptr;
|
|
|
|
unsigned long long num;
|
|
|
|
|
|
|
|
num = strtoull(arg, &endptr, 0);
|
|
|
|
if (endptr == arg) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*endptr == 'k' || *endptr == 'K') {
|
|
|
|
if (num >= (-1ULL) / 1024) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
num *= 1024LL;
|
|
|
|
endptr++;
|
|
|
|
} else if (*endptr == 'm' || *endptr == 'M') {
|
|
|
|
if (num >= (-1ULL) / (1024 * 1024)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
num *= 1024LL * 1024LL;
|
|
|
|
endptr++;
|
|
|
|
} else if (*endptr == 'g' || *endptr == 'G') {
|
|
|
|
if (num >= (-1ULL) / (1024 * 1024 * 1024)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
num *= 1024LL * 1024LL * 1024LL;
|
|
|
|
endptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*endptr != '\0') {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num > INT64_MAX) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2014-05-07 00:14:15 +02:00
|
|
|
void fb_perform_format(const char *partition, int skip_if_not_supported,
|
|
|
|
const char *type_override, const char *size_override)
|
2014-03-12 02:28:15 +01:00
|
|
|
{
|
2014-05-07 00:14:15 +02:00
|
|
|
char pTypeBuff[FB_RESPONSE_SZ + 1], pSizeBuff[FB_RESPONSE_SZ + 1];
|
|
|
|
char *pType = pTypeBuff;
|
|
|
|
char *pSize = pSizeBuff;
|
2014-03-12 02:28:15 +01:00
|
|
|
unsigned int limit = INT_MAX;
|
|
|
|
struct fastboot_buffer buf;
|
|
|
|
const char *errMsg = NULL;
|
|
|
|
const struct fs_generator *gen;
|
|
|
|
uint64_t pSz;
|
|
|
|
int status;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (target_sparse_limit > 0 && target_sparse_limit < limit)
|
|
|
|
limit = target_sparse_limit;
|
|
|
|
if (sparse_limit > 0 && sparse_limit < limit)
|
|
|
|
limit = sparse_limit;
|
|
|
|
|
|
|
|
status = fb_getvar(usb, pType, "partition-type:%s", partition);
|
|
|
|
if (status) {
|
|
|
|
errMsg = "Can't determine partition type.\n";
|
|
|
|
goto failed;
|
|
|
|
}
|
2014-05-07 00:14:15 +02:00
|
|
|
if (type_override) {
|
|
|
|
if (strcmp(type_override, pType)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Warning: %s type is %s, but %s was requested for formating.\n",
|
|
|
|
partition, pType, type_override);
|
|
|
|
}
|
2014-04-30 23:05:28 +02:00
|
|
|
pType = (char *)type_override;
|
2014-05-07 00:14:15 +02:00
|
|
|
}
|
2014-03-12 02:28:15 +01:00
|
|
|
|
|
|
|
status = fb_getvar(usb, pSize, "partition-size:%s", partition);
|
|
|
|
if (status) {
|
|
|
|
errMsg = "Unable to get partition size\n";
|
|
|
|
goto failed;
|
|
|
|
}
|
2014-05-07 00:14:15 +02:00
|
|
|
if (size_override) {
|
|
|
|
if (strcmp(size_override, pSize)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Warning: %s size is %s, but %s was requested for formating.\n",
|
|
|
|
partition, pSize, size_override);
|
|
|
|
}
|
2014-04-30 23:05:28 +02:00
|
|
|
pSize = (char *)size_override;
|
2014-05-07 00:14:15 +02:00
|
|
|
}
|
2014-03-12 02:28:15 +01:00
|
|
|
|
|
|
|
gen = fs_get_generator(pType);
|
|
|
|
if (!gen) {
|
|
|
|
if (skip_if_not_supported) {
|
|
|
|
fprintf(stderr, "Erase successful, but not automatically formatting.\n");
|
|
|
|
fprintf(stderr, "File system type %s not supported.\n", pType);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "Formatting is not supported for filesystem with type '%s'.\n", pType);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pSz = strtoll(pSize, (char **)NULL, 16);
|
|
|
|
|
|
|
|
fd = fileno(tmpfile());
|
|
|
|
if (fs_generator_generate(gen, fd, pSz)) {
|
|
|
|
close(fd);
|
|
|
|
fprintf(stderr, "Cannot generate image.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (load_buf_fd(usb, fd, &buf)) {
|
|
|
|
fprintf(stderr, "Cannot read image.\n");
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
flash_buf(partition, &buf);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
failed:
|
|
|
|
if (skip_if_not_supported) {
|
|
|
|
fprintf(stderr, "Erase successful, but not automatically formatting.\n");
|
|
|
|
if (errMsg)
|
|
|
|
fprintf(stderr, "%s", errMsg);
|
|
|
|
}
|
|
|
|
fprintf(stderr,"FAILED (%s)\n", fb_get_error());
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int wants_wipe = 0;
|
|
|
|
int wants_reboot = 0;
|
|
|
|
int wants_reboot_bootloader = 0;
|
2012-09-29 23:46:25 +02:00
|
|
|
int erase_first = 1;
|
2009-03-04 04:32:55 +01:00
|
|
|
void *data;
|
2014-05-08 01:31:59 +02:00
|
|
|
unsigned sz;
|
2010-04-23 21:38:51 +02:00
|
|
|
int status;
|
2012-05-23 02:53:34 +02:00
|
|
|
int c;
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2013-03-08 02:06:41 +01:00
|
|
|
const struct option longopts[] = {
|
|
|
|
{"base", required_argument, 0, 'b'},
|
|
|
|
{"kernel_offset", required_argument, 0, 'k'},
|
|
|
|
{"page_size", required_argument, 0, 'n'},
|
|
|
|
{"ramdisk_offset", required_argument, 0, 'r'},
|
2014-01-15 03:27:25 +01:00
|
|
|
{"tags_offset", required_argument, 0, 't'},
|
2013-03-08 02:06:41 +01:00
|
|
|
{"help", 0, 0, 'h'},
|
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
2012-05-23 02:53:34 +02:00
|
|
|
|
|
|
|
serial = getenv("ANDROID_SERIAL");
|
|
|
|
|
|
|
|
while (1) {
|
2014-01-15 03:27:25 +01:00
|
|
|
c = getopt_long(argc, argv, "wub:k:n:r:t:s:S:lp:c:i:m:h", longopts, NULL);
|
2012-05-23 02:53:34 +02:00
|
|
|
if (c < 0) {
|
|
|
|
break;
|
|
|
|
}
|
2013-03-08 02:06:41 +01:00
|
|
|
/* Alphabetical cases */
|
2012-05-23 02:53:34 +02:00
|
|
|
switch (c) {
|
|
|
|
case 'b':
|
|
|
|
base_addr = strtoul(optarg, 0, 16);
|
|
|
|
break;
|
2013-03-08 02:06:41 +01:00
|
|
|
case 'c':
|
|
|
|
cmdline = optarg;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
return 1;
|
|
|
|
case 'i': {
|
|
|
|
char *endptr = NULL;
|
|
|
|
unsigned long val;
|
|
|
|
|
|
|
|
val = strtoul(optarg, &endptr, 0);
|
|
|
|
if (!endptr || *endptr != '\0' || (val & ~0xffff))
|
|
|
|
die("invalid vendor id '%s'", optarg);
|
|
|
|
vendor_id = (unsigned short)val;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'k':
|
|
|
|
kernel_offset = strtoul(optarg, 0, 16);
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
long_listing = 1;
|
|
|
|
break;
|
2012-05-23 02:53:34 +02:00
|
|
|
case 'n':
|
|
|
|
page_size = (unsigned)strtoul(optarg, NULL, 0);
|
|
|
|
if (!page_size) die("invalid page size");
|
|
|
|
break;
|
2013-03-08 02:06:41 +01:00
|
|
|
case 'p':
|
|
|
|
product = optarg;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
ramdisk_offset = strtoul(optarg, 0, 16);
|
|
|
|
break;
|
2014-01-15 03:27:25 +01:00
|
|
|
case 't':
|
|
|
|
tags_offset = strtoul(optarg, 0, 16);
|
|
|
|
break;
|
2012-05-23 02:53:34 +02:00
|
|
|
case 's':
|
|
|
|
serial = optarg;
|
|
|
|
break;
|
2012-05-25 02:18:41 +02:00
|
|
|
case 'S':
|
|
|
|
sparse_limit = parse_num(optarg);
|
|
|
|
if (sparse_limit < 0) {
|
|
|
|
die("invalid sparse limit");
|
|
|
|
}
|
|
|
|
break;
|
2013-03-08 02:06:41 +01:00
|
|
|
case 'u':
|
|
|
|
erase_first = 0;
|
2012-05-23 02:53:34 +02:00
|
|
|
break;
|
2013-03-08 02:06:41 +01:00
|
|
|
case 'w':
|
|
|
|
wants_wipe = 1;
|
2012-05-23 02:53:34 +02:00
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2009-03-04 04:32:55 +01:00
|
|
|
|
2012-05-23 02:53:34 +02:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc == 0 && !wants_wipe) {
|
2009-03-04 04:32:55 +01:00
|
|
|
usage();
|
2010-04-23 21:38:51 +02:00
|
|
|
return 1;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2012-07-25 01:36:41 +02:00
|
|
|
if (argc > 0 && !strcmp(*argv, "devices")) {
|
2012-05-23 02:53:34 +02:00
|
|
|
skip(1);
|
2009-03-04 04:32:55 +01:00
|
|
|
list_devices();
|
2011-02-26 03:38:53 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-30 03:17:06 +02:00
|
|
|
if (argc > 0 && !strcmp(*argv, "help")) {
|
|
|
|
usage();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-23 02:53:34 +02:00
|
|
|
usb = open_device();
|
2009-10-08 00:38:53 +02:00
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
while (argc > 0) {
|
2012-05-23 02:53:34 +02:00
|
|
|
if(!strcmp(*argv, "getvar")) {
|
2009-03-04 04:32:55 +01:00
|
|
|
require(2);
|
|
|
|
fb_queue_display(argv[1], argv[1]);
|
|
|
|
skip(2);
|
|
|
|
} else if(!strcmp(*argv, "erase")) {
|
|
|
|
require(2);
|
2012-09-29 23:46:25 +02:00
|
|
|
|
2014-05-07 00:14:15 +02:00
|
|
|
if (fb_format_supported(usb, argv[1], NULL)) {
|
2012-09-29 23:46:25 +02:00
|
|
|
fprintf(stderr, "******** Did you mean to fastboot format this partition?\n");
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:55 +01:00
|
|
|
fb_queue_erase(argv[1]);
|
|
|
|
skip(2);
|
2014-05-07 00:14:15 +02:00
|
|
|
} else if(!strncmp(*argv, "format", strlen("format"))) {
|
|
|
|
char *overrides;
|
|
|
|
char *type_override = NULL;
|
|
|
|
char *size_override = NULL;
|
2011-12-16 02:50:18 +01:00
|
|
|
require(2);
|
2014-05-07 00:14:15 +02:00
|
|
|
/*
|
|
|
|
* Parsing for: "format[:[type][:[size]]]"
|
|
|
|
* Some valid things:
|
|
|
|
* - select ontly the size, and leave default fs type:
|
|
|
|
* format::0x4000000 userdata
|
|
|
|
* - default fs type and size:
|
|
|
|
* format userdata
|
|
|
|
* format:: userdata
|
|
|
|
*/
|
|
|
|
overrides = strchr(*argv, ':');
|
|
|
|
if (overrides) {
|
|
|
|
overrides++;
|
|
|
|
size_override = strchr(overrides, ':');
|
|
|
|
if (size_override) {
|
|
|
|
size_override[0] = '\0';
|
|
|
|
size_override++;
|
|
|
|
}
|
|
|
|
type_override = overrides;
|
|
|
|
}
|
|
|
|
if (type_override && !type_override[0]) type_override = NULL;
|
|
|
|
if (size_override && !size_override[0]) size_override = NULL;
|
2012-09-29 23:46:25 +02:00
|
|
|
if (erase_first && needs_erase(argv[1])) {
|
|
|
|
fb_queue_erase(argv[1]);
|
|
|
|
}
|
2014-05-07 00:14:15 +02:00
|
|
|
fb_perform_format(argv[1], 0, type_override, size_override);
|
2011-12-16 02:50:18 +01:00
|
|
|
skip(2);
|
2009-03-04 04:32:55 +01:00
|
|
|
} else if(!strcmp(*argv, "signature")) {
|
|
|
|
require(2);
|
|
|
|
data = load_file(argv[1], &sz);
|
2011-12-08 20:59:38 +01:00
|
|
|
if (data == 0) die("could not load '%s': %s", argv[1], strerror(errno));
|
2009-03-04 04:32:55 +01:00
|
|
|
if (sz != 256) die("signature must be 256 bytes");
|
|
|
|
fb_queue_download("signature", data, sz);
|
|
|
|
fb_queue_command("signature", "installing signature");
|
|
|
|
skip(2);
|
|
|
|
} else if(!strcmp(*argv, "reboot")) {
|
|
|
|
wants_reboot = 1;
|
|
|
|
skip(1);
|
|
|
|
} else if(!strcmp(*argv, "reboot-bootloader")) {
|
|
|
|
wants_reboot_bootloader = 1;
|
|
|
|
skip(1);
|
|
|
|
} else if (!strcmp(*argv, "continue")) {
|
|
|
|
fb_queue_command("continue", "resuming boot");
|
|
|
|
skip(1);
|
|
|
|
} else if(!strcmp(*argv, "boot")) {
|
|
|
|
char *kname = 0;
|
|
|
|
char *rname = 0;
|
2014-07-17 17:17:54 +02:00
|
|
|
char *sname = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
skip(1);
|
|
|
|
if (argc > 0) {
|
|
|
|
kname = argv[0];
|
|
|
|
skip(1);
|
|
|
|
}
|
|
|
|
if (argc > 0) {
|
|
|
|
rname = argv[0];
|
|
|
|
skip(1);
|
|
|
|
}
|
2014-07-17 17:17:54 +02:00
|
|
|
if (argc > 0) {
|
|
|
|
sname = argv[0];
|
|
|
|
skip(1);
|
|
|
|
}
|
|
|
|
data = load_bootable_image(kname, rname, sname, &sz, cmdline);
|
2009-03-04 04:32:55 +01:00
|
|
|
if (data == 0) return 1;
|
|
|
|
fb_queue_download("boot.img", data, sz);
|
|
|
|
fb_queue_command("boot", "booting");
|
|
|
|
} else if(!strcmp(*argv, "flash")) {
|
|
|
|
char *pname = argv[1];
|
|
|
|
char *fname = 0;
|
|
|
|
require(2);
|
|
|
|
if (argc > 2) {
|
|
|
|
fname = argv[2];
|
|
|
|
skip(3);
|
|
|
|
} else {
|
|
|
|
fname = find_item(pname, product);
|
|
|
|
skip(2);
|
|
|
|
}
|
|
|
|
if (fname == 0) die("cannot determine image filename for '%s'", pname);
|
2012-09-29 23:46:25 +02:00
|
|
|
if (erase_first && needs_erase(pname)) {
|
|
|
|
fb_queue_erase(pname);
|
|
|
|
}
|
2012-05-25 02:18:41 +02:00
|
|
|
do_flash(usb, pname, fname);
|
2009-03-04 04:32:55 +01:00
|
|
|
} else if(!strcmp(*argv, "flash:raw")) {
|
|
|
|
char *pname = argv[1];
|
|
|
|
char *kname = argv[2];
|
|
|
|
char *rname = 0;
|
2014-07-17 17:17:54 +02:00
|
|
|
char *sname = 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
require(3);
|
2014-07-17 17:17:54 +02:00
|
|
|
skip(3);
|
|
|
|
if (argc > 0) {
|
|
|
|
rname = argv[0];
|
|
|
|
skip(1);
|
|
|
|
}
|
|
|
|
if (argc > 0) {
|
|
|
|
sname = argv[0];
|
|
|
|
skip(1);
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
2014-07-17 17:17:54 +02:00
|
|
|
data = load_bootable_image(kname, rname, sname, &sz, cmdline);
|
2009-03-04 04:32:55 +01:00
|
|
|
if (data == 0) die("cannot load bootable image");
|
|
|
|
fb_queue_flash(pname, data, sz);
|
|
|
|
} else if(!strcmp(*argv, "flashall")) {
|
|
|
|
skip(1);
|
2013-06-28 18:54:59 +02:00
|
|
|
do_flashall(usb, erase_first);
|
2009-03-04 04:32:55 +01:00
|
|
|
wants_reboot = 1;
|
|
|
|
} else if(!strcmp(*argv, "update")) {
|
|
|
|
if (argc > 1) {
|
2013-06-28 18:54:59 +02:00
|
|
|
do_update(usb, argv[1], erase_first);
|
2009-03-04 04:32:55 +01:00
|
|
|
skip(2);
|
|
|
|
} else {
|
2013-06-28 18:54:59 +02:00
|
|
|
do_update(usb, "update.zip", erase_first);
|
2009-03-04 04:32:55 +01:00
|
|
|
skip(1);
|
|
|
|
}
|
|
|
|
wants_reboot = 1;
|
|
|
|
} else if(!strcmp(*argv, "oem")) {
|
|
|
|
argc = do_oem_command(argc, argv);
|
|
|
|
} else {
|
|
|
|
usage();
|
2011-02-26 03:38:53 +01:00
|
|
|
return 1;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wants_wipe) {
|
|
|
|
fb_queue_erase("userdata");
|
2014-05-07 00:14:15 +02:00
|
|
|
fb_perform_format("userdata", 1, NULL, NULL);
|
2009-03-04 04:32:55 +01:00
|
|
|
fb_queue_erase("cache");
|
2014-05-07 00:14:15 +02:00
|
|
|
fb_perform_format("cache", 1, NULL, NULL);
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
if (wants_reboot) {
|
|
|
|
fb_queue_reboot();
|
2014-06-24 17:04:54 +02:00
|
|
|
fb_queue_wait_for_disconnect();
|
2009-03-04 04:32:55 +01:00
|
|
|
} else if (wants_reboot_bootloader) {
|
|
|
|
fb_queue_command("reboot-bootloader", "rebooting into bootloader");
|
2013-10-02 15:35:38 +02:00
|
|
|
fb_queue_wait_for_disconnect();
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|
|
|
|
|
2012-04-06 21:39:30 +02:00
|
|
|
if (fb_queue_is_empty())
|
|
|
|
return 0;
|
|
|
|
|
2010-04-23 21:38:51 +02:00
|
|
|
status = fb_execute_queue(usb);
|
|
|
|
return (status) ? 1 : 0;
|
2009-03-04 04:32:55 +01:00
|
|
|
}
|