blob: 0545788eae3106e4c44ec5cdd198a38df39ab651 [file] [log] [blame]
Brian Swetland9c4c0752009-01-25 16:23:50 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
4 *
Kishor PK49831502017-04-21 17:55:43 +05305 * Copyright (c) 2009-2017, The Linux Foundation. All rights reserved.
Brian Swetland9c4c0752009-01-25 16:23:50 -08006 *
Chandan Uddaraju5fa471a2009-12-02 17:31:34 -08007 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070014 * * Neither the name of The Linux Foundation nor
Chandan Uddaraju5fa471a2009-12-02 17:31:34 -080015 * the names of its contributors may be used to endorse or promote
16 * products derived from this software without specific prior written
17 * permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
Brian Swetland9c4c0752009-01-25 16:23:50 -080031 */
32
33#include <app.h>
34#include <debug.h>
35#include <arch/arm.h>
Brian Swetland9c4c0752009-01-25 16:23:50 -080036#include <string.h>
Channagoud Kadabi132ff552013-04-19 14:34:44 -070037#include <stdlib.h>
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -070038#include <limits.h>
Brian Swetland9c4c0752009-01-25 16:23:50 -080039#include <kernel/thread.h>
40#include <arch/ops.h>
41
Dima Zavin214cc642009-01-26 11:16:21 -080042#include <dev/flash.h>
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +020043#include <dev/flash-ubi.h>
Dima Zavin214cc642009-01-26 11:16:21 -080044#include <lib/ptable.h>
Dima Zavinb4283602009-01-26 16:36:57 -080045#include <dev/keys.h>
Shashank Mittal4f99a882010-02-01 13:58:50 -080046#include <dev/fbcon.h>
Ajay Dudanid04110c2011-01-17 23:55:07 -080047#include <baseband.h>
Greg Griscod6250552011-06-29 14:40:23 -070048#include <target.h>
49#include <mmc.h>
Kinson Chikf1a43512011-07-14 11:28:39 -070050#include <partition_parser.h>
Mayank Grover351a75e2017-05-30 20:06:08 +053051#include <ab_partition_parser.h>
Greg Griscod6250552011-06-29 14:40:23 -070052#include <platform.h>
Shashank Mittalcd98d472011-08-02 14:29:24 -070053#include <crypto_hash.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070054#include <malloc.h>
Amol Jadi492d5a52013-03-15 16:12:34 -070055#include <boot_stats.h>
Amir Samuelov57a6fa22013-06-05 16:36:43 +030056#include <sha.h>
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -070057#include <platform/iomap.h>
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -070058#include <boot_device.h>
Shashank Mittald3e54dd2014-08-28 15:24:02 -070059#include <boot_verifier.h>
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +053060#include <image_verify.h>
Matthew Qinbb7923d2015-02-09 10:56:09 +080061#include <decompress.h>
Unnati Gandhi17b3bfc2015-05-11 12:58:16 +053062#include <platform/timer.h>
lijuang511a2b52015-08-14 20:50:51 +080063#include <sys/types.h>
Channagoud Kadabi036c6052015-02-09 15:19:59 -080064#if USE_RPMB_FOR_DEVINFO
65#include <rpmb.h>
66#endif
Dima Zavin214cc642009-01-26 11:16:21 -080067
Channagoud Kadabi90869ce2015-04-27 11:15:14 -070068#if ENABLE_WBC
69#include <pm_app_smbchg.h>
70#endif
71
Neeti Desai17379b82012-06-04 18:42:53 -070072#if DEVICE_TREE
73#include <libfdt.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070074#include <dev_tree.h>
Neeti Desai17379b82012-06-04 18:42:53 -070075#endif
76
Aparna Mallavarapu118ccae2015-06-03 13:47:11 +053077#if WDOG_SUPPORT
78#include <wdog.h>
79#endif
80
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -070081#include <reboot.h>
Shashank Mittalcd98d472011-08-02 14:29:24 -070082#include "image_verify.h"
Shashank Mittal024c0332010-02-03 11:44:00 -080083#include "recovery.h"
Brian Swetland9c4c0752009-01-25 16:23:50 -080084#include "bootimg.h"
85#include "fastboot.h"
Ajay Dudani5c761132011-04-07 20:19:04 -070086#include "sparse_format.h"
Ajay Dudanide984792015-03-02 09:57:41 -080087#include "meta_format.h"
Greg Grisco6e754772011-06-23 12:19:39 -070088#include "mmc.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070089#include "devinfo.h"
Neeti Desai465491e2012-07-31 12:53:35 -070090#include "board.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070091#include "scm.h"
Amit Blay6281ebc2015-01-11 14:44:08 +020092#include "mdtp.h"
Sridhar Parasuram32b30662015-07-10 13:33:22 -070093#include "secapp_loader.h"
lijuanga40d6302015-07-20 20:10:13 +080094#include <menu_keys_detect.h>
95#include <display_menu.h>
Channagoud Kadabi736c4962015-08-21 11:56:52 -070096#include "fastboot_test.h"
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -070097
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070098extern bool target_use_signed_kernel(void);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070099extern void platform_uninit(void);
Channagoud Kadabi33defe22013-06-18 18:35:40 -0700100extern void target_uninit(void);
Joonwoo Park61112782013-10-02 19:50:39 -0700101extern int get_target_boot_params(const char *cmdline, const char *part,
vijay kumar870515d2015-08-31 16:37:24 +0530102 char **buf);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700103
Sridhar Parasuram7e16d172015-07-05 11:35:23 -0700104void *info_buf;
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700105void write_device_info_mmc(device_info *dev);
106void write_device_info_flash(device_info *dev);
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -0700107static int aboot_save_boot_hash_mmc(uint32_t image_addr, uint32_t image_size);
Channagoud Kadabiad259832015-05-29 11:14:17 -0700108static int aboot_frp_unlock(char *pname, void *data, unsigned sz);
Kishor PK38ed93d2017-04-25 14:19:26 +0530109static inline uint64_t validate_partition_size();
Parth Dixit54ac3bb2017-03-07 15:52:48 +0530110bool pwr_key_is_pressed = false;
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530111static bool is_systemd_present=false;
Mayank Grover351a75e2017-05-30 20:06:08 +0530112static void publish_getvar_multislot_vars();
Sridhar Parasurame94e8152014-10-24 14:06:03 -0700113/* fastboot command function pointer */
114typedef void (*fastboot_cmd_fn) (const char *, void *, unsigned);
115
116struct fastboot_cmd_desc {
117 char * name;
118 fastboot_cmd_fn cb;
119};
120
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -0700121#define EXPAND(NAME) #NAME
122#define TARGET(NAME) EXPAND(NAME)
Brian Swetland2defe162009-08-18 14:35:59 -0700123
Ajay Singh Parmara7865a82015-04-16 21:27:52 -0700124#define DISPLAY_PANEL_HDMI "hdmi"
125
Ajay Dudanicd01f9b2010-02-23 21:13:04 -0800126#ifdef MEMBASE
127#define EMMC_BOOT_IMG_HEADER_ADDR (0xFF000+(MEMBASE))
128#else
David Ng183a7422009-12-07 14:55:21 -0800129#define EMMC_BOOT_IMG_HEADER_ADDR 0xFF000
Ajay Dudanicd01f9b2010-02-23 21:13:04 -0800130#endif
131
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700132#ifndef MEMSIZE
133#define MEMSIZE 1024*1024
134#endif
135
136#define MAX_TAGS_SIZE 1024
137
Kun Liang2f1601a2013-08-12 16:29:54 +0800138/* make 4096 as default size to ensure EFS,EXT4's erasing */
139#define DEFAULT_ERASE_SIZE 4096
Ujwal Patelc0b0a252015-08-16 14:05:35 -0700140#define MAX_PANEL_BUF_SIZE 196
Vijay Kumar Pendoti0b21f462016-05-02 17:09:18 +0530141#define FOOTER_SIZE 16384
Kun Liang2f1601a2013-08-12 16:29:54 +0800142
Dhaval Patelf83d73b2014-06-23 16:24:37 -0700143#define DISPLAY_DEFAULT_PREFIX "mdss_mdp"
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700144#define BOOT_DEV_MAX_LEN 64
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -0800145
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800146#define IS_ARM64(ptr) (ptr->magic_64 == KERNEL64_HDR_MAGIC) ? true : false
147
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -0700148#define ADD_OF(a, b) (UINT_MAX - b > a) ? (a + b) : UINT_MAX
149
Ameya Thakur10a33452016-06-13 14:24:26 -0700150//Size of the header that is used in case the boot image has
151//a uncompressed kernel + appended dtb
152#define PATCHED_KERNEL_HEADER_SIZE 20
153
154//String used to determine if the boot image has
155//a uncompressed kernel + appended dtb
156#define PATCHED_KERNEL_MAGIC "UNCOMPRESSED_IMG"
157
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800158#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700159static const char *emmc_cmdline = " androidboot.bootdevice=";
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700160#else
David Ng183a7422009-12-07 14:55:21 -0800161static const char *emmc_cmdline = " androidboot.emmc=true";
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700162#endif
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800163static const char *usb_sn_cmdline = " androidboot.serialno=";
Pavel Nedev328ac822013-04-05 15:25:11 +0300164static const char *androidboot_mode = " androidboot.mode=";
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530165
166static const char *systemd_ffbm_mode = " systemd.unit=ffbm.target";
Matthew Qind886f3c2014-01-17 16:52:01 +0800167static const char *alarmboot_cmdline = " androidboot.alarmboot=true";
Pavel Nedev898298c2013-02-27 12:36:09 -0800168static const char *loglevel = " quiet";
Ajay Dudanica3a33c2011-11-18 08:31:40 -0800169static const char *battchg_pause = " androidboot.mode=charger";
Shashank Mittalcd98d472011-08-02 14:29:24 -0700170static const char *auth_kernel = " androidboot.authorized_kernel=true";
Pavel Nedev5614d222013-06-17 18:01:02 +0300171static const char *secondary_gpt_enable = " gpt";
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200172static const char *mdtp_activated_flag = " mdtp";
David Ng183a7422009-12-07 14:55:21 -0800173
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800174static const char *baseband_apq = " androidboot.baseband=apq";
175static const char *baseband_msm = " androidboot.baseband=msm";
176static const char *baseband_csfb = " androidboot.baseband=csfb";
177static const char *baseband_svlte2a = " androidboot.baseband=svlte2a";
Ajay Dudani403bc492011-09-30 16:17:21 -0700178static const char *baseband_mdm = " androidboot.baseband=mdm";
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800179static const char *baseband_mdm2 = " androidboot.baseband=mdm2";
Amol Jadi5c61a952012-05-04 17:05:35 -0700180static const char *baseband_sglte = " androidboot.baseband=sglte";
Amol Jadi2a15a272013-01-22 12:03:36 -0800181static const char *baseband_dsda = " androidboot.baseband=dsda";
182static const char *baseband_dsda2 = " androidboot.baseband=dsda2";
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800183static const char *baseband_sglte2 = " androidboot.baseband=sglte2";
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800184static const char *warmboot_cmdline = " qpnp-power-on.warm_boot=1";
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +0530185static const char *baseband_apq_nowgr = " androidboot.baseband=baseband_apq_nowgr";
Mayank Grover351a75e2017-05-30 20:06:08 +0530186static const char *androidboot_slot_suffix = " androidboot.slot_suffix=";
187static const char *skip_ramfs = " skip_initramfs";
Mayank Grover3804be72017-06-22 11:59:23 +0530188static const char *sys_path_cmdline = " rootwait ro init=/init";
189static const char *sys_path = " root=/dev/mmcblk0p";
Ajay Dudanid04110c2011-01-17 23:55:07 -0800190
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700191#if VERIFIED_BOOT
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700192static const char *verity_mode = " androidboot.veritymode=";
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700193static const char *verified_state= " androidboot.verifiedbootstate=";
Parth Dixita5715a02015-10-29 12:25:10 +0530194static const char *keymaster_v1= " androidboot.keymaster=1";
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700195//indexed based on enum values, green is 0 by default
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700196
197struct verified_boot_verity_mode vbvm[] =
198{
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700199#if ENABLE_VB_ATTEST
200 {false, "eio"},
201#else
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700202 {false, "logging"},
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700203#endif
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700204 {true, "enforcing"},
205};
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700206struct verified_boot_state_name vbsn[] =
207{
208 {GREEN, "green"},
209 {ORANGE, "orange"},
210 {YELLOW,"yellow"},
211 {RED,"red" },
212};
213#endif
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700214/*As per spec delay wait time before shutdown in Red state*/
215#define DELAY_WAIT 30000
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700216static unsigned page_size = 0;
217static unsigned page_mask = 0;
Gaurav Nebhwani4d2389c2016-03-17 21:10:05 +0530218static unsigned mmc_blocksize = 0;
219static unsigned mmc_blocksize_mask = 0;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700220static char ffbm_mode_string[FFBM_MODE_BUF_SIZE];
221static bool boot_into_ffbm;
vijay kumar870515d2015-08-31 16:37:24 +0530222static char *target_boot_params = NULL;
Matthew Qind886f3c2014-01-17 16:52:01 +0800223static bool boot_reason_alarm;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -0700224static bool devinfo_present = true;
Channagoud Kadabi736c4962015-08-21 11:56:52 -0700225bool boot_into_fastboot = false;
Parth Dixit4097b622016-03-15 14:42:27 +0530226static uint32_t dt_size = 0;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700227
Shashank Mittalcd98d472011-08-02 14:29:24 -0700228/* Assuming unauthorized kernel image by default */
229static int auth_kernel_img = 0;
lijuang511a2b52015-08-14 20:50:51 +0800230static device_info device = {DEVICE_MAGIC, 0, 0, 0, 0, {0}, {0},{0}, 1};
vijay kumarc65876c2015-04-24 13:29:16 +0530231static bool is_allow_unlock = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700232
vijay kumarca2e6812015-07-08 20:28:25 +0530233static char frp_ptns[2][8] = {"config","frp"};
234
lijuang511a2b52015-08-14 20:50:51 +0800235static const char *critical_flash_allowed_ptn[] = {
236 "aboot",
237 "rpm",
238 "tz",
239 "sbl",
240 "sdi",
241 "sbl1",
242 "xbl",
243 "hyp",
244 "pmic",
245 "bootloader",
246 "devinfo",
247 "partition"};
248
Dima Zavin42168f22009-01-30 11:52:22 -0800249struct atag_ptbl_entry
250{
251 char name[16];
252 unsigned offset;
253 unsigned size;
254 unsigned flags;
255};
256
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700257/*
258 * Partition info, required to be published
259 * for fastboot
260 */
261struct getvar_partition_info {
262 const char part_name[MAX_GPT_NAME_SIZE]; /* Partition name */
263 char getvar_size[MAX_GET_VAR_NAME_SIZE]; /* fastboot get var name for size */
264 char getvar_type[MAX_GET_VAR_NAME_SIZE]; /* fastboot get var name for type */
265 char size_response[MAX_RSP_SIZE]; /* fastboot response for size */
266 char type_response[MAX_RSP_SIZE]; /* fastboot response for type */
267};
268
269/*
270 * Right now, we are publishing the info for only
271 * three partitions
272 */
273struct getvar_partition_info part_info[] =
274{
275 { "system" , "partition-size:", "partition-type:", "", "ext4" },
276 { "userdata", "partition-size:", "partition-type:", "", "ext4" },
277 { "cache" , "partition-size:", "partition-type:", "", "ext4" },
278};
279
280char max_download_size[MAX_RSP_SIZE];
Ameya Thakur11cf1a62013-08-05 12:44:48 -0700281char charger_screen_enabled[MAX_RSP_SIZE];
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800282char sn_buf[13];
Dhaval Patel223ec952013-07-18 14:49:44 -0700283char display_panel_buf[MAX_PANEL_BUF_SIZE];
Unnati Gandhi62c8ab82014-01-24 11:01:01 +0530284char panel_display_mode[MAX_RSP_SIZE];
lijuang102dfa92015-10-09 18:31:03 +0800285
286#if CHECK_BAT_VOLTAGE
lijuang65c5a822015-08-29 16:35:36 +0800287char battery_voltage[MAX_RSP_SIZE];
lijuang102dfa92015-10-09 18:31:03 +0800288char battery_soc_ok [MAX_RSP_SIZE];
289#endif
290
lijuangf16461c2015-08-03 17:09:34 +0800291char get_variant[MAX_RSP_SIZE];
Greg Griscod6250552011-06-29 14:40:23 -0700292
Greg Griscod2471ef2011-07-14 13:00:42 -0700293extern int emmc_recovery_init(void);
294
Kinson Chik0b1c8162011-08-31 16:31:57 -0700295#if NO_KEYPAD_DRIVER
296extern int fastboot_trigger(void);
297#endif
Greg Griscod2471ef2011-07-14 13:00:42 -0700298
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800299static void update_ker_tags_rdisk_addr(struct boot_img_hdr *hdr, bool is_arm64)
Channagoud Kadabia22144f2013-03-20 11:49:01 -0700300{
301 /* overwrite the destination of specified for the project */
Channagoud Kadabi7042fa32013-04-26 16:44:14 -0700302#ifdef ABOOT_IGNORE_BOOT_HEADER_ADDRS
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800303 if (is_arm64)
304 hdr->kernel_addr = ABOOT_FORCE_KERNEL64_ADDR;
305 else
306 hdr->kernel_addr = ABOOT_FORCE_KERNEL_ADDR;
Channagoud Kadabi7042fa32013-04-26 16:44:14 -0700307 hdr->ramdisk_addr = ABOOT_FORCE_RAMDISK_ADDR;
308 hdr->tags_addr = ABOOT_FORCE_TAGS_ADDR;
Channagoud Kadabia22144f2013-03-20 11:49:01 -0700309#endif
310}
311
Dima Zavin42168f22009-01-30 11:52:22 -0800312static void ptentry_to_tag(unsigned **ptr, struct ptentry *ptn)
313{
314 struct atag_ptbl_entry atag_ptn;
315
316 memcpy(atag_ptn.name, ptn->name, 16);
317 atag_ptn.name[15] = '\0';
318 atag_ptn.offset = ptn->start;
319 atag_ptn.size = ptn->length;
320 atag_ptn.flags = ptn->flags;
321 memcpy(*ptr, &atag_ptn, sizeof(struct atag_ptbl_entry));
322 *ptr += sizeof(struct atag_ptbl_entry) / sizeof(unsigned);
323}
Brian Swetland9c4c0752009-01-25 16:23:50 -0800324
lijuang102dfa92015-10-09 18:31:03 +0800325#if CHECK_BAT_VOLTAGE
326void update_battery_status(void)
327{
328 snprintf(battery_voltage,MAX_RSP_SIZE, "%d",target_get_battery_voltage());
329 snprintf(battery_soc_ok ,MAX_RSP_SIZE, "%s",target_battery_soc_ok()? "yes":"no");
330}
331#endif
332
Neeti Desaie245d492012-06-01 12:52:13 -0700333unsigned char *update_cmdline(const char * cmdline)
Brian Swetland9c4c0752009-01-25 16:23:50 -0800334{
David Ng183a7422009-12-07 14:55:21 -0800335 int cmdline_len = 0;
336 int have_cmdline = 0;
Amol Jadi168b7712012-03-06 16:15:00 -0800337 unsigned char *cmdline_final = NULL;
Neeti Desaie245d492012-06-01 12:52:13 -0700338 int pause_at_bootup = 0;
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800339 bool warm_boot = false;
Pavel Nedev5614d222013-06-17 18:01:02 +0300340 bool gpt_exists = partition_gpt_exists();
Joonwoo Park61112782013-10-02 19:50:39 -0700341 int have_target_boot_params = 0;
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700342 char *boot_dev_buf = NULL;
Mayank Grover351a75e2017-05-30 20:06:08 +0530343 bool is_mdtp_activated = 0;
344 int current_active_slot = INVALID;
Mayank Grover3804be72017-06-22 11:59:23 +0530345 int system_ptn_index = -1;
346 unsigned int lun = 0;
347 char lun_char_base = 'a';
348 int syspath_buflen = strlen(sys_path) + sizeof(int) + 1; /*allocate buflen for largest possible string*/
349 char syspath_buf[syspath_buflen];
Mayank Grover889be1b2017-09-12 20:12:23 +0530350#if VERIFIED_BOOT
351 uint32_t boot_state = RED;
352#endif
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530353
354#if USE_LE_SYSTEMD
355 is_systemd_present=true;
356#endif
357
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700358#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +0530359 if (VB_V2 == target_get_vb_version())
360 {
361 boot_state = boot_verify_get_state();
362 }
Parth Dixitddbc7352015-10-18 03:13:31 +0530363#endif
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700364
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200365#ifdef MDTP_SUPPORT
366 mdtp_activated(&is_mdtp_activated);
367#endif /* MDTP_SUPPORT */
Dima Zavin42168f22009-01-30 11:52:22 -0800368
Brian Swetland9c4c0752009-01-25 16:23:50 -0800369 if (cmdline && cmdline[0]) {
David Ng183a7422009-12-07 14:55:21 -0800370 cmdline_len = strlen(cmdline);
371 have_cmdline = 1;
372 }
373 if (target_is_emmc_boot()) {
374 cmdline_len += strlen(emmc_cmdline);
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800375#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700376 boot_dev_buf = (char *) malloc(sizeof(char) * BOOT_DEV_MAX_LEN);
377 ASSERT(boot_dev_buf);
378 platform_boot_dev_cmdline(boot_dev_buf);
379 cmdline_len += strlen(boot_dev_buf);
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700380#endif
David Ng183a7422009-12-07 14:55:21 -0800381 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800382
383 cmdline_len += strlen(usb_sn_cmdline);
384 cmdline_len += strlen(sn_buf);
385
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700386#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +0530387 if (VB_V2 == target_get_vb_version())
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700388 {
Mayank Grover889be1b2017-09-12 20:12:23 +0530389 cmdline_len += strlen(verified_state) + strlen(vbsn[boot_state].name);
390 if ((device.verity_mode != 0 ) && (device.verity_mode != 1))
391 {
392 dprintf(CRITICAL, "Devinfo paritition possibly corrupted!!!. Please erase devinfo partition to continue booting\n");
393 ASSERT(0);
394 }
395 cmdline_len += strlen(verity_mode) + strlen(vbvm[device.verity_mode].name);
396 cmdline_len += strlen(keymaster_v1);
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700397 }
Parth Dixitddbc7352015-10-18 03:13:31 +0530398#endif
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700399
Pavel Nedev5614d222013-06-17 18:01:02 +0300400 if (boot_into_recovery && gpt_exists)
401 cmdline_len += strlen(secondary_gpt_enable);
402
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200403 if(is_mdtp_activated)
404 cmdline_len += strlen(mdtp_activated_flag);
405
Pavel Nedev328ac822013-04-05 15:25:11 +0300406 if (boot_into_ffbm) {
407 cmdline_len += strlen(androidboot_mode);
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530408
409 if(is_systemd_present)
410 cmdline_len += strlen(systemd_ffbm_mode);
411
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700412 cmdline_len += strlen(ffbm_mode_string);
Pavel Nedev898298c2013-02-27 12:36:09 -0800413 /* reduce kernel console messages to speed-up boot */
414 cmdline_len += strlen(loglevel);
Matthew Qind886f3c2014-01-17 16:52:01 +0800415 } else if (boot_reason_alarm) {
416 cmdline_len += strlen(alarmboot_cmdline);
Zhenhua Huang431dafa2015-06-30 16:13:37 +0800417 } else if ((target_build_variant_user() || device.charger_screen_enabled)
418 && target_pause_for_battery_charge()) {
David Ngf773dde2010-07-26 19:55:08 -0700419 pause_at_bootup = 1;
420 cmdline_len += strlen(battchg_pause);
421 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800422
Shashank Mittalcd98d472011-08-02 14:29:24 -0700423 if(target_use_signed_kernel() && auth_kernel_img) {
424 cmdline_len += strlen(auth_kernel);
425 }
426
Joonwoo Park61112782013-10-02 19:50:39 -0700427 if (get_target_boot_params(cmdline, boot_into_recovery ? "recoveryfs" :
428 "system",
vijay kumar870515d2015-08-31 16:37:24 +0530429 &target_boot_params) == 0) {
Joonwoo Park61112782013-10-02 19:50:39 -0700430 have_target_boot_params = 1;
431 cmdline_len += strlen(target_boot_params);
432 }
433
Ajay Dudanid04110c2011-01-17 23:55:07 -0800434 /* Determine correct androidboot.baseband to use */
435 switch(target_baseband())
436 {
437 case BASEBAND_APQ:
438 cmdline_len += strlen(baseband_apq);
439 break;
440
441 case BASEBAND_MSM:
442 cmdline_len += strlen(baseband_msm);
443 break;
444
445 case BASEBAND_CSFB:
446 cmdline_len += strlen(baseband_csfb);
447 break;
448
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800449 case BASEBAND_SVLTE2A:
450 cmdline_len += strlen(baseband_svlte2a);
Ajay Dudanid04110c2011-01-17 23:55:07 -0800451 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700452
453 case BASEBAND_MDM:
454 cmdline_len += strlen(baseband_mdm);
455 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700456
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800457 case BASEBAND_MDM2:
458 cmdline_len += strlen(baseband_mdm2);
459 break;
460
Amol Jadi5c61a952012-05-04 17:05:35 -0700461 case BASEBAND_SGLTE:
462 cmdline_len += strlen(baseband_sglte);
463 break;
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530464
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800465 case BASEBAND_SGLTE2:
466 cmdline_len += strlen(baseband_sglte2);
467 break;
468
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530469 case BASEBAND_DSDA:
470 cmdline_len += strlen(baseband_dsda);
471 break;
Amol Jadi2a15a272013-01-22 12:03:36 -0800472
473 case BASEBAND_DSDA2:
474 cmdline_len += strlen(baseband_dsda2);
475 break;
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +0530476 case BASEBAND_APQ_NOWGR:
477 cmdline_len += strlen(baseband_apq_nowgr);
478 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800479 }
480
Vladislav Levenetz3cd45242017-04-05 08:58:07 +0300481#if ENABLE_DISPLAY
Lijuan Gao4a5b8322014-07-24 10:38:42 +0800482 if (cmdline) {
483 if ((strstr(cmdline, DISPLAY_DEFAULT_PREFIX) == NULL) &&
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530484 target_display_panel_node(display_panel_buf,
485 MAX_PANEL_BUF_SIZE) &&
Lijuan Gao4a5b8322014-07-24 10:38:42 +0800486 strlen(display_panel_buf)) {
487 cmdline_len += strlen(display_panel_buf);
488 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700489 }
Vladislav Levenetz3cd45242017-04-05 08:58:07 +0300490#endif
Dhaval Patel223ec952013-07-18 14:49:44 -0700491
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800492 if (target_warm_boot()) {
493 warm_boot = true;
494 cmdline_len += strlen(warmboot_cmdline);
495 }
496
Mayank Grover351a75e2017-05-30 20:06:08 +0530497 if (partition_multislot_is_supported())
498 {
499 current_active_slot = partition_find_active_slot();
500 cmdline_len += (strlen(androidboot_slot_suffix)+
501 strlen(SUFFIX_SLOT(current_active_slot)));
502
Mayank Grover3804be72017-06-22 11:59:23 +0530503 system_ptn_index = partition_get_index("system");
504 if (platform_boot_dev_isemmc())
505 {
506 snprintf(syspath_buf, syspath_buflen, " root=/dev/mmcblk0p%d",
507 system_ptn_index + 1);
508 }
509 else
510 {
511 lun = partition_get_lun(system_ptn_index);
512 snprintf(syspath_buf, syspath_buflen, " root=/dev/sd%c%d",
513 lun_char_base + lun,
514 partition_get_index_in_lun("system", lun));
515 }
Mayank Grover351a75e2017-05-30 20:06:08 +0530516
Mayank Grover3804be72017-06-22 11:59:23 +0530517 cmdline_len += strlen(sys_path_cmdline);
518 cmdline_len += strlen(syspath_buf);
Mayank Grover351a75e2017-05-30 20:06:08 +0530519 if (!boot_into_recovery)
520 cmdline_len += strlen(skip_ramfs);
521 }
522
Channagoud Kadabi85c7ec32016-01-28 23:09:21 -0800523#if TARGET_CMDLINE_SUPPORT
524 char *target_cmdline_buf = malloc(TARGET_MAX_CMDLNBUF);
525 int target_cmd_line_len;
526 ASSERT(target_cmdline_buf);
527 target_cmd_line_len = target_update_cmdline(target_cmdline_buf);
528 cmdline_len += target_cmd_line_len;
529#endif
530
David Ng183a7422009-12-07 14:55:21 -0800531 if (cmdline_len > 0) {
532 const char *src;
Maria Yu52254c02014-07-04 16:14:54 +0800533 unsigned char *dst;
534
535 cmdline_final = (unsigned char*) malloc((cmdline_len + 4) & (~3));
536 ASSERT(cmdline_final != NULL);
vijay kumar287bb542015-09-29 13:01:52 +0530537 memset((void *)cmdline_final, 0, sizeof(*cmdline_final));
Maria Yu52254c02014-07-04 16:14:54 +0800538 dst = cmdline_final;
Neeti Desaie245d492012-06-01 12:52:13 -0700539
Amol Jadi168b7712012-03-06 16:15:00 -0800540 /* Save start ptr for debug print */
David Ng183a7422009-12-07 14:55:21 -0800541 if (have_cmdline) {
542 src = cmdline;
543 while ((*dst++ = *src++));
544 }
545 if (target_is_emmc_boot()) {
546 src = emmc_cmdline;
547 if (have_cmdline) --dst;
David Ngf773dde2010-07-26 19:55:08 -0700548 have_cmdline = 1;
549 while ((*dst++ = *src++));
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800550#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700551 src = boot_dev_buf;
552 if (have_cmdline) --dst;
553 while ((*dst++ = *src++));
554#endif
David Ngf773dde2010-07-26 19:55:08 -0700555 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800556
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700557#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +0530558 if (VB_V2 == target_get_vb_version())
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700559 {
Mayank Grover889be1b2017-09-12 20:12:23 +0530560 src = verified_state;
561 if(have_cmdline) --dst;
562 have_cmdline = 1;
563 while ((*dst++ = *src++));
564 src = vbsn[boot_state].name;
565 if(have_cmdline) --dst;
566 while ((*dst++ = *src++));
567
568 if ((device.verity_mode != 0 ) && (device.verity_mode != 1))
569 {
570 dprintf(CRITICAL, "Devinfo paritition possibly corrupted!!!. Please erase devinfo partition to continue booting\n");
571 ASSERT(0);
572 }
573 src = verity_mode;
574 if(have_cmdline) --dst;
575 while ((*dst++ = *src++));
576 src = vbvm[device.verity_mode].name;
577 if(have_cmdline) -- dst;
578 while ((*dst++ = *src++));
579 src = keymaster_v1;
580 if(have_cmdline) --dst;
581 while ((*dst++ = *src++));
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700582 }
Parth Dixitddbc7352015-10-18 03:13:31 +0530583#endif
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800584 src = usb_sn_cmdline;
585 if (have_cmdline) --dst;
586 have_cmdline = 1;
587 while ((*dst++ = *src++));
588 src = sn_buf;
589 if (have_cmdline) --dst;
590 have_cmdline = 1;
591 while ((*dst++ = *src++));
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800592 if (warm_boot) {
593 if (have_cmdline) --dst;
594 src = warmboot_cmdline;
595 while ((*dst++ = *src++));
596 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800597
Pavel Nedev5614d222013-06-17 18:01:02 +0300598 if (boot_into_recovery && gpt_exists) {
599 src = secondary_gpt_enable;
600 if (have_cmdline) --dst;
601 while ((*dst++ = *src++));
602 }
603
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200604 if (is_mdtp_activated) {
605 src = mdtp_activated_flag;
606 if (have_cmdline) --dst;
607 while ((*dst++ = *src++));
608 }
609
Pavel Nedev328ac822013-04-05 15:25:11 +0300610 if (boot_into_ffbm) {
611 src = androidboot_mode;
612 if (have_cmdline) --dst;
613 while ((*dst++ = *src++));
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700614 src = ffbm_mode_string;
Pavel Nedev328ac822013-04-05 15:25:11 +0300615 if (have_cmdline) --dst;
616 while ((*dst++ = *src++));
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530617
618 if(is_systemd_present) {
619 src = systemd_ffbm_mode;
620 if (have_cmdline) --dst;
621 while ((*dst++ = *src++));
622 }
623
Pavel Nedev898298c2013-02-27 12:36:09 -0800624 src = loglevel;
625 if (have_cmdline) --dst;
626 while ((*dst++ = *src++));
Matthew Qind886f3c2014-01-17 16:52:01 +0800627 } else if (boot_reason_alarm) {
628 src = alarmboot_cmdline;
629 if (have_cmdline) --dst;
630 while ((*dst++ = *src++));
Pavel Nedev328ac822013-04-05 15:25:11 +0300631 } else if (pause_at_bootup) {
David Ngf773dde2010-07-26 19:55:08 -0700632 src = battchg_pause;
633 if (have_cmdline) --dst;
David Ng183a7422009-12-07 14:55:21 -0800634 while ((*dst++ = *src++));
635 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800636
Shashank Mittalcd98d472011-08-02 14:29:24 -0700637 if(target_use_signed_kernel() && auth_kernel_img) {
638 src = auth_kernel;
639 if (have_cmdline) --dst;
640 while ((*dst++ = *src++));
641 }
642
Ajay Dudanid04110c2011-01-17 23:55:07 -0800643 switch(target_baseband())
644 {
645 case BASEBAND_APQ:
646 src = baseband_apq;
647 if (have_cmdline) --dst;
648 while ((*dst++ = *src++));
649 break;
650
651 case BASEBAND_MSM:
652 src = baseband_msm;
653 if (have_cmdline) --dst;
654 while ((*dst++ = *src++));
655 break;
656
657 case BASEBAND_CSFB:
658 src = baseband_csfb;
659 if (have_cmdline) --dst;
660 while ((*dst++ = *src++));
661 break;
662
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800663 case BASEBAND_SVLTE2A:
664 src = baseband_svlte2a;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800665 if (have_cmdline) --dst;
666 while ((*dst++ = *src++));
667 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700668
669 case BASEBAND_MDM:
670 src = baseband_mdm;
671 if (have_cmdline) --dst;
672 while ((*dst++ = *src++));
673 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700674
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800675 case BASEBAND_MDM2:
676 src = baseband_mdm2;
677 if (have_cmdline) --dst;
678 while ((*dst++ = *src++));
679 break;
680
Amol Jadi5c61a952012-05-04 17:05:35 -0700681 case BASEBAND_SGLTE:
682 src = baseband_sglte;
683 if (have_cmdline) --dst;
684 while ((*dst++ = *src++));
685 break;
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530686
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800687 case BASEBAND_SGLTE2:
688 src = baseband_sglte2;
689 if (have_cmdline) --dst;
690 while ((*dst++ = *src++));
691 break;
692
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530693 case BASEBAND_DSDA:
694 src = baseband_dsda;
695 if (have_cmdline) --dst;
696 while ((*dst++ = *src++));
697 break;
Amol Jadi2a15a272013-01-22 12:03:36 -0800698
699 case BASEBAND_DSDA2:
700 src = baseband_dsda2;
701 if (have_cmdline) --dst;
702 while ((*dst++ = *src++));
703 break;
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +0530704 case BASEBAND_APQ_NOWGR:
705 src = baseband_apq_nowgr;
706 if (have_cmdline) --dst;
707 while ((*dst++ = *src++));
708 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800709 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700710
711 if (strlen(display_panel_buf)) {
Dhaval Patel223ec952013-07-18 14:49:44 -0700712 src = display_panel_buf;
713 if (have_cmdline) --dst;
714 while ((*dst++ = *src++));
715 }
Joonwoo Park61112782013-10-02 19:50:39 -0700716
717 if (have_target_boot_params) {
718 if (have_cmdline) --dst;
719 src = target_boot_params;
720 while ((*dst++ = *src++));
vijay kumar870515d2015-08-31 16:37:24 +0530721 free(target_boot_params);
Joonwoo Park61112782013-10-02 19:50:39 -0700722 }
Channagoud Kadabi85c7ec32016-01-28 23:09:21 -0800723
Mayank Grover351a75e2017-05-30 20:06:08 +0530724 if (partition_multislot_is_supported() && have_cmdline)
725 {
726 src = androidboot_slot_suffix;
727 --dst;
728 while ((*dst++ = *src++));
729 --dst;
730 src = SUFFIX_SLOT(current_active_slot);
731 while ((*dst++ = *src++));
732
733 if (!boot_into_recovery)
734 {
735 src = skip_ramfs;
736 --dst;
737 while ((*dst++ = *src++));
738 }
739
740 src = sys_path_cmdline;
741 --dst;
742 while ((*dst++ = *src++));
Mayank Grover3804be72017-06-22 11:59:23 +0530743
744 src = syspath_buf;
745 --dst;
746 while ((*dst++ = *src++));
Mayank Grover351a75e2017-05-30 20:06:08 +0530747 }
748
Channagoud Kadabi85c7ec32016-01-28 23:09:21 -0800749#if TARGET_CMDLINE_SUPPORT
750 if (target_cmdline_buf && target_cmd_line_len)
751 {
752 if (have_cmdline) --dst;
753 src = target_cmdline_buf;
754 while((*dst++ = *src++));
755 free(target_cmdline_buf);
756 }
757#endif
Neeti Desaie245d492012-06-01 12:52:13 -0700758 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700759
760
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700761 if (boot_dev_buf)
762 free(boot_dev_buf);
763
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -0800764 if (cmdline_final)
765 dprintf(INFO, "cmdline: %s\n", cmdline_final);
766 else
767 dprintf(INFO, "cmdline is NULL\n");
Neeti Desaie245d492012-06-01 12:52:13 -0700768 return cmdline_final;
769}
770
771unsigned *atag_core(unsigned *ptr)
772{
773 /* CORE */
774 *ptr++ = 2;
775 *ptr++ = 0x54410001;
776
777 return ptr;
778
779}
780
781unsigned *atag_ramdisk(unsigned *ptr, void *ramdisk,
782 unsigned ramdisk_size)
783{
784 if (ramdisk_size) {
785 *ptr++ = 4;
786 *ptr++ = 0x54420005;
787 *ptr++ = (unsigned)ramdisk;
788 *ptr++ = ramdisk_size;
Brian Swetland9c4c0752009-01-25 16:23:50 -0800789 }
790
Neeti Desaie245d492012-06-01 12:52:13 -0700791 return ptr;
792}
793
794unsigned *atag_ptable(unsigned **ptr_addr)
795{
796 int i;
797 struct ptable *ptable;
798
799 if ((ptable = flash_get_ptable()) && (ptable->count != 0)) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700800 *(*ptr_addr)++ = 2 + (ptable->count * (sizeof(struct atag_ptbl_entry) /
801 sizeof(unsigned)));
Neeti Desaie245d492012-06-01 12:52:13 -0700802 *(*ptr_addr)++ = 0x4d534d70;
803 for (i = 0; i < ptable->count; ++i)
804 ptentry_to_tag(ptr_addr, ptable_get(ptable, i));
805 }
806
807 return (*ptr_addr);
808}
809
810unsigned *atag_cmdline(unsigned *ptr, const char *cmdline)
811{
812 int cmdline_length = 0;
813 int n;
Neeti Desaie245d492012-06-01 12:52:13 -0700814 char *dest;
815
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800816 cmdline_length = strlen((const char*)cmdline);
Neeti Desaie245d492012-06-01 12:52:13 -0700817 n = (cmdline_length + 4) & (~3);
818
819 *ptr++ = (n / 4) + 2;
820 *ptr++ = 0x54410009;
821 dest = (char *) ptr;
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800822 while ((*dest++ = *cmdline++));
Neeti Desaie245d492012-06-01 12:52:13 -0700823 ptr += (n / 4);
824
825 return ptr;
826}
827
828unsigned *atag_end(unsigned *ptr)
829{
Brian Swetland9c4c0752009-01-25 16:23:50 -0800830 /* END */
831 *ptr++ = 0;
832 *ptr++ = 0;
833
Neeti Desaie245d492012-06-01 12:52:13 -0700834 return ptr;
835}
836
837void generate_atags(unsigned *ptr, const char *cmdline,
838 void *ramdisk, unsigned ramdisk_size)
839{
vijay kumar21a37452015-12-29 16:23:21 +0530840 unsigned *orig_ptr = ptr;
Neeti Desaie245d492012-06-01 12:52:13 -0700841 ptr = atag_core(ptr);
842 ptr = atag_ramdisk(ptr, ramdisk, ramdisk_size);
843 ptr = target_atag_mem(ptr);
844
845 /* Skip NAND partition ATAGS for eMMC boot */
846 if (!target_is_emmc_boot()){
847 ptr = atag_ptable(&ptr);
848 }
849
vijay kumar21a37452015-12-29 16:23:21 +0530850 /*
851 * Atags size filled till + cmdline size + 1 unsigned for 4-byte boundary + 4 unsigned
852 * for atag identifier in atag_cmdline and atag_end should be with in MAX_TAGS_SIZE bytes
853 */
854 if (((ptr - orig_ptr) + strlen(cmdline) + 5 * sizeof(unsigned)) < MAX_TAGS_SIZE) {
855 ptr = atag_cmdline(ptr, cmdline);
856 ptr = atag_end(ptr);
857 }
858 else {
859 dprintf(CRITICAL,"Crossing ATAGs Max size allowed\n");
860 ASSERT(0);
861 }
Neeti Desaie245d492012-06-01 12:52:13 -0700862}
863
Deepa Dinamani0bf2f442012-10-19 11:41:06 -0700864typedef void entry_func_ptr(unsigned, unsigned, unsigned*);
Neeti Desaie245d492012-06-01 12:52:13 -0700865void boot_linux(void *kernel, unsigned *tags,
866 const char *cmdline, unsigned machtype,
867 void *ramdisk, unsigned ramdisk_size)
868{
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800869 unsigned char *final_cmdline;
Amol Jadib6be5c12012-11-14 13:39:51 -0800870#if DEVICE_TREE
Neeti Desai17379b82012-06-04 18:42:53 -0700871 int ret = 0;
Amol Jadib6be5c12012-11-14 13:39:51 -0800872#endif
873
Deepa Dinamani0bf2f442012-10-19 11:41:06 -0700874 void (*entry)(unsigned, unsigned, unsigned*) = (entry_func_ptr*)(PA((addr_t)kernel));
Deepa Dinamani25a9f762012-11-30 15:57:15 -0800875 uint32_t tags_phys = PA((addr_t)tags);
vijay kumar1a50a642015-11-16 12:41:15 +0530876 struct kernel64_hdr *kptr = ((struct kernel64_hdr*)(PA((addr_t)kernel)));
Deepa Dinamani25a9f762012-11-30 15:57:15 -0800877
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530878 ramdisk = (void *)PA((addr_t)ramdisk);
Neeti Desaie245d492012-06-01 12:52:13 -0700879
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800880 final_cmdline = update_cmdline((const char*)cmdline);
881
Neeti Desai17379b82012-06-04 18:42:53 -0700882#if DEVICE_TREE
Amol Jadib6be5c12012-11-14 13:39:51 -0800883 dprintf(INFO, "Updating device tree: start\n");
884
Neeti Desai17379b82012-06-04 18:42:53 -0700885 /* Update the Device Tree */
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530886 ret = update_device_tree((void *)tags,(const char *)final_cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -0700887 if(ret)
888 {
889 dprintf(CRITICAL, "ERROR: Updating Device Tree Failed \n");
890 ASSERT(0);
891 }
Amol Jadib6be5c12012-11-14 13:39:51 -0800892 dprintf(INFO, "Updating device tree: done\n");
Neeti Desai17379b82012-06-04 18:42:53 -0700893#else
Neeti Desaie245d492012-06-01 12:52:13 -0700894 /* Generating the Atags */
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800895 generate_atags(tags, final_cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -0700896#endif
Neeti Desaie245d492012-06-01 12:52:13 -0700897
Maria Yu52254c02014-07-04 16:14:54 +0800898 free(final_cmdline);
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -0700899
900#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +0530901 if (VB_V2 == target_get_vb_version())
902 {
903 if (device.verity_mode == 0) {
lijuangbdd9bb42016-03-01 18:22:17 +0800904#if FBCON_DISPLAY_MSG
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700905#if ENABLE_VB_ATTEST
Mayank Grover889be1b2017-09-12 20:12:23 +0530906 display_bootverify_menu(DISPLAY_MENU_EIO);
907 wait_for_users_action();
908 if(!pwr_key_is_pressed)
909 shutdown_device();
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700910#else
Mayank Grover889be1b2017-09-12 20:12:23 +0530911 display_bootverify_menu(DISPLAY_MENU_LOGGING);
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700912#endif
Mayank Grover889be1b2017-09-12 20:12:23 +0530913 wait_for_users_action();
lijuangbdd9bb42016-03-01 18:22:17 +0800914#else
Mayank Grover889be1b2017-09-12 20:12:23 +0530915 dprintf(CRITICAL,
916 "The dm-verity is not started in enforcing mode.\nWait for 5 seconds before proceeding\n");
917 mdelay(5000);
lijuangbdd9bb42016-03-01 18:22:17 +0800918#endif
Mayank Grover889be1b2017-09-12 20:12:23 +0530919 }
lijuangbdd9bb42016-03-01 18:22:17 +0800920 }
lijuangbdd9bb42016-03-01 18:22:17 +0800921#endif
922
923#if VERIFIED_BOOT
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -0700924 /* Write protect the device info */
Channagoud Kadabi3bd9d1e2015-05-05 16:18:20 -0700925 if (!boot_into_recovery && target_build_variant_user() && devinfo_present && mmc_write_protect("devinfo", 1))
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -0700926 {
927 dprintf(INFO, "Failed to write protect dev info\n");
928 ASSERT(0);
929 }
930#endif
931
Aravind Venkateswaran8f076242014-02-25 16:25:30 -0800932 /* Turn off splash screen if enabled */
933#if DISPLAY_SPLASH_SCREEN
934 target_display_shutdown();
935#endif
936
Veera Sundaram Sankaran67ea0932015-09-25 10:09:30 -0700937 /* Perform target specific cleanup */
938 target_uninit();
Aravind Venkateswaran8f076242014-02-25 16:25:30 -0800939
Deepa Dinamani33734bc2013-03-06 12:16:06 -0800940 dprintf(INFO, "booting linux @ %p, ramdisk @ %p (%d), tags/device tree @ %p\n",
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530941 entry, ramdisk, ramdisk_size, (void *)tags_phys);
Brian Swetland9c4c0752009-01-25 16:23:50 -0800942
943 enter_critical_section();
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700944
Amol Jadi4421e652011-06-16 15:00:48 -0700945 /* do any platform specific cleanup before kernel entry */
946 platform_uninit();
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700947
Brian Swetland9c4c0752009-01-25 16:23:50 -0800948 arch_disable_cache(UCACHE);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700949
Amol Jadi504f9fe2012-08-16 13:56:48 -0700950#if ARM_WITH_MMU
Brian Swetland9c4c0752009-01-25 16:23:50 -0800951 arch_disable_mmu();
Amol Jadi504f9fe2012-08-16 13:56:48 -0700952#endif
Amol Jadi492d5a52013-03-15 16:12:34 -0700953 bs_set_timestamp(BS_KERNEL_ENTRY);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800954
955 if (IS_ARM64(kptr))
956 /* Jump to a 64bit kernel */
957 scm_elexec_call((paddr_t)kernel, tags_phys);
958 else
959 /* Jump to a 32bit kernel */
960 entry(0, machtype, (unsigned*)tags_phys);
Brian Swetland9c4c0752009-01-25 16:23:50 -0800961}
962
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700963/* Function to check if the memory address range falls within the aboot
964 * boundaries.
965 * start: Start of the memory region
966 * size: Size of the memory region
967 */
Vijay Kumar Pendoti9c002ad2016-03-09 13:52:45 +0530968int check_aboot_addr_range_overlap(uintptr_t start, uint32_t size)
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700969{
970 /* Check for boundary conditions. */
Sundarajan Srinivasance2a0ea2013-12-16 17:02:56 -0800971 if ((UINT_MAX - start) < size)
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700972 return -1;
973
974 /* Check for memory overlap. */
975 if ((start < MEMBASE) && ((start + size) <= MEMBASE))
976 return 0;
Channagoud Kadabi94143912013-10-15 12:53:52 -0700977 else if (start >= (MEMBASE + MEMSIZE))
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700978 return 0;
979 else
980 return -1;
981}
982
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800983#define ROUND_TO_PAGE(x,y) (((x) + (y)) & (~(y)))
Brian Swetland9c4c0752009-01-25 16:23:50 -0800984
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800985BUF_DMA_ALIGN(buf, BOOT_IMG_MAX_PAGE_SIZE); //Equal to max-supported pagesize
Amol Jadib6be5c12012-11-14 13:39:51 -0800986#if DEVICE_TREE
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800987BUF_DMA_ALIGN(dt_buf, BOOT_IMG_MAX_PAGE_SIZE);
Amol Jadib6be5c12012-11-14 13:39:51 -0800988#endif
Dima Zavin214cc642009-01-26 11:16:21 -0800989
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700990static void verify_signed_bootimg(uint32_t bootimg_addr, uint32_t bootimg_size)
991{
992 int ret;
Channagoud Kadabia8c623f2015-01-13 14:48:48 -0800993
994#if !VERIFIED_BOOT
Sundarajan Srinivasance54d6e2013-11-11 12:45:00 -0800995#if IMAGE_VERIF_ALGO_SHA1
996 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA1;
997#else
998 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA256;
999#endif
Channagoud Kadabia8c623f2015-01-13 14:48:48 -08001000#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001001
1002 /* Assume device is rooted at this time. */
1003 device.is_tampered = 1;
1004
1005 dprintf(INFO, "Authenticating boot image (%d): start\n", bootimg_size);
1006
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001007#if VERIFIED_BOOT
1008 if(boot_into_recovery)
1009 {
1010 ret = boot_verify_image((unsigned char *)bootimg_addr,
Unnati Gandhi47051252015-03-02 15:21:09 +05301011 bootimg_size, "/recovery");
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001012 }
1013 else
1014 {
1015 ret = boot_verify_image((unsigned char *)bootimg_addr,
Unnati Gandhi47051252015-03-02 15:21:09 +05301016 bootimg_size, "/boot");
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001017 }
1018 boot_verify_print_state();
1019#else
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001020 ret = image_verify((unsigned char *)bootimg_addr,
1021 (unsigned char *)(bootimg_addr + bootimg_size),
1022 bootimg_size,
Sundarajan Srinivasance54d6e2013-11-11 12:45:00 -08001023 auth_algo);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001024#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001025 dprintf(INFO, "Authenticating boot image: done return value = %d\n", ret);
1026
1027 if (ret)
1028 {
1029 /* Authorized kernel */
1030 device.is_tampered = 0;
Sundarajan Srinivasan3fb21f12013-09-16 18:36:15 -07001031 auth_kernel_img = 1;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001032 }
1033
Amit Blay4aa292f2015-04-28 21:55:59 +03001034#ifdef MDTP_SUPPORT
1035 {
1036 /* Verify MDTP lock.
1037 * For boot & recovery partitions, use aboot's verification result.
1038 */
1039 mdtp_ext_partition_verification_t ext_partition;
1040 ext_partition.partition = boot_into_recovery ? MDTP_PARTITION_RECOVERY : MDTP_PARTITION_BOOT;
1041 ext_partition.integrity_state = device.is_tampered ? MDTP_PARTITION_STATE_INVALID : MDTP_PARTITION_STATE_VALID;
1042 ext_partition.page_size = 0; /* Not needed since already validated */
1043 ext_partition.image_addr = 0; /* Not needed since already validated */
1044 ext_partition.image_size = 0; /* Not needed since already validated */
1045 ext_partition.sig_avail = FALSE; /* Not needed since already validated */
1046 mdtp_fwlock_verify_lock(&ext_partition);
1047 }
1048#endif /* MDTP_SUPPORT */
1049
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001050#if USE_PCOM_SECBOOT
1051 set_tamper_flag(device.is_tampered);
1052#endif
1053
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001054#if VERIFIED_BOOT
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001055 switch(boot_verify_get_state())
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001056 {
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001057 case RED:
lijuanga40d6302015-07-20 20:10:13 +08001058#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08001059 display_bootverify_menu(DISPLAY_MENU_RED);
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001060#if ENABLE_VB_ATTEST
1061 mdelay(DELAY_WAIT);
1062 shutdown_device();
1063#else
lijuanga40d6302015-07-20 20:10:13 +08001064 wait_for_users_action();
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001065#endif
lijuanga40d6302015-07-20 20:10:13 +08001066#else
1067 dprintf(CRITICAL,
1068 "Your device has failed verification and may not work properly.\nWait for 5 seconds before proceeding\n");
1069 mdelay(5000);
1070#endif
1071
1072 break;
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001073 case YELLOW:
lijuanga40d6302015-07-20 20:10:13 +08001074#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08001075 display_bootverify_menu(DISPLAY_MENU_YELLOW);
lijuanga40d6302015-07-20 20:10:13 +08001076 wait_for_users_action();
1077#else
1078 dprintf(CRITICAL,
1079 "Your device has loaded a different operating system.\nWait for 5 seconds before proceeding\n");
1080 mdelay(5000);
1081#endif
1082 break;
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001083 default:
lijuanga40d6302015-07-20 20:10:13 +08001084 break;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001085 }
1086#endif
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001087#if !VERIFIED_BOOT
Unnati Gandhi1be04752015-03-27 19:41:53 +05301088 if(device.is_tampered)
1089 {
1090 write_device_info_mmc(&device);
1091 #ifdef TZ_TAMPER_FUSE
1092 set_tamper_fuse_cmd();
1093 #endif
1094 #ifdef ASSERT_ON_TAMPER
1095 dprintf(CRITICAL, "Device is tampered. Asserting..\n");
1096 ASSERT(0);
1097 #endif
1098 }
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001099#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001100}
1101
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301102static bool check_format_bit()
1103{
1104 bool ret = false;
1105 int index;
1106 uint64_t offset;
1107 struct boot_selection_info *in = NULL;
1108 char *buf = NULL;
1109
1110 index = partition_get_index("bootselect");
1111 if (index == INVALID_PTN)
1112 {
1113 dprintf(INFO, "Unable to locate /bootselect partition\n");
1114 return ret;
1115 }
1116 offset = partition_get_offset(index);
1117 if(!offset)
1118 {
1119 dprintf(INFO, "partition /bootselect doesn't exist\n");
1120 return ret;
1121 }
1122 buf = (char *) memalign(CACHE_LINE, ROUNDUP(page_size, CACHE_LINE));
Mayank Grover48860402016-11-29 12:34:53 +05301123 mmc_set_lun(partition_get_lun(index));
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301124 ASSERT(buf);
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301125 if (mmc_read(offset, (uint32_t *)buf, page_size))
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301126 {
1127 dprintf(INFO, "mmc read failure /bootselect %d\n", page_size);
1128 free(buf);
1129 return ret;
1130 }
1131 in = (struct boot_selection_info *) buf;
1132 if ((in->signature == BOOTSELECT_SIGNATURE) &&
1133 (in->version == BOOTSELECT_VERSION)) {
1134 if ((in->state_info & BOOTSELECT_FORMAT) &&
1135 !(in->state_info & BOOTSELECT_FACTORY))
1136 ret = true;
1137 } else {
1138 dprintf(CRITICAL, "Signature: 0x%08x or version: 0x%08x mismatched of /bootselect\n",
1139 in->signature, in->version);
1140 ASSERT(0);
1141 }
1142 free(buf);
1143 return ret;
1144}
1145
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001146void boot_verifier_init()
1147{
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001148 uint32_t boot_state;
1149 /* Check if device unlock */
1150 if(device.is_unlocked)
1151 {
1152 boot_verify_send_event(DEV_UNLOCK);
1153 boot_verify_print_state();
1154 dprintf(CRITICAL, "Device is unlocked! Skipping verification...\n");
1155 return;
1156 }
1157 else
1158 {
1159 boot_verify_send_event(BOOT_INIT);
1160 }
1161
1162 /* Initialize keystore */
1163 boot_state = boot_verify_keystore_init();
1164 if(boot_state == YELLOW)
1165 {
1166 boot_verify_print_state();
1167 dprintf(CRITICAL, "Keystore verification failed! Continuing anyways...\n");
1168 }
1169}
1170
Shashank Mittal23b8f422010-04-16 19:27:21 -07001171int boot_linux_from_mmc(void)
1172{
1173 struct boot_img_hdr *hdr = (void*) buf;
1174 struct boot_img_hdr *uhdr;
1175 unsigned offset = 0;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07001176 int rcode;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001177 unsigned long long ptn = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001178 int index = INVALID_PTN;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001179
Shashank Mittalcd98d472011-08-02 14:29:24 -07001180 unsigned char *image_addr = 0;
1181 unsigned kernel_actual;
1182 unsigned ramdisk_actual;
1183 unsigned imagesize_actual;
Neeti Desai465491e2012-07-31 12:53:35 -07001184 unsigned second_actual = 0;
Neeti Desai465491e2012-07-31 12:53:35 -07001185
Matthew Qin271927e2015-03-31 22:07:07 -04001186 unsigned int dtb_size = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001187 unsigned int out_len = 0;
1188 unsigned int out_avai_len = 0;
1189 unsigned char *out_addr = NULL;
1190 uint32_t dtb_offset = 0;
1191 unsigned char *kernel_start_addr = NULL;
1192 unsigned int kernel_size = 0;
Ameya Thakur10a33452016-06-13 14:24:26 -07001193 unsigned int patched_kernel_hdr_size = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001194 int rc;
Neeti Desai465491e2012-07-31 12:53:35 -07001195#if DEVICE_TREE
1196 struct dt_table *table;
Joel Kingaa335dc2013-06-03 16:11:08 -07001197 struct dt_entry dt_entry;
Neeti Desai465491e2012-07-31 12:53:35 -07001198 unsigned dt_table_offset;
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001199 uint32_t dt_actual;
Deepa Dinamani19648b42013-09-05 17:05:55 -07001200 uint32_t dt_hdr_size;
Matthew Qin271927e2015-03-31 22:07:07 -04001201 unsigned char *best_match_dt_addr = NULL;
Neeti Desai465491e2012-07-31 12:53:35 -07001202#endif
Matthew Qin49e51fa2015-02-09 10:40:45 +08001203 struct kernel64_hdr *kptr = NULL;
Mayank Grover351a75e2017-05-30 20:06:08 +05301204 int current_active_slot = INVALID;
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001205
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301206 if (check_format_bit())
1207 boot_into_recovery = 1;
1208
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07001209 if (!boot_into_recovery) {
1210 memset(ffbm_mode_string, '\0', sizeof(ffbm_mode_string));
1211 rcode = get_ffbm(ffbm_mode_string, sizeof(ffbm_mode_string));
1212 if (rcode <= 0) {
1213 boot_into_ffbm = false;
1214 if (rcode < 0)
1215 dprintf(CRITICAL,"failed to get ffbm cookie");
1216 } else
1217 boot_into_ffbm = true;
1218 } else
1219 boot_into_ffbm = false;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001220 uhdr = (struct boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
1221 if (!memcmp(uhdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1222 dprintf(INFO, "Unified boot method!\n");
1223 hdr = uhdr;
1224 goto unified_boot;
1225 }
Greg Griscod6250552011-06-29 14:40:23 -07001226 if (!boot_into_recovery) {
Kinson Chikf1a43512011-07-14 11:28:39 -07001227 index = partition_get_index("boot");
1228 ptn = partition_get_offset(index);
1229 if(ptn == 0) {
Shashank Mittal85b91f62010-10-30 10:12:38 -07001230 dprintf(CRITICAL, "ERROR: No boot partition found\n");
1231 return -1;
1232 }
Kinson Chikf1a43512011-07-14 11:28:39 -07001233 }
1234 else {
1235 index = partition_get_index("recovery");
1236 ptn = partition_get_offset(index);
1237 if(ptn == 0) {
Shashank Mittal85b91f62010-10-30 10:12:38 -07001238 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
1239 return -1;
1240 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001241 }
Channagoud Kadabief0547c2015-02-10 12:57:38 -08001242 /* Set Lun for boot & recovery partitions */
1243 mmc_set_lun(partition_get_lun(index));
Shashank Mittal23b8f422010-04-16 19:27:21 -07001244
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301245 if (mmc_read(ptn + offset, (uint32_t *) buf, page_size)) {
Shashank Mittal23b8f422010-04-16 19:27:21 -07001246 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
1247 return -1;
1248 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001249
1250 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07001251 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Mayank Grover351a75e2017-05-30 20:06:08 +05301252 return ERR_INVALID_BOOT_MAGIC;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001253 }
1254
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07001255 if (hdr->page_size && (hdr->page_size != page_size)) {
vijay kumar2e21b3a2014-06-26 17:40:15 +05301256
1257 if (hdr->page_size > BOOT_IMG_MAX_PAGE_SIZE) {
1258 dprintf(CRITICAL, "ERROR: Invalid page size\n");
1259 return -1;
1260 }
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07001261 page_size = hdr->page_size;
1262 page_mask = page_size - 1;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001263 }
1264
Matthew Qin49e51fa2015-02-09 10:40:45 +08001265 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1266 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05301267 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001268
Matthew Qin49e51fa2015-02-09 10:40:45 +08001269 image_addr = (unsigned char *)target_get_scratch_address();
Kishor PK9e91b592017-05-24 12:14:55 +05301270 memcpy(image_addr, (void *)buf, page_size);
1271
1272 /* ensure commandline is terminated */
1273 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
Matthew Qin49e51fa2015-02-09 10:40:45 +08001274
1275#if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05301276#ifndef OSVERSION_IN_BOOTIMAGE
1277 dt_size = hdr->dt_size;
1278#endif
1279 dt_actual = ROUND_TO_PAGE(dt_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05301280 if (UINT_MAX < ((uint64_t)kernel_actual + (uint64_t)ramdisk_actual+ (uint64_t)second_actual + (uint64_t)dt_actual + page_size)) {
Vijay Kumar Pendoti208f9622016-06-09 19:34:01 +05301281 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields at %u in %s\n",__LINE__,__FILE__);
1282 return -1;
1283 }
Kishor PKd8ddcad2017-07-27 13:53:57 +05301284 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual + dt_actual);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001285#else
Kishor PKd8ddcad2017-07-27 13:53:57 +05301286 if (UINT_MAX < ((uint64_t)kernel_actual + (uint64_t)ramdisk_actual + (uint64_t)second_actual + page_size)) {
Vijay Kumar Pendoti208f9622016-06-09 19:34:01 +05301287 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields at %u in %s\n",__LINE__,__FILE__);
1288 return -1;
1289 }
Kishor PKd8ddcad2017-07-27 13:53:57 +05301290 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001291#endif
1292
1293#if VERIFIED_BOOT
1294 boot_verifier_init();
1295#endif
1296
Vijay Kumar Pendoti9c002ad2016-03-09 13:52:45 +05301297 if (check_aboot_addr_range_overlap((uintptr_t) image_addr, imagesize_actual))
Matthew Qin49e51fa2015-02-09 10:40:45 +08001298 {
1299 dprintf(CRITICAL, "Boot image buffer address overlaps with aboot addresses.\n");
1300 return -1;
1301 }
1302
Matthew Qinbb7923d2015-02-09 10:56:09 +08001303 /*
1304 * Update loading flow of bootimage to support compressed/uncompressed
1305 * bootimage on both 64bit and 32bit platform.
1306 * 1. Load bootimage from emmc partition onto DDR.
1307 * 2. Check if bootimage is gzip format. If yes, decompress compressed kernel
1308 * 3. Check kernel header and update kernel load addr for 64bit and 32bit
1309 * platform accordingly.
1310 * 4. Sanity Check on kernel_addr and ramdisk_addr and copy data.
1311 */
Mayank Grover351a75e2017-05-30 20:06:08 +05301312 if (partition_multislot_is_supported())
1313 {
1314 current_active_slot = partition_find_active_slot();
1315 dprintf(INFO, "Loading boot image (%d) active_slot(%s): start\n",
1316 imagesize_actual, SUFFIX_SLOT(current_active_slot));
1317 }
1318 else
1319 {
1320 dprintf(INFO, "Loading (%s) image (%d): start\n",
1321 (!boot_into_recovery ? "boot" : "recovery"),imagesize_actual);
1322 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001323 bs_set_timestamp(BS_KERNEL_LOAD_START);
1324
Gaurav Nebhwani43e2a462016-03-17 21:32:56 +05301325 if ((target_get_max_flash_size() - page_size) < imagesize_actual)
1326 {
1327 dprintf(CRITICAL, "booimage size is greater than DDR can hold\n");
1328 return -1;
1329 }
Kishor PK9e91b592017-05-24 12:14:55 +05301330 offset = page_size;
1331 /* Read image without signature and header*/
1332 if (mmc_read(ptn + offset, (void *)(image_addr + offset), imagesize_actual - page_size))
Matthew Qin49e51fa2015-02-09 10:40:45 +08001333 {
1334 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
1335 return -1;
1336 }
1337
Mayank Grover351a75e2017-05-30 20:06:08 +05301338 if (partition_multislot_is_supported())
1339 {
1340 dprintf(INFO, "Loading boot image (%d) active_slot(%s): done\n",
1341 imagesize_actual, SUFFIX_SLOT(current_active_slot));
1342 }
1343 else
1344 {
1345 dprintf(INFO, "Loading (%s) image (%d): done\n",
Channagoud Kadabif0705b52015-08-20 14:16:08 -07001346 (!boot_into_recovery ? "boot" : "recovery"),imagesize_actual);
1347
Mayank Grover351a75e2017-05-30 20:06:08 +05301348 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001349 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
1350
1351 /* Authenticate Kernel */
1352 dprintf(INFO, "use_signed_kernel=%d, is_unlocked=%d, is_tampered=%d.\n",
1353 (int) target_use_signed_kernel(),
1354 device.is_unlocked,
1355 device.is_tampered);
1356
Channagoud Kadabi736c4962015-08-21 11:56:52 -07001357 /* Change the condition a little bit to include the test framework support.
1358 * We would never reach this point if device is in fastboot mode, even if we did
1359 * that means we are in test mode, so execute kernel authentication part for the
1360 * tests */
Parth Dixitcb0c6082015-12-30 15:01:13 +05301361 if((target_use_signed_kernel() && (!device.is_unlocked)) || is_test_mode_enabled())
Matthew Qin49e51fa2015-02-09 10:40:45 +08001362 {
1363 offset = imagesize_actual;
Vijay Kumar Pendoti9c002ad2016-03-09 13:52:45 +05301364 if (check_aboot_addr_range_overlap((uintptr_t)image_addr + offset, page_size))
Matthew Qin49e51fa2015-02-09 10:40:45 +08001365 {
1366 dprintf(CRITICAL, "Signature read buffer address overlaps with aboot addresses.\n");
1367 return -1;
1368 }
1369
1370 /* Read signature */
1371 if(mmc_read(ptn + offset, (void *)(image_addr + offset), page_size))
1372 {
1373 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
1374 return -1;
1375 }
1376
1377 verify_signed_bootimg((uint32_t)image_addr, imagesize_actual);
Channagoud Kadabi736c4962015-08-21 11:56:52 -07001378 /* The purpose of our test is done here */
Parth Dixitcb0c6082015-12-30 15:01:13 +05301379 if(is_test_mode_enabled() && auth_kernel_img)
Channagoud Kadabi736c4962015-08-21 11:56:52 -07001380 return 0;
Matthew Qin49e51fa2015-02-09 10:40:45 +08001381 } else {
1382 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
1383 #ifdef TZ_SAVE_KERNEL_HASH
1384 aboot_save_boot_hash_mmc((uint32_t) image_addr, imagesize_actual);
1385 #endif /* TZ_SAVE_KERNEL_HASH */
Amit Blay4aa292f2015-04-28 21:55:59 +03001386
1387#ifdef MDTP_SUPPORT
1388 {
1389 /* Verify MDTP lock.
1390 * For boot & recovery partitions, MDTP will use boot_verifier APIs,
1391 * since verification was skipped in aboot. The signature is not part of the loaded image.
1392 */
1393 mdtp_ext_partition_verification_t ext_partition;
1394 ext_partition.partition = boot_into_recovery ? MDTP_PARTITION_RECOVERY : MDTP_PARTITION_BOOT;
1395 ext_partition.integrity_state = MDTP_PARTITION_STATE_UNSET;
1396 ext_partition.page_size = page_size;
1397 ext_partition.image_addr = (uint32)image_addr;
1398 ext_partition.image_size = imagesize_actual;
1399 ext_partition.sig_avail = FALSE;
1400 mdtp_fwlock_verify_lock(&ext_partition);
1401 }
1402#endif /* MDTP_SUPPORT */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001403 }
1404
Sridhar Parasuram00bfedb2015-05-26 14:21:27 -07001405#if VERIFIED_BOOT
taozhang93088bd2016-11-16 15:50:46 +08001406 if((boot_verify_get_state() == ORANGE) && (!boot_into_ffbm))
Reut Zysmanba8a9d52016-02-18 11:44:04 +02001407 {
1408#if FBCON_DISPLAY_MSG
1409 display_bootverify_menu(DISPLAY_MENU_ORANGE);
1410 wait_for_users_action();
1411#else
1412 dprintf(CRITICAL,
1413 "Your device has been unlocked and can't be trusted.\nWait for 5 seconds before proceeding\n");
1414 mdelay(5000);
1415#endif
1416 }
1417#endif
1418
1419#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +05301420 if (VB_V2 == target_get_vb_version())
1421 {
1422 /* set boot and system versions. */
1423 set_os_version((unsigned char *)image_addr);
1424 // send root of trust
1425 if(!send_rot_command((uint32_t)device.is_unlocked))
1426 ASSERT(0);
1427 }
Parth Dixitbc9b6492015-10-18 00:41:38 +05301428#endif
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001429 /*
Matthew Qinbb7923d2015-02-09 10:56:09 +08001430 * Check if the kernel image is a gzip package. If yes, need to decompress it.
1431 * If not, continue booting.
1432 */
1433 if (is_gzip_package((unsigned char *)(image_addr + page_size), hdr->kernel_size))
1434 {
1435 out_addr = (unsigned char *)(image_addr + imagesize_actual + page_size);
1436 out_avai_len = target_get_max_flash_size() - imagesize_actual - page_size;
Matthew Qin0b15b322015-05-19 05:20:54 -04001437 dprintf(INFO, "decompressing kernel image: start\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08001438 rc = decompress((unsigned char *)(image_addr + page_size),
1439 hdr->kernel_size, out_addr, out_avai_len,
1440 &dtb_offset, &out_len);
1441 if (rc)
1442 {
Matthew Qin0b15b322015-05-19 05:20:54 -04001443 dprintf(CRITICAL, "decompressing kernel image failed!!!\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08001444 ASSERT(0);
1445 }
1446
Matthew Qin0b15b322015-05-19 05:20:54 -04001447 dprintf(INFO, "decompressing kernel image: done\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08001448 kptr = (struct kernel64_hdr *)out_addr;
1449 kernel_start_addr = out_addr;
1450 kernel_size = out_len;
1451 } else {
Ameya Thakur10a33452016-06-13 14:24:26 -07001452 dprintf(INFO, "Uncpmpressed kernel in use\n");
1453 if (!strncmp((char*)(image_addr + page_size),
1454 PATCHED_KERNEL_MAGIC,
1455 sizeof(PATCHED_KERNEL_MAGIC) - 1)) {
1456 dprintf(INFO, "Patched kernel detected\n");
1457 kptr = (struct kernel64_hdr *)(image_addr + page_size +
1458 PATCHED_KERNEL_HEADER_SIZE);
1459 //The size of the kernel is stored at start of kernel image + 16
1460 //The dtb would start just after the kernel
1461 dtb_offset = *((uint32_t*)((unsigned char*)
1462 (image_addr + page_size +
1463 sizeof(PATCHED_KERNEL_MAGIC) -
1464 1)));
1465 //The actual kernel starts after the 20 byte header.
1466 kernel_start_addr = (unsigned char*)(image_addr +
1467 page_size + PATCHED_KERNEL_HEADER_SIZE);
1468 kernel_size = hdr->kernel_size;
1469 patched_kernel_hdr_size = PATCHED_KERNEL_HEADER_SIZE;
1470 } else {
1471 dprintf(INFO, "Kernel image not patched..Unable to locate dt offset\n");
1472 kptr = (struct kernel64_hdr *)(image_addr + page_size);
1473 kernel_start_addr = (unsigned char *)(image_addr + page_size);
1474 kernel_size = hdr->kernel_size;
1475 }
Matthew Qinbb7923d2015-02-09 10:56:09 +08001476 }
1477
1478 /*
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001479 * Update the kernel/ramdisk/tags address if the boot image header
1480 * has default values, these default values come from mkbootimg when
1481 * the boot image is flashed using fastboot flash:raw
1482 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001483 update_ker_tags_rdisk_addr(hdr, IS_ARM64(kptr));
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001484
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001485 /* Get virtual addresses since the hdr saves physical addresses. */
1486 hdr->kernel_addr = VA((addr_t)(hdr->kernel_addr));
1487 hdr->ramdisk_addr = VA((addr_t)(hdr->ramdisk_addr));
1488 hdr->tags_addr = VA((addr_t)(hdr->tags_addr));
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001489
Matthew Qinbb7923d2015-02-09 10:56:09 +08001490 kernel_size = ROUND_TO_PAGE(kernel_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001491 /* Check if the addresses in the header are valid. */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001492 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_size) ||
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001493 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual))
1494 {
1495 dprintf(CRITICAL, "kernel/ramdisk addresses overlap with aboot addresses.\n");
1496 return -1;
1497 }
1498
1499#ifndef DEVICE_TREE
1500 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE))
1501 {
1502 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
1503 return -1;
1504 }
1505#endif
1506
Matthew Qin49e51fa2015-02-09 10:40:45 +08001507 /* Move kernel, ramdisk and device tree to correct address */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001508 memmove((void*) hdr->kernel_addr, kernel_start_addr, kernel_size);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001509 memmove((void*) hdr->ramdisk_addr, (char *)(image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001510
Matthew Qin49e51fa2015-02-09 10:40:45 +08001511 #if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05301512 if(dt_size) {
Matthew Qin49e51fa2015-02-09 10:40:45 +08001513 dt_table_offset = ((uint32_t)image_addr + page_size + kernel_actual + ramdisk_actual + second_actual);
1514 table = (struct dt_table*) dt_table_offset;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001515
Matthew Qin49e51fa2015-02-09 10:40:45 +08001516 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
1517 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1518 return -1;
1519 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001520
P.V. Phani Kumar82916762016-03-09 09:20:19 +05301521 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
1522 goes beyound hdr->dt_size*/
Parth Dixit4097b622016-03-15 14:42:27 +05301523 if (dt_hdr_size > ROUND_TO_PAGE(dt_size,hdr->page_size)) {
P.V. Phani Kumar82916762016-03-09 09:20:19 +05301524 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
1525 return -1;
1526 }
1527
Matthew Qin49e51fa2015-02-09 10:40:45 +08001528 /* Find index of device tree within device tree table */
1529 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
1530 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1531 return -1;
1532 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001533
P.V. Phani Kumar3c333202016-03-09 11:54:37 +05301534 if(dt_entry.offset > (UINT_MAX - dt_entry.size)) {
1535 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1536 return -1;
1537 }
1538
1539 /* Ensure we are not overshooting dt_size with the dt_entry selected */
Parth Dixit4097b622016-03-15 14:42:27 +05301540 if ((dt_entry.offset + dt_entry.size) > dt_size) {
P.V. Phani Kumar3c333202016-03-09 11:54:37 +05301541 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1542 return -1;
1543 }
1544
Matthew Qin271927e2015-03-31 22:07:07 -04001545 if (is_gzip_package((unsigned char *)dt_table_offset + dt_entry.offset, dt_entry.size))
1546 {
1547 unsigned int compressed_size = 0;
1548 out_addr += out_len;
1549 out_avai_len -= out_len;
Matthew Qin0b15b322015-05-19 05:20:54 -04001550 dprintf(INFO, "decompressing dtb: start\n");
Matthew Qin271927e2015-03-31 22:07:07 -04001551 rc = decompress((unsigned char *)dt_table_offset + dt_entry.offset,
1552 dt_entry.size, out_addr, out_avai_len,
1553 &compressed_size, &dtb_size);
1554 if (rc)
1555 {
Matthew Qin0b15b322015-05-19 05:20:54 -04001556 dprintf(CRITICAL, "decompressing dtb failed!!!\n");
Matthew Qin271927e2015-03-31 22:07:07 -04001557 ASSERT(0);
1558 }
1559
Matthew Qin0b15b322015-05-19 05:20:54 -04001560 dprintf(INFO, "decompressing dtb: done\n");
Matthew Qin271927e2015-03-31 22:07:07 -04001561 best_match_dt_addr = out_addr;
1562 } else {
1563 best_match_dt_addr = (unsigned char *)dt_table_offset + dt_entry.offset;
1564 dtb_size = dt_entry.size;
1565 }
1566
Matthew Qin49e51fa2015-02-09 10:40:45 +08001567 /* Validate and Read device device tree in the tags_addr */
Matthew Qin271927e2015-03-31 22:07:07 -04001568 if (check_aboot_addr_range_overlap(hdr->tags_addr, dtb_size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001569 {
1570 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1571 return -1;
1572 }
Shashank Mittal162244e2011-08-08 19:01:25 -07001573
Matthew Qin271927e2015-03-31 22:07:07 -04001574 memmove((void *)hdr->tags_addr, (char *)best_match_dt_addr, dtb_size);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001575 } else {
1576 /* Validate the tags_addr */
1577 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual))
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07001578 {
1579 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1580 return -1;
1581 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001582 /*
1583 * If appended dev tree is found, update the atags with
1584 * memory address to the DTB appended location on RAM.
1585 * Else update with the atags address in the kernel header
1586 */
1587 void *dtb;
Ameya Thakur10a33452016-06-13 14:24:26 -07001588 dtb = dev_tree_appended(
1589 (void*)(image_addr + page_size +
1590 patched_kernel_hdr_size),
1591 hdr->kernel_size, dtb_offset,
1592 (void *)hdr->tags_addr);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001593 if (!dtb) {
1594 dprintf(CRITICAL, "ERROR: Appended Device Tree Blob not found\n");
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07001595 return -1;
1596 }
Shashank Mittalcd98d472011-08-02 14:29:24 -07001597 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001598 #endif
Shashank Mittal23b8f422010-04-16 19:27:21 -07001599
Stanimir Varbanov69ec5462013-07-18 18:17:42 +03001600 if (boot_into_recovery && !device.is_unlocked && !device.is_tampered)
1601 target_load_ssd_keystore();
1602
Shashank Mittal23b8f422010-04-16 19:27:21 -07001603unified_boot:
Shashank Mittal23b8f422010-04-16 19:27:21 -07001604
Dima Zavin77e41f32013-03-06 16:10:43 -08001605 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Dima Zavinbd3daa02013-03-26 11:06:44 -07001606 (const char *)hdr->cmdline, board_machtype(),
Shashank Mittal23b8f422010-04-16 19:27:21 -07001607 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
1608
1609 return 0;
1610}
1611
Dima Zavin214cc642009-01-26 11:16:21 -08001612int boot_linux_from_flash(void)
1613{
1614 struct boot_img_hdr *hdr = (void*) buf;
Dima Zavin214cc642009-01-26 11:16:21 -08001615 struct ptentry *ptn;
1616 struct ptable *ptable;
1617 unsigned offset = 0;
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08001618
Shashank Mittalcd98d472011-08-02 14:29:24 -07001619 unsigned char *image_addr = 0;
1620 unsigned kernel_actual;
1621 unsigned ramdisk_actual;
1622 unsigned imagesize_actual;
vijay kumar8f53e362015-11-24 13:38:11 +05301623 unsigned second_actual = 0;
Shashank Mittalcd98d472011-08-02 14:29:24 -07001624
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001625#if DEVICE_TREE
1626 struct dt_table *table;
Joel Kingaa335dc2013-06-03 16:11:08 -07001627 struct dt_entry dt_entry;
vijay kumar8f53e362015-11-24 13:38:11 +05301628 unsigned dt_table_offset;
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001629 uint32_t dt_actual;
Deepa Dinamani19648b42013-09-05 17:05:55 -07001630 uint32_t dt_hdr_size;
vijay kumar8f53e362015-11-24 13:38:11 +05301631 unsigned int dtb_size = 0;
1632 unsigned char *best_match_dt_addr = NULL;
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001633#endif
1634
David Ng183a7422009-12-07 14:55:21 -08001635 if (target_is_emmc_boot()) {
1636 hdr = (struct boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
1637 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1638 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
1639 return -1;
1640 }
1641 goto continue_boot;
1642 }
1643
Dima Zavin214cc642009-01-26 11:16:21 -08001644 ptable = flash_get_ptable();
1645 if (ptable == NULL) {
1646 dprintf(CRITICAL, "ERROR: Partition table not found\n");
1647 return -1;
1648 }
1649
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08001650 if(!boot_into_recovery)
1651 {
1652 ptn = ptable_find(ptable, "boot");
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001653
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08001654 if (ptn == NULL) {
1655 dprintf(CRITICAL, "ERROR: No boot partition found\n");
1656 return -1;
1657 }
1658 }
1659 else
1660 {
1661 ptn = ptable_find(ptable, "recovery");
1662 if (ptn == NULL) {
1663 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
1664 return -1;
1665 }
Dima Zavin214cc642009-01-26 11:16:21 -08001666 }
1667
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001668 if (flash_read(ptn, offset, buf, page_size)) {
Dima Zavin214cc642009-01-26 11:16:21 -08001669 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
1670 return -1;
1671 }
Dima Zavin214cc642009-01-26 11:16:21 -08001672
1673 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07001674 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Dima Zavin214cc642009-01-26 11:16:21 -08001675 return -1;
1676 }
1677
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001678 if (hdr->page_size != page_size) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07001679 dprintf(CRITICAL, "ERROR: Invalid boot image pagesize. Device pagesize: %d, Image pagesize: %d\n",page_size,hdr->page_size);
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001680 return -1;
1681 }
1682
Kishor PK9e91b592017-05-24 12:14:55 +05301683 image_addr = (unsigned char *)target_get_scratch_address();
1684 memcpy(image_addr, (void *)buf, page_size);
vijay kumar287bb542015-09-29 13:01:52 +05301685
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001686 /*
1687 * Update the kernel/ramdisk/tags address if the boot image header
1688 * has default values, these default values come from mkbootimg when
1689 * the boot image is flashed using fastboot flash:raw
1690 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001691 update_ker_tags_rdisk_addr(hdr, false);
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001692
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001693 /* Get virtual addresses since the hdr saves physical addresses. */
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001694 hdr->kernel_addr = VA((addr_t)(hdr->kernel_addr));
1695 hdr->ramdisk_addr = VA((addr_t)(hdr->ramdisk_addr));
1696 hdr->tags_addr = VA((addr_t)(hdr->tags_addr));
1697
1698 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1699 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Mayank Grover032736f2017-07-14 20:34:51 +05301700 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001701
Kishor PK9e91b592017-05-24 12:14:55 +05301702 /* ensure commandline is terminated */
1703 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
1704
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001705 /* Check if the addresses in the header are valid. */
1706 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_actual) ||
1707 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual))
1708 {
1709 dprintf(CRITICAL, "kernel/ramdisk addresses overlap with aboot addresses.\n");
1710 return -1;
1711 }
1712
1713#ifndef DEVICE_TREE
Kishor PKd8ddcad2017-07-27 13:53:57 +05301714 if (UINT_MAX < ((uint64_t)kernel_actual + (uint64_t)ramdisk_actual+ (uint64_t)second_actual + page_size)) {
Mayank Grover032736f2017-07-14 20:34:51 +05301715 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields\n");
1716 return -1;
1717 }
Kishor PKd8ddcad2017-07-27 13:53:57 +05301718 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual);
Mayank Grover032736f2017-07-14 20:34:51 +05301719
Vijay Kumar Pendotid3ed20e2016-09-20 00:34:46 +05301720 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE))
1721 {
1722 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
1723 return -1;
1724 }
1725#else
1726
1727#ifndef OSVERSION_IN_BOOTIMAGE
1728 dt_size = hdr->dt_size;
1729#endif
Mayank Grover032736f2017-07-14 20:34:51 +05301730 dt_actual = ROUND_TO_PAGE(dt_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05301731 if (UINT_MAX < ((uint64_t)kernel_actual + (uint64_t)ramdisk_actual+ (uint64_t)second_actual + (uint64_t)dt_actual + page_size)) {
Mayank Grover032736f2017-07-14 20:34:51 +05301732 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields\n");
1733 return -1;
1734 }
1735
Kishor PKd8ddcad2017-07-27 13:53:57 +05301736 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual + dt_actual);
Mayank Grover032736f2017-07-14 20:34:51 +05301737
1738 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_size))
1739 {
1740 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1741 return -1;
1742 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001743#endif
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001744
Shashank Mittalcd98d472011-08-02 14:29:24 -07001745 /* Authenticate Kernel */
Deepa Dinamani23b60d42013-06-24 18:10:52 -07001746 if(target_use_signed_kernel() && (!device.is_unlocked))
Shashank Mittalcd98d472011-08-02 14:29:24 -07001747 {
Channagoud Kadabif0705b52015-08-20 14:16:08 -07001748 dprintf(INFO, "Loading (%s) image (%d): start\n",
1749 (!boot_into_recovery ? "boot" : "recovery"),imagesize_actual);
Amol Jadi492d5a52013-03-15 16:12:34 -07001750 bs_set_timestamp(BS_KERNEL_LOAD_START);
Amol Jadib6be5c12012-11-14 13:39:51 -08001751
Vijay Kumar Pendotib3458362016-07-05 13:45:54 +05301752 if (UINT_MAX - page_size < imagesize_actual)
1753 {
1754 dprintf(CRITICAL,"Integer overflow detected in bootimage header fields %u %s\n", __LINE__,__func__);
1755 return -1;
1756 }
1757
1758 /*Check the availability of RAM before reading boot image + max signature length from flash*/
1759 if (target_get_max_flash_size() < (imagesize_actual + page_size))
1760 {
1761 dprintf(CRITICAL, "bootimage size is greater than DDR can hold\n");
1762 return -1;
1763 }
Kishor PK9e91b592017-05-24 12:14:55 +05301764 offset = page_size;
1765 /* Read image without signature and header*/
1766 if (flash_read(ptn, offset, (void *)(image_addr + offset), imagesize_actual - page_size))
Shashank Mittalcd98d472011-08-02 14:29:24 -07001767 {
1768 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
1769 return -1;
1770 }
Dima Zavin214cc642009-01-26 11:16:21 -08001771
Channagoud Kadabif0705b52015-08-20 14:16:08 -07001772 dprintf(INFO, "Loading (%s) image (%d): done\n",
1773 (!boot_into_recovery ? "boot" : "recovery"), imagesize_actual);
Amol Jadi492d5a52013-03-15 16:12:34 -07001774 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
Amol Jadib6be5c12012-11-14 13:39:51 -08001775
Shashank Mittalcd98d472011-08-02 14:29:24 -07001776 offset = imagesize_actual;
1777 /* Read signature */
1778 if (flash_read(ptn, offset, (void *)(image_addr + offset), page_size))
1779 {
1780 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001781 return -1;
Shashank Mittalcd98d472011-08-02 14:29:24 -07001782 }
Shashank Mittalcd98d472011-08-02 14:29:24 -07001783
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301784 verify_signed_bootimg((uint32_t)image_addr, imagesize_actual);
Shashank Mittalcd98d472011-08-02 14:29:24 -07001785
1786 /* Move kernel and ramdisk to correct address */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001787 memmove((void*) hdr->kernel_addr, (char*) (image_addr + page_size), hdr->kernel_size);
1788 memmove((void*) hdr->ramdisk_addr, (char*) (image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001789#if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05301790 if(dt_size != 0) {
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001791
vijay kumar8f53e362015-11-24 13:38:11 +05301792 dt_table_offset = ((uint32_t)image_addr + page_size + kernel_actual + ramdisk_actual + second_actual);
1793
1794 table = (struct dt_table*) dt_table_offset;
1795
1796 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0){
1797 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1798 return -1;
1799 }
1800
Mayank Grover81e019e2017-07-14 15:59:06 +05301801 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
1802 goes beyound hdr->dt_size*/
1803 if (dt_hdr_size > ROUND_TO_PAGE(dt_size, hdr->page_size)) {
1804 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
1805 return -1;
1806 }
1807
vijay kumar8f53e362015-11-24 13:38:11 +05301808 /* Find index of device tree within device tree table */
1809 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
1810 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1811 return -1;
1812 }
1813
1814 /* Validate and Read device device tree in the "tags_add */
1815 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size)){
1816 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1817 return -1;
1818 }
1819
Mayank Groverebf85ae2017-01-25 13:35:37 +05301820 if(dt_entry.offset > (UINT_MAX - dt_entry.size)) {
1821 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1822 return -1;
1823 }
1824
1825 /* Ensure we are not overshooting dt_size with the dt_entry selected */
1826 if ((dt_entry.offset + dt_entry.size) > dt_size) {
1827 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1828 return -1;
1829 }
1830
vijay kumar8f53e362015-11-24 13:38:11 +05301831 best_match_dt_addr = (unsigned char *)table + dt_entry.offset;
1832 dtb_size = dt_entry.size;
1833 memmove((void *)hdr->tags_addr, (char *)best_match_dt_addr, dtb_size);
1834 }
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001835#endif
Shashank Mittal162244e2011-08-08 19:01:25 -07001836
1837 /* Make sure everything from scratch address is read before next step!*/
Shashank Mittala0032282011-08-26 14:50:11 -07001838 if(device.is_tampered)
Shashank Mittal162244e2011-08-08 19:01:25 -07001839 {
1840 write_device_info_flash(&device);
1841 }
Channagoud Kadabi5c86fe32012-02-16 10:58:48 +05301842#if USE_PCOM_SECBOOT
1843 set_tamper_flag(device.is_tampered);
1844#endif
Shashank Mittalcd98d472011-08-02 14:29:24 -07001845 }
1846 else
1847 {
Channagoud Kadabif0705b52015-08-20 14:16:08 -07001848 dprintf(INFO, "Loading (%s) image (%d): start\n",
1849 (!boot_into_recovery ? "boot" : "recovery"), kernel_actual + ramdisk_actual);
1850
Amol Jadi492d5a52013-03-15 16:12:34 -07001851 bs_set_timestamp(BS_KERNEL_LOAD_START);
Amol Jadib6be5c12012-11-14 13:39:51 -08001852
Mayank Grover032736f2017-07-14 20:34:51 +05301853 offset = page_size;
Vijay Kumar Pendoti47bc1282016-05-05 15:46:17 +05301854 if (UINT_MAX - offset < kernel_actual)
1855 {
1856 dprintf(CRITICAL, "ERROR: Integer overflow in boot image header %s\t%d\n",__func__,__LINE__);
1857 return -1;
1858 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001859 if (flash_read(ptn, offset, (void *)hdr->kernel_addr, kernel_actual)) {
Shashank Mittalcd98d472011-08-02 14:29:24 -07001860 dprintf(CRITICAL, "ERROR: Cannot read kernel image\n");
1861 return -1;
1862 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001863 offset += kernel_actual;
Vijay Kumar Pendoti47bc1282016-05-05 15:46:17 +05301864 if (UINT_MAX - offset < ramdisk_actual)
1865 {
1866 dprintf(CRITICAL, "ERROR: Integer overflow in boot image header %s\t%d\n",__func__,__LINE__);
1867 return -1;
1868 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001869 if (flash_read(ptn, offset, (void *)hdr->ramdisk_addr, ramdisk_actual)) {
Shashank Mittalcd98d472011-08-02 14:29:24 -07001870 dprintf(CRITICAL, "ERROR: Cannot read ramdisk image\n");
1871 return -1;
1872 }
Vijay Kumar Pendoti47bc1282016-05-05 15:46:17 +05301873
Amol Jadib6be5c12012-11-14 13:39:51 -08001874 offset += ramdisk_actual;
1875
Channagoud Kadabif0705b52015-08-20 14:16:08 -07001876 dprintf(INFO, "Loading (%s) image (%d): done\n",
1877 (!boot_into_recovery ? "boot" : "recovery"), kernel_actual + ramdisk_actual);
1878
Amol Jadi492d5a52013-03-15 16:12:34 -07001879 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001880
1881 if(hdr->second_size != 0) {
Vijay Kumar Pendoti47bc1282016-05-05 15:46:17 +05301882 if (UINT_MAX - offset < second_actual)
1883 {
1884 dprintf(CRITICAL, "ERROR: Integer overflow in boot image header %s\t%d\n",__func__,__LINE__);
1885 return -1;
1886 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001887 offset += second_actual;
1888 /* Second image loading not implemented. */
1889 ASSERT(0);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001890 }
1891
1892#if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05301893 if(dt_size != 0) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001894
1895 /* Read the device tree table into buffer */
1896 if(flash_read(ptn, offset, (void *) dt_buf, page_size)) {
1897 dprintf(CRITICAL, "ERROR: Cannot read the Device Tree Table\n");
1898 return -1;
1899 }
1900
1901 table = (struct dt_table*) dt_buf;
1902
Deepa Dinamani19648b42013-09-05 17:05:55 -07001903 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001904 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1905 return -1;
1906 }
1907
P.V. Phani Kumar82916762016-03-09 09:20:19 +05301908 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
1909 goes beyound hdr->dt_size*/
Parth Dixit4097b622016-03-15 14:42:27 +05301910 if (dt_hdr_size > ROUND_TO_PAGE(dt_size,hdr->page_size)) {
P.V. Phani Kumar82916762016-03-09 09:20:19 +05301911 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
1912 return -1;
1913 }
1914
Mayank Grover032736f2017-07-14 20:34:51 +05301915 table = (void *) target_get_scratch_address();
1916 /*Check the availability of RAM before reading boot image + max signature length from flash*/
1917 if (target_get_max_flash_size() < dt_actual)
1918 {
1919 dprintf(CRITICAL, "ERROR: dt_image size is greater than DDR can hold\n");
Deepa Dinamani19648b42013-09-05 17:05:55 -07001920 return -1;
1921 }
1922
Mayank Grover032736f2017-07-14 20:34:51 +05301923 /* Read the entire device tree table into buffer */
1924 if(flash_read(ptn, offset, (void *)table, dt_actual)) {
1925 dprintf(CRITICAL, "ERROR: Cannot read the Device Tree Table\n");
1926 return -1;
1927 }
Deepa Dinamani19648b42013-09-05 17:05:55 -07001928
Joel Kingaa335dc2013-06-03 16:11:08 -07001929 /* Find index of device tree within device tree table */
1930 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001931 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1932 return -1;
1933 }
1934
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001935 /* Validate and Read device device tree in the "tags_add */
Joel Kingaa335dc2013-06-03 16:11:08 -07001936 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001937 {
1938 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1939 return -1;
1940 }
1941
Mayank Grover032736f2017-07-14 20:34:51 +05301942 if(dt_entry.offset > (UINT_MAX - dt_entry.size)) {
1943 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001944 return -1;
1945 }
Mayank Grover032736f2017-07-14 20:34:51 +05301946
1947 /* Ensure we are not overshooting dt_size with the dt_entry selected */
1948 if ((dt_entry.offset + dt_entry.size) > dt_size) {
1949 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1950 return -1;
1951 }
1952
1953 best_match_dt_addr = (unsigned char *)table + dt_entry.offset;
1954 dtb_size = dt_entry.size;
1955 memmove((void *)hdr->tags_addr, (char *)best_match_dt_addr, dtb_size);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001956 }
1957#endif
1958
Shashank Mittalcd98d472011-08-02 14:29:24 -07001959 }
David Ng183a7422009-12-07 14:55:21 -08001960continue_boot:
Dima Zavin214cc642009-01-26 11:16:21 -08001961
Dima Zavin214cc642009-01-26 11:16:21 -08001962 /* TODO: create/pass atags to kernel */
1963
Ajay Dudanie28a6072011-07-01 13:59:46 -07001964 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Dima Zavinbd3daa02013-03-26 11:06:44 -07001965 (const char *)hdr->cmdline, board_machtype(),
Dima Zavin214cc642009-01-26 11:16:21 -08001966 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
1967
1968 return 0;
1969}
Brian Swetland9c4c0752009-01-25 16:23:50 -08001970
Shashank Mittal162244e2011-08-08 19:01:25 -07001971void write_device_info_mmc(device_info *dev)
1972{
Shashank Mittal162244e2011-08-08 19:01:25 -07001973 unsigned long long ptn = 0;
1974 unsigned long long size;
1975 int index = INVALID_PTN;
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07001976 uint32_t blocksize;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001977 uint8_t lun = 0;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001978 uint32_t ret = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07001979
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001980 if (devinfo_present)
1981 index = partition_get_index("devinfo");
1982 else
1983 index = partition_get_index("aboot");
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07001984
Shashank Mittal162244e2011-08-08 19:01:25 -07001985 ptn = partition_get_offset(index);
1986 if(ptn == 0)
1987 {
1988 return;
1989 }
1990
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001991 lun = partition_get_lun(index);
1992 mmc_set_lun(lun);
1993
Shashank Mittal162244e2011-08-08 19:01:25 -07001994 size = partition_get_size(index);
1995
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07001996 blocksize = mmc_get_device_blocksize();
1997
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001998 if (devinfo_present)
1999 ret = mmc_write(ptn, blocksize, (void *)info_buf);
2000 else
2001 ret = mmc_write((ptn + size - blocksize), blocksize, (void *)info_buf);
2002 if (ret)
Shashank Mittal162244e2011-08-08 19:01:25 -07002003 {
2004 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002005 ASSERT(0);
Shashank Mittal162244e2011-08-08 19:01:25 -07002006 }
2007}
2008
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002009void read_device_info_mmc(struct device_info *info)
Shashank Mittal162244e2011-08-08 19:01:25 -07002010{
Shashank Mittal162244e2011-08-08 19:01:25 -07002011 unsigned long long ptn = 0;
2012 unsigned long long size;
2013 int index = INVALID_PTN;
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07002014 uint32_t blocksize;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002015 uint32_t ret = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002016
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002017 if ((index = partition_get_index("devinfo")) < 0)
2018 {
2019 devinfo_present = false;
2020 index = partition_get_index("aboot");
2021 }
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07002022
Shashank Mittal162244e2011-08-08 19:01:25 -07002023 ptn = partition_get_offset(index);
2024 if(ptn == 0)
2025 {
2026 return;
2027 }
2028
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07002029 mmc_set_lun(partition_get_lun(index));
2030
Shashank Mittal162244e2011-08-08 19:01:25 -07002031 size = partition_get_size(index);
2032
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07002033 blocksize = mmc_get_device_blocksize();
2034
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002035 if (devinfo_present)
2036 ret = mmc_read(ptn, (void *)info_buf, blocksize);
2037 else
2038 ret = mmc_read((ptn + size - blocksize), (void *)info_buf, blocksize);
2039 if (ret)
Shashank Mittal162244e2011-08-08 19:01:25 -07002040 {
2041 dprintf(CRITICAL, "ERROR: Cannot read device info\n");
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002042 ASSERT(0);
Shashank Mittal162244e2011-08-08 19:01:25 -07002043 }
Shashank Mittal162244e2011-08-08 19:01:25 -07002044}
2045
2046void write_device_info_flash(device_info *dev)
2047{
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002048 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
Shashank Mittal162244e2011-08-08 19:01:25 -07002049 struct ptentry *ptn;
2050 struct ptable *ptable;
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002051 if(info == NULL)
2052 {
2053 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2054 ASSERT(0);
2055 }
2056 info_buf = info;
Shashank Mittal162244e2011-08-08 19:01:25 -07002057 ptable = flash_get_ptable();
2058 if (ptable == NULL)
2059 {
2060 dprintf(CRITICAL, "ERROR: Partition table not found\n");
2061 return;
2062 }
2063
2064 ptn = ptable_find(ptable, "devinfo");
2065 if (ptn == NULL)
2066 {
Smita Ghosh670c8b82015-05-07 09:30:03 -07002067 dprintf(CRITICAL, "ERROR: No devinfo partition found\n");
Shashank Mittal162244e2011-08-08 19:01:25 -07002068 return;
2069 }
2070
2071 memcpy(info, dev, sizeof(device_info));
2072
2073 if (flash_write(ptn, 0, (void *)info_buf, page_size))
2074 {
2075 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
2076 return;
2077 }
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002078 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002079}
2080
vijay kumarc65876c2015-04-24 13:29:16 +05302081static int read_allow_oem_unlock(device_info *dev)
2082{
vijay kumarc65876c2015-04-24 13:29:16 +05302083 unsigned offset;
2084 int index;
2085 unsigned long long ptn;
2086 unsigned long long ptn_size;
2087 unsigned blocksize = mmc_get_device_blocksize();
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002088 STACKBUF_DMA_ALIGN(buf, blocksize);
vijay kumarc65876c2015-04-24 13:29:16 +05302089
vijay kumarca2e6812015-07-08 20:28:25 +05302090 index = partition_get_index(frp_ptns[0]);
vijay kumarc65876c2015-04-24 13:29:16 +05302091 if (index == INVALID_PTN)
2092 {
vijay kumarca2e6812015-07-08 20:28:25 +05302093 index = partition_get_index(frp_ptns[1]);
2094 if (index == INVALID_PTN)
2095 {
2096 dprintf(CRITICAL, "Neither '%s' nor '%s' partition found\n", frp_ptns[0],frp_ptns[1]);
2097 return -1;
2098 }
vijay kumarc65876c2015-04-24 13:29:16 +05302099 }
2100
2101 ptn = partition_get_offset(index);
2102 ptn_size = partition_get_size(index);
2103 offset = ptn_size - blocksize;
2104
Mayank Grover48860402016-11-29 12:34:53 +05302105 /* Set Lun for partition */
2106 mmc_set_lun(partition_get_lun(index));
2107
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002108 if (mmc_read(ptn + offset, (void *)buf, blocksize))
vijay kumarc65876c2015-04-24 13:29:16 +05302109 {
2110 dprintf(CRITICAL, "Reading MMC failed\n");
2111 return -1;
2112 }
2113
2114 /*is_allow_unlock is a bool value stored at the LSB of last byte*/
2115 is_allow_unlock = buf[blocksize-1] & 0x01;
2116 return 0;
2117}
2118
2119static int write_allow_oem_unlock(bool allow_unlock)
2120{
vijay kumarc65876c2015-04-24 13:29:16 +05302121 unsigned offset;
vijay kumarc65876c2015-04-24 13:29:16 +05302122 int index;
2123 unsigned long long ptn;
2124 unsigned long long ptn_size;
2125 unsigned blocksize = mmc_get_device_blocksize();
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002126 STACKBUF_DMA_ALIGN(buf, blocksize);
vijay kumarc65876c2015-04-24 13:29:16 +05302127
vijay kumarca2e6812015-07-08 20:28:25 +05302128 index = partition_get_index(frp_ptns[0]);
vijay kumarc65876c2015-04-24 13:29:16 +05302129 if (index == INVALID_PTN)
2130 {
vijay kumarca2e6812015-07-08 20:28:25 +05302131 index = partition_get_index(frp_ptns[1]);
2132 if (index == INVALID_PTN)
2133 {
2134 dprintf(CRITICAL, "Neither '%s' nor '%s' partition found\n", frp_ptns[0],frp_ptns[1]);
2135 return -1;
2136 }
vijay kumarc65876c2015-04-24 13:29:16 +05302137 }
2138
2139 ptn = partition_get_offset(index);
2140 ptn_size = partition_get_size(index);
2141 offset = ptn_size - blocksize;
Mayank Grover48860402016-11-29 12:34:53 +05302142 mmc_set_lun(partition_get_lun(index));
vijay kumarc65876c2015-04-24 13:29:16 +05302143
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002144 if (mmc_read(ptn + offset, (void *)buf, blocksize))
vijay kumarc65876c2015-04-24 13:29:16 +05302145 {
2146 dprintf(CRITICAL, "Reading MMC failed\n");
2147 return -1;
2148 }
2149
2150 /*is_allow_unlock is a bool value stored at the LSB of last byte*/
2151 buf[blocksize-1] = allow_unlock;
2152 if (mmc_write(ptn + offset, blocksize, buf))
2153 {
2154 dprintf(CRITICAL, "Writing MMC failed\n");
2155 return -1;
2156 }
2157
2158 return 0;
2159}
2160
Shashank Mittal162244e2011-08-08 19:01:25 -07002161void read_device_info_flash(device_info *dev)
2162{
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002163 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
Shashank Mittal162244e2011-08-08 19:01:25 -07002164 struct ptentry *ptn;
2165 struct ptable *ptable;
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002166 if(info == NULL)
2167 {
2168 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2169 ASSERT(0);
2170 }
2171 info_buf = info;
Shashank Mittal162244e2011-08-08 19:01:25 -07002172 ptable = flash_get_ptable();
2173 if (ptable == NULL)
2174 {
2175 dprintf(CRITICAL, "ERROR: Partition table not found\n");
2176 return;
2177 }
2178
2179 ptn = ptable_find(ptable, "devinfo");
2180 if (ptn == NULL)
2181 {
Smita Ghosh670c8b82015-05-07 09:30:03 -07002182 dprintf(CRITICAL, "ERROR: No devinfo partition found\n");
Shashank Mittal162244e2011-08-08 19:01:25 -07002183 return;
2184 }
2185
2186 if (flash_read(ptn, 0, (void *)info_buf, page_size))
2187 {
2188 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
2189 return;
2190 }
2191
2192 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
2193 {
Shashank Mittal162244e2011-08-08 19:01:25 -07002194 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
2195 info->is_unlocked = 0;
Shashank Mittala0032282011-08-26 14:50:11 -07002196 info->is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002197 write_device_info_flash(info);
2198 }
2199 memcpy(dev, info, sizeof(device_info));
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002200 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002201}
2202
2203void write_device_info(device_info *dev)
2204{
2205 if(target_is_emmc_boot())
2206 {
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002207 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
2208 if(info == NULL)
2209 {
2210 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2211 ASSERT(0);
2212 }
2213 info_buf = info;
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002214 memcpy(info, dev, sizeof(struct device_info));
2215
2216#if USE_RPMB_FOR_DEVINFO
Mayank Grover889be1b2017-09-12 20:12:23 +05302217 if (VB_V2 == target_get_vb_version() &&
2218 is_secure_boot_enable()) {
2219 if((write_device_info_rpmb((void*) info, PAGE_SIZE)) < 0)
2220 ASSERT(0);
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002221 }
Channagoud Kadabic80cb492015-04-28 16:08:28 -07002222 else
2223 write_device_info_mmc(info);
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002224#else
2225 write_device_info_mmc(info);
2226#endif
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002227 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002228 }
2229 else
2230 {
2231 write_device_info_flash(dev);
2232 }
2233}
2234
2235void read_device_info(device_info *dev)
2236{
2237 if(target_is_emmc_boot())
2238 {
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002239 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
2240 if(info == NULL)
2241 {
2242 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2243 ASSERT(0);
2244 }
2245 info_buf = info;
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002246
2247#if USE_RPMB_FOR_DEVINFO
Mayank Grover889be1b2017-09-12 20:12:23 +05302248 if (VB_V2 == target_get_vb_version() &&
2249 is_secure_boot_enable()) {
2250 if((read_device_info_rpmb((void*) info, PAGE_SIZE)) < 0)
2251 ASSERT(0);
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002252 }
Channagoud Kadabic80cb492015-04-28 16:08:28 -07002253 else
2254 read_device_info_mmc(info);
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002255#else
2256 read_device_info_mmc(info);
2257#endif
2258
2259 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
2260 {
2261 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
lijuang511a2b52015-08-14 20:50:51 +08002262 if (is_secure_boot_enable()) {
Channagoud Kadabi05f78ba2015-07-06 11:58:14 -07002263 info->is_unlocked = 0;
Mayank Grover889be1b2017-09-12 20:12:23 +05302264#if VERIFIED_BOOT
2265 if (VB_V2 == target_get_vb_version())
2266 info->is_unlock_critical = 0;
Parth Dixitddbc7352015-10-18 03:13:31 +05302267#endif
lijuang511a2b52015-08-14 20:50:51 +08002268 } else {
Channagoud Kadabi2fda4092015-07-07 13:34:11 -07002269 info->is_unlocked = 1;
Mayank Grover889be1b2017-09-12 20:12:23 +05302270#if VERIFIED_BOOT
2271 if (VB_V2 == target_get_vb_version())
2272 info->is_unlock_critical = 1;
Parth Dixitddbc7352015-10-18 03:13:31 +05302273#endif
lijuang511a2b52015-08-14 20:50:51 +08002274 }
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002275 info->is_tampered = 0;
2276 info->charger_screen_enabled = 0;
Mayank Grover889be1b2017-09-12 20:12:23 +05302277#if VERIFIED_BOOT
2278 if (VB_V2 == target_get_vb_version())
2279 info->verity_mode = 1; //enforcing by default
Parth Dixitddbc7352015-10-18 03:13:31 +05302280#endif
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002281 write_device_info(info);
2282 }
2283 memcpy(dev, info, sizeof(device_info));
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002284 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002285 }
2286 else
2287 {
2288 read_device_info_flash(dev);
2289 }
2290}
2291
2292void reset_device_info()
2293{
2294 dprintf(ALWAYS, "reset_device_info called.");
Shashank Mittala0032282011-08-26 14:50:11 -07002295 device.is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002296 write_device_info(&device);
2297}
2298
2299void set_device_root()
2300{
2301 dprintf(ALWAYS, "set_device_root called.");
Shashank Mittala0032282011-08-26 14:50:11 -07002302 device.is_tampered = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -07002303 write_device_info(&device);
2304}
2305
lijuang4ece1e72015-08-14 21:02:36 +08002306/* set device unlock value
2307 * Must check FRP before call this function
2308 * Need to wipe data when unlock status changed
2309 * type 0: oem unlock
2310 * type 1: unlock critical
2311 * status 0: unlock as false
2312 * status 1: lock as true
2313 */
2314void set_device_unlock_value(int type, bool status)
lijuang21f12f52015-08-22 16:22:19 +08002315{
lijuang4ece1e72015-08-14 21:02:36 +08002316 if (type == UNLOCK)
2317 device.is_unlocked = status;
Mayank Grover889be1b2017-09-12 20:12:23 +05302318#if VERIFIED_BOOT
2319 else if (VB_V2 == target_get_vb_version() &&
2320 type == UNLOCK_CRITICAL)
2321 device.is_unlock_critical = status;
Parth Dixitddbc7352015-10-18 03:13:31 +05302322#endif
lijuang4ece1e72015-08-14 21:02:36 +08002323 write_device_info(&device);
2324}
2325
2326static void set_device_unlock(int type, bool status)
2327{
2328 int is_unlocked = -1;
2329 char response[MAX_RSP_SIZE];
2330
2331 /* check device unlock status if it is as expected */
2332 if (type == UNLOCK)
2333 is_unlocked = device.is_unlocked;
Mayank Grover889be1b2017-09-12 20:12:23 +05302334#if VERIFIED_BOOT
2335 if(VB_V2 == target_get_vb_version() &&
2336 type == UNLOCK_CRITICAL)
2337 {
2338 is_unlocked = device.is_unlock_critical;
2339 }
Parth Dixitddbc7352015-10-18 03:13:31 +05302340#endif
lijuang4ece1e72015-08-14 21:02:36 +08002341 if (is_unlocked == status) {
2342 snprintf(response, sizeof(response), "\tDevice already : %s", (status ? "unlocked!" : "locked!"));
2343 fastboot_info(response);
2344 fastboot_okay("");
2345 return;
2346 }
2347
2348 /* status is true, it means to unlock device */
2349 if (status) {
lijuang21f12f52015-08-22 16:22:19 +08002350 if(!is_allow_unlock) {
2351 fastboot_fail("oem unlock is not allowed");
2352 return;
2353 }
2354
lijuang4ece1e72015-08-14 21:02:36 +08002355#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08002356 display_unlock_menu(type);
lijuang4ece1e72015-08-14 21:02:36 +08002357 fastboot_okay("");
2358 return;
2359#else
2360 if (type == UNLOCK) {
2361 fastboot_fail("Need wipe userdata. Do 'fastboot oem unlock-go'");
2362 return;
2363 }
2364#endif
lijuang21f12f52015-08-22 16:22:19 +08002365 }
lijuang4ece1e72015-08-14 21:02:36 +08002366
2367 set_device_unlock_value(type, status);
2368
2369 /* wipe data */
2370 struct recovery_message msg;
Kishor PK60a68212017-05-08 16:55:57 +05302371 memset(&msg, 0, sizeof(msg));
lijuang4ece1e72015-08-14 21:02:36 +08002372 snprintf(msg.recovery, sizeof(msg.recovery), "recovery\n--wipe_data");
2373 write_misc(0, &msg, sizeof(msg));
2374
2375 fastboot_okay("");
2376 reboot_device(RECOVERY_MODE);
lijuang21f12f52015-08-22 16:22:19 +08002377}
2378
lijuang511a2b52015-08-14 20:50:51 +08002379static bool critical_flash_allowed(const char * entry)
2380{
2381 uint32_t i = 0;
2382 if (entry == NULL)
2383 return false;
2384
2385 for (i = 0; i < ARRAY_SIZE(critical_flash_allowed_ptn); i++) {
2386 if(!strcmp(entry, critical_flash_allowed_ptn[i]))
2387 return true;
2388 }
2389 return false;
Matthew Qin271927e2015-03-31 22:07:07 -04002390}
2391
2392#if DEVICE_TREE
Amol Jadicb524072012-08-09 16:40:18 -07002393int copy_dtb(uint8_t *boot_image_start, unsigned int scratch_offset)
2394{
2395 uint32 dt_image_offset = 0;
Amol Jadicb524072012-08-09 16:40:18 -07002396 uint32_t n;
Amol Jadicb524072012-08-09 16:40:18 -07002397 struct dt_table *table;
2398 struct dt_entry dt_entry;
2399 uint32_t dt_hdr_size;
2400 unsigned int compressed_size = 0;
2401 unsigned int dtb_size = 0;
2402 unsigned int out_avai_len = 0;
2403 unsigned char *out_addr = NULL;
2404 unsigned char *best_match_dt_addr = NULL;
2405 int rc;
2406
2407 struct boot_img_hdr *hdr = (struct boot_img_hdr *) (boot_image_start);
2408
Parth Dixit4097b622016-03-15 14:42:27 +05302409#ifndef OSVERSION_IN_BOOTIMAGE
2410 dt_size = hdr->dt_size;
2411#endif
2412
2413 if(dt_size != 0) {
Amol Jadicb524072012-08-09 16:40:18 -07002414 /* add kernel offset */
2415 dt_image_offset += page_size;
2416 n = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
2417 dt_image_offset += n;
2418
2419 /* add ramdisk offset */
2420 n = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
2421 dt_image_offset += n;
2422
2423 /* add second offset */
2424 if(hdr->second_size != 0) {
2425 n = ROUND_TO_PAGE(hdr->second_size, page_mask);
2426 dt_image_offset += n;
2427 }
2428
2429 /* offset now point to start of dt.img */
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07002430 table = (struct dt_table*)(boot_image_start + dt_image_offset);
Amol Jadicb524072012-08-09 16:40:18 -07002431
Deepa Dinamani19648b42013-09-05 17:05:55 -07002432 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
Amol Jadicb524072012-08-09 16:40:18 -07002433 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
2434 return -1;
2435 }
P.V. Phani Kumar82916762016-03-09 09:20:19 +05302436
2437 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
2438 goes beyound hdr->dt_size*/
Parth Dixit4097b622016-03-15 14:42:27 +05302439 if (dt_hdr_size > ROUND_TO_PAGE(dt_size,hdr->page_size)) {
P.V. Phani Kumar82916762016-03-09 09:20:19 +05302440 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
2441 return -1;
2442 }
2443
Joel Kingaa335dc2013-06-03 16:11:08 -07002444 /* Find index of device tree within device tree table */
2445 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
Amol Jadicb524072012-08-09 16:40:18 -07002446 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
2447 return -1;
2448 }
2449
Matthew Qin271927e2015-03-31 22:07:07 -04002450 best_match_dt_addr = (unsigned char *)boot_image_start + dt_image_offset + dt_entry.offset;
2451 if (is_gzip_package(best_match_dt_addr, dt_entry.size))
2452 {
2453 out_addr = (unsigned char *)target_get_scratch_address() + scratch_offset;
2454 out_avai_len = target_get_max_flash_size() - scratch_offset;
Matthew Qin0b15b322015-05-19 05:20:54 -04002455 dprintf(INFO, "decompressing dtb: start\n");
Matthew Qin271927e2015-03-31 22:07:07 -04002456 rc = decompress(best_match_dt_addr,
2457 dt_entry.size, out_addr, out_avai_len,
2458 &compressed_size, &dtb_size);
2459 if (rc)
2460 {
Matthew Qin0b15b322015-05-19 05:20:54 -04002461 dprintf(CRITICAL, "decompressing dtb failed!!!\n");
Matthew Qin271927e2015-03-31 22:07:07 -04002462 ASSERT(0);
2463 }
2464
Matthew Qin0b15b322015-05-19 05:20:54 -04002465 dprintf(INFO, "decompressing dtb: done\n");
Matthew Qin271927e2015-03-31 22:07:07 -04002466 best_match_dt_addr = out_addr;
2467 } else {
2468 dtb_size = dt_entry.size;
2469 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002470 /* Validate and Read device device tree in the "tags_add */
Matthew Qin271927e2015-03-31 22:07:07 -04002471 if (check_aboot_addr_range_overlap(hdr->tags_addr, dtb_size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002472 {
2473 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
2474 return -1;
2475 }
2476
Amol Jadicb524072012-08-09 16:40:18 -07002477 /* Read device device tree in the "tags_add */
Matthew Qin271927e2015-03-31 22:07:07 -04002478 memmove((void*) hdr->tags_addr, (void *)best_match_dt_addr, dtb_size);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002479 } else
2480 return -1;
Amol Jadicb524072012-08-09 16:40:18 -07002481
2482 /* Everything looks fine. Return success. */
2483 return 0;
2484}
2485#endif
2486
Brian Swetland9c4c0752009-01-25 16:23:50 -08002487void cmd_boot(const char *arg, void *data, unsigned sz)
2488{
Amit Blay8a510302015-08-17 09:20:01 +03002489#ifdef MDTP_SUPPORT
2490 static bool is_mdtp_activated = 0;
2491#endif /* MDTP_SUPPORT */
Brian Swetland9c4c0752009-01-25 16:23:50 -08002492 unsigned kernel_actual;
2493 unsigned ramdisk_actual;
Kishor PKd8ddcad2017-07-27 13:53:57 +05302494 unsigned second_actual;
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002495 uint32_t image_actual;
2496 uint32_t dt_actual = 0;
P.V. Phani Kumareecfd822016-03-09 20:09:03 +05302497 uint32_t sig_actual = 0;
Kishor PK5134b332017-05-09 17:50:08 +05302498 uint32_t sig_size = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002499 struct boot_img_hdr *hdr = NULL;
2500 struct kernel64_hdr *kptr = NULL;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002501 char *ptr = ((char*) data);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002502 int ret = 0;
2503 uint8_t dtb_copied = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002504 unsigned int out_len = 0;
2505 unsigned int out_avai_len = 0;
2506 unsigned char *out_addr = NULL;
2507 uint32_t dtb_offset = 0;
2508 unsigned char *kernel_start_addr = NULL;
2509 unsigned int kernel_size = 0;
Matthew Qin271927e2015-03-31 22:07:07 -04002510 unsigned int scratch_offset = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002511
lijuang2008ff22016-03-07 17:56:27 +08002512#if FBCON_DISPLAY_MSG
2513 /* Exit keys' detection thread firstly */
2514 exit_menu_keys_detection();
2515#endif
2516
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002517#if VERIFIED_BOOT
Channagoud Kadabi6d5375e2015-06-23 17:15:42 -07002518 if(target_build_variant_user() && !device.is_unlocked)
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002519 {
2520 fastboot_fail("unlock device to use this command");
lijuang2008ff22016-03-07 17:56:27 +08002521 goto boot_failed;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002522 }
2523#endif
2524
Brian Swetland9c4c0752009-01-25 16:23:50 -08002525 if (sz < sizeof(hdr)) {
2526 fastboot_fail("invalid bootimage header");
lijuang2008ff22016-03-07 17:56:27 +08002527 goto boot_failed;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002528 }
2529
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002530 hdr = (struct boot_img_hdr *)data;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002531
2532 /* ensure commandline is terminated */
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002533 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002534
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002535 if(target_is_emmc_boot() && hdr->page_size) {
2536 page_size = hdr->page_size;
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07002537 page_mask = page_size - 1;
2538 }
2539
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002540 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
2541 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05302542 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002543#if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05302544#ifndef OSVERSION_IN_BOOTIMAGE
2545 dt_size = hdr->dt_size;
2546#endif
2547 dt_actual = ROUND_TO_PAGE(dt_size, page_mask);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002548#endif
2549
2550 image_actual = ADD_OF(page_size, kernel_actual);
2551 image_actual = ADD_OF(image_actual, ramdisk_actual);
Kishor PKd8ddcad2017-07-27 13:53:57 +05302552 image_actual = ADD_OF(image_actual, second_actual);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002553 image_actual = ADD_OF(image_actual, dt_actual);
2554
Kishor PK5134b332017-05-09 17:50:08 +05302555 /* Checking to prevent oob access in read_der_message_length */
2556 if (image_actual > sz) {
2557 fastboot_fail("bootimage header fields are invalid");
2558 goto boot_failed;
2559 }
2560 sig_size = sz - image_actual;
2561
P.V. Phani Kumareecfd822016-03-09 20:09:03 +05302562 if (target_use_signed_kernel() && (!device.is_unlocked)) {
2563 /* Calculate the signature length from boot image */
2564 sig_actual = read_der_message_length(
Kishor PK5134b332017-05-09 17:50:08 +05302565 (unsigned char*)(data + image_actual), sig_size);
Channagoud Kadabi3d839012014-06-26 14:26:39 -07002566 image_actual = ADD_OF(image_actual, sig_actual);
2567
Kishor PK5134b332017-05-09 17:50:08 +05302568 if (image_actual > sz) {
2569 fastboot_fail("bootimage header fields are invalid");
2570 goto boot_failed;
2571 }
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002572 }
2573
Sridhar Parasuram361e4cd2015-09-24 11:19:19 -07002574 // Initialize boot state before trying to verify boot.img
2575#if VERIFIED_BOOT
Channagoud Kadabi699466e2015-11-03 12:37:42 -08002576 boot_verifier_init();
Mayank Groverb337e932017-01-18 20:00:40 +05302577#endif
Channagoud Kadabibf6ce7d2015-09-17 13:25:35 -07002578 /* Handle overflow if the input image size is greater than
2579 * boot image buffer can hold
2580 */
2581 if ((target_get_max_flash_size() - (image_actual - sig_actual)) < page_size)
2582 {
2583 fastboot_fail("booimage: size is greater than boot image buffer can hold");
lijuang2008ff22016-03-07 17:56:27 +08002584 goto boot_failed;
Channagoud Kadabibf6ce7d2015-09-17 13:25:35 -07002585 }
Sridhar Parasuram361e4cd2015-09-24 11:19:19 -07002586
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002587 /* Verify the boot image
2588 * device & page_size are initialized in aboot_init
2589 */
Sridhar Parasuram7ae9fbc2015-09-17 09:56:30 -07002590 if (target_use_signed_kernel() && (!device.is_unlocked)) {
Channagoud Kadabi3d839012014-06-26 14:26:39 -07002591 /* Pass size excluding signature size, otherwise we would try to
2592 * access signature beyond its length
2593 */
2594 verify_signed_bootimg((uint32_t)data, (image_actual - sig_actual));
Sridhar Parasuram7ae9fbc2015-09-17 09:56:30 -07002595 }
Amit Blay4aa292f2015-04-28 21:55:59 +03002596#ifdef MDTP_SUPPORT
2597 else
2598 {
Shay Nachmani062aa3f2015-05-17 17:28:44 +03002599 /* fastboot boot is not allowed when MDTP is activated */
Amit Blay4aa292f2015-04-28 21:55:59 +03002600 mdtp_ext_partition_verification_t ext_partition;
Amit Blay8a510302015-08-17 09:20:01 +03002601
2602 if (!is_mdtp_activated) {
2603 ext_partition.partition = MDTP_PARTITION_NONE;
2604 mdtp_fwlock_verify_lock(&ext_partition);
2605 }
Amit Blay4aa292f2015-04-28 21:55:59 +03002606 }
Shay Nachmani062aa3f2015-05-17 17:28:44 +03002607
Amir Kotzer7c768c02016-04-13 09:08:05 +03002608 /* If mdtp state cannot be validate, block fastboot boot*/
2609 if(mdtp_activated(&is_mdtp_activated)){
2610 dprintf(CRITICAL, "mdtp_activated cannot validate state.\n");
2611 dprintf(CRITICAL, "Can not proceed with fastboot boot command.\n");
2612 goto boot_failed;
2613 }
Shay Nachmani062aa3f2015-05-17 17:28:44 +03002614 if(is_mdtp_activated){
2615 dprintf(CRITICAL, "fastboot boot command is not available.\n");
lijuang2008ff22016-03-07 17:56:27 +08002616 goto boot_failed;
Shay Nachmani062aa3f2015-05-17 17:28:44 +03002617 }
Amit Blay4aa292f2015-04-28 21:55:59 +03002618#endif /* MDTP_SUPPORT */
2619
Sridhar Parasuram361e4cd2015-09-24 11:19:19 -07002620#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +05302621 if (VB_V2 == target_get_vb_version())
2622 {
2623 /* set boot and system versions. */
2624 set_os_version((unsigned char *)data);
2625 // send root of trust
2626 if(!send_rot_command((uint32_t)device.is_unlocked))
2627 ASSERT(0);
2628 }
Parth Dixitbc9b6492015-10-18 00:41:38 +05302629#endif
Channagoud Kadabia22144f2013-03-20 11:49:01 -07002630 /*
Matthew Qinbb7923d2015-02-09 10:56:09 +08002631 * Check if the kernel image is a gzip package. If yes, need to decompress it.
2632 * If not, continue booting.
2633 */
2634 if (is_gzip_package((unsigned char *)(data + page_size), hdr->kernel_size))
2635 {
2636 out_addr = (unsigned char *)target_get_scratch_address();
2637 out_addr = (unsigned char *)(out_addr + image_actual + page_size);
2638 out_avai_len = target_get_max_flash_size() - image_actual - page_size;
Matthew Qin0b15b322015-05-19 05:20:54 -04002639 dprintf(INFO, "decompressing kernel image: start\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08002640 ret = decompress((unsigned char *)(ptr + page_size),
2641 hdr->kernel_size, out_addr, out_avai_len,
2642 &dtb_offset, &out_len);
2643 if (ret)
2644 {
Matthew Qin0b15b322015-05-19 05:20:54 -04002645 dprintf(CRITICAL, "decompressing image failed!!!\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08002646 ASSERT(0);
2647 }
2648
Matthew Qin0b15b322015-05-19 05:20:54 -04002649 dprintf(INFO, "decompressing kernel image: done\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08002650 kptr = (struct kernel64_hdr *)out_addr;
2651 kernel_start_addr = out_addr;
2652 kernel_size = out_len;
2653 } else {
2654 kptr = (struct kernel64_hdr*)((char *)data + page_size);
2655 kernel_start_addr = (unsigned char *)((char *)data + page_size);
2656 kernel_size = hdr->kernel_size;
2657 }
2658
2659 /*
Channagoud Kadabia22144f2013-03-20 11:49:01 -07002660 * Update the kernel/ramdisk/tags address if the boot image header
2661 * has default values, these default values come from mkbootimg when
2662 * the boot image is flashed using fastboot flash:raw
2663 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08002664 update_ker_tags_rdisk_addr(hdr, IS_ARM64(kptr));
Dima Zavin3cadfff2013-03-21 14:30:48 -07002665
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002666 /* Get virtual addresses since the hdr saves physical addresses. */
2667 hdr->kernel_addr = VA(hdr->kernel_addr);
2668 hdr->ramdisk_addr = VA(hdr->ramdisk_addr);
2669 hdr->tags_addr = VA(hdr->tags_addr);
Brian Swetland9c4c0752009-01-25 16:23:50 -08002670
Matthew Qinbb7923d2015-02-09 10:56:09 +08002671 kernel_size = ROUND_TO_PAGE(kernel_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002672 /* Check if the addresses in the header are valid. */
Matthew Qinbb7923d2015-02-09 10:56:09 +08002673 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_size) ||
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002674 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual))
2675 {
2676 dprintf(CRITICAL, "kernel/ramdisk addresses overlap with aboot addresses.\n");
lijuang2008ff22016-03-07 17:56:27 +08002677 goto boot_failed;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002678 }
2679
Amol Jadicb524072012-08-09 16:40:18 -07002680#if DEVICE_TREE
Matthew Qin271927e2015-03-31 22:07:07 -04002681 scratch_offset = image_actual + page_size + out_len;
Amol Jadicb524072012-08-09 16:40:18 -07002682 /* find correct dtb and copy it to right location */
Matthew Qin271927e2015-03-31 22:07:07 -04002683 ret = copy_dtb(data, scratch_offset);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002684
2685 dtb_copied = !ret ? 1 : 0;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002686#else
2687 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE))
2688 {
2689 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
lijuang2008ff22016-03-07 17:56:27 +08002690 goto boot_failed;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002691 }
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002692#endif
2693
2694 /* Load ramdisk & kernel */
2695 memmove((void*) hdr->ramdisk_addr, ptr + page_size + kernel_actual, hdr->ramdisk_size);
Matthew Qinbb7923d2015-02-09 10:56:09 +08002696 memmove((void*) hdr->kernel_addr, (char*) (kernel_start_addr), kernel_size);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002697
2698#if DEVICE_TREE
Matthew Qinbb7923d2015-02-09 10:56:09 +08002699 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual))
2700 {
2701 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
lijuang2008ff22016-03-07 17:56:27 +08002702 goto boot_failed;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002703 }
2704
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002705 /*
2706 * If dtb is not found look for appended DTB in the kernel.
2707 * If appended dev tree is found, update the atags with
2708 * memory address to the DTB appended location on RAM.
2709 * Else update with the atags address in the kernel header
2710 */
2711 if (!dtb_copied) {
2712 void *dtb;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002713 dtb = dev_tree_appended((void*)(ptr + page_size),
2714 hdr->kernel_size, dtb_offset,
Dima Zavine63e5572013-05-03 12:23:06 -07002715 (void *)hdr->tags_addr);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002716 if (!dtb) {
2717 fastboot_fail("dtb not found");
lijuang2008ff22016-03-07 17:56:27 +08002718 goto boot_failed;
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002719 }
Amol Jadicb524072012-08-09 16:40:18 -07002720 }
2721#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -08002722
2723 fastboot_okay("");
Amol Jadi7c4316c2013-10-07 14:19:26 -07002724 fastboot_stop();
Brian Swetland9c4c0752009-01-25 16:23:50 -08002725
Dima Zavin77e41f32013-03-06 16:10:43 -08002726 boot_linux((void*) hdr->kernel_addr, (void*) hdr->tags_addr,
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002727 (const char*) hdr->cmdline, board_machtype(),
2728 (void*) hdr->ramdisk_addr, hdr->ramdisk_size);
lijuang2008ff22016-03-07 17:56:27 +08002729
2730 /* fastboot already stop, it's no need to show fastboot menu */
2731 return;
2732boot_failed:
2733#if FBCON_DISPLAY_MSG
2734 /* revert to fastboot menu if boot failed */
2735 display_fastboot_menu();
2736#endif
2737 return;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002738}
2739
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002740void cmd_erase_nand(const char *arg, void *data, unsigned sz)
Dima Zavin214cc642009-01-26 11:16:21 -08002741{
2742 struct ptentry *ptn;
2743 struct ptable *ptable;
2744
2745 ptable = flash_get_ptable();
2746 if (ptable == NULL) {
2747 fastboot_fail("partition table doesn't exist");
2748 return;
2749 }
2750
2751 ptn = ptable_find(ptable, arg);
2752 if (ptn == NULL) {
2753 fastboot_fail("unknown partition name");
2754 return;
2755 }
2756
2757 if (flash_erase(ptn)) {
2758 fastboot_fail("failed to erase partition");
2759 return;
2760 }
2761 fastboot_okay("");
2762}
2763
Bikas Gurungd48bd242010-09-04 19:54:32 -07002764
2765void cmd_erase_mmc(const char *arg, void *data, unsigned sz)
2766{
2767 unsigned long long ptn = 0;
Oliver Wangcee448d2013-10-22 18:40:13 +08002768 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07002769 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002770 uint8_t lun = 0;
Vijay Kumar Pendoti0b21f462016-05-02 17:09:18 +05302771 char *footer = NULL;
Bikas Gurungd48bd242010-09-04 19:54:32 -07002772
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002773#if VERIFIED_BOOT
2774 if(!strcmp(arg, KEYSTORE_PTN_NAME))
2775 {
2776 if(!device.is_unlocked)
2777 {
2778 fastboot_fail("unlock device to erase keystore");
2779 return;
2780 }
2781 }
2782#endif
2783
Kinson Chikf1a43512011-07-14 11:28:39 -07002784 index = partition_get_index(arg);
2785 ptn = partition_get_offset(index);
Oliver Wangcee448d2013-10-22 18:40:13 +08002786 size = partition_get_size(index);
Neeti Desaica8c9602011-10-06 11:40:00 -07002787
Kinson Chikf1a43512011-07-14 11:28:39 -07002788 if(ptn == 0) {
Neeti Desaica8c9602011-10-06 11:40:00 -07002789 fastboot_fail("Partition table doesn't exist\n");
Bikas Gurungd48bd242010-09-04 19:54:32 -07002790 return;
2791 }
Kun Liang2f1601a2013-08-12 16:29:54 +08002792
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002793 lun = partition_get_lun(index);
2794 mmc_set_lun(lun);
2795
Sridhar Parasuramd7957122015-02-27 11:33:40 -08002796 if (platform_boot_dev_isemmc())
2797 {
2798 if (mmc_erase_card(ptn, size)) {
2799 fastboot_fail("failed to erase partition\n");
2800 return;
2801 }
2802 } else {
2803 BUF_DMA_ALIGN(out, DEFAULT_ERASE_SIZE);
2804 size = partition_get_size(index);
2805 if (size > DEFAULT_ERASE_SIZE)
2806 size = DEFAULT_ERASE_SIZE;
Kun Liang2f1601a2013-08-12 16:29:54 +08002807
Sridhar Parasuramd7957122015-02-27 11:33:40 -08002808 /* Simple inefficient version of erase. Just writing
2809 0 in first several blocks */
2810 if (mmc_write(ptn , size, (unsigned int *)out)) {
2811 fastboot_fail("failed to erase partition");
2812 return;
2813 }
Vijay Kumar Pendoti0b21f462016-05-02 17:09:18 +05302814 /*Erase FDE metadata at the userdata footer*/
2815 if(!(strncmp(arg, "userdata", 8)))
2816 {
2817 footer = memalign(CACHE_LINE, FOOTER_SIZE);
2818 memset((void *)footer, 0, FOOTER_SIZE);
2819
2820 size = partition_get_size(index);
2821
2822 if (mmc_write((ptn + size) - FOOTER_SIZE , FOOTER_SIZE, (unsigned int *)footer)) {
2823 fastboot_fail("failed to erase userdata footer");
2824 free(footer);
2825 return;
2826 }
2827 free(footer);
2828 }
Bikas Gurungd48bd242010-09-04 19:54:32 -07002829 }
Sridhar Parasuram32b30662015-07-10 13:33:22 -07002830#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +05302831 if (VB_V2 == target_get_vb_version() &&
2832 !(strncmp(arg, "userdata", 8)) &&
2833 send_delete_keys_to_tz())
Sridhar Parasuram32b30662015-07-10 13:33:22 -07002834 ASSERT(0);
2835#endif
Bikas Gurungd48bd242010-09-04 19:54:32 -07002836 fastboot_okay("");
2837}
2838
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002839void cmd_erase(const char *arg, void *data, unsigned sz)
2840{
Channagoud Kadabice3cf422015-04-17 16:02:30 -07002841#if VERIFIED_BOOT
Channagoud Kadabi35297672015-06-13 11:09:49 -07002842 if (target_build_variant_user())
Channagoud Kadabice3cf422015-04-17 16:02:30 -07002843 {
Sridhar Parasuramc32d07d2015-07-12 10:57:48 -07002844 if(!device.is_unlocked)
Channagoud Kadabice3cf422015-04-17 16:02:30 -07002845 {
Channagoud Kadabi35297672015-06-13 11:09:49 -07002846 fastboot_fail("device is locked. Cannot erase");
Channagoud Kadabice3cf422015-04-17 16:02:30 -07002847 return;
2848 }
2849 }
2850#endif
2851
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002852 if(target_is_emmc_boot())
2853 cmd_erase_mmc(arg, data, sz);
2854 else
2855 cmd_erase_nand(arg, data, sz);
2856}
Bikas Gurungd48bd242010-09-04 19:54:32 -07002857
Ajay Dudani5c761132011-04-07 20:19:04 -07002858void cmd_flash_mmc_img(const char *arg, void *data, unsigned sz)
Shashank Mittal23b8f422010-04-16 19:27:21 -07002859{
2860 unsigned long long ptn = 0;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07002861 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07002862 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002863 char *token = NULL;
2864 char *pname = NULL;
Sridhar Parasuramefc133f2015-05-04 13:35:41 -07002865 char *sp;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002866 uint8_t lun = 0;
2867 bool lun_set = false;
Mayank Grover351a75e2017-05-30 20:06:08 +05302868 int current_active_slot = INVALID;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07002869
Sridhar Parasuramefc133f2015-05-04 13:35:41 -07002870 token = strtok_r((char *)arg, ":", &sp);
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002871 pname = token;
Sridhar Parasuramefc133f2015-05-04 13:35:41 -07002872 token = strtok_r(NULL, ":", &sp);
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002873 if(token)
2874 {
2875 lun = atoi(token);
2876 mmc_set_lun(lun);
2877 lun_set = true;
2878 }
2879
Mao Jinlong226f33a2014-07-04 17:24:10 +08002880 if (pname)
Greg Grisco6e754772011-06-23 12:19:39 -07002881 {
Channagoud Kadabiad259832015-05-29 11:14:17 -07002882 if (!strncmp(pname, "frp-unlock", strlen("frp-unlock")))
2883 {
2884 if (!aboot_frp_unlock(pname, data, sz))
2885 {
2886 fastboot_info("FRP unlock successful");
2887 fastboot_okay("");
2888 }
2889 else
2890 fastboot_fail("Secret key is invalid, please update the bootloader with secret key");
2891
2892 return;
2893 }
2894
Mao Jinlong226f33a2014-07-04 17:24:10 +08002895 if (!strcmp(pname, "partition"))
2896 {
2897 dprintf(INFO, "Attempt to write partition image.\n");
2898 if (write_partition(sz, (unsigned char *) data)) {
2899 fastboot_fail("failed to write partition");
Greg Grisco6e754772011-06-23 12:19:39 -07002900 return;
2901 }
Mayank Grover351a75e2017-05-30 20:06:08 +05302902
2903 /* Rescan partition table to ensure we have multislot support*/
2904 if (partition_scan_for_multislot())
2905 {
2906 current_active_slot = partition_find_active_slot();
2907 dprintf(INFO, "Multislot supported: Slot %s active",
2908 (SUFFIX_SLOT(current_active_slot)));
2909 }
2910 partition_mark_active_slot(current_active_slot);
Greg Grisco6e754772011-06-23 12:19:39 -07002911 }
Mao Jinlong226f33a2014-07-04 17:24:10 +08002912 else
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002913 {
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002914#if VERIFIED_BOOT
2915 if(!strcmp(pname, KEYSTORE_PTN_NAME))
2916 {
2917 if(!device.is_unlocked)
2918 {
2919 fastboot_fail("unlock device to flash keystore");
2920 return;
2921 }
Gaurav Nebhwanic7313cc2015-12-15 22:25:04 +05302922 if(!boot_verify_validate_keystore((unsigned char *)data,sz))
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002923 {
2924 fastboot_fail("image is not a keystore file");
2925 return;
2926 }
2927 }
2928#endif
Mao Jinlong226f33a2014-07-04 17:24:10 +08002929 index = partition_get_index(pname);
2930 ptn = partition_get_offset(index);
2931 if(ptn == 0) {
2932 fastboot_fail("partition table doesn't exist");
2933 return;
2934 }
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002935
Mayank Grover351a75e2017-05-30 20:06:08 +05302936 if (!strncmp(pname, "boot", strlen("boot"))
2937 || !strcmp(pname, "recovery"))
2938 {
Mao Jinlong226f33a2014-07-04 17:24:10 +08002939 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
2940 fastboot_fail("image is not a boot image");
2941 return;
2942 }
Mayank Grover351a75e2017-05-30 20:06:08 +05302943
2944 /* Reset multislot_partition attributes in case of flashing boot */
2945 if (partition_multislot_is_supported())
2946 {
2947 partition_reset_attributes(index);
2948 }
Mao Jinlong226f33a2014-07-04 17:24:10 +08002949 }
2950
2951 if(!lun_set)
2952 {
2953 lun = partition_get_lun(index);
2954 mmc_set_lun(lun);
2955 }
2956
2957 size = partition_get_size(index);
Gaurav Nebhwani4d2389c2016-03-17 21:10:05 +05302958 if (ROUND_TO_PAGE(sz, mmc_blocksize_mask) > size) {
Mao Jinlong226f33a2014-07-04 17:24:10 +08002959 fastboot_fail("size too large");
2960 return;
2961 }
2962 else if (mmc_write(ptn , sz, (unsigned int *)data)) {
2963 fastboot_fail("flash write failure");
2964 return;
2965 }
Greg Grisco6e754772011-06-23 12:19:39 -07002966 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07002967 }
2968 fastboot_okay("");
2969 return;
2970}
2971
Ajay Dudanide984792015-03-02 09:57:41 -08002972void cmd_flash_meta_img(const char *arg, void *data, unsigned sz)
2973{
2974 int i, images;
2975 meta_header_t *meta_header;
2976 img_header_entry_t *img_header_entry;
Parth Dixit3e2d3032016-03-04 17:11:52 +05302977 /*End of the image address*/
2978 uintptr_t data_end;
2979
2980 if( (UINT_MAX - sz) > (uintptr_t)data )
2981 data_end = (uintptr_t)data + sz;
2982 else
2983 {
2984 fastboot_fail("Cannot flash: image header corrupt");
2985 return;
2986 }
2987
2988 if( data_end < ((uintptr_t)data + sizeof(meta_header_t)))
2989 {
2990 fastboot_fail("Cannot flash: image header corrupt");
2991 return;
2992 }
Ajay Dudanide984792015-03-02 09:57:41 -08002993
lijuang8ee21882016-04-19 16:57:11 +08002994 /* If device is locked:
2995 * Forbid to flash image to avoid the device to bypass the image
2996 * which with "any" name other than bootloader. Because it maybe
2997 * a meta package of all partitions.
2998 */
2999#if VERIFIED_BOOT
3000 if (target_build_variant_user()) {
3001 if (!device.is_unlocked) {
3002 fastboot_fail("Device is locked, meta image flashing is not allowed");
3003 return;
3004 }
Mayank Grover889be1b2017-09-12 20:12:23 +05303005
3006 if (VB_V2 == target_get_vb_version() &&
3007 !device.is_unlock_critical)
3008 {
lijuang8ee21882016-04-19 16:57:11 +08003009 fastboot_fail("Device is critical locked, Meta image flashing is not allowed");
3010 return;
3011 }
lijuang8ee21882016-04-19 16:57:11 +08003012 }
3013#endif
3014
Ajay Dudanide984792015-03-02 09:57:41 -08003015 meta_header = (meta_header_t*) data;
Parth Dixit3e2d3032016-03-04 17:11:52 +05303016 if( data_end < ((uintptr_t)data + meta_header->img_hdr_sz))
3017 {
3018 fastboot_fail("Cannot flash: image header corrupt");
3019 return;
3020 }
Ajay Dudanide984792015-03-02 09:57:41 -08003021 img_header_entry = (img_header_entry_t*) (data+sizeof(meta_header_t));
3022
3023 images = meta_header->img_hdr_sz / sizeof(img_header_entry_t);
3024
3025 for (i=0; i<images; i++) {
3026
3027 if((img_header_entry[i].ptn_name == NULL) ||
3028 (img_header_entry[i].start_offset == 0) ||
3029 (img_header_entry[i].size == 0))
3030 break;
Kishor PK49831502017-04-21 17:55:43 +05303031 if ((UINT_MAX - img_header_entry[i].start_offset) < (uintptr_t)data) {
3032 fastboot_fail("Integer overflow detected in start_offset of img");
3033 break;
3034 }
3035 else if ((UINT_MAX - (img_header_entry[i].start_offset + (uintptr_t)data)) < img_header_entry[i].size) {
3036 fastboot_fail("Integer overflow detected in size of img");
3037 break;
3038 }
Parth Dixit3e2d3032016-03-04 17:11:52 +05303039 if( data_end < ((uintptr_t)data + img_header_entry[i].start_offset
3040 + img_header_entry[i].size) )
3041 {
3042 fastboot_fail("Cannot flash: image size mismatch");
3043 break;
3044 }
3045
Ajay Dudanide984792015-03-02 09:57:41 -08003046 cmd_flash_mmc_img(img_header_entry[i].ptn_name,
3047 (void *) data + img_header_entry[i].start_offset,
3048 img_header_entry[i].size);
3049 }
3050
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -08003051 if (!strncmp(arg, "bootloader", strlen("bootloader")))
3052 {
3053 strlcpy(device.bootloader_version, TARGET(BOARD), MAX_VERSION_LEN);
3054 strlcat(device.bootloader_version, "-", MAX_VERSION_LEN);
3055 strlcat(device.bootloader_version, meta_header->img_version, MAX_VERSION_LEN);
3056 }
3057 else
3058 {
3059 strlcpy(device.radio_version, TARGET(BOARD), MAX_VERSION_LEN);
3060 strlcat(device.radio_version, "-", MAX_VERSION_LEN);
3061 strlcat(device.radio_version, meta_header->img_version, MAX_VERSION_LEN);
3062 }
3063
3064 write_device_info(&device);
Ajay Dudanide984792015-03-02 09:57:41 -08003065 fastboot_okay("");
3066 return;
3067}
3068
Ajay Dudani5c761132011-04-07 20:19:04 -07003069void cmd_flash_mmc_sparse_img(const char *arg, void *data, unsigned sz)
3070{
3071 unsigned int chunk;
wufeng.jiang813dc352015-06-02 23:02:46 -04003072 uint64_t chunk_data_sz;
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003073 uint32_t *fill_buf = NULL;
3074 uint32_t fill_val;
Mayank Grover4f50bba2017-07-19 18:17:08 +05303075 uint32_t blk_sz_actual = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07003076 sparse_header_t *sparse_header;
3077 chunk_header_t *chunk_header;
Ajay Dudaniab18f022011-05-12 14:39:22 -07003078 uint32_t total_blocks = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07003079 unsigned long long ptn = 0;
Channagoud Kadabi65b91002011-10-11 17:34:33 +05303080 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07003081 int index = INVALID_PTN;
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05303082 uint32_t i;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003083 uint8_t lun = 0;
vijay kumar800255e2015-04-24 20:26:19 +05303084 /*End of the sparse image address*/
Parth Dixit64b1a482016-03-07 16:31:26 +05303085 uintptr_t data_end = (uintptr_t)data + sz;
Ajay Dudani5c761132011-04-07 20:19:04 -07003086
Kinson Chikf1a43512011-07-14 11:28:39 -07003087 index = partition_get_index(arg);
3088 ptn = partition_get_offset(index);
3089 if(ptn == 0) {
Ajay Dudani5c761132011-04-07 20:19:04 -07003090 fastboot_fail("partition table doesn't exist");
3091 return;
3092 }
3093
Channagoud Kadabi65b91002011-10-11 17:34:33 +05303094 size = partition_get_size(index);
Channagoud Kadabi65b91002011-10-11 17:34:33 +05303095
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003096 lun = partition_get_lun(index);
3097 mmc_set_lun(lun);
3098
vijay kumar800255e2015-04-24 20:26:19 +05303099 if (sz < sizeof(sparse_header_t)) {
3100 fastboot_fail("size too low");
3101 return;
3102 }
3103
Ajay Dudani5c761132011-04-07 20:19:04 -07003104 /* Read and skip over sparse image header */
3105 sparse_header = (sparse_header_t *) data;
vijay kumar800255e2015-04-24 20:26:19 +05303106
Mayank Grover48bd9bb2017-07-19 12:04:16 +05303107 if (!sparse_header->blk_sz || (sparse_header->blk_sz % 4)){
3108 fastboot_fail("Invalid block size\n");
3109 return;
3110 }
3111
vijay kumar1321f342015-03-27 12:13:42 +05303112 if (((uint64_t)sparse_header->total_blks * (uint64_t)sparse_header->blk_sz) > size) {
Ajay Dudani876b3282012-12-21 14:12:17 -08003113 fastboot_fail("size too large");
3114 return;
3115 }
3116
vijay kumarde4fcf62015-04-23 13:05:49 +05303117 data += sizeof(sparse_header_t);
vijay kumar800255e2015-04-24 20:26:19 +05303118
Parth Dixit64b1a482016-03-07 16:31:26 +05303119 if (data_end < (uintptr_t)data) {
vijay kumar800255e2015-04-24 20:26:19 +05303120 fastboot_fail("buffer overreads occured due to invalid sparse header");
3121 return;
3122 }
3123
vijay kumarde4fcf62015-04-23 13:05:49 +05303124 if(sparse_header->file_hdr_sz != sizeof(sparse_header_t))
Ajay Dudani5c761132011-04-07 20:19:04 -07003125 {
vijay kumarde4fcf62015-04-23 13:05:49 +05303126 fastboot_fail("sparse header size mismatch");
3127 return;
Ajay Dudani5c761132011-04-07 20:19:04 -07003128 }
3129
Ajay Dudanib06c05f2011-05-12 14:46:10 -07003130 dprintf (SPEW, "=== Sparse Image Header ===\n");
3131 dprintf (SPEW, "magic: 0x%x\n", sparse_header->magic);
3132 dprintf (SPEW, "major_version: 0x%x\n", sparse_header->major_version);
3133 dprintf (SPEW, "minor_version: 0x%x\n", sparse_header->minor_version);
3134 dprintf (SPEW, "file_hdr_sz: %d\n", sparse_header->file_hdr_sz);
3135 dprintf (SPEW, "chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz);
3136 dprintf (SPEW, "blk_sz: %d\n", sparse_header->blk_sz);
3137 dprintf (SPEW, "total_blks: %d\n", sparse_header->total_blks);
3138 dprintf (SPEW, "total_chunks: %d\n", sparse_header->total_chunks);
Ajay Dudani5c761132011-04-07 20:19:04 -07003139
3140 /* Start processing chunks */
3141 for (chunk=0; chunk<sparse_header->total_chunks; chunk++)
3142 {
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303143 /* Make sure the total image size does not exceed the partition size */
3144 if(((uint64_t)total_blocks * (uint64_t)sparse_header->blk_sz) >= size) {
3145 fastboot_fail("size too large");
3146 return;
3147 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003148 /* Read and skip over chunk header */
3149 chunk_header = (chunk_header_t *) data;
3150 data += sizeof(chunk_header_t);
3151
Parth Dixit64b1a482016-03-07 16:31:26 +05303152 if (data_end < (uintptr_t)data) {
vijay kumar800255e2015-04-24 20:26:19 +05303153 fastboot_fail("buffer overreads occured due to invalid sparse header");
3154 return;
3155 }
3156
Ajay Dudani5c761132011-04-07 20:19:04 -07003157 dprintf (SPEW, "=== Chunk Header ===\n");
3158 dprintf (SPEW, "chunk_type: 0x%x\n", chunk_header->chunk_type);
3159 dprintf (SPEW, "chunk_data_sz: 0x%x\n", chunk_header->chunk_sz);
3160 dprintf (SPEW, "total_size: 0x%x\n", chunk_header->total_sz);
3161
vijay kumar800255e2015-04-24 20:26:19 +05303162 if(sparse_header->chunk_hdr_sz != sizeof(chunk_header_t))
Ajay Dudani5c761132011-04-07 20:19:04 -07003163 {
vijay kumar800255e2015-04-24 20:26:19 +05303164 fastboot_fail("chunk header size mismatch");
3165 return;
Ajay Dudani5c761132011-04-07 20:19:04 -07003166 }
3167
wufeng.jiang813dc352015-06-02 23:02:46 -04003168 chunk_data_sz = (uint64_t)sparse_header->blk_sz * chunk_header->chunk_sz;
3169
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303170 /* Make sure that the chunk size calculated from sparse image does not
3171 * exceed partition size
3172 */
3173 if ((uint64_t)total_blocks * (uint64_t)sparse_header->blk_sz + chunk_data_sz > size)
3174 {
3175 fastboot_fail("Chunk data size exceeds partition size");
3176 return;
3177 }
3178
Ajay Dudani5c761132011-04-07 20:19:04 -07003179 switch (chunk_header->chunk_type)
3180 {
3181 case CHUNK_TYPE_RAW:
wufeng.jiang813dc352015-06-02 23:02:46 -04003182 if((uint64_t)chunk_header->total_sz != ((uint64_t)sparse_header->chunk_hdr_sz +
Ajay Dudani5c761132011-04-07 20:19:04 -07003183 chunk_data_sz))
3184 {
3185 fastboot_fail("Bogus chunk size for chunk type Raw");
3186 return;
3187 }
3188
Parth Dixit64b1a482016-03-07 16:31:26 +05303189 if (data_end < (uintptr_t)data + chunk_data_sz) {
vijay kumar800255e2015-04-24 20:26:19 +05303190 fastboot_fail("buffer overreads occured due to invalid sparse header");
3191 return;
3192 }
3193
wufeng.jiang813dc352015-06-02 23:02:46 -04003194 /* chunk_header->total_sz is uint32,So chunk_data_sz is now less than 2^32
3195 otherwise it will return in the line above
3196 */
Ajay Dudaniab18f022011-05-12 14:39:22 -07003197 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
wufeng.jiang813dc352015-06-02 23:02:46 -04003198 (uint32_t)chunk_data_sz,
Ajay Dudaniab18f022011-05-12 14:39:22 -07003199 (unsigned int*)data))
Ajay Dudani5c761132011-04-07 20:19:04 -07003200 {
3201 fastboot_fail("flash write failure");
3202 return;
3203 }
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303204 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz)) {
3205 fastboot_fail("Bogus size for RAW chunk type");
3206 return;
3207 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003208 total_blocks += chunk_header->chunk_sz;
wufeng.jiang813dc352015-06-02 23:02:46 -04003209 data += (uint32_t)chunk_data_sz;
Ajay Dudani5c761132011-04-07 20:19:04 -07003210 break;
3211
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003212 case CHUNK_TYPE_FILL:
3213 if(chunk_header->total_sz != (sparse_header->chunk_hdr_sz +
3214 sizeof(uint32_t)))
3215 {
3216 fastboot_fail("Bogus chunk size for chunk type FILL");
3217 return;
3218 }
3219
Mayank Grover4f50bba2017-07-19 18:17:08 +05303220 blk_sz_actual = ROUNDUP(sparse_header->blk_sz, CACHE_LINE);
3221 /* Integer overflow detected */
3222 if (blk_sz_actual < sparse_header->blk_sz)
3223 {
3224 fastboot_fail("Invalid block size");
3225 return;
3226 }
3227
3228 fill_buf = (uint32_t *)memalign(CACHE_LINE, blk_sz_actual);
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003229 if (!fill_buf)
3230 {
3231 fastboot_fail("Malloc failed for: CHUNK_TYPE_FILL");
3232 return;
3233 }
3234
Parth Dixit64b1a482016-03-07 16:31:26 +05303235 if (data_end < (uintptr_t)data + sizeof(uint32_t)) {
vijay kumar800255e2015-04-24 20:26:19 +05303236 fastboot_fail("buffer overreads occured due to invalid sparse header");
Gaurav Nebhwani163cbf82016-03-17 21:21:27 +05303237 free(fill_buf);
vijay kumar800255e2015-04-24 20:26:19 +05303238 return;
3239 }
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003240 fill_val = *(uint32_t *)data;
3241 data = (char *) data + sizeof(uint32_t);
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003242
3243 for (i = 0; i < (sparse_header->blk_sz / sizeof(fill_val)); i++)
3244 {
3245 fill_buf[i] = fill_val;
3246 }
3247
Gaurav Nebhwanie94cbe12016-03-17 21:16:34 +05303248 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz))
3249 {
3250 fastboot_fail("bogus size for chunk FILL type");
3251 free(fill_buf);
3252 return;
3253 }
3254
wufeng.jiang813dc352015-06-02 23:02:46 -04003255 for (i = 0; i < chunk_header->chunk_sz; i++)
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003256 {
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303257 /* Make sure that the data written to partition does not exceed partition size */
3258 if ((uint64_t)total_blocks * (uint64_t)sparse_header->blk_sz + sparse_header->blk_sz > size)
3259 {
3260 fastboot_fail("Chunk data size for fill type exceeds partition size");
Gaurav Nebhwani163cbf82016-03-17 21:21:27 +05303261 free(fill_buf);
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303262 return;
3263 }
3264
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003265 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
3266 sparse_header->blk_sz,
3267 fill_buf))
3268 {
3269 fastboot_fail("flash write failure");
3270 free(fill_buf);
3271 return;
3272 }
3273
3274 total_blocks++;
3275 }
3276
3277 free(fill_buf);
3278 break;
3279
Ajay Dudani5c761132011-04-07 20:19:04 -07003280 case CHUNK_TYPE_DONT_CARE:
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303281 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz)) {
3282 fastboot_fail("bogus size for chunk DONT CARE type");
3283 return;
3284 }
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07003285 total_blocks += chunk_header->chunk_sz;
3286 break;
3287
Ajay Dudani5c761132011-04-07 20:19:04 -07003288 case CHUNK_TYPE_CRC:
3289 if(chunk_header->total_sz != sparse_header->chunk_hdr_sz)
3290 {
wufeng.jiang813dc352015-06-02 23:02:46 -04003291 fastboot_fail("Bogus chunk size for chunk type CRC");
Ajay Dudani5c761132011-04-07 20:19:04 -07003292 return;
3293 }
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303294 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz)) {
3295 fastboot_fail("bogus size for chunk CRC type");
3296 return;
3297 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003298 total_blocks += chunk_header->chunk_sz;
Parth Dixit64b1a482016-03-07 16:31:26 +05303299 if ((uintptr_t)data > UINT_MAX - chunk_data_sz) {
vijay kumar800255e2015-04-24 20:26:19 +05303300 fastboot_fail("integer overflow occured");
3301 return;
3302 }
wufeng.jiang813dc352015-06-02 23:02:46 -04003303 data += (uint32_t)chunk_data_sz;
Parth Dixit64b1a482016-03-07 16:31:26 +05303304 if (data_end < (uintptr_t)data) {
vijay kumar800255e2015-04-24 20:26:19 +05303305 fastboot_fail("buffer overreads occured due to invalid sparse header");
3306 return;
3307 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003308 break;
3309
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07003310 default:
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003311 dprintf(CRITICAL, "Unkown chunk type: %x\n",chunk_header->chunk_type);
Ajay Dudani5c761132011-04-07 20:19:04 -07003312 fastboot_fail("Unknown chunk type");
3313 return;
3314 }
3315 }
3316
Ajay Dudani0c6927b2011-05-18 11:12:16 -07003317 dprintf(INFO, "Wrote %d blocks, expected to write %d blocks\n",
3318 total_blocks, sparse_header->total_blks);
3319
3320 if(total_blocks != sparse_header->total_blks)
3321 {
3322 fastboot_fail("sparse image write failure");
3323 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003324
3325 fastboot_okay("");
3326 return;
3327}
3328
3329void cmd_flash_mmc(const char *arg, void *data, unsigned sz)
3330{
3331 sparse_header_t *sparse_header;
Ajay Dudanide984792015-03-02 09:57:41 -08003332 meta_header_t *meta_header;
Ajay Dudani5c761132011-04-07 20:19:04 -07003333
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07003334#ifdef SSD_ENABLE
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -08003335 /* 8 Byte Magic + 2048 Byte xml + Encrypted Data */
3336 unsigned int *magic_number = (unsigned int *) data;
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08003337 int ret=0;
3338 uint32 major_version=0;
3339 uint32 minor_version=0;
3340
3341 ret = scm_svc_version(&major_version,&minor_version);
3342 if(!ret)
3343 {
3344 if(major_version >= 2)
3345 {
Amir Samuelovbb65ce02013-05-05 12:20:18 +03003346 if( !strcmp(arg, "ssd") || !strcmp(arg, "tqs") )
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08003347 {
3348 ret = encrypt_scm((uint32 **) &data, &sz);
3349 if (ret != 0) {
3350 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
3351 return;
3352 }
3353
Amir Samuelovbb65ce02013-05-05 12:20:18 +03003354 /* Protect only for SSD */
3355 if (!strcmp(arg, "ssd")) {
3356 ret = scm_protect_keystore((uint32 *) data, sz);
3357 if (ret != 0) {
3358 dprintf(CRITICAL, "ERROR: scm_protect_keystore Failed\n");
3359 return;
3360 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08003361 }
3362 }
3363 else
3364 {
3365 ret = decrypt_scm_v2((uint32 **) &data, &sz);
3366 if(ret != 0)
3367 {
3368 dprintf(CRITICAL,"ERROR: Decryption Failure\n");
3369 return;
3370 }
3371 }
3372 }
3373 else
3374 {
3375 if (magic_number[0] == DECRYPT_MAGIC_0 &&
3376 magic_number[1] == DECRYPT_MAGIC_1)
3377 {
3378 ret = decrypt_scm((uint32 **) &data, &sz);
3379 if (ret != 0) {
3380 dprintf(CRITICAL, "ERROR: Invalid secure image\n");
3381 return;
3382 }
3383 }
3384 else if (magic_number[0] == ENCRYPT_MAGIC_0 &&
3385 magic_number[1] == ENCRYPT_MAGIC_1)
3386 {
3387 ret = encrypt_scm((uint32 **) &data, &sz);
3388 if (ret != 0) {
3389 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
3390 return;
3391 }
3392 }
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07003393 }
3394 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08003395 else
Neeti Desai127b9e02012-03-20 16:11:23 -07003396 {
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08003397 dprintf(CRITICAL,"INVALID SVC Version\n");
3398 return;
Neeti Desai127b9e02012-03-20 16:11:23 -07003399 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08003400#endif /* SSD_ENABLE */
Neeti Desai127b9e02012-03-20 16:11:23 -07003401
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003402#if VERIFIED_BOOT
Channagoud Kadabi35297672015-06-13 11:09:49 -07003403 if (target_build_variant_user())
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003404 {
lijuang511a2b52015-08-14 20:50:51 +08003405 /* if device is locked:
3406 * common partition will not allow to be flashed
3407 * critical partition will allow to flash image.
3408 */
3409 if(!device.is_unlocked && !critical_flash_allowed(arg)) {
3410 fastboot_fail("Partition flashing is not allowed");
3411 return;
3412 }
Mayank Grover889be1b2017-09-12 20:12:23 +05303413
lijuang511a2b52015-08-14 20:50:51 +08003414 /* if device critical is locked:
3415 * common partition will allow to be flashed
3416 * critical partition will not allow to flash image.
3417 */
Mayank Grover889be1b2017-09-12 20:12:23 +05303418 if (VB_V2 == target_get_vb_version() &&
3419 !device.is_unlock_critical &&
3420 critical_flash_allowed(arg)) {
3421 fastboot_fail("Critical partition flashing is not allowed");
3422 return;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003423 }
3424 }
3425#endif
3426
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07003427 sparse_header = (sparse_header_t *) data;
Ajay Dudanide984792015-03-02 09:57:41 -08003428 meta_header = (meta_header_t *) data;
3429 if (sparse_header->magic == SPARSE_HEADER_MAGIC)
Ajay Dudani5c761132011-04-07 20:19:04 -07003430 cmd_flash_mmc_sparse_img(arg, data, sz);
Ajay Dudanide984792015-03-02 09:57:41 -08003431 else if (meta_header->magic == META_HEADER_MAGIC)
3432 cmd_flash_meta_img(arg, data, sz);
3433 else
3434 cmd_flash_mmc_img(arg, data, sz);
Sridhar Parasuramd69f7902015-07-10 13:31:17 -07003435
3436#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +05303437 if (VB_V2 == target_get_vb_version() &&
3438 (!strncmp(arg, "system", 6)) &&
3439 !device.verity_mode)
Sridhar Parasuramd69f7902015-07-10 13:31:17 -07003440 // reset dm_verity mode to enforcing
3441 device.verity_mode = 1;
3442 write_device_info(&device);
Parth Dixitddbc7352015-10-18 03:13:31 +05303443#endif
Sridhar Parasuramd69f7902015-07-10 13:31:17 -07003444
Ajay Dudani5c761132011-04-07 20:19:04 -07003445 return;
3446}
3447
Tanya Brokhman84eaaf62015-02-24 21:57:06 +02003448void cmd_updatevol(const char *vol_name, void *data, unsigned sz)
3449{
3450 struct ptentry *sys_ptn;
3451 struct ptable *ptable;
3452
3453 ptable = flash_get_ptable();
3454 if (ptable == NULL) {
3455 fastboot_fail("partition table doesn't exist");
3456 return;
3457 }
3458
3459 sys_ptn = ptable_find(ptable, "system");
3460 if (sys_ptn == NULL) {
3461 fastboot_fail("system partition not found");
3462 return;
3463 }
3464
3465 sz = ROUND_TO_PAGE(sz, page_mask);
3466 if (update_ubi_vol(sys_ptn, vol_name, data, sz))
3467 fastboot_fail("update_ubi_vol failed");
3468 else
3469 fastboot_okay("");
3470}
3471
Sridhar Parasurame94e8152014-10-24 14:06:03 -07003472void cmd_flash_nand(const char *arg, void *data, unsigned sz)
Dima Zavin214cc642009-01-26 11:16:21 -08003473{
3474 struct ptentry *ptn;
3475 struct ptable *ptable;
3476 unsigned extra = 0;
Gaurav Nebhwanid9730712016-05-06 14:28:29 +05303477 uint64_t partition_size = 0;
Vijay Kumar Pendotic6f22a72017-05-19 22:44:34 +05303478 unsigned bytes_to_round_page = 0;
3479 unsigned rounded_size = 0;
Dima Zavin214cc642009-01-26 11:16:21 -08003480
Kishor PK38ed93d2017-04-25 14:19:26 +05303481 if((uintptr_t)data > (UINT_MAX - sz)) {
3482 fastboot_fail("Cannot flash: image header corrupt");
3483 return;
3484 }
3485
Dima Zavin214cc642009-01-26 11:16:21 -08003486 ptable = flash_get_ptable();
3487 if (ptable == NULL) {
3488 fastboot_fail("partition table doesn't exist");
3489 return;
3490 }
3491
3492 ptn = ptable_find(ptable, arg);
3493 if (ptn == NULL) {
Tanya Brokhman84eaaf62015-02-24 21:57:06 +02003494 dprintf(INFO, "unknown partition name (%s). Trying updatevol\n",
3495 arg);
3496 cmd_updatevol(arg, data, sz);
Dima Zavin214cc642009-01-26 11:16:21 -08003497 return;
3498 }
3499
3500 if (!strcmp(ptn->name, "boot") || !strcmp(ptn->name, "recovery")) {
Kishor PK38ed93d2017-04-25 14:19:26 +05303501 if((sz > BOOT_MAGIC_SIZE) && (!memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE))) {
3502 dprintf(INFO, "Verified the BOOT_MAGIC in image header \n");
3503 } else {
3504 fastboot_fail("Image is not a boot image");
Dima Zavin214cc642009-01-26 11:16:21 -08003505 return;
3506 }
3507 }
3508
Amol Jadi5c61a952012-05-04 17:05:35 -07003509 if (!strcmp(ptn->name, "system")
Deepa Dinamani13e32c42012-03-12 14:34:17 -07003510 || !strcmp(ptn->name, "userdata")
3511 || !strcmp(ptn->name, "persist")
Sundarajan Srinivasanb063a852013-11-19 14:02:27 -08003512 || !strcmp(ptn->name, "recoveryfs")
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -08003513 || !strcmp(ptn->name, "modem"))
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02003514 extra = 1;
Kishor PK38ed93d2017-04-25 14:19:26 +05303515 else {
Vijay Kumar Pendotic6f22a72017-05-19 22:44:34 +05303516 rounded_size = ROUNDUP(sz, page_size);
3517 bytes_to_round_page = rounded_size - sz;
3518 if (bytes_to_round_page) {
3519 if (((uintptr_t)data + sz ) > (UINT_MAX - bytes_to_round_page)) {
3520 fastboot_fail("Integer overflow detected");
3521 return;
3522 }
3523 if (((uintptr_t)data + sz + bytes_to_round_page) >
3524 ((uintptr_t)target_get_scratch_address() + target_get_max_flash_size())) {
3525 fastboot_fail("Buffer size is not aligned to page_size");
3526 return;
3527 }
3528 else {
3529 memset(data + sz, 0, bytes_to_round_page);
3530 sz = rounded_size;
3531 }
Kishor PK38ed93d2017-04-25 14:19:26 +05303532 }
Gaurav Nebhwanid9730712016-05-06 14:28:29 +05303533 }
3534
Kishor PK38ed93d2017-04-25 14:19:26 +05303535 /*Checking partition_size for the possible integer overflow */
3536 partition_size = validate_partition_size(ptn);
3537
Gaurav Nebhwanid9730712016-05-06 14:28:29 +05303538 if (sz > partition_size) {
3539 fastboot_fail("Image size too large");
3540 return;
3541 }
3542
Dima Zavin214cc642009-01-26 11:16:21 -08003543 dprintf(INFO, "writing %d bytes to '%s'\n", sz, ptn->name);
Mayank Grover6cde9352017-06-06 18:45:23 +05303544 if ((sz > UBI_EC_HDR_SIZE) &&
3545 (!memcmp((void *)data, UBI_MAGIC, UBI_MAGIC_SIZE))) {
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02003546 if (flash_ubi_img(ptn, data, sz)) {
3547 fastboot_fail("flash write failure");
3548 return;
3549 }
3550 } else {
3551 if (flash_write(ptn, extra, data, sz)) {
3552 fastboot_fail("flash write failure");
3553 return;
3554 }
Dima Zavin214cc642009-01-26 11:16:21 -08003555 }
3556 dprintf(INFO, "partition '%s' updated\n", ptn->name);
3557 fastboot_okay("");
3558}
3559
Kishor PK38ed93d2017-04-25 14:19:26 +05303560
3561static inline uint64_t validate_partition_size(struct ptentry *ptn)
3562{
3563 if (ptn->length && flash_num_pages_per_blk() && page_size) {
3564 if ((ptn->length < ( UINT_MAX / flash_num_pages_per_blk())) && ((ptn->length * flash_num_pages_per_blk()) < ( UINT_MAX / page_size))) {
3565 return ptn->length * flash_num_pages_per_blk() * page_size;
3566 }
3567 }
3568 return 0;
3569}
3570
3571
Sridhar Parasurame94e8152014-10-24 14:06:03 -07003572void cmd_flash(const char *arg, void *data, unsigned sz)
3573{
3574 if(target_is_emmc_boot())
3575 cmd_flash_mmc(arg, data, sz);
3576 else
3577 cmd_flash_nand(arg, data, sz);
3578}
3579
Dima Zavin214cc642009-01-26 11:16:21 -08003580void cmd_continue(const char *arg, void *data, unsigned sz)
3581{
3582 fastboot_okay("");
Amol Jadi7c4316c2013-10-07 14:19:26 -07003583 fastboot_stop();
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003584
Shashank Mittald8c42bf2010-06-09 15:44:28 -07003585 if (target_is_emmc_boot())
3586 {
lijuanga40d6302015-07-20 20:10:13 +08003587#if FBCON_DISPLAY_MSG
lijuangde34d502016-02-26 16:04:50 +08003588 /* Exit keys' detection thread firstly */
3589 exit_menu_keys_detection();
lijuanga40d6302015-07-20 20:10:13 +08003590#endif
Shashank Mittald8c42bf2010-06-09 15:44:28 -07003591 boot_linux_from_mmc();
3592 }
3593 else
3594 {
3595 boot_linux_from_flash();
3596 }
Dima Zavin214cc642009-01-26 11:16:21 -08003597}
3598
Chandan Uddaraju94183c02010-01-15 15:13:59 -08003599void cmd_reboot(const char *arg, void *data, unsigned sz)
3600{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07003601 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08003602 fastboot_okay("");
3603 reboot_device(0);
3604}
3605
Mayank Grover351a75e2017-05-30 20:06:08 +05303606void cmd_set_active(const char *arg, void *data, unsigned sz)
3607{
Mayank Grover6ccc1c92017-07-04 17:36:46 +05303608 char *p, *sp = NULL;
Mayank Grover351a75e2017-05-30 20:06:08 +05303609 unsigned i,current_active_slot;
3610 const char *current_slot_suffix;
3611
3612 if (!partition_multislot_is_supported())
3613 {
3614 fastboot_fail("Command not supported");
3615 return;
3616 }
3617
3618 if (arg)
3619 {
Mayank Grover6ccc1c92017-07-04 17:36:46 +05303620 p = strtok_r((char *)arg, ":", &sp);
Mayank Grover5eb5f692017-07-19 20:16:04 +05303621 if (p)
Mayank Grover351a75e2017-05-30 20:06:08 +05303622 {
3623 current_active_slot = partition_find_active_slot();
3624
3625 /* Check if trying to make curent slot active */
3626 current_slot_suffix = SUFFIX_SLOT(current_active_slot);
Mayank Grover6ccc1c92017-07-04 17:36:46 +05303627 current_slot_suffix = strtok_r((char *)current_slot_suffix,
3628 (char *)suffix_delimiter, &sp);
3629
Mayank Grover5eb5f692017-07-19 20:16:04 +05303630 if (current_slot_suffix &&
3631 !strncmp(p, current_slot_suffix, strlen(current_slot_suffix)))
Mayank Grover351a75e2017-05-30 20:06:08 +05303632 {
3633 fastboot_okay("Slot already set active");
3634 return;
3635 }
3636 else
3637 {
3638 for (i = 0; i < AB_SUPPORTED_SLOTS; i++)
3639 {
3640 current_slot_suffix = SUFFIX_SLOT(i);
Mayank Grover6ccc1c92017-07-04 17:36:46 +05303641 current_slot_suffix = strtok_r((char *)current_slot_suffix,
3642 (char *)suffix_delimiter, &sp);
Mayank Grover5eb5f692017-07-19 20:16:04 +05303643 if (current_slot_suffix &&
3644 !strncmp(p, current_slot_suffix, strlen(current_slot_suffix)))
Mayank Grover351a75e2017-05-30 20:06:08 +05303645 {
3646 partition_switch_slots(current_active_slot, i);
3647 publish_getvar_multislot_vars();
3648 fastboot_okay("");
3649 return;
3650 }
3651 }
3652 }
3653 }
3654 }
3655 fastboot_fail("Invalid slot suffix.");
3656 return;
3657}
3658
Chandan Uddaraju94183c02010-01-15 15:13:59 -08003659void cmd_reboot_bootloader(const char *arg, void *data, unsigned sz)
3660{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07003661 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08003662 fastboot_okay("");
3663 reboot_device(FASTBOOT_MODE);
3664}
3665
Ameya Thakur11cf1a62013-08-05 12:44:48 -07003666void cmd_oem_enable_charger_screen(const char *arg, void *data, unsigned size)
3667{
3668 dprintf(INFO, "Enabling charger screen check\n");
3669 device.charger_screen_enabled = 1;
3670 write_device_info(&device);
3671 fastboot_okay("");
3672}
3673
3674void cmd_oem_disable_charger_screen(const char *arg, void *data, unsigned size)
3675{
3676 dprintf(INFO, "Disabling charger screen check\n");
3677 device.charger_screen_enabled = 0;
3678 write_device_info(&device);
3679 fastboot_okay("");
3680}
3681
lijuanga25d8bb2015-09-16 13:11:52 +08003682void cmd_oem_off_mode_charger(const char *arg, void *data, unsigned size)
3683{
3684 char *p = NULL;
3685 const char *delim = " \t\n\r";
Parth Dixit407f15b2016-01-07 14:47:37 +05303686 char *sp;
lijuanga25d8bb2015-09-16 13:11:52 +08003687
3688 if (arg) {
Parth Dixit407f15b2016-01-07 14:47:37 +05303689 p = strtok_r((char *)arg, delim, &sp);
lijuanga25d8bb2015-09-16 13:11:52 +08003690 if (p) {
3691 if (!strncmp(p, "0", 1)) {
3692 device.charger_screen_enabled = 0;
3693 } else if (!strncmp(p, "1", 1)) {
3694 device.charger_screen_enabled = 1;
3695 }
3696 }
3697 }
3698
3699 /* update charger_screen_enabled value for getvar
3700 * command
3701 */
3702 snprintf(charger_screen_enabled, MAX_RSP_SIZE, "%d",
3703 device.charger_screen_enabled);
3704
3705 write_device_info(&device);
3706 fastboot_okay("");
3707}
3708
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05303709void cmd_oem_select_display_panel(const char *arg, void *data, unsigned size)
3710{
3711 dprintf(INFO, "Selecting display panel %s\n", arg);
3712 if (arg)
3713 strlcpy(device.display_panel, arg,
3714 sizeof(device.display_panel));
3715 write_device_info(&device);
3716 fastboot_okay("");
3717}
3718
Shashank Mittal162244e2011-08-08 19:01:25 -07003719void cmd_oem_unlock(const char *arg, void *data, unsigned sz)
3720{
lijuang4ece1e72015-08-14 21:02:36 +08003721 set_device_unlock(UNLOCK, TRUE);
vijay kumarc65876c2015-04-24 13:29:16 +05303722}
3723
3724void cmd_oem_unlock_go(const char *arg, void *data, unsigned sz)
3725{
lijuang4ece1e72015-08-14 21:02:36 +08003726 if(!device.is_unlocked) {
vijay kumarc65876c2015-04-24 13:29:16 +05303727 if(!is_allow_unlock) {
3728 fastboot_fail("oem unlock is not allowed");
3729 return;
3730 }
3731
lijuang4ece1e72015-08-14 21:02:36 +08003732 set_device_unlock_value(UNLOCK, TRUE);
vijay kumarc65876c2015-04-24 13:29:16 +05303733
lijuang4ece1e72015-08-14 21:02:36 +08003734 /* wipe data */
vijay kumarc65876c2015-04-24 13:29:16 +05303735 struct recovery_message msg;
Kishor PK60a68212017-05-08 16:55:57 +05303736 memset(&msg, 0, sizeof(msg));
vijay kumarc65876c2015-04-24 13:29:16 +05303737 snprintf(msg.recovery, sizeof(msg.recovery), "recovery\n--wipe_data");
3738 write_misc(0, &msg, sizeof(msg));
3739
3740 fastboot_okay("");
3741 reboot_device(RECOVERY_MODE);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003742 }
3743 fastboot_okay("");
3744}
3745
Channagoud Kadabiad259832015-05-29 11:14:17 -07003746static int aboot_frp_unlock(char *pname, void *data, unsigned sz)
3747{
Mayank Grover70f8b0e2017-05-17 11:49:00 +05303748 int ret=1;
3749 bool authentication_success=false;
Channagoud Kadabiad259832015-05-29 11:14:17 -07003750
Mayank Grover70f8b0e2017-05-17 11:49:00 +05303751 /*
3752 Authentication method not implemented.
3753
3754 OEM to implement, authentication system which on successful validataion,
3755 calls write_allow_oem_unlock() with is_allow_unlock.
3756 */
3757#if 0
3758 authentication_success = oem_specific_auth_mthd();
3759#endif
3760
3761 if (authentication_success)
Channagoud Kadabiad259832015-05-29 11:14:17 -07003762 {
Mayank Grover70f8b0e2017-05-17 11:49:00 +05303763 is_allow_unlock = true;
3764 write_allow_oem_unlock(is_allow_unlock);
3765 ret = 0;
Channagoud Kadabiad259832015-05-29 11:14:17 -07003766 }
3767 return ret;
3768}
3769
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003770void cmd_oem_lock(const char *arg, void *data, unsigned sz)
3771{
lijuang4ece1e72015-08-14 21:02:36 +08003772 set_device_unlock(UNLOCK, FALSE);
Shashank Mittal162244e2011-08-08 19:01:25 -07003773}
3774
Shashank Mittala0032282011-08-26 14:50:11 -07003775void cmd_oem_devinfo(const char *arg, void *data, unsigned sz)
3776{
lijuang511a2b52015-08-14 20:50:51 +08003777 char response[MAX_RSP_SIZE];
Ameya Thakur11cf1a62013-08-05 12:44:48 -07003778 snprintf(response, sizeof(response), "\tDevice tampered: %s", (device.is_tampered ? "true" : "false"));
Shashank Mittala0032282011-08-26 14:50:11 -07003779 fastboot_info(response);
Ameya Thakur11cf1a62013-08-05 12:44:48 -07003780 snprintf(response, sizeof(response), "\tDevice unlocked: %s", (device.is_unlocked ? "true" : "false"));
3781 fastboot_info(response);
Mayank Grover889be1b2017-09-12 20:12:23 +05303782#if VERIFIED_BOOT
3783 if (VB_V2 == target_get_vb_version())
3784 {
3785 snprintf(response, sizeof(response), "\tDevice critical unlocked: %s",
3786 (device.is_unlock_critical ? "true" : "false"));
3787 fastboot_info(response);
3788 }
Parth Dixitddbc7352015-10-18 03:13:31 +05303789#endif
Ameya Thakur11cf1a62013-08-05 12:44:48 -07003790 snprintf(response, sizeof(response), "\tCharger screen enabled: %s", (device.charger_screen_enabled ? "true" : "false"));
Shashank Mittala0032282011-08-26 14:50:11 -07003791 fastboot_info(response);
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05303792 snprintf(response, sizeof(response), "\tDisplay panel: %s", (device.display_panel));
3793 fastboot_info(response);
Shashank Mittala0032282011-08-26 14:50:11 -07003794 fastboot_okay("");
3795}
3796
lijuang511a2b52015-08-14 20:50:51 +08003797void cmd_flashing_get_unlock_ability(const char *arg, void *data, unsigned sz)
3798{
3799 char response[MAX_RSP_SIZE];
3800 snprintf(response, sizeof(response), "\tget_unlock_ability: %d", is_allow_unlock);
3801 fastboot_info(response);
3802 fastboot_okay("");
3803}
3804
3805void cmd_flashing_lock_critical(const char *arg, void *data, unsigned sz)
3806{
lijuang4ece1e72015-08-14 21:02:36 +08003807 set_device_unlock(UNLOCK_CRITICAL, FALSE);
lijuang511a2b52015-08-14 20:50:51 +08003808}
3809
3810void cmd_flashing_unlock_critical(const char *arg, void *data, unsigned sz)
3811{
lijuang4ece1e72015-08-14 21:02:36 +08003812 set_device_unlock(UNLOCK_CRITICAL, TRUE);
lijuang511a2b52015-08-14 20:50:51 +08003813}
3814
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07003815void cmd_preflash(const char *arg, void *data, unsigned sz)
3816{
3817 fastboot_okay("");
3818}
3819
Mao Flynn7b379f32015-04-20 00:28:30 +08003820static uint8_t logo_header[LOGO_IMG_HEADER_SIZE];
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303821
Mao Flynn7b379f32015-04-20 00:28:30 +08003822int splash_screen_check_header(logo_img_header *header)
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303823{
Mao Flynn7b379f32015-04-20 00:28:30 +08003824 if (memcmp(header->magic, LOGO_IMG_MAGIC, 8))
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303825 return -1;
Mao Flynn7b379f32015-04-20 00:28:30 +08003826 if (header->width == 0 || header->height == 0)
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303827 return -1;
3828 return 0;
3829}
3830
Mao Flynn7b379f32015-04-20 00:28:30 +08003831int splash_screen_flash()
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07003832{
3833 struct ptentry *ptn;
3834 struct ptable *ptable;
Mao Flynn7b379f32015-04-20 00:28:30 +08003835 struct logo_img_header *header;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07003836 struct fbcon_config *fb_display = NULL;
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08003837
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303838 ptable = flash_get_ptable();
3839 if (ptable == NULL) {
Mao Flynn7b379f32015-04-20 00:28:30 +08003840 dprintf(CRITICAL, "ERROR: Partition table not found\n");
3841 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303842 }
Mao Flynn7b379f32015-04-20 00:28:30 +08003843
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303844 ptn = ptable_find(ptable, "splash");
3845 if (ptn == NULL) {
3846 dprintf(CRITICAL, "ERROR: splash Partition not found\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003847 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303848 }
Mao Flynn7b379f32015-04-20 00:28:30 +08003849 if (flash_read(ptn, 0, (void *)logo_header, LOGO_IMG_HEADER_SIZE)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303850 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003851 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303852 }
3853
Mao Flynn7b379f32015-04-20 00:28:30 +08003854 header = (struct logo_img_header *)logo_header;
3855 if (splash_screen_check_header(header)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303856 dprintf(CRITICAL, "ERROR: Boot image header invalid\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003857 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303858 }
3859
3860 fb_display = fbcon_display();
3861 if (fb_display) {
Mao Flynn7b379f32015-04-20 00:28:30 +08003862 if (header->type && (header->blocks != 0)) { // RLE24 compressed data
3863 uint8_t *base = (uint8_t *) fb_display->base + LOGO_IMG_OFFSET;
3864
3865 /* if the logo is full-screen size, remove "fbcon_clear()" */
3866 if ((header->width != fb_display->width)
3867 || (header->height != fb_display->height))
3868 fbcon_clear();
3869
3870 if (flash_read(ptn + LOGO_IMG_HEADER_SIZE, 0,
3871 (uint32_t *)base,
3872 (header->blocks * 512))) {
3873 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
3874 return -1;
3875 }
3876 fbcon_extract_to_screen(header, base);
3877 return 0;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07003878 }
Mao Flynn7b379f32015-04-20 00:28:30 +08003879
Veera Sundaram Sankaranc33416f2015-09-28 10:25:55 -07003880 if ((header->width > fb_display->width) || (header->height > fb_display->height)) {
3881 dprintf(CRITICAL, "Logo config greater than fb config. Fall back default logo\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003882 return -1;
3883 }
3884
Vineet Bajaj99291ed2014-09-09 12:29:46 +05303885 uint8_t *base = (uint8_t *) fb_display->base;
Sachin Bhayare619e9e42017-05-15 13:10:31 +05303886 uint32_t fb_size = ROUNDUP(fb_display->width *
3887 fb_display->height *
3888 (fb_display->bpp / 8), 4096);
3889 uint32_t splash_size = ((((header->width * header->height *
3890 fb_display->bpp/8) + 511) >> 9) << 9);
3891
3892 if (splash_size > fb_size) {
3893 dprintf(CRITICAL, "ERROR: Splash image size invalid\n");
3894 return -1;
3895 }
3896
Mao Flynn7b379f32015-04-20 00:28:30 +08003897 if (flash_read(ptn + LOGO_IMG_HEADER_SIZE, 0,
3898 (uint32_t *)base,
3899 ((((header->width * header->height * fb_display->bpp/8) + 511) >> 9) << 9))) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303900 fbcon_clear();
Vineet Bajaj99291ed2014-09-09 12:29:46 +05303901 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003902 return -1;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07003903 }
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303904 }
3905
Mao Flynn7b379f32015-04-20 00:28:30 +08003906 return 0;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303907}
3908
Mao Flynn7b379f32015-04-20 00:28:30 +08003909int splash_screen_mmc()
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303910{
3911 int index = INVALID_PTN;
3912 unsigned long long ptn = 0;
3913 struct fbcon_config *fb_display = NULL;
Mao Flynn7b379f32015-04-20 00:28:30 +08003914 struct logo_img_header *header;
Mao Flynn1893a7f2015-06-03 12:03:36 +08003915 uint32_t blocksize, realsize, readsize;
3916 uint8_t *base;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303917
3918 index = partition_get_index("splash");
3919 if (index == 0) {
3920 dprintf(CRITICAL, "ERROR: splash Partition table not found\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003921 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303922 }
3923
3924 ptn = partition_get_offset(index);
3925 if (ptn == 0) {
3926 dprintf(CRITICAL, "ERROR: splash Partition invalid\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003927 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303928 }
3929
Mao Flynn1893a7f2015-06-03 12:03:36 +08003930 mmc_set_lun(partition_get_lun(index));
3931
3932 blocksize = mmc_get_device_blocksize();
3933 if (blocksize == 0) {
3934 dprintf(CRITICAL, "ERROR:splash Partition invalid blocksize\n");
3935 return -1;
3936 }
3937
3938 fb_display = fbcon_display();
Channagoud Kadabidaf10a62015-07-22 11:51:55 -07003939 if (!fb_display)
3940 {
3941 dprintf(CRITICAL, "ERROR: fb config is not allocated\n");
3942 return -1;
3943 }
3944
Mao Flynn1893a7f2015-06-03 12:03:36 +08003945 base = (uint8_t *) fb_display->base;
3946
3947 if (mmc_read(ptn, (uint32_t *)(base + LOGO_IMG_OFFSET), blocksize)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303948 dprintf(CRITICAL, "ERROR: Cannot read splash image header\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003949 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303950 }
3951
Mao Flynn1893a7f2015-06-03 12:03:36 +08003952 header = (struct logo_img_header *)(base + LOGO_IMG_OFFSET);
Mao Flynn7b379f32015-04-20 00:28:30 +08003953 if (splash_screen_check_header(header)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303954 dprintf(CRITICAL, "ERROR: Splash image header invalid\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08003955 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303956 }
3957
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303958 if (fb_display) {
Mao Flynn1893a7f2015-06-03 12:03:36 +08003959 if (header->type && (header->blocks != 0)) { /* 1 RLE24 compressed data */
3960 base += LOGO_IMG_OFFSET;
Mao Flynn7b379f32015-04-20 00:28:30 +08003961
Mao Flynn1893a7f2015-06-03 12:03:36 +08003962 realsize = header->blocks * 512;
3963 readsize = ROUNDUP((realsize + LOGO_IMG_HEADER_SIZE), blocksize) - blocksize;
3964
3965 /* if the logo is not full-screen size, clean screen */
Mao Flynn7b379f32015-04-20 00:28:30 +08003966 if ((header->width != fb_display->width)
3967 || (header->height != fb_display->height))
3968 fbcon_clear();
3969
Sachin Bhayare619e9e42017-05-15 13:10:31 +05303970 uint32_t fb_size = ROUNDUP(fb_display->width *
3971 fb_display->height *
3972 (fb_display->bpp / 8), 4096);
3973
3974 if (readsize > fb_size) {
3975 dprintf(CRITICAL, "ERROR: Splash image size invalid\n");
3976 return -1;
3977 }
3978
Mao Flynn1893a7f2015-06-03 12:03:36 +08003979 if (mmc_read(ptn + blocksize, (uint32_t *)(base + blocksize), readsize)) {
Mao Flynn7b379f32015-04-20 00:28:30 +08003980 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
3981 return -1;
3982 }
Mao Flynn7b379f32015-04-20 00:28:30 +08003983
Mao Flynn1893a7f2015-06-03 12:03:36 +08003984 fbcon_extract_to_screen(header, (base + LOGO_IMG_HEADER_SIZE));
3985 } else { /* 2 Raw BGR data */
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05303986
Veera Sundaram Sankaranc33416f2015-09-28 10:25:55 -07003987 if ((header->width > fb_display->width) || (header->height > fb_display->height)) {
3988 dprintf(CRITICAL, "Logo config greater than fb config. Fall back default logo\n");
Mao Flynn1893a7f2015-06-03 12:03:36 +08003989 return -1;
3990 }
3991
3992 realsize = header->width * header->height * fb_display->bpp / 8;
3993 readsize = ROUNDUP((realsize + LOGO_IMG_HEADER_SIZE), blocksize) - blocksize;
3994
3995 if (blocksize == LOGO_IMG_HEADER_SIZE) { /* read the content directly */
3996 if (mmc_read((ptn + LOGO_IMG_HEADER_SIZE), (uint32_t *)base, readsize)) {
3997 fbcon_clear();
3998 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
3999 return -1;
4000 }
4001 } else {
4002 if (mmc_read(ptn + blocksize ,
4003 (uint32_t *)(base + LOGO_IMG_OFFSET + blocksize), readsize)) {
4004 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
4005 return -1;
4006 }
4007 memmove(base, (base + LOGO_IMG_OFFSET + LOGO_IMG_HEADER_SIZE), realsize);
4008 }
4009 }
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304010 }
4011
Mao Flynn7b379f32015-04-20 00:28:30 +08004012 return 0;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304013}
4014
Mao Flynn7b379f32015-04-20 00:28:30 +08004015int fetch_image_from_partition()
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304016{
4017 if (target_is_emmc_boot()) {
4018 return splash_screen_mmc();
4019 } else {
4020 return splash_screen_flash();
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004021 }
4022}
4023
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07004024/* Get the size from partiton name */
4025static void get_partition_size(const char *arg, char *response)
4026{
4027 uint64_t ptn = 0;
4028 uint64_t size;
4029 int index = INVALID_PTN;
4030
4031 index = partition_get_index(arg);
4032
4033 if (index == INVALID_PTN)
4034 {
4035 dprintf(CRITICAL, "Invalid partition index\n");
4036 return;
4037 }
4038
4039 ptn = partition_get_offset(index);
4040
4041 if(!ptn)
4042 {
4043 dprintf(CRITICAL, "Invalid partition name %s\n", arg);
4044 return;
4045 }
4046
4047 size = partition_get_size(index);
4048
4049 snprintf(response, MAX_RSP_SIZE, "\t 0x%llx", size);
4050 return;
4051}
4052
4053/*
4054 * Publish the partition type & size info
4055 * fastboot getvar will publish the required information.
4056 * fastboot getvar partition_size:<partition_name>: partition size in hex
4057 * fastboot getvar partition_type:<partition_name>: partition type (ext/fat)
4058 */
4059static void publish_getvar_partition_info(struct getvar_partition_info *info, uint8_t num_parts)
4060{
4061 uint8_t i;
4062
4063 for (i = 0; i < num_parts; i++) {
4064 get_partition_size(info[i].part_name, info[i].size_response);
4065
4066 if (strlcat(info[i].getvar_size, info[i].part_name, MAX_GET_VAR_NAME_SIZE) >= MAX_GET_VAR_NAME_SIZE)
4067 {
4068 dprintf(CRITICAL, "partition size name truncated\n");
4069 return;
4070 }
4071 if (strlcat(info[i].getvar_type, info[i].part_name, MAX_GET_VAR_NAME_SIZE) >= MAX_GET_VAR_NAME_SIZE)
4072 {
4073 dprintf(CRITICAL, "partition type name truncated\n");
4074 return;
4075 }
4076
4077 /* publish partition size & type info */
4078 fastboot_publish((const char *) info[i].getvar_size, (const char *) info[i].size_response);
4079 fastboot_publish((const char *) info[i].getvar_type, (const char *) info[i].type_response);
4080 }
4081}
4082
Mayank Grover351a75e2017-05-30 20:06:08 +05304083void publish_getvar_multislot_vars()
4084{
4085 int i,count;
4086 static bool published = false;
4087 static char slot_count[MAX_RSP_SIZE];
4088 static struct ab_slot_info slot_info[AB_SUPPORTED_SLOTS];
4089 static char active_slot_suffix[MAX_RSP_SIZE];
4090 static char has_slot_pname[NUM_PARTITIONS][MAX_GET_VAR_NAME_SIZE];
4091 static char has_slot_reply[NUM_PARTITIONS][MAX_RSP_SIZE];
4092 const char *tmp;
4093 char tmpbuff[MAX_GET_VAR_NAME_SIZE];
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304094 signed active_slt;
Mayank Grover351a75e2017-05-30 20:06:08 +05304095
4096 if (!published)
4097 {
4098 /* Update slot meta info */
4099 count = partition_fill_partition_meta(has_slot_pname, has_slot_reply,
4100 partition_get_partition_count());
4101 for(i=0; i<count; i++)
4102 {
4103 memset(tmpbuff, 0, MAX_GET_VAR_NAME_SIZE);
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304104 snprintf(tmpbuff, MAX_GET_VAR_NAME_SIZE,"has-slot:%s",
4105 has_slot_pname[i]);
4106 strlcpy(has_slot_pname[i], tmpbuff, MAX_GET_VAR_NAME_SIZE);
Mayank Grover351a75e2017-05-30 20:06:08 +05304107 fastboot_publish(has_slot_pname[i], has_slot_reply[i]);
4108 }
4109
4110 for (i=0; i<AB_SUPPORTED_SLOTS; i++)
4111 {
4112 tmp = SUFFIX_SLOT(i);
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304113 snprintf(slot_info[i].slot_is_unbootable, sizeof(slot_info[i].slot_is_unbootable),
4114 "slot-unbootable:%s", tmp);
4115 snprintf(slot_info[i].slot_is_active, sizeof(slot_info[i].slot_is_active),
4116 "slot-active:%s", tmp);
4117 snprintf(slot_info[i].slot_is_succesful, sizeof(slot_info[i].slot_is_succesful),
4118 "slot-success:%s", tmp);
4119 snprintf(slot_info[i].slot_retry_count, sizeof(slot_info[i].slot_retry_count),
4120 "slot-retry-count:%s", tmp);
Mayank Grover351a75e2017-05-30 20:06:08 +05304121 fastboot_publish(slot_info[i].slot_is_unbootable,
4122 slot_info[i].slot_is_unbootable_rsp);
4123 fastboot_publish(slot_info[i].slot_is_active,
4124 slot_info[i].slot_is_active_rsp);
4125 fastboot_publish(slot_info[i].slot_is_succesful,
4126 slot_info[i].slot_is_succesful_rsp);
4127 fastboot_publish(slot_info[i].slot_retry_count,
4128 slot_info[i].slot_retry_count_rsp);
4129 }
4130 fastboot_publish("current-slot", active_slot_suffix);
4131 snprintf(slot_count, sizeof(slot_count),"%d", AB_SUPPORTED_SLOTS);
4132 fastboot_publish("slot-count", slot_count);
4133 published = true;
4134 }
4135
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304136 active_slt = partition_find_active_slot();
4137 if (active_slt != INVALID)
4138 snprintf(active_slot_suffix, sizeof(active_slot_suffix), "%s",
4139 SUFFIX_SLOT(active_slt));
4140 else
4141 strlcpy(active_slot_suffix, "INVALID", sizeof(active_slot_suffix));
4142
Mayank Grover351a75e2017-05-30 20:06:08 +05304143 /* Update partition meta information */
4144 partition_fill_slot_meta(slot_info);
4145 return;
4146}
4147
lijuang4ece1e72015-08-14 21:02:36 +08004148void get_product_name(unsigned char *buf)
4149{
4150 snprintf((char*)buf, MAX_RSP_SIZE, "%s", TARGET(BOARD));
4151 return;
4152}
4153
4154void get_bootloader_version(unsigned char *buf)
4155{
4156 snprintf((char*)buf, MAX_RSP_SIZE, "%s", device.bootloader_version);
4157 return;
4158}
4159
4160void get_baseband_version(unsigned char *buf)
4161{
4162 snprintf((char*)buf, MAX_RSP_SIZE, "%s", device.radio_version);
4163 return;
4164}
4165
4166bool is_device_locked()
4167{
4168 return device.is_unlocked ? false:true;
4169}
4170
Amol Jadi5edf3552013-07-23 14:15:34 -07004171/* register commands and variables for fastboot */
4172void aboot_fastboot_register_commands(void)
4173{
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004174 int i;
lijuangf16461c2015-08-03 17:09:34 +08004175 char hw_platform_buf[MAX_RSP_SIZE];
Amol Jadi5edf3552013-07-23 14:15:34 -07004176
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004177 struct fastboot_cmd_desc cmd_list[] = {
lijuang511a2b52015-08-14 20:50:51 +08004178 /* By default the enabled list is empty. */
4179 {"", NULL},
4180 /* move commands enclosed within the below ifndef to here
4181 * if they need to be enabled in user build.
4182 */
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004183#ifndef DISABLE_FASTBOOT_CMDS
lijuang511a2b52015-08-14 20:50:51 +08004184 /* Register the following commands only for non-user builds */
4185 {"flash:", cmd_flash},
4186 {"erase:", cmd_erase},
4187 {"boot", cmd_boot},
4188 {"continue", cmd_continue},
4189 {"reboot", cmd_reboot},
4190 {"reboot-bootloader", cmd_reboot_bootloader},
4191 {"oem unlock", cmd_oem_unlock},
4192 {"oem unlock-go", cmd_oem_unlock_go},
4193 {"oem lock", cmd_oem_lock},
4194 {"flashing unlock", cmd_oem_unlock},
4195 {"flashing lock", cmd_oem_lock},
4196 {"flashing lock_critical", cmd_flashing_lock_critical},
4197 {"flashing unlock_critical", cmd_flashing_unlock_critical},
4198 {"flashing get_unlock_ability", cmd_flashing_get_unlock_ability},
4199 {"oem device-info", cmd_oem_devinfo},
4200 {"preflash", cmd_preflash},
4201 {"oem enable-charger-screen", cmd_oem_enable_charger_screen},
4202 {"oem disable-charger-screen", cmd_oem_disable_charger_screen},
lijuanga25d8bb2015-09-16 13:11:52 +08004203 {"oem off-mode-charge", cmd_oem_off_mode_charger},
lijuang511a2b52015-08-14 20:50:51 +08004204 {"oem select-display-panel", cmd_oem_select_display_panel},
Mayank Grover6ccc1c92017-07-04 17:36:46 +05304205 {"set_active",cmd_set_active},
Channagoud Kadabi736c4962015-08-21 11:56:52 -07004206#if UNITTEST_FW_SUPPORT
Channagoud Kadabid5ddf482015-09-28 10:31:35 -07004207 {"oem run-tests", cmd_oem_runtests},
Channagoud Kadabi736c4962015-08-21 11:56:52 -07004208#endif
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004209#endif
lijuang511a2b52015-08-14 20:50:51 +08004210 };
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004211
4212 int fastboot_cmds_count = sizeof(cmd_list)/sizeof(cmd_list[0]);
4213 for (i = 1; i < fastboot_cmds_count; i++)
4214 fastboot_register(cmd_list[i].name,cmd_list[i].cb);
4215
Amol Jadi5edf3552013-07-23 14:15:34 -07004216 /* publish variables and their values */
4217 fastboot_publish("product", TARGET(BOARD));
4218 fastboot_publish("kernel", "lk");
4219 fastboot_publish("serialno", sn_buf);
4220
4221 /*
4222 * partition info is supported only for emmc partitions
4223 * Calling this for NAND prints some error messages which
4224 * is harmless but misleading. Avoid calling this for NAND
4225 * devices.
4226 */
4227 if (target_is_emmc_boot())
4228 publish_getvar_partition_info(part_info, ARRAY_SIZE(part_info));
4229
Mayank Grover351a75e2017-05-30 20:06:08 +05304230 if (partition_multislot_is_supported())
4231 publish_getvar_multislot_vars();
4232
Amol Jadi5edf3552013-07-23 14:15:34 -07004233 /* Max download size supported */
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004234 snprintf(max_download_size, MAX_RSP_SIZE, "\t0x%x",
4235 target_get_max_flash_size());
Amol Jadi5edf3552013-07-23 14:15:34 -07004236 fastboot_publish("max-download-size", (const char *) max_download_size);
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004237 /* Is the charger screen check enabled */
4238 snprintf(charger_screen_enabled, MAX_RSP_SIZE, "%d",
4239 device.charger_screen_enabled);
4240 fastboot_publish("charger-screen-enabled",
4241 (const char *) charger_screen_enabled);
lijuanga25d8bb2015-09-16 13:11:52 +08004242 fastboot_publish("off-mode-charge", (const char *) charger_screen_enabled);
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05304243 snprintf(panel_display_mode, MAX_RSP_SIZE, "%s",
4244 device.display_panel);
4245 fastboot_publish("display-panel",
4246 (const char *) panel_display_mode);
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -08004247 fastboot_publish("version-bootloader", (const char *) device.bootloader_version);
4248 fastboot_publish("version-baseband", (const char *) device.radio_version);
lijuangf16461c2015-08-03 17:09:34 +08004249 fastboot_publish("secure", is_secure_boot_enable()? "yes":"no");
4250 smem_get_hw_platform_name((unsigned char *) hw_platform_buf, sizeof(hw_platform_buf));
4251 snprintf(get_variant, MAX_RSP_SIZE, "%s %s", hw_platform_buf,
4252 target_is_emmc_boot()? "eMMC":"UFS");
4253 fastboot_publish("variant", (const char *) get_variant);
lijuang65c5a822015-08-29 16:35:36 +08004254#if CHECK_BAT_VOLTAGE
lijuang102dfa92015-10-09 18:31:03 +08004255 update_battery_status();
lijuang65c5a822015-08-29 16:35:36 +08004256 fastboot_publish("battery-voltage", (const char *) battery_voltage);
lijuang102dfa92015-10-09 18:31:03 +08004257 fastboot_publish("battery-soc-ok", (const char *) battery_soc_ok);
lijuang65c5a822015-08-29 16:35:36 +08004258#endif
Amol Jadi5edf3552013-07-23 14:15:34 -07004259}
4260
Brian Swetland9c4c0752009-01-25 16:23:50 -08004261void aboot_init(const struct app_descriptor *app)
4262{
Shashank Mittal4f99a882010-02-01 13:58:50 -08004263 unsigned reboot_mode = 0;
Mayank Grover351a75e2017-05-30 20:06:08 +05304264 int boot_err_type = 0;
4265 int boot_slot = INVALID;
Chandan Uddarajubedca152010-06-02 23:05:15 -07004266
lijuang39831732016-01-08 17:49:02 +08004267 /* Initialise wdog to catch early lk crashes */
4268#if WDOG_SUPPORT
4269 msm_wdog_init();
4270#endif
4271
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07004272 /* Setup page size information for nv storage */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004273 if (target_is_emmc_boot())
4274 {
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07004275 page_size = mmc_page_size();
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004276 page_mask = page_size - 1;
Gaurav Nebhwani4d2389c2016-03-17 21:10:05 +05304277 mmc_blocksize = mmc_get_device_blocksize();
4278 mmc_blocksize_mask = mmc_blocksize - 1;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004279 }
4280 else
4281 {
4282 page_size = flash_page_size();
4283 page_mask = page_size - 1;
4284 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07004285 ASSERT((MEMBASE + MEMSIZE) > MEMBASE);
4286
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004287 read_device_info(&device);
vijay kumarc65876c2015-04-24 13:29:16 +05304288 read_allow_oem_unlock(&device);
Shashank Mittal162244e2011-08-08 19:01:25 -07004289
Mayank Grover351a75e2017-05-30 20:06:08 +05304290 /* Detect multi-slot support */
4291 if (partition_multislot_is_supported())
4292 {
4293 boot_slot = partition_find_active_slot();
4294 if (boot_slot == INVALID)
4295 {
4296 boot_into_fastboot = true;
4297 dprintf(INFO, "Active Slot: (INVALID)\n");
4298 }
4299 else
4300 {
4301 /* Setting the state of system to boot active slot */
4302 partition_mark_active_slot(boot_slot);
4303 dprintf(INFO, "Active Slot: (%s)\n", SUFFIX_SLOT(boot_slot));
4304 }
4305 }
4306
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08004307 /* Display splash screen if enabled */
4308#if DISPLAY_SPLASH_SCREEN
lijuang99c02d82015-02-13 19:04:34 +08004309#if NO_ALARM_DISPLAY
4310 if (!check_alarm_boot()) {
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08004311#endif
lijuang99c02d82015-02-13 19:04:34 +08004312 dprintf(SPEW, "Display Init: Start\n");
Ajay Singh Parmara7865a82015-04-16 21:27:52 -07004313#if DISPLAY_HDMI_PRIMARY
4314 if (!strlen(device.display_panel))
4315 strlcpy(device.display_panel, DISPLAY_PANEL_HDMI,
4316 sizeof(device.display_panel));
4317#endif
Channagoud Kadabi90869ce2015-04-27 11:15:14 -07004318#if ENABLE_WBC
Channagoud Kadabid801ac72015-08-26 11:21:51 -07004319 /* Wait if the display shutdown is in progress */
4320 while(pm_app_display_shutdown_in_prgs());
Channagoud Kadabi90869ce2015-04-27 11:15:14 -07004321 if (!pm_appsbl_display_init_done())
4322 target_display_init(device.display_panel);
4323 else
4324 display_image_on_screen();
4325#else
lijuang99c02d82015-02-13 19:04:34 +08004326 target_display_init(device.display_panel);
Channagoud Kadabi90869ce2015-04-27 11:15:14 -07004327#endif
lijuang99c02d82015-02-13 19:04:34 +08004328 dprintf(SPEW, "Display Init: Done\n");
4329#if NO_ALARM_DISPLAY
4330 }
4331#endif
4332#endif
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08004333
Greg Griscod6250552011-06-29 14:40:23 -07004334 target_serialno((unsigned char *) sn_buf);
Ajay Dudanib06c05f2011-05-12 14:46:10 -07004335 dprintf(SPEW,"serial number: %s\n",sn_buf);
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -08004336
Dhaval Patel223ec952013-07-18 14:49:44 -07004337 memset(display_panel_buf, '\0', MAX_PANEL_BUF_SIZE);
4338
Matthew Qindefd5562014-07-11 18:02:40 +08004339 /*
4340 * Check power off reason if user force reset,
4341 * if yes phone will do normal boot.
4342 */
4343 if (is_user_force_reset())
4344 goto normal_boot;
4345
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004346 /* Check if we should do something other than booting up */
Ameya Thakur0b9c2442013-05-10 13:22:56 -07004347 if (keys_get_state(KEY_VOLUMEUP) && keys_get_state(KEY_VOLUMEDOWN))
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07004348 {
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +03004349 dprintf(ALWAYS,"dload mode key sequence detected\n");
lijuang395b5e62015-11-19 17:39:44 +08004350 reboot_device(EMERGENCY_DLOAD);
4351 dprintf(CRITICAL,"Failed to reboot into dload mode\n");
4352
Ameya Thakur0b9c2442013-05-10 13:22:56 -07004353 boot_into_fastboot = true;
4354 }
4355 if (!boot_into_fastboot)
4356 {
4357 if (keys_get_state(KEY_HOME) || keys_get_state(KEY_VOLUMEUP))
4358 boot_into_recovery = 1;
4359 if (!boot_into_recovery &&
4360 (keys_get_state(KEY_BACK) || keys_get_state(KEY_VOLUMEDOWN)))
Pavel Nedev5d91d412013-04-29 11:34:24 +03004361 boot_into_fastboot = true;
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07004362 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004363 #if NO_KEYPAD_DRIVER
Kinson Chik0b1c8162011-08-31 16:31:57 -07004364 if (fastboot_trigger())
Pavel Nedev5d91d412013-04-29 11:34:24 +03004365 boot_into_fastboot = true;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004366 #endif
Chandan Uddarajubedca152010-06-02 23:05:15 -07004367
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004368#if USE_PON_REBOOT_REG
4369 reboot_mode = check_hard_reboot_mode();
4370#else
Ajay Dudani77421292010-10-27 19:34:06 -07004371 reboot_mode = check_reboot_mode();
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004372#endif
4373 if (reboot_mode == RECOVERY_MODE)
4374 {
Ajay Dudani77421292010-10-27 19:34:06 -07004375 boot_into_recovery = 1;
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004376 }
4377 else if(reboot_mode == FASTBOOT_MODE)
4378 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03004379 boot_into_fastboot = true;
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004380 }
4381 else if(reboot_mode == ALARM_BOOT)
4382 {
Matthew Qind886f3c2014-01-17 16:52:01 +08004383 boot_reason_alarm = true;
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004384 }
Parth Dixit207573a2015-10-27 17:26:21 +05304385#if VERIFIED_BOOT
Mayank Grover889be1b2017-09-12 20:12:23 +05304386 else if (VB_V2 == target_get_vb_version())
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004387 {
Mayank Grover889be1b2017-09-12 20:12:23 +05304388 if (reboot_mode == DM_VERITY_ENFORCING)
4389 {
4390 device.verity_mode = 1;
4391 write_device_info(&device);
4392 }
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07004393#if ENABLE_VB_ATTEST
Mayank Grover889be1b2017-09-12 20:12:23 +05304394 else if (reboot_mode == DM_VERITY_EIO)
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07004395#else
Mayank Grover889be1b2017-09-12 20:12:23 +05304396 else if (reboot_mode == DM_VERITY_LOGGING)
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07004397#endif
Mayank Grover889be1b2017-09-12 20:12:23 +05304398 {
4399 device.verity_mode = 0;
4400 write_device_info(&device);
4401 }
4402 else if (reboot_mode == DM_VERITY_KEYSCLEAR)
4403 {
4404 if(send_delete_keys_to_tz())
4405 ASSERT(0);
4406 }
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07004407 }
Parth Dixitddbc7352015-10-18 03:13:31 +05304408#endif
Ajay Dudani77421292010-10-27 19:34:06 -07004409
Matthew Qindefd5562014-07-11 18:02:40 +08004410normal_boot:
Pavel Nedev5d91d412013-04-29 11:34:24 +03004411 if (!boot_into_fastboot)
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004412 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03004413 if (target_is_emmc_boot())
Shashank Mittala0032282011-08-26 14:50:11 -07004414 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03004415 if(emmc_recovery_init())
4416 dprintf(ALWAYS,"error in emmc_recovery_init\n");
4417 if(target_use_signed_kernel())
Shashank Mittala0032282011-08-26 14:50:11 -07004418 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03004419 if((device.is_unlocked) || (device.is_tampered))
4420 {
4421 #ifdef TZ_TAMPER_FUSE
4422 set_tamper_fuse_cmd();
4423 #endif
4424 #if USE_PCOM_SECBOOT
4425 set_tamper_flag(device.is_tampered);
4426 #endif
4427 }
Shashank Mittala0032282011-08-26 14:50:11 -07004428 }
Amit Blay6281ebc2015-01-11 14:44:08 +02004429
Mayank Grover351a75e2017-05-30 20:06:08 +05304430retry_boot:
4431 /* Trying to boot active partition */
4432 if (partition_multislot_is_supported())
4433 {
4434 boot_slot = partition_find_boot_slot();
4435 partition_mark_active_slot(boot_slot);
4436 if (boot_slot == INVALID)
4437 goto fastboot;
4438 }
4439
4440 boot_err_type = boot_linux_from_mmc();
4441 switch (boot_err_type)
4442 {
4443 case ERR_INVALID_PAGE_SIZE:
4444 case ERR_DT_PARSE:
4445 case ERR_ABOOT_ADDR_OVERLAP:
4446 if(partition_multislot_is_supported())
4447 goto retry_boot;
4448 else
4449 break;
4450 case ERR_INVALID_BOOT_MAGIC:
4451 default:
4452 break;
4453 /* going to fastboot menu */
4454 }
Shashank Mittala0032282011-08-26 14:50:11 -07004455 }
Pavel Nedev5d91d412013-04-29 11:34:24 +03004456 else
4457 {
4458 recovery_init();
4459 #if USE_PCOM_SECBOOT
4460 if((device.is_unlocked) || (device.is_tampered))
4461 set_tamper_flag(device.is_tampered);
4462 #endif
4463 boot_linux_from_flash();
4464 }
4465 dprintf(CRITICAL, "ERROR: Could not do normal boot. Reverting "
4466 "to fastboot mode.\n");
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004467 }
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004468
Mayank Grover351a75e2017-05-30 20:06:08 +05304469fastboot:
Amol Jadi5edf3552013-07-23 14:15:34 -07004470 /* We are here means regular boot did not happen. Start fastboot. */
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07004471
Amol Jadi5edf3552013-07-23 14:15:34 -07004472 /* register aboot specific fastboot commands */
4473 aboot_fastboot_register_commands();
Amol Jadi57abe4c2011-05-24 15:47:27 -07004474
Amol Jadi5edf3552013-07-23 14:15:34 -07004475 /* dump partition table for debug info */
Kinson Chikf1a43512011-07-14 11:28:39 -07004476 partition_dump();
Amol Jadi5edf3552013-07-23 14:15:34 -07004477
4478 /* initialize and start fastboot */
4479 fastboot_init(target_get_scratch_address(), target_get_max_flash_size());
lijuang4ece1e72015-08-14 21:02:36 +08004480#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08004481 display_fastboot_menu();
lijuang4ece1e72015-08-14 21:02:36 +08004482#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -08004483}
4484
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07004485uint32_t get_page_size()
4486{
4487 return page_size;
4488}
4489
Amir Samuelov57a6fa22013-06-05 16:36:43 +03004490/*
4491 * Calculated and save hash (SHA256) for non-signed boot image.
4492 *
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07004493 * @param image_addr - Boot image address
4494 * @param image_size - Size of the boot image
Amir Samuelov57a6fa22013-06-05 16:36:43 +03004495 *
4496 * @return int - 0 on success, negative value on failure.
4497 */
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07004498static int aboot_save_boot_hash_mmc(uint32_t image_addr, uint32_t image_size)
Amir Samuelov57a6fa22013-06-05 16:36:43 +03004499{
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07004500 unsigned int digest[8];
4501#if IMAGE_VERIF_ALGO_SHA1
4502 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA1;
4503#else
4504 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA256;
4505#endif
Amir Samuelov57a6fa22013-06-05 16:36:43 +03004506
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07004507 target_crypto_init_params();
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -08004508 hash_find((unsigned char *) image_addr, image_size, (unsigned char *)&digest, auth_algo);
Amir Samuelov57a6fa22013-06-05 16:36:43 +03004509
4510 save_kernel_hash_cmd(digest);
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07004511 dprintf(INFO, "aboot_save_boot_hash_mmc: imagesize_actual size %d bytes.\n", (int) image_size);
Amir Samuelov57a6fa22013-06-05 16:36:43 +03004512
4513 return 0;
4514}
4515
Mayank Grover351a75e2017-05-30 20:06:08 +05304516
Brian Swetland9c4c0752009-01-25 16:23:50 -08004517APP_START(aboot)
4518 .init = aboot_init,
4519APP_END