blob: ea90598378bf7d6e39f29645649019048ed737a9 [file] [log] [blame]
Brian Swetland9c4c0752009-01-25 16:23:50 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
4 *
Mayank Grover98c4c742019-04-25 17:21:37 +05305 * Copyright (c) 2009-2019, 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>
Monika Singh292b3e92018-03-17 22:40:23 +053052#include <verifiedboot.h>
Greg Griscod6250552011-06-29 14:40:23 -070053#include <platform.h>
Shashank Mittalcd98d472011-08-02 14:29:24 -070054#include <crypto_hash.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070055#include <malloc.h>
Amol Jadi492d5a52013-03-15 16:12:34 -070056#include <boot_stats.h>
Amir Samuelov57a6fa22013-06-05 16:36:43 +030057#include <sha.h>
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -070058#include <platform/iomap.h>
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -070059#include <boot_device.h>
Shashank Mittald3e54dd2014-08-28 15:24:02 -070060#include <boot_verifier.h>
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +053061#include <image_verify.h>
Matthew Qinbb7923d2015-02-09 10:56:09 +080062#include <decompress.h>
Unnati Gandhi17b3bfc2015-05-11 12:58:16 +053063#include <platform/timer.h>
lijuang511a2b52015-08-14 20:50:51 +080064#include <sys/types.h>
Channagoud Kadabi036c6052015-02-09 15:19:59 -080065#if USE_RPMB_FOR_DEVINFO
66#include <rpmb.h>
67#endif
Dima Zavin214cc642009-01-26 11:16:21 -080068
Channagoud Kadabi90869ce2015-04-27 11:15:14 -070069#if ENABLE_WBC
70#include <pm_app_smbchg.h>
71#endif
72
Neeti Desai17379b82012-06-04 18:42:53 -070073#if DEVICE_TREE
74#include <libfdt.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070075#include <dev_tree.h>
Neeti Desai17379b82012-06-04 18:42:53 -070076#endif
77
Aparna Mallavarapu118ccae2015-06-03 13:47:11 +053078#if WDOG_SUPPORT
79#include <wdog.h>
80#endif
81
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -070082#include <reboot.h>
Shashank Mittalcd98d472011-08-02 14:29:24 -070083#include "image_verify.h"
Shashank Mittal024c0332010-02-03 11:44:00 -080084#include "recovery.h"
Brian Swetland9c4c0752009-01-25 16:23:50 -080085#include "bootimg.h"
86#include "fastboot.h"
Ajay Dudani5c761132011-04-07 20:19:04 -070087#include "sparse_format.h"
Ajay Dudanide984792015-03-02 09:57:41 -080088#include "meta_format.h"
Greg Grisco6e754772011-06-23 12:19:39 -070089#include "mmc.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070090#include "devinfo.h"
Neeti Desai465491e2012-07-31 12:53:35 -070091#include "board.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070092#include "scm.h"
Amit Blay6281ebc2015-01-11 14:44:08 +020093#include "mdtp.h"
Sridhar Parasuram32b30662015-07-10 13:33:22 -070094#include "secapp_loader.h"
lijuanga40d6302015-07-20 20:10:13 +080095#include <menu_keys_detect.h>
96#include <display_menu.h>
Channagoud Kadabi736c4962015-08-21 11:56:52 -070097#include "fastboot_test.h"
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -070098
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070099extern bool target_use_signed_kernel(void);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700100extern void platform_uninit(void);
Channagoud Kadabi33defe22013-06-18 18:35:40 -0700101extern void target_uninit(void);
Joonwoo Park61112782013-10-02 19:50:39 -0700102extern int get_target_boot_params(const char *cmdline, const char *part,
vijay kumar870515d2015-08-31 16:37:24 +0530103 char **buf);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700104
Sridhar Parasuram7e16d172015-07-05 11:35:23 -0700105void *info_buf;
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700106void write_device_info_mmc(device_info *dev);
107void write_device_info_flash(device_info *dev);
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -0700108static int aboot_save_boot_hash_mmc(uint32_t image_addr, uint32_t image_size);
Channagoud Kadabiad259832015-05-29 11:14:17 -0700109static int aboot_frp_unlock(char *pname, void *data, unsigned sz);
Kishor PK38ed93d2017-04-25 14:19:26 +0530110static inline uint64_t validate_partition_size();
Parth Dixit54ac3bb2017-03-07 15:52:48 +0530111bool pwr_key_is_pressed = false;
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530112static bool is_systemd_present=false;
Mayank Grover351a75e2017-05-30 20:06:08 +0530113static void publish_getvar_multislot_vars();
Sridhar Parasurame94e8152014-10-24 14:06:03 -0700114/* fastboot command function pointer */
115typedef void (*fastboot_cmd_fn) (const char *, void *, unsigned);
Monika Singh292b3e92018-03-17 22:40:23 +0530116bool get_perm_attr_status();
Sridhar Parasurame94e8152014-10-24 14:06:03 -0700117
118struct fastboot_cmd_desc {
119 char * name;
120 fastboot_cmd_fn cb;
121};
122
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -0700123#define EXPAND(NAME) #NAME
124#define TARGET(NAME) EXPAND(NAME)
Brian Swetland2defe162009-08-18 14:35:59 -0700125
Ajay Singh Parmara7865a82015-04-16 21:27:52 -0700126#define DISPLAY_PANEL_HDMI "hdmi"
127
Ajay Dudanicd01f9b2010-02-23 21:13:04 -0800128#ifdef MEMBASE
129#define EMMC_BOOT_IMG_HEADER_ADDR (0xFF000+(MEMBASE))
130#else
David Ng183a7422009-12-07 14:55:21 -0800131#define EMMC_BOOT_IMG_HEADER_ADDR 0xFF000
Ajay Dudanicd01f9b2010-02-23 21:13:04 -0800132#endif
133
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700134#ifndef MEMSIZE
135#define MEMSIZE 1024*1024
136#endif
137
138#define MAX_TAGS_SIZE 1024
Kishor PKee5c0a32018-03-06 16:49:46 +0530139#define PLL_CODES_OFFSET 4096
Kun Liang2f1601a2013-08-12 16:29:54 +0800140/* make 4096 as default size to ensure EFS,EXT4's erasing */
141#define DEFAULT_ERASE_SIZE 4096
Ujwal Patelc0b0a252015-08-16 14:05:35 -0700142#define MAX_PANEL_BUF_SIZE 196
Vijay Kumar Pendoti0b21f462016-05-02 17:09:18 +0530143#define FOOTER_SIZE 16384
Kun Liang2f1601a2013-08-12 16:29:54 +0800144
Dhaval Patelf83d73b2014-06-23 16:24:37 -0700145#define DISPLAY_DEFAULT_PREFIX "mdss_mdp"
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700146#define BOOT_DEV_MAX_LEN 64
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -0800147
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800148#define IS_ARM64(ptr) (ptr->magic_64 == KERNEL64_HDR_MAGIC) ? true : false
149
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -0700150#define ADD_OF(a, b) (UINT_MAX - b > a) ? (a + b) : UINT_MAX
151
Ameya Thakur10a33452016-06-13 14:24:26 -0700152//Size of the header that is used in case the boot image has
153//a uncompressed kernel + appended dtb
154#define PATCHED_KERNEL_HEADER_SIZE 20
155
156//String used to determine if the boot image has
157//a uncompressed kernel + appended dtb
158#define PATCHED_KERNEL_MAGIC "UNCOMPRESSED_IMG"
159
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800160#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700161static const char *emmc_cmdline = " androidboot.bootdevice=";
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700162#else
David Ng183a7422009-12-07 14:55:21 -0800163static const char *emmc_cmdline = " androidboot.emmc=true";
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700164#endif
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800165static const char *usb_sn_cmdline = " androidboot.serialno=";
Pavel Nedev328ac822013-04-05 15:25:11 +0300166static const char *androidboot_mode = " androidboot.mode=";
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530167
168static const char *systemd_ffbm_mode = " systemd.unit=ffbm.target";
Matthew Qind886f3c2014-01-17 16:52:01 +0800169static const char *alarmboot_cmdline = " androidboot.alarmboot=true";
Pavel Nedev898298c2013-02-27 12:36:09 -0800170static const char *loglevel = " quiet";
Ajay Dudanica3a33c2011-11-18 08:31:40 -0800171static const char *battchg_pause = " androidboot.mode=charger";
Shashank Mittalcd98d472011-08-02 14:29:24 -0700172static const char *auth_kernel = " androidboot.authorized_kernel=true";
Pavel Nedev5614d222013-06-17 18:01:02 +0300173static const char *secondary_gpt_enable = " gpt";
Monika Singh292b3e92018-03-17 22:40:23 +0530174#ifdef MDTP_SUPPORT
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200175static const char *mdtp_activated_flag = " mdtp";
Monika Singh292b3e92018-03-17 22:40:23 +0530176#endif
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800177static const char *baseband_apq = " androidboot.baseband=apq";
178static const char *baseband_msm = " androidboot.baseband=msm";
179static const char *baseband_csfb = " androidboot.baseband=csfb";
180static const char *baseband_svlte2a = " androidboot.baseband=svlte2a";
Ajay Dudani403bc492011-09-30 16:17:21 -0700181static const char *baseband_mdm = " androidboot.baseband=mdm";
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800182static const char *baseband_mdm2 = " androidboot.baseband=mdm2";
Amol Jadi5c61a952012-05-04 17:05:35 -0700183static const char *baseband_sglte = " androidboot.baseband=sglte";
Amol Jadi2a15a272013-01-22 12:03:36 -0800184static const char *baseband_dsda = " androidboot.baseband=dsda";
185static const char *baseband_dsda2 = " androidboot.baseband=dsda2";
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800186static const char *baseband_sglte2 = " androidboot.baseband=sglte2";
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800187static const char *warmboot_cmdline = " qpnp-power-on.warm_boot=1";
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +0530188static const char *baseband_apq_nowgr = " androidboot.baseband=baseband_apq_nowgr";
Mayank Grover351a75e2017-05-30 20:06:08 +0530189static const char *androidboot_slot_suffix = " androidboot.slot_suffix=";
190static const char *skip_ramfs = " skip_initramfs";
Mayank Grover466d6562018-05-10 14:52:20 +0530191
192#if HIBERNATION_SUPPORT
193static const char *resume = " resume=/dev/mmcblk0p";
194#endif
195
Sourabh Banerjee6c7153c2018-03-20 01:21:57 +0530196#ifdef INIT_BIN_LE
197static const char *sys_path_cmdline = " rootwait ro init="INIT_BIN_LE;
198#else
Mayank Grover3804be72017-06-22 11:59:23 +0530199static const char *sys_path_cmdline = " rootwait ro init=/init";
Sourabh Banerjee6c7153c2018-03-20 01:21:57 +0530200#endif
Sourabh Banerjee386b1322018-02-27 09:37:28 +0530201
202#if VERITY_LE
203static const char *verity_dev = " root=/dev/dm-0";
204static const char *verity_system_part = " dm=\"system";
205static const char *verity_params = " none ro,0 1 android-verity /dev/mmcblk0p";
206#else
Mayank Grover5384ed82018-05-09 12:09:24 +0530207static const char *sys_path = " root=/dev/mmcblk0p";
lijuang83ef4b22018-08-23 11:01:55 +0800208
209#define MAX_DTBO_IDX_STR 64
210static const char *android_boot_dtbo_idx = " androidboot.dtbo_idx=";
Sourabh Banerjee386b1322018-02-27 09:37:28 +0530211#endif
Ajay Dudanid04110c2011-01-17 23:55:07 -0800212
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700213#if VERIFIED_BOOT
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700214static const char *verity_mode = " androidboot.veritymode=";
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700215static const char *verified_state= " androidboot.verifiedbootstate=";
Parth Dixita5715a02015-10-29 12:25:10 +0530216static const char *keymaster_v1= " androidboot.keymaster=1";
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700217//indexed based on enum values, green is 0 by default
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700218
219struct verified_boot_verity_mode vbvm[] =
220{
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700221#if ENABLE_VB_ATTEST
222 {false, "eio"},
223#else
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700224 {false, "logging"},
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700225#endif
Sridhar Parasuramd69f7902015-07-10 13:31:17 -0700226 {true, "enforcing"},
227};
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700228struct verified_boot_state_name vbsn[] =
229{
230 {GREEN, "green"},
231 {ORANGE, "orange"},
232 {YELLOW,"yellow"},
233 {RED,"red" },
234};
235#endif
Channagoud Kadabi86b0c112016-03-16 19:23:16 -0700236/*As per spec delay wait time before shutdown in Red state*/
237#define DELAY_WAIT 30000
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700238static unsigned page_size = 0;
239static unsigned page_mask = 0;
Gaurav Nebhwani4d2389c2016-03-17 21:10:05 +0530240static unsigned mmc_blocksize = 0;
241static unsigned mmc_blocksize_mask = 0;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700242static char ffbm_mode_string[FFBM_MODE_BUF_SIZE];
243static bool boot_into_ffbm;
vijay kumar870515d2015-08-31 16:37:24 +0530244static char *target_boot_params = NULL;
Matthew Qind886f3c2014-01-17 16:52:01 +0800245static bool boot_reason_alarm;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -0700246static bool devinfo_present = true;
Channagoud Kadabi736c4962015-08-21 11:56:52 -0700247bool boot_into_fastboot = false;
Parth Dixit4097b622016-03-15 14:42:27 +0530248static uint32_t dt_size = 0;
Monika Singh292b3e92018-03-17 22:40:23 +0530249static char *vbcmdline;
250static bootinfo info = {0};
Mayank Grovere1ab96c2018-09-04 20:31:31 +0530251static void *recovery_dtbo_buf = NULL;
252static uint32_t recovery_dtbo_size = 0;
253
Shashank Mittalcd98d472011-08-02 14:29:24 -0700254/* Assuming unauthorized kernel image by default */
255static int auth_kernel_img = 0;
Monika Singh292b3e92018-03-17 22:40:23 +0530256static device_info device = {DEVICE_MAGIC,0,0,0,0,{0},{0},{0},1,{0},0,{0}};
257
vijay kumarc65876c2015-04-24 13:29:16 +0530258static bool is_allow_unlock = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700259
vijay kumarca2e6812015-07-08 20:28:25 +0530260static char frp_ptns[2][8] = {"config","frp"};
261
lijuang511a2b52015-08-14 20:50:51 +0800262static const char *critical_flash_allowed_ptn[] = {
263 "aboot",
264 "rpm",
265 "tz",
266 "sbl",
267 "sdi",
268 "sbl1",
269 "xbl",
270 "hyp",
271 "pmic",
272 "bootloader",
273 "devinfo",
274 "partition"};
275
Dima Zavin42168f22009-01-30 11:52:22 -0800276struct atag_ptbl_entry
277{
278 char name[16];
279 unsigned offset;
280 unsigned size;
281 unsigned flags;
282};
283
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700284/*
285 * Partition info, required to be published
286 * for fastboot
287 */
288struct getvar_partition_info {
Mayank Grover7b8a8f82017-10-27 13:07:59 +0530289 char part_name[MAX_GPT_NAME_SIZE]; /* Partition name */
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700290 char getvar_size[MAX_GET_VAR_NAME_SIZE]; /* fastboot get var name for size */
291 char getvar_type[MAX_GET_VAR_NAME_SIZE]; /* fastboot get var name for type */
292 char size_response[MAX_RSP_SIZE]; /* fastboot response for size */
293 char type_response[MAX_RSP_SIZE]; /* fastboot response for type */
294};
295
296/*
Mayank Grover7b8a8f82017-10-27 13:07:59 +0530297 * Update the part_type_known for known paritions types.
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700298 */
Mayank Groverd38fe012018-03-13 15:33:16 +0530299#define RAW_STR "raw"
Mayank Grover52cd10a2018-03-15 12:57:54 +0530300#define EXT_STR "ext4"
301#define F2FS_STR "f2fs"
302
303#define FS_SUPERBLOCK_OFFSET 0x400
304#define EXT_MAGIC 0xEF53
305#define EXT_MAGIC_OFFSET_SB 0x38
306#define F2FS_MAGIC 0xF2F52010 // F2FS Magic Number
307#define F2FS_MAGIC_OFFSET_SB 0x0
308
309typedef enum fs_signature_type {
310 EXT_FS_SIGNATURE = 1,
311 EXT_F2FS_SIGNATURE = 2,
312 NO_FS = -1
313} fs_signature_type;
314
Mayank Grover7b8a8f82017-10-27 13:07:59 +0530315struct getvar_partition_info part_info[NUM_PARTITIONS];
316struct getvar_partition_info part_type_known[] =
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700317{
Mayank Grover49920212018-02-09 18:15:55 +0530318 { "system" , "partition-size:", "partition-type:", "", "ext4" },
319 { "userdata" , "partition-size:", "partition-type:", "", "ext4" },
320 { "cache" , "partition-size:", "partition-type:", "", "ext4" },
321 { "recoveryfs" , "partition-size:", "partition-type:", "", "ext4" },
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700322};
323
324char max_download_size[MAX_RSP_SIZE];
Ameya Thakur11cf1a62013-08-05 12:44:48 -0700325char charger_screen_enabled[MAX_RSP_SIZE];
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800326char sn_buf[13];
Dhaval Patel223ec952013-07-18 14:49:44 -0700327char display_panel_buf[MAX_PANEL_BUF_SIZE];
Unnati Gandhi62c8ab82014-01-24 11:01:01 +0530328char panel_display_mode[MAX_RSP_SIZE];
Mayank Grovera64dfbe2018-05-17 14:06:34 +0530329char soc_version_str[MAX_RSP_SIZE];
Mayank Grover7b8a8f82017-10-27 13:07:59 +0530330char block_size_string[MAX_RSP_SIZE];
Mukesh Ojhabb6e7f32018-03-02 15:04:06 +0530331#if PRODUCT_IOT
Mayank Grover7b8a8f82017-10-27 13:07:59 +0530332
333/* For IOT we are using custom version */
334#define PRODUCT_IOT_VERSION "IOT001"
335char bootloader_version_string[MAX_RSP_SIZE];
336#endif
lijuang102dfa92015-10-09 18:31:03 +0800337
338#if CHECK_BAT_VOLTAGE
lijuang65c5a822015-08-29 16:35:36 +0800339char battery_voltage[MAX_RSP_SIZE];
lijuang102dfa92015-10-09 18:31:03 +0800340char battery_soc_ok [MAX_RSP_SIZE];
341#endif
342
lijuangf16461c2015-08-03 17:09:34 +0800343char get_variant[MAX_RSP_SIZE];
Greg Griscod6250552011-06-29 14:40:23 -0700344
Greg Griscod2471ef2011-07-14 13:00:42 -0700345extern int emmc_recovery_init(void);
346
Kinson Chik0b1c8162011-08-31 16:31:57 -0700347#if NO_KEYPAD_DRIVER
348extern int fastboot_trigger(void);
349#endif
Greg Griscod2471ef2011-07-14 13:00:42 -0700350
Mayank Grovere1ab96c2018-09-04 20:31:31 +0530351static void update_ker_tags_rdisk_addr(boot_img_hdr *hdr, bool is_arm64)
Channagoud Kadabia22144f2013-03-20 11:49:01 -0700352{
353 /* overwrite the destination of specified for the project */
Channagoud Kadabi7042fa32013-04-26 16:44:14 -0700354#ifdef ABOOT_IGNORE_BOOT_HEADER_ADDRS
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800355 if (is_arm64)
356 hdr->kernel_addr = ABOOT_FORCE_KERNEL64_ADDR;
357 else
358 hdr->kernel_addr = ABOOT_FORCE_KERNEL_ADDR;
Channagoud Kadabi7042fa32013-04-26 16:44:14 -0700359 hdr->ramdisk_addr = ABOOT_FORCE_RAMDISK_ADDR;
360 hdr->tags_addr = ABOOT_FORCE_TAGS_ADDR;
Channagoud Kadabia22144f2013-03-20 11:49:01 -0700361#endif
362}
363
Dima Zavin42168f22009-01-30 11:52:22 -0800364static void ptentry_to_tag(unsigned **ptr, struct ptentry *ptn)
365{
366 struct atag_ptbl_entry atag_ptn;
367
368 memcpy(atag_ptn.name, ptn->name, 16);
369 atag_ptn.name[15] = '\0';
370 atag_ptn.offset = ptn->start;
371 atag_ptn.size = ptn->length;
372 atag_ptn.flags = ptn->flags;
373 memcpy(*ptr, &atag_ptn, sizeof(struct atag_ptbl_entry));
374 *ptr += sizeof(struct atag_ptbl_entry) / sizeof(unsigned);
375}
Mayank Grover9df84c02018-08-30 15:46:35 +0530376#ifdef VERIFIED_BOOT_2
377void load_vbmeta_image(void **vbmeta_image_buf, uint32_t *vbmeta_image_sz)
378{
379 int index = 0;
380 char *vbm_img_buf = NULL;
381 unsigned long long ptn = 0;
382 unsigned long long ptn_size = 0;
383
384 /* Immediately return if dtbo is not supported */
385 index = partition_get_index("vbmeta");
386 ptn = partition_get_offset(index);
387 if(!ptn)
388 {
389 dprintf(CRITICAL, "ERROR: vbmeta partition not found.\n");
390 return;
391 }
392
393 ptn_size = partition_get_size(index);
394 if (ptn_size > MAX_SUPPORTED_VBMETA_IMG_BUF)
395 {
396 dprintf(CRITICAL, "ERROR: vbmeta parition size is greater than supported.\n");
397 return;
398 }
399
400 vbm_img_buf = (char *)memalign(CACHE_LINE, ROUNDUP((uint32_t)ptn_size, CACHE_LINE));
401 if (!vbm_img_buf)
402 {
403 dprintf(CRITICAL, "ERROR: vbmeta unable to locate buffer\n");
404 return;
405 }
406
407 mmc_set_lun(partition_get_lun(index));
408 if (mmc_read(ptn, (uint32_t *)vbm_img_buf, (uint32_t)ptn_size))
409 {
410 dprintf(CRITICAL, "ERROR: vbmeta read failure\n");
411 free(vbm_img_buf);
412 return;
413 }
414
415 *vbmeta_image_buf = vbm_img_buf;
416 *vbmeta_image_sz = (uint32_t)ptn_size;
417 return;
418}
419#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -0800420
lijuang102dfa92015-10-09 18:31:03 +0800421#if CHECK_BAT_VOLTAGE
422void update_battery_status(void)
423{
424 snprintf(battery_voltage,MAX_RSP_SIZE, "%d",target_get_battery_voltage());
425 snprintf(battery_soc_ok ,MAX_RSP_SIZE, "%s",target_battery_soc_ok()? "yes":"no");
426}
427#endif
428
Neeti Desaie245d492012-06-01 12:52:13 -0700429unsigned char *update_cmdline(const char * cmdline)
Brian Swetland9c4c0752009-01-25 16:23:50 -0800430{
David Ng183a7422009-12-07 14:55:21 -0800431 int cmdline_len = 0;
432 int have_cmdline = 0;
Amol Jadi168b7712012-03-06 16:15:00 -0800433 unsigned char *cmdline_final = NULL;
Neeti Desaie245d492012-06-01 12:52:13 -0700434 int pause_at_bootup = 0;
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800435 bool warm_boot = false;
Pavel Nedev5614d222013-06-17 18:01:02 +0300436 bool gpt_exists = partition_gpt_exists();
Joonwoo Park61112782013-10-02 19:50:39 -0700437 int have_target_boot_params = 0;
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700438 char *boot_dev_buf = NULL;
Monika Singh292b3e92018-03-17 22:40:23 +0530439#ifdef MDTP_SUPPORT
Mayank Grover351a75e2017-05-30 20:06:08 +0530440 bool is_mdtp_activated = 0;
Monika Singh292b3e92018-03-17 22:40:23 +0530441#endif
Mayank Grover351a75e2017-05-30 20:06:08 +0530442 int current_active_slot = INVALID;
Mayank Grover3804be72017-06-22 11:59:23 +0530443 int system_ptn_index = -1;
444 unsigned int lun = 0;
445 char lun_char_base = 'a';
Sourabh Banerjee386b1322018-02-27 09:37:28 +0530446#if VERITY_LE
447 int syspath_buflen = strlen(verity_dev)
448 + strlen(verity_system_part) + (sizeof(char) * 2) + 2
449 + strlen(verity_params) + sizeof(int) + 2;
450#else
lijuang83ef4b22018-08-23 11:01:55 +0800451 int syspath_buflen = strlen(sys_path) + sizeof(int) + 2; /*allocate buflen for largest possible string*/
452 char dtbo_idx_str[MAX_DTBO_IDX_STR] = "\0";
453 int dtbo_idx = INVALID_PTN;
Sourabh Banerjee386b1322018-02-27 09:37:28 +0530454#endif
Mayank Grover3804be72017-06-22 11:59:23 +0530455 char syspath_buf[syspath_buflen];
Mayank Grover466d6562018-05-10 14:52:20 +0530456#if HIBERNATION_SUPPORT
457 int resume_buflen = strlen(resume) + sizeof(int) + 2;
458 char resume_buf[resume_buflen];
459 int swap_ptn_index = INVALID_PTN;
460#endif
461
Mayank Grover889be1b2017-09-12 20:12:23 +0530462#if VERIFIED_BOOT
463 uint32_t boot_state = RED;
464#endif
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530465
466#if USE_LE_SYSTEMD
467 is_systemd_present=true;
468#endif
469
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700470#if VERIFIED_BOOT
Mayank Grover912eaa62017-10-26 12:08:53 +0530471 if (VB_M <= target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +0530472 {
473 boot_state = boot_verify_get_state();
474 }
Parth Dixitddbc7352015-10-18 03:13:31 +0530475#endif
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700476
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200477#ifdef MDTP_SUPPORT
478 mdtp_activated(&is_mdtp_activated);
479#endif /* MDTP_SUPPORT */
Dima Zavin42168f22009-01-30 11:52:22 -0800480
Brian Swetland9c4c0752009-01-25 16:23:50 -0800481 if (cmdline && cmdline[0]) {
David Ng183a7422009-12-07 14:55:21 -0800482 cmdline_len = strlen(cmdline);
483 have_cmdline = 1;
484 }
485 if (target_is_emmc_boot()) {
486 cmdline_len += strlen(emmc_cmdline);
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800487#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700488 boot_dev_buf = (char *) malloc(sizeof(char) * BOOT_DEV_MAX_LEN);
489 ASSERT(boot_dev_buf);
490 platform_boot_dev_cmdline(boot_dev_buf);
491 cmdline_len += strlen(boot_dev_buf);
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700492#endif
David Ng183a7422009-12-07 14:55:21 -0800493 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800494
495 cmdline_len += strlen(usb_sn_cmdline);
496 cmdline_len += strlen(sn_buf);
497
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700498#if VERIFIED_BOOT
Mayank Grover912eaa62017-10-26 12:08:53 +0530499 if (VB_M <= target_get_vb_version())
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700500 {
Mayank Grover889be1b2017-09-12 20:12:23 +0530501 cmdline_len += strlen(verified_state) + strlen(vbsn[boot_state].name);
502 if ((device.verity_mode != 0 ) && (device.verity_mode != 1))
503 {
504 dprintf(CRITICAL, "Devinfo paritition possibly corrupted!!!. Please erase devinfo partition to continue booting\n");
505 ASSERT(0);
506 }
507 cmdline_len += strlen(verity_mode) + strlen(vbvm[device.verity_mode].name);
508 cmdline_len += strlen(keymaster_v1);
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700509 }
Parth Dixitddbc7352015-10-18 03:13:31 +0530510#endif
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700511
Monika Singh292b3e92018-03-17 22:40:23 +0530512
513 if (vbcmdline != NULL) {
514 dprintf(DEBUG, "UpdateCmdLine vbcmdline present len %d\n",
515 strlen(vbcmdline));
516 cmdline_len += strlen(vbcmdline);
517 }
518
Pavel Nedev5614d222013-06-17 18:01:02 +0300519 if (boot_into_recovery && gpt_exists)
520 cmdline_len += strlen(secondary_gpt_enable);
521
Monika Singh292b3e92018-03-17 22:40:23 +0530522#ifdef MDTP_SUPPORT
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200523 if(is_mdtp_activated)
524 cmdline_len += strlen(mdtp_activated_flag);
Monika Singh292b3e92018-03-17 22:40:23 +0530525#endif
Pavel Nedev328ac822013-04-05 15:25:11 +0300526 if (boot_into_ffbm) {
527 cmdline_len += strlen(androidboot_mode);
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530528
529 if(is_systemd_present)
530 cmdline_len += strlen(systemd_ffbm_mode);
531
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700532 cmdline_len += strlen(ffbm_mode_string);
Pavel Nedev898298c2013-02-27 12:36:09 -0800533 /* reduce kernel console messages to speed-up boot */
534 cmdline_len += strlen(loglevel);
Matthew Qind886f3c2014-01-17 16:52:01 +0800535 } else if (boot_reason_alarm) {
536 cmdline_len += strlen(alarmboot_cmdline);
Zhenhua Huang431dafa2015-06-30 16:13:37 +0800537 } else if ((target_build_variant_user() || device.charger_screen_enabled)
lijuang266b17d2018-08-17 18:53:42 +0800538 && target_pause_for_battery_charge() && !boot_into_recovery) {
David Ngf773dde2010-07-26 19:55:08 -0700539 pause_at_bootup = 1;
540 cmdline_len += strlen(battchg_pause);
541 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800542
Shashank Mittalcd98d472011-08-02 14:29:24 -0700543 if(target_use_signed_kernel() && auth_kernel_img) {
544 cmdline_len += strlen(auth_kernel);
545 }
546
Joonwoo Park61112782013-10-02 19:50:39 -0700547 if (get_target_boot_params(cmdline, boot_into_recovery ? "recoveryfs" :
548 "system",
vijay kumar870515d2015-08-31 16:37:24 +0530549 &target_boot_params) == 0) {
Joonwoo Park61112782013-10-02 19:50:39 -0700550 have_target_boot_params = 1;
551 cmdline_len += strlen(target_boot_params);
552 }
553
Ajay Dudanid04110c2011-01-17 23:55:07 -0800554 /* Determine correct androidboot.baseband to use */
555 switch(target_baseband())
556 {
557 case BASEBAND_APQ:
558 cmdline_len += strlen(baseband_apq);
559 break;
560
561 case BASEBAND_MSM:
562 cmdline_len += strlen(baseband_msm);
563 break;
564
565 case BASEBAND_CSFB:
566 cmdline_len += strlen(baseband_csfb);
567 break;
568
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800569 case BASEBAND_SVLTE2A:
570 cmdline_len += strlen(baseband_svlte2a);
Ajay Dudanid04110c2011-01-17 23:55:07 -0800571 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700572
573 case BASEBAND_MDM:
574 cmdline_len += strlen(baseband_mdm);
575 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700576
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800577 case BASEBAND_MDM2:
578 cmdline_len += strlen(baseband_mdm2);
579 break;
580
Amol Jadi5c61a952012-05-04 17:05:35 -0700581 case BASEBAND_SGLTE:
582 cmdline_len += strlen(baseband_sglte);
583 break;
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530584
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800585 case BASEBAND_SGLTE2:
586 cmdline_len += strlen(baseband_sglte2);
587 break;
588
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530589 case BASEBAND_DSDA:
590 cmdline_len += strlen(baseband_dsda);
591 break;
Amol Jadi2a15a272013-01-22 12:03:36 -0800592
593 case BASEBAND_DSDA2:
594 cmdline_len += strlen(baseband_dsda2);
595 break;
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +0530596 case BASEBAND_APQ_NOWGR:
597 cmdline_len += strlen(baseband_apq_nowgr);
598 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800599 }
600
Vladislav Levenetz3cd45242017-04-05 08:58:07 +0300601#if ENABLE_DISPLAY
Lijuan Gao4a5b8322014-07-24 10:38:42 +0800602 if (cmdline) {
603 if ((strstr(cmdline, DISPLAY_DEFAULT_PREFIX) == NULL) &&
Padmanabhan Komandurubccbcdc2015-06-30 16:19:24 +0530604 target_display_panel_node(display_panel_buf,
605 MAX_PANEL_BUF_SIZE) &&
Lijuan Gao4a5b8322014-07-24 10:38:42 +0800606 strlen(display_panel_buf)) {
607 cmdline_len += strlen(display_panel_buf);
608 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700609 }
Vladislav Levenetz3cd45242017-04-05 08:58:07 +0300610#endif
Dhaval Patel223ec952013-07-18 14:49:44 -0700611
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800612 if (target_warm_boot()) {
613 warm_boot = true;
614 cmdline_len += strlen(warmboot_cmdline);
615 }
616
Mayank Grover5384ed82018-05-09 12:09:24 +0530617 if (target_uses_system_as_root() ||
618 partition_multislot_is_supported())
Mayank Grover351a75e2017-05-30 20:06:08 +0530619 {
620 current_active_slot = partition_find_active_slot();
621 cmdline_len += (strlen(androidboot_slot_suffix)+
622 strlen(SUFFIX_SLOT(current_active_slot)));
623
Mayank Grover3804be72017-06-22 11:59:23 +0530624 system_ptn_index = partition_get_index("system");
625 if (platform_boot_dev_isemmc())
626 {
Sourabh Banerjee386b1322018-02-27 09:37:28 +0530627#if VERITY_LE
628 /*
629 Condition 4: Verity and A/B both enabled
630 Eventual command line looks like:
631 ... androidboot.slot_suffix=<slot_suffix> ... rootfstype=ext4 ...
632 ... root=/dev/dm-0 dm="system_<slot_suffix> none ro,0 1 android-verity /dev/mmcblk0p<NN>"
633 */
634 snprintf(syspath_buf, syspath_buflen, " %s %s%s %s%d\"",
635 verity_dev,
636 verity_system_part, suffix_slot[current_active_slot],
637 verity_params, system_ptn_index + 1);
638#else
639 /*
640 Condition 5: A/B enabled, but verity disabled
641 Eventual command line looks like:
642 ... androidboot.slot_suffix=<slot_suffix> ... rootfstype=ext4 ...
643 ... root=/dev/mmcblk0p<NN> ...
644 */
645 snprintf(syspath_buf, syspath_buflen, " %s%d",
646 sys_path, system_ptn_index + 1);
647#endif
Mayank Grover3804be72017-06-22 11:59:23 +0530648 }
649 else
650 {
651 lun = partition_get_lun(system_ptn_index);
652 snprintf(syspath_buf, syspath_buflen, " root=/dev/sd%c%d",
653 lun_char_base + lun,
654 partition_get_index_in_lun("system", lun));
655 }
Mayank Grover351a75e2017-05-30 20:06:08 +0530656
Monika Singh292b3e92018-03-17 22:40:23 +0530657#ifndef VERIFIED_BOOT_2
Mayank Grover3804be72017-06-22 11:59:23 +0530658 cmdline_len += strlen(syspath_buf);
Monika Singh292b3e92018-03-17 22:40:23 +0530659#endif
Mayank Grover5384ed82018-05-09 12:09:24 +0530660 }
661
662 if (target_uses_system_as_root() ||
663 partition_multislot_is_supported())
664 {
665 cmdline_len += strlen(sys_path_cmdline);
Mayank Grover351a75e2017-05-30 20:06:08 +0530666 if (!boot_into_recovery)
667 cmdline_len += strlen(skip_ramfs);
668 }
669
Mayank Grover466d6562018-05-10 14:52:20 +0530670#if HIBERNATION_SUPPORT
671 if (platform_boot_dev_isemmc())
672 {
673 swap_ptn_index = partition_get_index("swap");
674 if (swap_ptn_index != INVALID_PTN)
675 {
676 snprintf(resume_buf, resume_buflen,
677 " %s%d", resume,
678 (swap_ptn_index + 1));
679 cmdline_len += strlen(resume_buf);
680 }
681 else
682 {
683 dprintf(INFO, "WARNING: swap partition not found\n");
684 }
685 }
686#endif
687
Channagoud Kadabi85c7ec32016-01-28 23:09:21 -0800688#if TARGET_CMDLINE_SUPPORT
689 char *target_cmdline_buf = malloc(TARGET_MAX_CMDLNBUF);
690 int target_cmd_line_len;
691 ASSERT(target_cmdline_buf);
692 target_cmd_line_len = target_update_cmdline(target_cmdline_buf);
693 cmdline_len += target_cmd_line_len;
694#endif
695
lijuang83ef4b22018-08-23 11:01:55 +0800696#if !VERITY_LE
697 dtbo_idx = get_dtbo_idx ();
698 if (dtbo_idx != INVALID_PTN) {
699 snprintf(dtbo_idx_str, sizeof(dtbo_idx_str), "%s%d",
700 android_boot_dtbo_idx, dtbo_idx);
701 cmdline_len += strlen (dtbo_idx_str);
702 }
703#endif
704
David Ng183a7422009-12-07 14:55:21 -0800705 if (cmdline_len > 0) {
706 const char *src;
Maria Yu52254c02014-07-04 16:14:54 +0800707 unsigned char *dst;
708
709 cmdline_final = (unsigned char*) malloc((cmdline_len + 4) & (~3));
710 ASSERT(cmdline_final != NULL);
vijay kumar287bb542015-09-29 13:01:52 +0530711 memset((void *)cmdline_final, 0, sizeof(*cmdline_final));
Maria Yu52254c02014-07-04 16:14:54 +0800712 dst = cmdline_final;
Neeti Desaie245d492012-06-01 12:52:13 -0700713
Amol Jadi168b7712012-03-06 16:15:00 -0800714 /* Save start ptr for debug print */
David Ng183a7422009-12-07 14:55:21 -0800715 if (have_cmdline) {
716 src = cmdline;
717 while ((*dst++ = *src++));
718 }
719 if (target_is_emmc_boot()) {
720 src = emmc_cmdline;
721 if (have_cmdline) --dst;
David Ngf773dde2010-07-26 19:55:08 -0700722 have_cmdline = 1;
723 while ((*dst++ = *src++));
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800724#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700725 src = boot_dev_buf;
726 if (have_cmdline) --dst;
727 while ((*dst++ = *src++));
728#endif
David Ngf773dde2010-07-26 19:55:08 -0700729 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800730
Sridhar Parasuram4311b8e2015-05-28 17:01:59 -0700731#if VERIFIED_BOOT
Mayank Grover912eaa62017-10-26 12:08:53 +0530732 if (VB_M <= target_get_vb_version())
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700733 {
Mayank Grover889be1b2017-09-12 20:12:23 +0530734 src = verified_state;
735 if(have_cmdline) --dst;
736 have_cmdline = 1;
737 while ((*dst++ = *src++));
738 src = vbsn[boot_state].name;
739 if(have_cmdline) --dst;
740 while ((*dst++ = *src++));
741
742 if ((device.verity_mode != 0 ) && (device.verity_mode != 1))
743 {
744 dprintf(CRITICAL, "Devinfo paritition possibly corrupted!!!. Please erase devinfo partition to continue booting\n");
745 ASSERT(0);
746 }
747 src = verity_mode;
748 if(have_cmdline) --dst;
749 while ((*dst++ = *src++));
750 src = vbvm[device.verity_mode].name;
751 if(have_cmdline) -- dst;
752 while ((*dst++ = *src++));
753 src = keymaster_v1;
754 if(have_cmdline) --dst;
755 while ((*dst++ = *src++));
Sridhar Parasuram7d8bb9a2015-09-23 18:21:19 -0700756 }
Parth Dixitddbc7352015-10-18 03:13:31 +0530757#endif
Monika Singh292b3e92018-03-17 22:40:23 +0530758
759 if (vbcmdline != NULL) {
760 src = vbcmdline;
761 if (have_cmdline) --dst;
762 while ((*dst++ = *src++));
763 }
764
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800765 src = usb_sn_cmdline;
766 if (have_cmdline) --dst;
767 have_cmdline = 1;
768 while ((*dst++ = *src++));
769 src = sn_buf;
770 if (have_cmdline) --dst;
771 have_cmdline = 1;
772 while ((*dst++ = *src++));
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800773 if (warm_boot) {
774 if (have_cmdline) --dst;
775 src = warmboot_cmdline;
776 while ((*dst++ = *src++));
777 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800778
Pavel Nedev5614d222013-06-17 18:01:02 +0300779 if (boot_into_recovery && gpt_exists) {
780 src = secondary_gpt_enable;
781 if (have_cmdline) --dst;
782 while ((*dst++ = *src++));
783 }
Monika Singh292b3e92018-03-17 22:40:23 +0530784#ifdef MDTP_SUPPORT
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200785 if (is_mdtp_activated) {
786 src = mdtp_activated_flag;
787 if (have_cmdline) --dst;
788 while ((*dst++ = *src++));
789 }
Monika Singh292b3e92018-03-17 22:40:23 +0530790#endif
Pavel Nedev328ac822013-04-05 15:25:11 +0300791 if (boot_into_ffbm) {
792 src = androidboot_mode;
793 if (have_cmdline) --dst;
794 while ((*dst++ = *src++));
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700795 src = ffbm_mode_string;
Pavel Nedev328ac822013-04-05 15:25:11 +0300796 if (have_cmdline) --dst;
797 while ((*dst++ = *src++));
Hareesh Gauthamabf1e1e2017-04-12 18:09:24 +0530798
799 if(is_systemd_present) {
800 src = systemd_ffbm_mode;
801 if (have_cmdline) --dst;
802 while ((*dst++ = *src++));
803 }
804
Pavel Nedev898298c2013-02-27 12:36:09 -0800805 src = loglevel;
806 if (have_cmdline) --dst;
807 while ((*dst++ = *src++));
Matthew Qind886f3c2014-01-17 16:52:01 +0800808 } else if (boot_reason_alarm) {
809 src = alarmboot_cmdline;
810 if (have_cmdline) --dst;
811 while ((*dst++ = *src++));
Pavel Nedev328ac822013-04-05 15:25:11 +0300812 } else if (pause_at_bootup) {
David Ngf773dde2010-07-26 19:55:08 -0700813 src = battchg_pause;
814 if (have_cmdline) --dst;
David Ng183a7422009-12-07 14:55:21 -0800815 while ((*dst++ = *src++));
816 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800817
Shashank Mittalcd98d472011-08-02 14:29:24 -0700818 if(target_use_signed_kernel() && auth_kernel_img) {
819 src = auth_kernel;
820 if (have_cmdline) --dst;
821 while ((*dst++ = *src++));
822 }
823
Ajay Dudanid04110c2011-01-17 23:55:07 -0800824 switch(target_baseband())
825 {
826 case BASEBAND_APQ:
827 src = baseband_apq;
828 if (have_cmdline) --dst;
829 while ((*dst++ = *src++));
830 break;
831
832 case BASEBAND_MSM:
833 src = baseband_msm;
834 if (have_cmdline) --dst;
835 while ((*dst++ = *src++));
836 break;
837
838 case BASEBAND_CSFB:
839 src = baseband_csfb;
840 if (have_cmdline) --dst;
841 while ((*dst++ = *src++));
842 break;
843
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800844 case BASEBAND_SVLTE2A:
845 src = baseband_svlte2a;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800846 if (have_cmdline) --dst;
847 while ((*dst++ = *src++));
848 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700849
850 case BASEBAND_MDM:
851 src = baseband_mdm;
852 if (have_cmdline) --dst;
853 while ((*dst++ = *src++));
854 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700855
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800856 case BASEBAND_MDM2:
857 src = baseband_mdm2;
858 if (have_cmdline) --dst;
859 while ((*dst++ = *src++));
860 break;
861
Amol Jadi5c61a952012-05-04 17:05:35 -0700862 case BASEBAND_SGLTE:
863 src = baseband_sglte;
864 if (have_cmdline) --dst;
865 while ((*dst++ = *src++));
866 break;
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530867
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800868 case BASEBAND_SGLTE2:
869 src = baseband_sglte2;
870 if (have_cmdline) --dst;
871 while ((*dst++ = *src++));
872 break;
873
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530874 case BASEBAND_DSDA:
875 src = baseband_dsda;
876 if (have_cmdline) --dst;
877 while ((*dst++ = *src++));
878 break;
Amol Jadi2a15a272013-01-22 12:03:36 -0800879
880 case BASEBAND_DSDA2:
881 src = baseband_dsda2;
882 if (have_cmdline) --dst;
883 while ((*dst++ = *src++));
884 break;
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +0530885 case BASEBAND_APQ_NOWGR:
886 src = baseband_apq_nowgr;
887 if (have_cmdline) --dst;
888 while ((*dst++ = *src++));
889 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800890 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700891
892 if (strlen(display_panel_buf)) {
Dhaval Patel223ec952013-07-18 14:49:44 -0700893 src = display_panel_buf;
894 if (have_cmdline) --dst;
895 while ((*dst++ = *src++));
896 }
Joonwoo Park61112782013-10-02 19:50:39 -0700897
898 if (have_target_boot_params) {
899 if (have_cmdline) --dst;
900 src = target_boot_params;
901 while ((*dst++ = *src++));
vijay kumar870515d2015-08-31 16:37:24 +0530902 free(target_boot_params);
Joonwoo Park61112782013-10-02 19:50:39 -0700903 }
Channagoud Kadabi85c7ec32016-01-28 23:09:21 -0800904
Mayank Grover351a75e2017-05-30 20:06:08 +0530905 if (partition_multislot_is_supported() && have_cmdline)
906 {
907 src = androidboot_slot_suffix;
908 --dst;
909 while ((*dst++ = *src++));
910 --dst;
911 src = SUFFIX_SLOT(current_active_slot);
912 while ((*dst++ = *src++));
Mayank Grover5384ed82018-05-09 12:09:24 +0530913 }
Mayank Grover351a75e2017-05-30 20:06:08 +0530914
Mayank Grover351a75e2017-05-30 20:06:08 +0530915
Mayank Grover5384ed82018-05-09 12:09:24 +0530916 /*
917 * System-As-Root behaviour, system.img should contain both
918 * system content and ramdisk content, and should be mounted at
919 * root(a/b).
920 * Apending skip_ramfs for non a/b builds which use, system as root.
921 */
922 if ((target_uses_system_as_root() ||
923 partition_multislot_is_supported()) &&
924 have_cmdline)
925 {
926 if (!boot_into_recovery)
927 {
928 src = skip_ramfs;
Mayank Grover351a75e2017-05-30 20:06:08 +0530929 --dst;
930 while ((*dst++ = *src++));
Mayank Grover5384ed82018-05-09 12:09:24 +0530931 }
932
933 src = sys_path_cmdline;
934 --dst;
935 while ((*dst++ = *src++));
Mayank Grover3804be72017-06-22 11:59:23 +0530936
Monika Singh292b3e92018-03-17 22:40:23 +0530937#ifndef VERIFIED_BOOT_2
Mayank Grover5384ed82018-05-09 12:09:24 +0530938 src = syspath_buf;
939 --dst;
940 while ((*dst++ = *src++));
Monika Singh292b3e92018-03-17 22:40:23 +0530941#endif
Mayank Grover351a75e2017-05-30 20:06:08 +0530942 }
943
Mayank Grover466d6562018-05-10 14:52:20 +0530944#if HIBERNATION_SUPPORT
945 if (swap_ptn_index != INVALID_PTN)
946 {
947 src = resume_buf;
948 --dst;
949 while ((*dst++ = *src++));
950 }
951#endif
952
Channagoud Kadabi85c7ec32016-01-28 23:09:21 -0800953#if TARGET_CMDLINE_SUPPORT
954 if (target_cmdline_buf && target_cmd_line_len)
955 {
956 if (have_cmdline) --dst;
957 src = target_cmdline_buf;
958 while((*dst++ = *src++));
959 free(target_cmdline_buf);
960 }
961#endif
lijuang83ef4b22018-08-23 11:01:55 +0800962
963#if !VERITY_LE
964 if (dtbo_idx != INVALID_PTN) {
965 src = dtbo_idx_str;
966 --dst;
967 while ((*dst++ = *src++));
968 }
969#endif
Neeti Desaie245d492012-06-01 12:52:13 -0700970 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700971
972
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700973 if (boot_dev_buf)
974 free(boot_dev_buf);
975
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -0800976 if (cmdline_final)
977 dprintf(INFO, "cmdline: %s\n", cmdline_final);
978 else
979 dprintf(INFO, "cmdline is NULL\n");
Neeti Desaie245d492012-06-01 12:52:13 -0700980 return cmdline_final;
981}
982
983unsigned *atag_core(unsigned *ptr)
984{
985 /* CORE */
986 *ptr++ = 2;
987 *ptr++ = 0x54410001;
988
989 return ptr;
990
991}
992
993unsigned *atag_ramdisk(unsigned *ptr, void *ramdisk,
994 unsigned ramdisk_size)
995{
996 if (ramdisk_size) {
997 *ptr++ = 4;
998 *ptr++ = 0x54420005;
999 *ptr++ = (unsigned)ramdisk;
1000 *ptr++ = ramdisk_size;
Brian Swetland9c4c0752009-01-25 16:23:50 -08001001 }
1002
Neeti Desaie245d492012-06-01 12:52:13 -07001003 return ptr;
1004}
1005
1006unsigned *atag_ptable(unsigned **ptr_addr)
1007{
1008 int i;
1009 struct ptable *ptable;
1010
1011 if ((ptable = flash_get_ptable()) && (ptable->count != 0)) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001012 *(*ptr_addr)++ = 2 + (ptable->count * (sizeof(struct atag_ptbl_entry) /
1013 sizeof(unsigned)));
Neeti Desaie245d492012-06-01 12:52:13 -07001014 *(*ptr_addr)++ = 0x4d534d70;
1015 for (i = 0; i < ptable->count; ++i)
1016 ptentry_to_tag(ptr_addr, ptable_get(ptable, i));
1017 }
1018
1019 return (*ptr_addr);
1020}
1021
1022unsigned *atag_cmdline(unsigned *ptr, const char *cmdline)
1023{
1024 int cmdline_length = 0;
1025 int n;
Neeti Desaie245d492012-06-01 12:52:13 -07001026 char *dest;
1027
Amol Jadi10c7d1c2013-01-25 13:24:29 -08001028 cmdline_length = strlen((const char*)cmdline);
Neeti Desaie245d492012-06-01 12:52:13 -07001029 n = (cmdline_length + 4) & (~3);
1030
1031 *ptr++ = (n / 4) + 2;
1032 *ptr++ = 0x54410009;
1033 dest = (char *) ptr;
Amol Jadi10c7d1c2013-01-25 13:24:29 -08001034 while ((*dest++ = *cmdline++));
Neeti Desaie245d492012-06-01 12:52:13 -07001035 ptr += (n / 4);
1036
1037 return ptr;
1038}
1039
1040unsigned *atag_end(unsigned *ptr)
1041{
Brian Swetland9c4c0752009-01-25 16:23:50 -08001042 /* END */
1043 *ptr++ = 0;
1044 *ptr++ = 0;
1045
Neeti Desaie245d492012-06-01 12:52:13 -07001046 return ptr;
1047}
1048
1049void generate_atags(unsigned *ptr, const char *cmdline,
1050 void *ramdisk, unsigned ramdisk_size)
1051{
vijay kumar21a37452015-12-29 16:23:21 +05301052 unsigned *orig_ptr = ptr;
Neeti Desaie245d492012-06-01 12:52:13 -07001053 ptr = atag_core(ptr);
1054 ptr = atag_ramdisk(ptr, ramdisk, ramdisk_size);
1055 ptr = target_atag_mem(ptr);
1056
1057 /* Skip NAND partition ATAGS for eMMC boot */
1058 if (!target_is_emmc_boot()){
1059 ptr = atag_ptable(&ptr);
1060 }
1061
vijay kumar21a37452015-12-29 16:23:21 +05301062 /*
1063 * Atags size filled till + cmdline size + 1 unsigned for 4-byte boundary + 4 unsigned
1064 * for atag identifier in atag_cmdline and atag_end should be with in MAX_TAGS_SIZE bytes
1065 */
Mayank Groverbc8a2ef2018-02-23 18:03:36 +05301066 if (!cmdline)
1067 return;
1068
vijay kumar21a37452015-12-29 16:23:21 +05301069 if (((ptr - orig_ptr) + strlen(cmdline) + 5 * sizeof(unsigned)) < MAX_TAGS_SIZE) {
1070 ptr = atag_cmdline(ptr, cmdline);
1071 ptr = atag_end(ptr);
1072 }
1073 else {
1074 dprintf(CRITICAL,"Crossing ATAGs Max size allowed\n");
1075 ASSERT(0);
1076 }
Neeti Desaie245d492012-06-01 12:52:13 -07001077}
1078
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001079typedef void entry_func_ptr(unsigned, unsigned, unsigned*);
Neeti Desaie245d492012-06-01 12:52:13 -07001080void boot_linux(void *kernel, unsigned *tags,
1081 const char *cmdline, unsigned machtype,
1082 void *ramdisk, unsigned ramdisk_size)
1083{
Amol Jadi10c7d1c2013-01-25 13:24:29 -08001084 unsigned char *final_cmdline;
Amol Jadib6be5c12012-11-14 13:39:51 -08001085#if DEVICE_TREE
Neeti Desai17379b82012-06-04 18:42:53 -07001086 int ret = 0;
Amol Jadib6be5c12012-11-14 13:39:51 -08001087#endif
1088
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001089 void (*entry)(unsigned, unsigned, unsigned*) = (entry_func_ptr*)(PA((addr_t)kernel));
Deepa Dinamani25a9f762012-11-30 15:57:15 -08001090 uint32_t tags_phys = PA((addr_t)tags);
vijay kumar1a50a642015-11-16 12:41:15 +05301091 struct kernel64_hdr *kptr = ((struct kernel64_hdr*)(PA((addr_t)kernel)));
Deepa Dinamani25a9f762012-11-30 15:57:15 -08001092
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301093 ramdisk = (void *)PA((addr_t)ramdisk);
Neeti Desaie245d492012-06-01 12:52:13 -07001094
Amol Jadi10c7d1c2013-01-25 13:24:29 -08001095 final_cmdline = update_cmdline((const char*)cmdline);
1096
Neeti Desai17379b82012-06-04 18:42:53 -07001097#if DEVICE_TREE
Amol Jadib6be5c12012-11-14 13:39:51 -08001098 dprintf(INFO, "Updating device tree: start\n");
1099
Neeti Desai17379b82012-06-04 18:42:53 -07001100 /* Update the Device Tree */
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301101 ret = update_device_tree((void *)tags,(const char *)final_cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -07001102 if(ret)
1103 {
1104 dprintf(CRITICAL, "ERROR: Updating Device Tree Failed \n");
1105 ASSERT(0);
1106 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001107 dprintf(INFO, "Updating device tree: done\n");
Neeti Desai17379b82012-06-04 18:42:53 -07001108#else
Neeti Desaie245d492012-06-01 12:52:13 -07001109 /* Generating the Atags */
Amol Jadi10c7d1c2013-01-25 13:24:29 -08001110 generate_atags(tags, final_cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -07001111#endif
Neeti Desaie245d492012-06-01 12:52:13 -07001112
Monika Singhb0db4b82018-09-26 12:18:02 +05301113#if VERIFIED_BOOT || VERIFIED_BOOT_2
1114 if (VB_M <= target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05301115 {
1116 if (device.verity_mode == 0) {
lijuangbdd9bb42016-03-01 18:22:17 +08001117#if FBCON_DISPLAY_MSG
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001118#if ENABLE_VB_ATTEST
Mayank Grover889be1b2017-09-12 20:12:23 +05301119 display_bootverify_menu(DISPLAY_MENU_EIO);
1120 wait_for_users_action();
1121 if(!pwr_key_is_pressed)
1122 shutdown_device();
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001123#else
Mayank Grover889be1b2017-09-12 20:12:23 +05301124 display_bootverify_menu(DISPLAY_MENU_LOGGING);
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001125#endif
Mayank Grover889be1b2017-09-12 20:12:23 +05301126 wait_for_users_action();
lijuangbdd9bb42016-03-01 18:22:17 +08001127#else
Mayank Grover889be1b2017-09-12 20:12:23 +05301128 dprintf(CRITICAL,
1129 "The dm-verity is not started in enforcing mode.\nWait for 5 seconds before proceeding\n");
1130 mdelay(5000);
lijuangbdd9bb42016-03-01 18:22:17 +08001131#endif
Mayank Grover889be1b2017-09-12 20:12:23 +05301132 }
lijuangbdd9bb42016-03-01 18:22:17 +08001133 }
lijuangbdd9bb42016-03-01 18:22:17 +08001134#endif
1135
1136#if VERIFIED_BOOT
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07001137 /* Write protect the device info */
Channagoud Kadabi3bd9d1e2015-05-05 16:18:20 -07001138 if (!boot_into_recovery && target_build_variant_user() && devinfo_present && mmc_write_protect("devinfo", 1))
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07001139 {
1140 dprintf(INFO, "Failed to write protect dev info\n");
1141 ASSERT(0);
1142 }
1143#endif
1144
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08001145 /* Turn off splash screen if enabled */
1146#if DISPLAY_SPLASH_SCREEN
1147 target_display_shutdown();
1148#endif
1149
Veera Sundaram Sankaran67ea0932015-09-25 10:09:30 -07001150 /* Perform target specific cleanup */
1151 target_uninit();
Monika Singh292b3e92018-03-17 22:40:23 +05301152 free_verified_boot_resource(&info);
1153 if (final_cmdline)
1154 free(final_cmdline);
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08001155
Deepa Dinamani33734bc2013-03-06 12:16:06 -08001156 dprintf(INFO, "booting linux @ %p, ramdisk @ %p (%d), tags/device tree @ %p\n",
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301157 entry, ramdisk, ramdisk_size, (void *)tags_phys);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001158
1159 enter_critical_section();
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001160
Amol Jadi4421e652011-06-16 15:00:48 -07001161 /* do any platform specific cleanup before kernel entry */
1162 platform_uninit();
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001163
Brian Swetland9c4c0752009-01-25 16:23:50 -08001164 arch_disable_cache(UCACHE);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001165
Amol Jadi504f9fe2012-08-16 13:56:48 -07001166#if ARM_WITH_MMU
Brian Swetland9c4c0752009-01-25 16:23:50 -08001167 arch_disable_mmu();
Amol Jadi504f9fe2012-08-16 13:56:48 -07001168#endif
Amol Jadi492d5a52013-03-15 16:12:34 -07001169 bs_set_timestamp(BS_KERNEL_ENTRY);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001170
1171 if (IS_ARM64(kptr))
1172 /* Jump to a 64bit kernel */
1173 scm_elexec_call((paddr_t)kernel, tags_phys);
1174 else
1175 /* Jump to a 32bit kernel */
1176 entry(0, machtype, (unsigned*)tags_phys);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001177}
1178
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001179/* Function to check if the memory address range falls within the aboot
1180 * boundaries.
1181 * start: Start of the memory region
1182 * size: Size of the memory region
1183 */
Vijay Kumar Pendoti9c002ad2016-03-09 13:52:45 +05301184int check_aboot_addr_range_overlap(uintptr_t start, uint32_t size)
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001185{
1186 /* Check for boundary conditions. */
Sundarajan Srinivasance2a0ea2013-12-16 17:02:56 -08001187 if ((UINT_MAX - start) < size)
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001188 return -1;
1189
1190 /* Check for memory overlap. */
1191 if ((start < MEMBASE) && ((start + size) <= MEMBASE))
1192 return 0;
Channagoud Kadabi94143912013-10-15 12:53:52 -07001193 else if (start >= (MEMBASE + MEMSIZE))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001194 return 0;
1195 else
1196 return -1;
1197}
1198
Mayank Grovere559cec2017-10-17 15:12:03 +05301199/* Function to check if the memory address range falls beyond ddr region.
1200 * start: Start of the memory region
1201 * size: Size of the memory region
1202 */
1203int check_ddr_addr_range_bound(uintptr_t start, uint32_t size)
1204{
1205 uintptr_t ddr_pa_start_addr = PA(get_ddr_start());
1206 uint64_t ddr_size = smem_get_ddr_size();
1207 uint64_t ddr_pa_end_addr = ddr_pa_start_addr + ddr_size;
1208 uintptr_t pa_start_addr = PA(start);
1209
1210 /* Check for boundary conditions. */
1211 if ((UINT_MAX - start) < size)
1212 return -1;
1213
1214 /* Check if memory range is beyond the ddr range. */
1215 if (pa_start_addr < ddr_pa_start_addr ||
1216 pa_start_addr >= (ddr_pa_end_addr) ||
1217 (pa_start_addr + size) > ddr_pa_end_addr)
1218 return -1;
1219 else
1220 return 0;
1221}
1222
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001223BUF_DMA_ALIGN(buf, BOOT_IMG_MAX_PAGE_SIZE); //Equal to max-supported pagesize
Dima Zavin214cc642009-01-26 11:16:21 -08001224
Mayank Groverdd080e82018-09-04 20:12:13 +05301225int getimage(void **image_buffer, uint32_t *imgsize,
1226 const char *imgname)
Monika Singh292b3e92018-03-17 22:40:23 +05301227{
Mayank Groverdd080e82018-09-04 20:12:13 +05301228 uint32_t loadedindex;
1229 if (image_buffer == NULL || imgsize == NULL ||
Monika Singh292b3e92018-03-17 22:40:23 +05301230 imgname == NULL) {
1231 dprintf(CRITICAL, "getimage: invalid parameters\n");
1232 return -1;
1233 }
Mayank Groverdd080e82018-09-04 20:12:13 +05301234 for (loadedindex = 0; loadedindex < info.num_loaded_images; loadedindex++) {
1235 if (!strncmp(info.images[loadedindex].name, imgname,
Monika Singh292b3e92018-03-17 22:40:23 +05301236 strlen(imgname))) {
Mayank Groverdd080e82018-09-04 20:12:13 +05301237 *image_buffer = info.images[loadedindex].image_buffer;
1238 *imgsize = info.images[loadedindex].imgsize;
Mayank Grover027a9412018-09-04 15:12:05 +05301239 dprintf(SPEW, "getimage(): Loaded image [%s|%d]\n",
1240 info.images[loadedindex].name,
1241 info.images[loadedindex].imgsize);
Monika Singh292b3e92018-03-17 22:40:23 +05301242 return 0;
1243 }
1244 }
1245 return -1;
1246}
1247
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001248static void verify_signed_bootimg(uint32_t bootimg_addr, uint32_t bootimg_size)
1249{
1250 int ret;
Channagoud Kadabia8c623f2015-01-13 14:48:48 -08001251
1252#if !VERIFIED_BOOT
Sundarajan Srinivasance54d6e2013-11-11 12:45:00 -08001253#if IMAGE_VERIF_ALGO_SHA1
1254 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA1;
1255#else
1256 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA256;
1257#endif
Channagoud Kadabia8c623f2015-01-13 14:48:48 -08001258#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001259
1260 /* Assume device is rooted at this time. */
1261 device.is_tampered = 1;
1262
1263 dprintf(INFO, "Authenticating boot image (%d): start\n", bootimg_size);
1264
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001265#if VERIFIED_BOOT
Monika Singh7d2fc272018-03-16 17:16:01 +05301266 uint32_t bootstate;
1267 if(boot_into_recovery &&
Mayank Grover68fbf0d2017-10-24 14:13:39 +05301268 (!partition_multislot_is_supported()))
Monika Singh7d2fc272018-03-16 17:16:01 +05301269 {
1270 ret = boot_verify_image((unsigned char *)bootimg_addr,
1271 bootimg_size, "/recovery", &bootstate);
1272 }
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001273 else
Monika Singh7d2fc272018-03-16 17:16:01 +05301274 {
1275 ret = boot_verify_image((unsigned char *)bootimg_addr,
1276 bootimg_size, "/boot", &bootstate);
1277 }
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001278 boot_verify_print_state();
1279#else
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001280 ret = image_verify((unsigned char *)bootimg_addr,
1281 (unsigned char *)(bootimg_addr + bootimg_size),
1282 bootimg_size,
Sundarajan Srinivasance54d6e2013-11-11 12:45:00 -08001283 auth_algo);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001284#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001285 dprintf(INFO, "Authenticating boot image: done return value = %d\n", ret);
1286
1287 if (ret)
1288 {
1289 /* Authorized kernel */
1290 device.is_tampered = 0;
Sundarajan Srinivasan3fb21f12013-09-16 18:36:15 -07001291 auth_kernel_img = 1;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001292 }
1293
Amit Blay4aa292f2015-04-28 21:55:59 +03001294#ifdef MDTP_SUPPORT
1295 {
1296 /* Verify MDTP lock.
1297 * For boot & recovery partitions, use aboot's verification result.
1298 */
1299 mdtp_ext_partition_verification_t ext_partition;
1300 ext_partition.partition = boot_into_recovery ? MDTP_PARTITION_RECOVERY : MDTP_PARTITION_BOOT;
1301 ext_partition.integrity_state = device.is_tampered ? MDTP_PARTITION_STATE_INVALID : MDTP_PARTITION_STATE_VALID;
1302 ext_partition.page_size = 0; /* Not needed since already validated */
1303 ext_partition.image_addr = 0; /* Not needed since already validated */
1304 ext_partition.image_size = 0; /* Not needed since already validated */
1305 ext_partition.sig_avail = FALSE; /* Not needed since already validated */
1306 mdtp_fwlock_verify_lock(&ext_partition);
1307 }
1308#endif /* MDTP_SUPPORT */
1309
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001310#if USE_PCOM_SECBOOT
1311 set_tamper_flag(device.is_tampered);
1312#endif
1313
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001314#if VERIFIED_BOOT
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001315 switch(boot_verify_get_state())
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001316 {
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001317 case RED:
lijuanga40d6302015-07-20 20:10:13 +08001318#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08001319 display_bootverify_menu(DISPLAY_MENU_RED);
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001320#if ENABLE_VB_ATTEST
1321 mdelay(DELAY_WAIT);
1322 shutdown_device();
1323#else
lijuanga40d6302015-07-20 20:10:13 +08001324 wait_for_users_action();
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07001325#endif
lijuanga40d6302015-07-20 20:10:13 +08001326#else
1327 dprintf(CRITICAL,
1328 "Your device has failed verification and may not work properly.\nWait for 5 seconds before proceeding\n");
1329 mdelay(5000);
1330#endif
1331
1332 break;
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001333 case YELLOW:
lijuanga40d6302015-07-20 20:10:13 +08001334#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08001335 display_bootverify_menu(DISPLAY_MENU_YELLOW);
lijuanga40d6302015-07-20 20:10:13 +08001336 wait_for_users_action();
1337#else
1338 dprintf(CRITICAL,
1339 "Your device has loaded a different operating system.\nWait for 5 seconds before proceeding\n");
1340 mdelay(5000);
1341#endif
1342 break;
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001343 default:
lijuanga40d6302015-07-20 20:10:13 +08001344 break;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001345 }
1346#endif
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001347#if !VERIFIED_BOOT
Unnati Gandhi1be04752015-03-27 19:41:53 +05301348 if(device.is_tampered)
1349 {
1350 write_device_info_mmc(&device);
1351 #ifdef TZ_TAMPER_FUSE
Monika Singh98257462018-06-06 11:28:49 +05301352 set_tamper_fuse_cmd(HLOS_IMG_TAMPER_FUSE);
Unnati Gandhi1be04752015-03-27 19:41:53 +05301353 #endif
1354 #ifdef ASSERT_ON_TAMPER
1355 dprintf(CRITICAL, "Device is tampered. Asserting..\n");
1356 ASSERT(0);
1357 #endif
1358 }
Sridhar Parasuram8b792422015-07-05 11:38:13 -07001359#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001360}
1361
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301362static bool check_format_bit()
1363{
1364 bool ret = false;
1365 int index;
1366 uint64_t offset;
1367 struct boot_selection_info *in = NULL;
1368 char *buf = NULL;
1369
1370 index = partition_get_index("bootselect");
1371 if (index == INVALID_PTN)
1372 {
1373 dprintf(INFO, "Unable to locate /bootselect partition\n");
1374 return ret;
1375 }
1376 offset = partition_get_offset(index);
1377 if(!offset)
1378 {
1379 dprintf(INFO, "partition /bootselect doesn't exist\n");
1380 return ret;
1381 }
1382 buf = (char *) memalign(CACHE_LINE, ROUNDUP(page_size, CACHE_LINE));
Mayank Grover48860402016-11-29 12:34:53 +05301383 mmc_set_lun(partition_get_lun(index));
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301384 ASSERT(buf);
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301385 if (mmc_read(offset, (uint32_t *)buf, page_size))
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301386 {
1387 dprintf(INFO, "mmc read failure /bootselect %d\n", page_size);
1388 free(buf);
1389 return ret;
1390 }
1391 in = (struct boot_selection_info *) buf;
1392 if ((in->signature == BOOTSELECT_SIGNATURE) &&
1393 (in->version == BOOTSELECT_VERSION)) {
1394 if ((in->state_info & BOOTSELECT_FORMAT) &&
1395 !(in->state_info & BOOTSELECT_FACTORY))
1396 ret = true;
1397 } else {
1398 dprintf(CRITICAL, "Signature: 0x%08x or version: 0x%08x mismatched of /bootselect\n",
1399 in->signature, in->version);
1400 ASSERT(0);
1401 }
1402 free(buf);
1403 return ret;
1404}
1405
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001406void boot_verifier_init()
1407{
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001408 uint32_t boot_state;
1409 /* Check if device unlock */
1410 if(device.is_unlocked)
1411 {
1412 boot_verify_send_event(DEV_UNLOCK);
1413 boot_verify_print_state();
1414 dprintf(CRITICAL, "Device is unlocked! Skipping verification...\n");
1415 return;
1416 }
1417 else
1418 {
1419 boot_verify_send_event(BOOT_INIT);
1420 }
1421
1422 /* Initialize keystore */
1423 boot_state = boot_verify_keystore_init();
1424 if(boot_state == YELLOW)
1425 {
1426 boot_verify_print_state();
1427 dprintf(CRITICAL, "Keystore verification failed! Continuing anyways...\n");
1428 }
1429}
1430
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301431/* Function to return recovery appended dtbo buffer info */
1432void get_recovery_dtbo_info(uint32_t *dtbo_size, void **dtbo_buf)
1433{
1434 *dtbo_size = recovery_dtbo_size;
1435 *dtbo_buf = recovery_dtbo_buf;
1436 return;
1437}
1438
Shashank Mittal23b8f422010-04-16 19:27:21 -07001439int boot_linux_from_mmc(void)
1440{
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301441 boot_img_hdr *hdr = (void*) buf;
1442 boot_img_hdr *uhdr;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001443 unsigned offset = 0;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07001444 int rcode;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001445 unsigned long long ptn = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001446 int index = INVALID_PTN;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001447
Shashank Mittalcd98d472011-08-02 14:29:24 -07001448 unsigned char *image_addr = 0;
1449 unsigned kernel_actual;
1450 unsigned ramdisk_actual;
1451 unsigned imagesize_actual;
Neeti Desai465491e2012-07-31 12:53:35 -07001452 unsigned second_actual = 0;
Neeti Desai465491e2012-07-31 12:53:35 -07001453
Matthew Qin271927e2015-03-31 22:07:07 -04001454 unsigned int dtb_size = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001455 unsigned int out_len = 0;
1456 unsigned int out_avai_len = 0;
1457 unsigned char *out_addr = NULL;
1458 uint32_t dtb_offset = 0;
1459 unsigned char *kernel_start_addr = NULL;
1460 unsigned int kernel_size = 0;
Ameya Thakur10a33452016-06-13 14:24:26 -07001461 unsigned int patched_kernel_hdr_size = 0;
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301462 uint64_t image_size = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001463 int rc;
Monika Singh292b3e92018-03-17 22:40:23 +05301464#if VERIFIED_BOOT_2
1465 int status;
Mayank Grover027a9412018-09-04 15:12:05 +05301466 void *dtbo_image_buf = NULL;
1467 uint32_t dtbo_image_sz = 0;
Mayank Grover9df84c02018-08-30 15:46:35 +05301468 void *vbmeta_image_buf = NULL;
1469 uint32_t vbmeta_image_sz = 0;
Monika Singh292b3e92018-03-17 22:40:23 +05301470#endif
Mayank Groverc93cad82017-10-03 12:23:45 +05301471 char *ptn_name = NULL;
Neeti Desai465491e2012-07-31 12:53:35 -07001472#if DEVICE_TREE
1473 struct dt_table *table;
Joel Kingaa335dc2013-06-03 16:11:08 -07001474 struct dt_entry dt_entry;
Neeti Desai465491e2012-07-31 12:53:35 -07001475 unsigned dt_table_offset;
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001476 uint32_t dt_actual;
Deepa Dinamani19648b42013-09-05 17:05:55 -07001477 uint32_t dt_hdr_size;
Matthew Qin271927e2015-03-31 22:07:07 -04001478 unsigned char *best_match_dt_addr = NULL;
Neeti Desai465491e2012-07-31 12:53:35 -07001479#endif
Matthew Qin49e51fa2015-02-09 10:40:45 +08001480 struct kernel64_hdr *kptr = NULL;
Mayank Grover351a75e2017-05-30 20:06:08 +05301481 int current_active_slot = INVALID;
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001482
Maunik Shah0f3c8ac2014-03-02 17:47:58 +05301483 if (check_format_bit())
1484 boot_into_recovery = 1;
1485
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07001486 if (!boot_into_recovery) {
1487 memset(ffbm_mode_string, '\0', sizeof(ffbm_mode_string));
1488 rcode = get_ffbm(ffbm_mode_string, sizeof(ffbm_mode_string));
1489 if (rcode <= 0) {
1490 boot_into_ffbm = false;
1491 if (rcode < 0)
1492 dprintf(CRITICAL,"failed to get ffbm cookie");
1493 } else
1494 boot_into_ffbm = true;
1495 } else
1496 boot_into_ffbm = false;
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301497 uhdr = (boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001498 if (!memcmp(uhdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1499 dprintf(INFO, "Unified boot method!\n");
1500 hdr = uhdr;
1501 goto unified_boot;
1502 }
Mayank Groverc93cad82017-10-03 12:23:45 +05301503
1504 /* For a/b recovery image code is on boot partition.
1505 If we support multislot, always use boot partition. */
1506 if (boot_into_recovery &&
Mayank Grover8ab4a762019-04-25 17:23:34 +05301507 ((!partition_multislot_is_supported()) ||
1508 (target_dynamic_partition_supported())))
Mayank Groverc93cad82017-10-03 12:23:45 +05301509 ptn_name = "recovery";
1510 else
1511 ptn_name = "boot";
1512
1513 index = partition_get_index(ptn_name);
1514 ptn = partition_get_offset(index);
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301515 image_size = partition_get_size(index);
1516 if(ptn == 0 || image_size == 0) {
Mayank Groverc93cad82017-10-03 12:23:45 +05301517 dprintf(CRITICAL, "ERROR: No %s partition found\n", ptn_name);
1518 return -1;
Kinson Chikf1a43512011-07-14 11:28:39 -07001519 }
Mayank Groverc93cad82017-10-03 12:23:45 +05301520
Channagoud Kadabief0547c2015-02-10 12:57:38 -08001521 /* Set Lun for boot & recovery partitions */
1522 mmc_set_lun(partition_get_lun(index));
Shashank Mittal23b8f422010-04-16 19:27:21 -07001523
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301524 if (mmc_read(ptn + offset, (uint32_t *) buf, page_size)) {
Shashank Mittal23b8f422010-04-16 19:27:21 -07001525 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
1526 return -1;
1527 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001528
1529 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07001530 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Mayank Grover351a75e2017-05-30 20:06:08 +05301531 return ERR_INVALID_BOOT_MAGIC;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001532 }
1533
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07001534 if (hdr->page_size && (hdr->page_size != page_size)) {
vijay kumar2e21b3a2014-06-26 17:40:15 +05301535
1536 if (hdr->page_size > BOOT_IMG_MAX_PAGE_SIZE) {
1537 dprintf(CRITICAL, "ERROR: Invalid page size\n");
1538 return -1;
1539 }
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07001540 page_size = hdr->page_size;
1541 page_mask = page_size - 1;
Shashank Mittal23b8f422010-04-16 19:27:21 -07001542 }
1543
Matthew Qin49e51fa2015-02-09 10:40:45 +08001544 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1545 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05301546 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001547
Matthew Qin49e51fa2015-02-09 10:40:45 +08001548 image_addr = (unsigned char *)target_get_scratch_address();
Mayank Grover6fd36792018-09-10 13:26:58 +05301549#if VERIFIED_BOOT_2
1550 /* Create hole in start of image for VB salt to copy */
1551 image_addr += SALT_BUFF_OFFSET;
1552#endif
Kishor PK9e91b592017-05-24 12:14:55 +05301553 memcpy(image_addr, (void *)buf, page_size);
1554
1555 /* ensure commandline is terminated */
1556 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
Matthew Qin49e51fa2015-02-09 10:40:45 +08001557
1558#if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05301559#ifndef OSVERSION_IN_BOOTIMAGE
1560 dt_size = hdr->dt_size;
Mayank Grover5a502582018-09-12 11:24:49 +05301561#else
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301562 dprintf(INFO, "BootImage Header: %d\n", hdr->header_version);
Mayank Grover5a502582018-09-12 11:24:49 +05301563#endif
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301564
Parth Dixit4097b622016-03-15 14:42:27 +05301565 dt_actual = ROUND_TO_PAGE(dt_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05301566 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 +05301567 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields at %u in %s\n",__LINE__,__FILE__);
1568 return -1;
1569 }
Kishor PKd8ddcad2017-07-27 13:53:57 +05301570 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual + dt_actual);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001571#else
Kishor PKd8ddcad2017-07-27 13:53:57 +05301572 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 +05301573 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields at %u in %s\n",__LINE__,__FILE__);
1574 return -1;
1575 }
Kishor PKd8ddcad2017-07-27 13:53:57 +05301576 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001577#endif
1578
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301579#ifdef OSVERSION_IN_BOOTIMAGE
1580 /* If header version is ONE and booting into recovery,
1581 dtbo is appended with recovery image.
1582 Doing following:
1583 * Validating the recovery offset and size.
1584 * Extracting recovery dtbo to be used as dtbo.
1585 */
1586 if (boot_into_recovery &&
1587 hdr->header_version == BOOT_HEADER_VERSION_ONE)
1588 {
1589 struct boot_img_hdr_v1 *hdr1 =
1590 (struct boot_img_hdr_v1 *) (image_addr + sizeof(boot_img_hdr));
Mayank Grovera1a83c72018-09-24 11:23:15 +05301591 unsigned int recovery_dtbo_actual = 0;
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301592
Mayank Grovera1a83c72018-09-24 11:23:15 +05301593 recovery_dtbo_actual = ROUND_TO_PAGE(hdr1->recovery_dtbo_size, page_mask);
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301594 if ((hdr1->header_size !=
1595 sizeof(struct boot_img_hdr_v1) + sizeof(boot_img_hdr)))
1596 {
1597 dprintf(CRITICAL, "Invalid boot image header: %d\n", hdr1->header_size);
1598 return -1;
1599 }
1600
Mayank Grovera1a83c72018-09-24 11:23:15 +05301601 if (recovery_dtbo_actual > MAX_SUPPORTED_DTBO_IMG_BUF)
1602 {
1603 dprintf(CRITICAL, "Recovery Dtbo Size too big %x, Allowed size %x\n", recovery_dtbo_actual,
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301604 MAX_SUPPORTED_DTBO_IMG_BUF);
1605 return -1;
1606 }
1607
Mayank Grovera1a83c72018-09-24 11:23:15 +05301608 if (UINT_MAX < ((uint64_t)imagesize_actual + recovery_dtbo_actual))
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301609 {
1610 dprintf(CRITICAL, "Integer overflow detected in recoveryimage header fields at %u in %s\n",__LINE__,__FILE__);
1611 return -1;
1612 }
1613
Mayank Grovera1a83c72018-09-24 11:23:15 +05301614 if (UINT_MAX < (hdr1->recovery_dtbo_offset + recovery_dtbo_actual)) {
1615 dprintf(CRITICAL,
1616 "Integer overflow detected in recovery image header fields at %u in %s\n",__LINE__,__FILE__);
1617 return -1;
1618 }
1619
1620 if (hdr1->recovery_dtbo_offset + recovery_dtbo_actual > image_size)
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301621 {
1622 dprintf(CRITICAL, "Invalid recovery dtbo: Recovery Dtbo Offset=0x%llx,"
1623 " Recovery Dtbo Size=0x%x, Image Size=0x%llx\n",
1624 hdr1->recovery_dtbo_offset, recovery_dtbo_size, image_size);
1625 return -1;
1626 }
1627
1628 recovery_dtbo_buf = (void *)(hdr1->recovery_dtbo_offset + image_addr);
Mayank Grovera1a83c72018-09-24 11:23:15 +05301629 recovery_dtbo_size = recovery_dtbo_actual;
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301630 imagesize_actual += recovery_dtbo_size;
1631
1632 dprintf(SPEW, "Header version: %d\n", hdr->header_version);
1633 dprintf(SPEW, "Recovery Dtbo Size 0x%x\n", recovery_dtbo_size);
1634 dprintf(SPEW, "Recovery Dtbo Offset 0x%llx\n", hdr1->recovery_dtbo_offset);
1635
1636 }
1637#endif
1638
Saranya Chidurab1aaf232018-11-19 15:47:50 +05301639 /* Validate the boot/recovery image size is within the bounds of partition size */
1640 if (imagesize_actual > image_size) {
1641 dprintf(CRITICAL, "Image size is greater than partition size.\n");
1642 return -1;
1643 }
1644
Matthew Qin49e51fa2015-02-09 10:40:45 +08001645#if VERIFIED_BOOT
1646 boot_verifier_init();
1647#endif
1648
Mayank Grover1ceaee22019-04-01 17:54:32 +05301649#if VERIFIED_BOOT_2
1650 /* read full partition if device is unlocked */
1651 if (device.is_unlocked)
1652 imagesize_actual = image_size;
1653#endif
1654
Vijay Kumar Pendoti9c002ad2016-03-09 13:52:45 +05301655 if (check_aboot_addr_range_overlap((uintptr_t) image_addr, imagesize_actual))
Matthew Qin49e51fa2015-02-09 10:40:45 +08001656 {
1657 dprintf(CRITICAL, "Boot image buffer address overlaps with aboot addresses.\n");
1658 return -1;
1659 }
1660
Matthew Qinbb7923d2015-02-09 10:56:09 +08001661 /*
1662 * Update loading flow of bootimage to support compressed/uncompressed
1663 * bootimage on both 64bit and 32bit platform.
1664 * 1. Load bootimage from emmc partition onto DDR.
1665 * 2. Check if bootimage is gzip format. If yes, decompress compressed kernel
1666 * 3. Check kernel header and update kernel load addr for 64bit and 32bit
1667 * platform accordingly.
1668 * 4. Sanity Check on kernel_addr and ramdisk_addr and copy data.
1669 */
Mayank Grover351a75e2017-05-30 20:06:08 +05301670 if (partition_multislot_is_supported())
1671 {
1672 current_active_slot = partition_find_active_slot();
1673 dprintf(INFO, "Loading boot image (%d) active_slot(%s): start\n",
1674 imagesize_actual, SUFFIX_SLOT(current_active_slot));
1675 }
1676 else
1677 {
1678 dprintf(INFO, "Loading (%s) image (%d): start\n",
1679 (!boot_into_recovery ? "boot" : "recovery"),imagesize_actual);
1680 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001681 bs_set_timestamp(BS_KERNEL_LOAD_START);
1682
Gaurav Nebhwani43e2a462016-03-17 21:32:56 +05301683 if ((target_get_max_flash_size() - page_size) < imagesize_actual)
1684 {
1685 dprintf(CRITICAL, "booimage size is greater than DDR can hold\n");
1686 return -1;
1687 }
Kishor PK9e91b592017-05-24 12:14:55 +05301688 offset = page_size;
1689 /* Read image without signature and header*/
1690 if (mmc_read(ptn + offset, (void *)(image_addr + offset), imagesize_actual - page_size))
Matthew Qin49e51fa2015-02-09 10:40:45 +08001691 {
1692 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
1693 return -1;
1694 }
1695
Mayank Grover351a75e2017-05-30 20:06:08 +05301696 if (partition_multislot_is_supported())
1697 {
1698 dprintf(INFO, "Loading boot image (%d) active_slot(%s): done\n",
1699 imagesize_actual, SUFFIX_SLOT(current_active_slot));
1700 }
1701 else
1702 {
1703 dprintf(INFO, "Loading (%s) image (%d): done\n",
Channagoud Kadabif0705b52015-08-20 14:16:08 -07001704 (!boot_into_recovery ? "boot" : "recovery"),imagesize_actual);
1705
Mayank Grover351a75e2017-05-30 20:06:08 +05301706 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001707 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
1708
1709 /* Authenticate Kernel */
1710 dprintf(INFO, "use_signed_kernel=%d, is_unlocked=%d, is_tampered=%d.\n",
1711 (int) target_use_signed_kernel(),
1712 device.is_unlocked,
1713 device.is_tampered);
Monika Singh292b3e92018-03-17 22:40:23 +05301714#if VERIFIED_BOOT_2
Mayank Grover1ceaee22019-04-01 17:54:32 +05301715 /* if device is unlocked skip reading signature, as full partition is read */
1716 if (!device.is_unlocked)
Monika Singh292b3e92018-03-17 22:40:23 +05301717 {
Mayank Grover1ceaee22019-04-01 17:54:32 +05301718 offset = imagesize_actual;
1719 if (check_aboot_addr_range_overlap((uintptr_t)image_addr + offset, page_size))
1720 {
1721 dprintf(CRITICAL, "Signature read buffer address overlaps with aboot addresses.\n");
1722 return -1;
1723 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001724
Mayank Grover1ceaee22019-04-01 17:54:32 +05301725 /* Read signature */
1726 if(mmc_read(ptn + offset, (void *)(image_addr + offset), page_size))
1727 {
1728 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
1729 return -1;
1730 }
Monika Singh292b3e92018-03-17 22:40:23 +05301731 }
1732
Mayank Grover027a9412018-09-04 15:12:05 +05301733 /* load and validate dtbo partition */
1734 load_validate_dtbo_image(&dtbo_image_buf, &dtbo_image_sz);
1735
Mayank Grover9df84c02018-08-30 15:46:35 +05301736 /* load vbmeta partition */
1737 load_vbmeta_image(&vbmeta_image_buf, &vbmeta_image_sz);
1738
Monika Singh292b3e92018-03-17 22:40:23 +05301739 memset(&info, 0, sizeof(bootinfo));
Mayank Grover027a9412018-09-04 15:12:05 +05301740
1741 /* Pass loaded boot image passed */
Mayank Grover6fd36792018-09-10 13:26:58 +05301742 info.images[IMG_BOOT].image_buffer = SUB_SALT_BUFF_OFFSET(image_addr);
Mayank Grover027a9412018-09-04 15:12:05 +05301743 info.images[IMG_BOOT].imgsize = imagesize_actual;
1744 info.images[IMG_BOOT].name = ptn_name;
1745 ++info.num_loaded_images;
1746
1747 /* Pass loaded dtbo image */
1748 if (dtbo_image_buf != NULL) {
Mayank Grover6fd36792018-09-10 13:26:58 +05301749 info.images[IMG_DTBO].image_buffer =
1750 SUB_SALT_BUFF_OFFSET(dtbo_image_buf);
Mayank Grover027a9412018-09-04 15:12:05 +05301751 info.images[IMG_DTBO].imgsize = dtbo_image_sz;
1752 info.images[IMG_DTBO].name = "dtbo";
1753 ++info.num_loaded_images;
1754 }
1755
Mayank Grover9df84c02018-08-30 15:46:35 +05301756 /* Pass loaded vbmeta image */
1757 if (vbmeta_image_buf != NULL) {
1758 info.images[IMG_VBMETA].image_buffer = vbmeta_image_buf;
1759 info.images[IMG_VBMETA].imgsize = vbmeta_image_sz;
1760 info.images[IMG_VBMETA].name = "vbmeta";
1761 ++info.num_loaded_images;
1762 }
1763
Mayank Grovere1ab96c2018-09-04 20:31:31 +05301764 info.header_version = hdr->header_version;
Monika Singh292b3e92018-03-17 22:40:23 +05301765 info.multi_slot_boot = partition_multislot_is_supported();
1766 info.bootreason_alarm = boot_reason_alarm;
1767 info.bootinto_recovery = boot_into_recovery;
1768 status = load_image_and_auth(&info);
1769 if(status)
1770 return -1;
1771
1772 vbcmdline = info.vbcmdline;
Mayank Grover9df84c02018-08-30 15:46:35 +05301773
1774 /* Free the buffer allocated to vbmeta post verification */
Saranya Chidurab4933332018-10-15 17:30:06 +05301775 if (vbmeta_image_buf != NULL) {
1776 free(vbmeta_image_buf);
1777 --info.num_loaded_images;
1778 }
Monika Singh292b3e92018-03-17 22:40:23 +05301779#else
Channagoud Kadabi736c4962015-08-21 11:56:52 -07001780 /* Change the condition a little bit to include the test framework support.
1781 * We would never reach this point if device is in fastboot mode, even if we did
1782 * that means we are in test mode, so execute kernel authentication part for the
1783 * tests */
Parth Dixitcb0c6082015-12-30 15:01:13 +05301784 if((target_use_signed_kernel() && (!device.is_unlocked)) || is_test_mode_enabled())
Matthew Qin49e51fa2015-02-09 10:40:45 +08001785 {
1786 offset = imagesize_actual;
Vijay Kumar Pendoti9c002ad2016-03-09 13:52:45 +05301787 if (check_aboot_addr_range_overlap((uintptr_t)image_addr + offset, page_size))
Matthew Qin49e51fa2015-02-09 10:40:45 +08001788 {
1789 dprintf(CRITICAL, "Signature read buffer address overlaps with aboot addresses.\n");
1790 return -1;
1791 }
1792
1793 /* Read signature */
1794 if(mmc_read(ptn + offset, (void *)(image_addr + offset), page_size))
1795 {
1796 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
1797 return -1;
1798 }
1799
1800 verify_signed_bootimg((uint32_t)image_addr, imagesize_actual);
Channagoud Kadabi736c4962015-08-21 11:56:52 -07001801 /* The purpose of our test is done here */
Parth Dixitcb0c6082015-12-30 15:01:13 +05301802 if(is_test_mode_enabled() && auth_kernel_img)
Channagoud Kadabi736c4962015-08-21 11:56:52 -07001803 return 0;
Matthew Qin49e51fa2015-02-09 10:40:45 +08001804 } else {
1805 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
1806 #ifdef TZ_SAVE_KERNEL_HASH
1807 aboot_save_boot_hash_mmc((uint32_t) image_addr, imagesize_actual);
1808 #endif /* TZ_SAVE_KERNEL_HASH */
Amit Blay4aa292f2015-04-28 21:55:59 +03001809
1810#ifdef MDTP_SUPPORT
1811 {
1812 /* Verify MDTP lock.
1813 * For boot & recovery partitions, MDTP will use boot_verifier APIs,
1814 * since verification was skipped in aboot. The signature is not part of the loaded image.
1815 */
1816 mdtp_ext_partition_verification_t ext_partition;
1817 ext_partition.partition = boot_into_recovery ? MDTP_PARTITION_RECOVERY : MDTP_PARTITION_BOOT;
1818 ext_partition.integrity_state = MDTP_PARTITION_STATE_UNSET;
1819 ext_partition.page_size = page_size;
1820 ext_partition.image_addr = (uint32)image_addr;
1821 ext_partition.image_size = imagesize_actual;
1822 ext_partition.sig_avail = FALSE;
1823 mdtp_fwlock_verify_lock(&ext_partition);
1824 }
1825#endif /* MDTP_SUPPORT */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001826 }
Monika Singh292b3e92018-03-17 22:40:23 +05301827#endif
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001828
Sridhar Parasuram00bfedb2015-05-26 14:21:27 -07001829#if VERIFIED_BOOT
taozhang93088bd2016-11-16 15:50:46 +08001830 if((boot_verify_get_state() == ORANGE) && (!boot_into_ffbm))
Reut Zysmanba8a9d52016-02-18 11:44:04 +02001831 {
1832#if FBCON_DISPLAY_MSG
1833 display_bootverify_menu(DISPLAY_MENU_ORANGE);
1834 wait_for_users_action();
1835#else
1836 dprintf(CRITICAL,
1837 "Your device has been unlocked and can't be trusted.\nWait for 5 seconds before proceeding\n");
1838 mdelay(5000);
1839#endif
1840 }
1841#endif
1842
1843#if VERIFIED_BOOT
Monika Singh292b3e92018-03-17 22:40:23 +05301844 if (VB_M == target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05301845 {
1846 /* set boot and system versions. */
1847 set_os_version((unsigned char *)image_addr);
1848 // send root of trust
1849 if(!send_rot_command((uint32_t)device.is_unlocked))
1850 ASSERT(0);
1851 }
Parth Dixitbc9b6492015-10-18 00:41:38 +05301852#endif
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001853 /*
Matthew Qinbb7923d2015-02-09 10:56:09 +08001854 * Check if the kernel image is a gzip package. If yes, need to decompress it.
1855 * If not, continue booting.
1856 */
1857 if (is_gzip_package((unsigned char *)(image_addr + page_size), hdr->kernel_size))
1858 {
1859 out_addr = (unsigned char *)(image_addr + imagesize_actual + page_size);
1860 out_avai_len = target_get_max_flash_size() - imagesize_actual - page_size;
Mayank Grover027a9412018-09-04 15:12:05 +05301861#if VERIFIED_BOOT_2
1862 if (dtbo_image_sz)
1863 out_avai_len -= DTBO_IMG_BUF;
1864#endif
Matthew Qin0b15b322015-05-19 05:20:54 -04001865 dprintf(INFO, "decompressing kernel image: start\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08001866 rc = decompress((unsigned char *)(image_addr + page_size),
1867 hdr->kernel_size, out_addr, out_avai_len,
1868 &dtb_offset, &out_len);
1869 if (rc)
1870 {
Matthew Qin0b15b322015-05-19 05:20:54 -04001871 dprintf(CRITICAL, "decompressing kernel image failed!!!\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08001872 ASSERT(0);
1873 }
1874
Matthew Qin0b15b322015-05-19 05:20:54 -04001875 dprintf(INFO, "decompressing kernel image: done\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08001876 kptr = (struct kernel64_hdr *)out_addr;
1877 kernel_start_addr = out_addr;
1878 kernel_size = out_len;
1879 } else {
Ameya Thakur10a33452016-06-13 14:24:26 -07001880 dprintf(INFO, "Uncpmpressed kernel in use\n");
1881 if (!strncmp((char*)(image_addr + page_size),
1882 PATCHED_KERNEL_MAGIC,
1883 sizeof(PATCHED_KERNEL_MAGIC) - 1)) {
1884 dprintf(INFO, "Patched kernel detected\n");
1885 kptr = (struct kernel64_hdr *)(image_addr + page_size +
1886 PATCHED_KERNEL_HEADER_SIZE);
1887 //The size of the kernel is stored at start of kernel image + 16
1888 //The dtb would start just after the kernel
1889 dtb_offset = *((uint32_t*)((unsigned char*)
1890 (image_addr + page_size +
1891 sizeof(PATCHED_KERNEL_MAGIC) -
1892 1)));
1893 //The actual kernel starts after the 20 byte header.
1894 kernel_start_addr = (unsigned char*)(image_addr +
1895 page_size + PATCHED_KERNEL_HEADER_SIZE);
1896 kernel_size = hdr->kernel_size;
1897 patched_kernel_hdr_size = PATCHED_KERNEL_HEADER_SIZE;
1898 } else {
1899 dprintf(INFO, "Kernel image not patched..Unable to locate dt offset\n");
1900 kptr = (struct kernel64_hdr *)(image_addr + page_size);
1901 kernel_start_addr = (unsigned char *)(image_addr + page_size);
1902 kernel_size = hdr->kernel_size;
1903 }
Matthew Qinbb7923d2015-02-09 10:56:09 +08001904 }
1905
1906 /*
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001907 * Update the kernel/ramdisk/tags address if the boot image header
1908 * has default values, these default values come from mkbootimg when
1909 * the boot image is flashed using fastboot flash:raw
1910 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001911 update_ker_tags_rdisk_addr(hdr, IS_ARM64(kptr));
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001912
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001913 /* Get virtual addresses since the hdr saves physical addresses. */
1914 hdr->kernel_addr = VA((addr_t)(hdr->kernel_addr));
1915 hdr->ramdisk_addr = VA((addr_t)(hdr->ramdisk_addr));
1916 hdr->tags_addr = VA((addr_t)(hdr->tags_addr));
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001917
Matthew Qinbb7923d2015-02-09 10:56:09 +08001918 kernel_size = ROUND_TO_PAGE(kernel_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001919 /* Check if the addresses in the header are valid. */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001920 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_size) ||
Mayank Grovere559cec2017-10-17 15:12:03 +05301921 check_ddr_addr_range_bound(hdr->kernel_addr, kernel_size) ||
1922 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual) ||
1923 check_ddr_addr_range_bound(hdr->ramdisk_addr, ramdisk_actual))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001924 {
Mayank Grovere559cec2017-10-17 15:12:03 +05301925 dprintf(CRITICAL, "kernel/ramdisk addresses are not valid.\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001926 return -1;
1927 }
1928
1929#ifndef DEVICE_TREE
Mayank Grovere559cec2017-10-17 15:12:03 +05301930 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE) ||
1931 check_ddr_addr_range_bound(hdr->tags_addr, MAX_TAGS_SIZE))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001932 {
Mayank Grovere559cec2017-10-17 15:12:03 +05301933 dprintf(CRITICAL, "Tags addresses are not valid.\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001934 return -1;
1935 }
1936#endif
1937
Matthew Qin49e51fa2015-02-09 10:40:45 +08001938 /* Move kernel, ramdisk and device tree to correct address */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001939 memmove((void*) hdr->kernel_addr, kernel_start_addr, kernel_size);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001940 memmove((void*) hdr->ramdisk_addr, (char *)(image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001941
Matthew Qin49e51fa2015-02-09 10:40:45 +08001942 #if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05301943 if(dt_size) {
Matthew Qin49e51fa2015-02-09 10:40:45 +08001944 dt_table_offset = ((uint32_t)image_addr + page_size + kernel_actual + ramdisk_actual + second_actual);
1945 table = (struct dt_table*) dt_table_offset;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001946
Matthew Qin49e51fa2015-02-09 10:40:45 +08001947 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
1948 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1949 return -1;
1950 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001951
P.V. Phani Kumar82916762016-03-09 09:20:19 +05301952 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
1953 goes beyound hdr->dt_size*/
Parth Dixit4097b622016-03-15 14:42:27 +05301954 if (dt_hdr_size > ROUND_TO_PAGE(dt_size,hdr->page_size)) {
P.V. Phani Kumar82916762016-03-09 09:20:19 +05301955 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
1956 return -1;
1957 }
1958
Matthew Qin49e51fa2015-02-09 10:40:45 +08001959 /* Find index of device tree within device tree table */
1960 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
1961 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1962 return -1;
1963 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001964
P.V. Phani Kumar3c333202016-03-09 11:54:37 +05301965 if(dt_entry.offset > (UINT_MAX - dt_entry.size)) {
1966 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1967 return -1;
1968 }
1969
1970 /* Ensure we are not overshooting dt_size with the dt_entry selected */
Parth Dixit4097b622016-03-15 14:42:27 +05301971 if ((dt_entry.offset + dt_entry.size) > dt_size) {
P.V. Phani Kumar3c333202016-03-09 11:54:37 +05301972 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
1973 return -1;
1974 }
1975
Matthew Qin271927e2015-03-31 22:07:07 -04001976 if (is_gzip_package((unsigned char *)dt_table_offset + dt_entry.offset, dt_entry.size))
1977 {
1978 unsigned int compressed_size = 0;
1979 out_addr += out_len;
1980 out_avai_len -= out_len;
Matthew Qin0b15b322015-05-19 05:20:54 -04001981 dprintf(INFO, "decompressing dtb: start\n");
Matthew Qin271927e2015-03-31 22:07:07 -04001982 rc = decompress((unsigned char *)dt_table_offset + dt_entry.offset,
1983 dt_entry.size, out_addr, out_avai_len,
1984 &compressed_size, &dtb_size);
1985 if (rc)
1986 {
Matthew Qin0b15b322015-05-19 05:20:54 -04001987 dprintf(CRITICAL, "decompressing dtb failed!!!\n");
Matthew Qin271927e2015-03-31 22:07:07 -04001988 ASSERT(0);
1989 }
1990
Matthew Qin0b15b322015-05-19 05:20:54 -04001991 dprintf(INFO, "decompressing dtb: done\n");
Matthew Qin271927e2015-03-31 22:07:07 -04001992 best_match_dt_addr = out_addr;
1993 } else {
1994 best_match_dt_addr = (unsigned char *)dt_table_offset + dt_entry.offset;
1995 dtb_size = dt_entry.size;
1996 }
1997
Matthew Qin49e51fa2015-02-09 10:40:45 +08001998 /* Validate and Read device device tree in the tags_addr */
Mayank Grovere559cec2017-10-17 15:12:03 +05301999 if (check_aboot_addr_range_overlap(hdr->tags_addr, dtb_size) ||
2000 check_ddr_addr_range_bound(hdr->tags_addr, dtb_size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002001 {
Mayank Grovere559cec2017-10-17 15:12:03 +05302002 dprintf(CRITICAL, "Device tree addresses are not valid\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002003 return -1;
2004 }
Shashank Mittal162244e2011-08-08 19:01:25 -07002005
Matthew Qin271927e2015-03-31 22:07:07 -04002006 memmove((void *)hdr->tags_addr, (char *)best_match_dt_addr, dtb_size);
Matthew Qin49e51fa2015-02-09 10:40:45 +08002007 } else {
2008 /* Validate the tags_addr */
Mayank Grovere559cec2017-10-17 15:12:03 +05302009 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual) ||
2010 check_ddr_addr_range_bound(hdr->tags_addr, kernel_actual))
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002011 {
Mayank Grovere559cec2017-10-17 15:12:03 +05302012 dprintf(CRITICAL, "Device tree addresses are not valid.\n");
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002013 return -1;
2014 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08002015 /*
2016 * If appended dev tree is found, update the atags with
2017 * memory address to the DTB appended location on RAM.
2018 * Else update with the atags address in the kernel header
Mayank Grover1ed3e8b2018-09-19 15:16:50 +05302019 *
2020 * Make sure everything from scratch address is read before next step!
2021 * In case of dtbo, this API is going to read dtbo on scratch.
Matthew Qin49e51fa2015-02-09 10:40:45 +08002022 */
2023 void *dtb;
Ameya Thakur10a33452016-06-13 14:24:26 -07002024 dtb = dev_tree_appended(
2025 (void*)(image_addr + page_size +
2026 patched_kernel_hdr_size),
2027 hdr->kernel_size, dtb_offset,
2028 (void *)hdr->tags_addr);
Matthew Qin49e51fa2015-02-09 10:40:45 +08002029 if (!dtb) {
2030 dprintf(CRITICAL, "ERROR: Appended Device Tree Blob not found\n");
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002031 return -1;
2032 }
Shashank Mittalcd98d472011-08-02 14:29:24 -07002033 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08002034 #endif
Shashank Mittal23b8f422010-04-16 19:27:21 -07002035
Stanimir Varbanov69ec5462013-07-18 18:17:42 +03002036 if (boot_into_recovery && !device.is_unlocked && !device.is_tampered)
2037 target_load_ssd_keystore();
2038
Shashank Mittal23b8f422010-04-16 19:27:21 -07002039unified_boot:
Shashank Mittal23b8f422010-04-16 19:27:21 -07002040
Dima Zavin77e41f32013-03-06 16:10:43 -08002041 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Dima Zavinbd3daa02013-03-26 11:06:44 -07002042 (const char *)hdr->cmdline, board_machtype(),
Shashank Mittal23b8f422010-04-16 19:27:21 -07002043 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
2044
2045 return 0;
2046}
2047
Dima Zavin214cc642009-01-26 11:16:21 -08002048int boot_linux_from_flash(void)
2049{
Mayank Grovere1ab96c2018-09-04 20:31:31 +05302050 boot_img_hdr *hdr = (void*) buf;
Dima Zavin214cc642009-01-26 11:16:21 -08002051 struct ptentry *ptn;
2052 struct ptable *ptable;
2053 unsigned offset = 0;
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08002054
Shashank Mittalcd98d472011-08-02 14:29:24 -07002055 unsigned char *image_addr = 0;
2056 unsigned kernel_actual;
2057 unsigned ramdisk_actual;
2058 unsigned imagesize_actual;
vijay kumar8f53e362015-11-24 13:38:11 +05302059 unsigned second_actual = 0;
Shashank Mittalcd98d472011-08-02 14:29:24 -07002060
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07002061#if DEVICE_TREE
Monika Singh292b3e92018-03-17 22:40:23 +05302062 struct dt_table *table = NULL;
Joel Kingaa335dc2013-06-03 16:11:08 -07002063 struct dt_entry dt_entry;
vijay kumar8f53e362015-11-24 13:38:11 +05302064 unsigned dt_table_offset;
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08002065 uint32_t dt_actual;
Monika Singh292b3e92018-03-17 22:40:23 +05302066 uint32_t dt_hdr_size = 0;
Vivek Kumar07bd0862018-04-10 14:19:23 +05302067 uint32_t dtb_offset = 0;
vijay kumar8f53e362015-11-24 13:38:11 +05302068 unsigned int dtb_size = 0;
2069 unsigned char *best_match_dt_addr = NULL;
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07002070#endif
2071
David Ng183a7422009-12-07 14:55:21 -08002072 if (target_is_emmc_boot()) {
Mayank Grovere1ab96c2018-09-04 20:31:31 +05302073 hdr = (boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
David Ng183a7422009-12-07 14:55:21 -08002074 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
2075 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
2076 return -1;
2077 }
2078 goto continue_boot;
2079 }
2080
Dima Zavin214cc642009-01-26 11:16:21 -08002081 ptable = flash_get_ptable();
2082 if (ptable == NULL) {
2083 dprintf(CRITICAL, "ERROR: Partition table not found\n");
2084 return -1;
2085 }
2086
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08002087 if(!boot_into_recovery)
2088 {
2089 ptn = ptable_find(ptable, "boot");
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07002090
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08002091 if (ptn == NULL) {
2092 dprintf(CRITICAL, "ERROR: No boot partition found\n");
2093 return -1;
2094 }
2095 }
2096 else
2097 {
2098 ptn = ptable_find(ptable, "recovery");
2099 if (ptn == NULL) {
2100 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
2101 return -1;
2102 }
Dima Zavin214cc642009-01-26 11:16:21 -08002103 }
2104
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302105 /* Read boot.img header from flash */
Shashank Mittaldcc2e352009-11-19 19:11:16 -08002106 if (flash_read(ptn, offset, buf, page_size)) {
Dima Zavin214cc642009-01-26 11:16:21 -08002107 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
2108 return -1;
2109 }
Dima Zavin214cc642009-01-26 11:16:21 -08002110
2111 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07002112 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Dima Zavin214cc642009-01-26 11:16:21 -08002113 return -1;
2114 }
2115
Shashank Mittaldcc2e352009-11-19 19:11:16 -08002116 if (hdr->page_size != page_size) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07002117 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 -08002118 return -1;
2119 }
2120
Kishor PK9e91b592017-05-24 12:14:55 +05302121 image_addr = (unsigned char *)target_get_scratch_address();
2122 memcpy(image_addr, (void *)buf, page_size);
vijay kumar287bb542015-09-29 13:01:52 +05302123
Channagoud Kadabia22144f2013-03-20 11:49:01 -07002124 /*
2125 * Update the kernel/ramdisk/tags address if the boot image header
2126 * has default values, these default values come from mkbootimg when
2127 * the boot image is flashed using fastboot flash:raw
2128 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08002129 update_ker_tags_rdisk_addr(hdr, false);
Channagoud Kadabia22144f2013-03-20 11:49:01 -07002130
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002131 /* Get virtual addresses since the hdr saves physical addresses. */
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002132 hdr->kernel_addr = VA((addr_t)(hdr->kernel_addr));
2133 hdr->ramdisk_addr = VA((addr_t)(hdr->ramdisk_addr));
2134 hdr->tags_addr = VA((addr_t)(hdr->tags_addr));
2135
2136 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
2137 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Mayank Grover032736f2017-07-14 20:34:51 +05302138 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002139
Kishor PK9e91b592017-05-24 12:14:55 +05302140 /* ensure commandline is terminated */
2141 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
2142
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002143 /* Check if the addresses in the header are valid. */
2144 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_actual) ||
Mayank Grovere559cec2017-10-17 15:12:03 +05302145 check_ddr_addr_range_bound(hdr->kernel_addr, kernel_actual) ||
2146 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual) ||
2147 check_ddr_addr_range_bound(hdr->ramdisk_addr, ramdisk_actual))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002148 {
Mayank Grovere559cec2017-10-17 15:12:03 +05302149 dprintf(CRITICAL, "kernel/ramdisk addresses are not valid.\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002150 return -1;
2151 }
2152
2153#ifndef DEVICE_TREE
Kishor PKd8ddcad2017-07-27 13:53:57 +05302154 if (UINT_MAX < ((uint64_t)kernel_actual + (uint64_t)ramdisk_actual+ (uint64_t)second_actual + page_size)) {
Mayank Grover032736f2017-07-14 20:34:51 +05302155 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields\n");
2156 return -1;
2157 }
Kishor PKd8ddcad2017-07-27 13:53:57 +05302158 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual);
Mayank Grover032736f2017-07-14 20:34:51 +05302159
Mayank Grovere559cec2017-10-17 15:12:03 +05302160 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE) ||
2161 check_ddr_addr_range_bound(hdr->tags_addr, MAX_TAGS_SIZE))
Vijay Kumar Pendotid3ed20e2016-09-20 00:34:46 +05302162 {
Mayank Grovere559cec2017-10-17 15:12:03 +05302163 dprintf(CRITICAL, "Tags addresses are not valid.\n");
Vijay Kumar Pendotid3ed20e2016-09-20 00:34:46 +05302164 return -1;
2165 }
2166#else
2167
2168#ifndef OSVERSION_IN_BOOTIMAGE
2169 dt_size = hdr->dt_size;
2170#endif
Mayank Grover032736f2017-07-14 20:34:51 +05302171 dt_actual = ROUND_TO_PAGE(dt_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05302172 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 +05302173 dprintf(CRITICAL, "Integer overflow detected in bootimage header fields\n");
2174 return -1;
2175 }
2176
Kishor PKd8ddcad2017-07-27 13:53:57 +05302177 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual + dt_actual);
Mayank Grover032736f2017-07-14 20:34:51 +05302178
Mayank Grovere559cec2017-10-17 15:12:03 +05302179 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_size) ||
2180 check_ddr_addr_range_bound(hdr->tags_addr, dt_size))
Mayank Grover032736f2017-07-14 20:34:51 +05302181 {
Mayank Grovere559cec2017-10-17 15:12:03 +05302182 dprintf(CRITICAL, "Device tree addresses are not valid.\n");
Mayank Grover032736f2017-07-14 20:34:51 +05302183 return -1;
2184 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002185#endif
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002186
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302187 /* Read full boot.img from flash */
2188 dprintf(INFO, "Loading (%s) image (%d): start\n",
2189 (!boot_into_recovery ? "boot" : "recovery"),imagesize_actual);
2190 bs_set_timestamp(BS_KERNEL_LOAD_START);
2191
2192 if (UINT_MAX - page_size < imagesize_actual)
2193 {
2194 dprintf(CRITICAL,"Integer overflow detected in bootimage header fields %u %s\n", __LINE__,__func__);
2195 return -1;
2196 }
2197
2198 /*Check the availability of RAM before reading boot image + max signature length from flash*/
2199 if (target_get_max_flash_size() < (imagesize_actual + page_size))
2200 {
2201 dprintf(CRITICAL, "bootimage size is greater than DDR can hold\n");
2202 return -1;
2203 }
2204
2205 offset = page_size;
2206 /* Read image without signature and header */
2207 if (flash_read(ptn, offset, (void *)(image_addr + offset), imagesize_actual - page_size))
2208 {
2209 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
2210 return -1;
2211 }
2212
2213 dprintf(INFO, "Loading (%s) image (%d): done\n",
2214 (!boot_into_recovery ? "boot" : "recovery"), imagesize_actual);
2215 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
2216
Shashank Mittalcd98d472011-08-02 14:29:24 -07002217 /* Authenticate Kernel */
Deepa Dinamani23b60d42013-06-24 18:10:52 -07002218 if(target_use_signed_kernel() && (!device.is_unlocked))
Shashank Mittalcd98d472011-08-02 14:29:24 -07002219 {
Shashank Mittalcd98d472011-08-02 14:29:24 -07002220 offset = imagesize_actual;
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302221
Shashank Mittalcd98d472011-08-02 14:29:24 -07002222 /* Read signature */
2223 if (flash_read(ptn, offset, (void *)(image_addr + offset), page_size))
2224 {
2225 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002226 return -1;
Shashank Mittalcd98d472011-08-02 14:29:24 -07002227 }
Shashank Mittalcd98d472011-08-02 14:29:24 -07002228
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05302229 verify_signed_bootimg((uint32_t)image_addr, imagesize_actual);
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302230 }
2231 offset = page_size;
2232 if(hdr->second_size != 0) {
2233 if (UINT_MAX - offset < second_actual)
2234 {
2235 dprintf(CRITICAL, "ERROR: Integer overflow in boot image header %s\t%d\n",__func__,__LINE__);
2236 return -1;
vijay kumar8f53e362015-11-24 13:38:11 +05302237 }
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302238 offset += second_actual;
2239 /* Second image loading not implemented. */
2240 ASSERT(0);
2241 }
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302242 /* Move kernel and ramdisk to correct address */
2243 memmove((void*) hdr->kernel_addr, (char*) (image_addr + page_size), hdr->kernel_size);
2244 memmove((void*) hdr->ramdisk_addr, (char*) (image_addr + page_size + kernel_actual), hdr->ramdisk_size);
2245
2246#if DEVICE_TREE
2247 if(dt_size != 0) {
2248
2249 dt_table_offset = ((uint32_t)image_addr + page_size + kernel_actual + ramdisk_actual + second_actual);
2250
2251 table = (struct dt_table*) dt_table_offset;
2252
2253 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
2254 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
2255 return -1;
2256 }
2257
2258 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
2259 goes beyound hdr->dt_size*/
2260 if (dt_hdr_size > ROUND_TO_PAGE(dt_size,hdr->page_size)) {
2261 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
2262 return -1;
2263 }
2264
2265 /* Find index of device tree within device tree table */
2266 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
2267 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
2268 return -1;
2269 }
2270
2271 /* Validate and Read device device tree in the "tags_add */
2272 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size) ||
2273 check_ddr_addr_range_bound(hdr->tags_addr, dt_entry.size))
2274 {
2275 dprintf(CRITICAL, "Device tree addresses are not valid.\n");
2276 return -1;
2277 }
2278
2279 if(dt_entry.offset > (UINT_MAX - dt_entry.size)) {
2280 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
2281 return -1;
2282 }
2283
2284 /* Ensure we are not overshooting dt_size with the dt_entry selected */
2285 if ((dt_entry.offset + dt_entry.size) > dt_size) {
2286 dprintf(CRITICAL, "ERROR: Device tree contents are Invalid\n");
2287 return -1;
2288 }
2289
2290 best_match_dt_addr = (unsigned char *)table + dt_entry.offset;
2291 dtb_size = dt_entry.size;
2292 memmove((void *)hdr->tags_addr, (char *)best_match_dt_addr, dtb_size);
Vivek Kumar07bd0862018-04-10 14:19:23 +05302293
2294 } else {
2295 /* Validate the tags_addr */
2296 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual) ||
2297 check_ddr_addr_range_bound(hdr->tags_addr, kernel_actual))
2298 {
2299 dprintf(CRITICAL, "Device tree addresses are not valid.\n");
2300 return -1;
2301 }
2302 /*
2303 * If appended dev tree is found, update the atags with
2304 * memory address to the DTB appended location on RAM.
2305 * Else update with the atags address in the kernel header
Mayank Grover1ed3e8b2018-09-19 15:16:50 +05302306 *
2307 * Make sure everything from scratch address is read before next step!
2308 * In case of dtbo, this API is going to read dtbo on scratch.
Vivek Kumar07bd0862018-04-10 14:19:23 +05302309 */
2310 void *dtb = NULL;
2311 dtb = dev_tree_appended((void*)(image_addr + page_size ),hdr->kernel_size, dtb_offset, (void *)hdr->tags_addr);
2312 if (!dtb) {
2313 dprintf(CRITICAL, "ERROR: Appended Device Tree Blob not found\n");
2314 return -1;
2315 }
2316 }
Mayank Groverfc7a2ce2017-12-20 12:58:17 +05302317#endif
2318 if(target_use_signed_kernel() && (!device.is_unlocked))
2319 {
Shashank Mittal162244e2011-08-08 19:01:25 -07002320 /* Make sure everything from scratch address is read before next step!*/
Shashank Mittala0032282011-08-26 14:50:11 -07002321 if(device.is_tampered)
Shashank Mittal162244e2011-08-08 19:01:25 -07002322 {
2323 write_device_info_flash(&device);
2324 }
Channagoud Kadabi5c86fe32012-02-16 10:58:48 +05302325#if USE_PCOM_SECBOOT
2326 set_tamper_flag(device.is_tampered);
2327#endif
Shashank Mittalcd98d472011-08-02 14:29:24 -07002328 }
David Ng183a7422009-12-07 14:55:21 -08002329continue_boot:
Dima Zavin214cc642009-01-26 11:16:21 -08002330
Dima Zavin214cc642009-01-26 11:16:21 -08002331 /* TODO: create/pass atags to kernel */
2332
Ajay Dudanie28a6072011-07-01 13:59:46 -07002333 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Dima Zavinbd3daa02013-03-26 11:06:44 -07002334 (const char *)hdr->cmdline, board_machtype(),
Dima Zavin214cc642009-01-26 11:16:21 -08002335 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
2336
2337 return 0;
2338}
Brian Swetland9c4c0752009-01-25 16:23:50 -08002339
Shashank Mittal162244e2011-08-08 19:01:25 -07002340void write_device_info_mmc(device_info *dev)
2341{
Shashank Mittal162244e2011-08-08 19:01:25 -07002342 unsigned long long ptn = 0;
2343 unsigned long long size;
2344 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002345 uint8_t lun = 0;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002346 uint32_t ret = 0;
Mayank Groverddd348d2018-01-23 14:07:09 +05302347 uint32_t device_info_sz = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002348
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002349 if (devinfo_present)
2350 index = partition_get_index("devinfo");
2351 else
2352 index = partition_get_index("aboot");
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07002353
Shashank Mittal162244e2011-08-08 19:01:25 -07002354 ptn = partition_get_offset(index);
2355 if(ptn == 0)
2356 {
2357 return;
2358 }
2359
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002360 lun = partition_get_lun(index);
2361 mmc_set_lun(lun);
2362
Shashank Mittal162244e2011-08-08 19:01:25 -07002363 size = partition_get_size(index);
2364
Mayank Groverddd348d2018-01-23 14:07:09 +05302365 device_info_sz = ROUND_TO_PAGE(sizeof(struct device_info),
2366 mmc_blocksize_mask);
2367 if (device_info_sz == UINT_MAX)
2368 {
2369 dprintf(CRITICAL, "ERROR: Incorrect blocksize of card\n");
2370 return;
2371 }
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07002372
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002373 if (devinfo_present)
Mayank Groverddd348d2018-01-23 14:07:09 +05302374 ret = mmc_write(ptn, device_info_sz, (void *)info_buf);
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002375 else
Mayank Groverddd348d2018-01-23 14:07:09 +05302376 ret = mmc_write((ptn + size - device_info_sz), device_info_sz, (void *)info_buf);
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002377 if (ret)
Shashank Mittal162244e2011-08-08 19:01:25 -07002378 {
2379 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002380 ASSERT(0);
Shashank Mittal162244e2011-08-08 19:01:25 -07002381 }
2382}
2383
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002384void read_device_info_mmc(struct device_info *info)
Shashank Mittal162244e2011-08-08 19:01:25 -07002385{
Shashank Mittal162244e2011-08-08 19:01:25 -07002386 unsigned long long ptn = 0;
2387 unsigned long long size;
2388 int index = INVALID_PTN;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002389 uint32_t ret = 0;
Mayank Groverddd348d2018-01-23 14:07:09 +05302390 uint32_t device_info_sz = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002391
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002392 if ((index = partition_get_index("devinfo")) < 0)
2393 {
2394 devinfo_present = false;
2395 index = partition_get_index("aboot");
2396 }
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07002397
Shashank Mittal162244e2011-08-08 19:01:25 -07002398 ptn = partition_get_offset(index);
2399 if(ptn == 0)
2400 {
2401 return;
2402 }
2403
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07002404 mmc_set_lun(partition_get_lun(index));
2405
Shashank Mittal162244e2011-08-08 19:01:25 -07002406 size = partition_get_size(index);
2407
Mayank Groverddd348d2018-01-23 14:07:09 +05302408 device_info_sz = ROUND_TO_PAGE(sizeof(struct device_info),
2409 mmc_blocksize_mask);
2410 if (device_info_sz == UINT_MAX)
2411 {
2412 dprintf(CRITICAL, "ERROR: Incorrect blocksize of card\n");
2413 return;
2414 }
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07002415
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002416 if (devinfo_present)
Mayank Groverddd348d2018-01-23 14:07:09 +05302417 ret = mmc_read(ptn, (void *)info_buf, device_info_sz);
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002418 else
Mayank Groverddd348d2018-01-23 14:07:09 +05302419 ret = mmc_read((ptn + size - device_info_sz), (void *)info_buf, device_info_sz);
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07002420 if (ret)
Shashank Mittal162244e2011-08-08 19:01:25 -07002421 {
2422 dprintf(CRITICAL, "ERROR: Cannot read device info\n");
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002423 ASSERT(0);
Shashank Mittal162244e2011-08-08 19:01:25 -07002424 }
Shashank Mittal162244e2011-08-08 19:01:25 -07002425}
2426
2427void write_device_info_flash(device_info *dev)
2428{
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002429 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
Shashank Mittal162244e2011-08-08 19:01:25 -07002430 struct ptentry *ptn;
2431 struct ptable *ptable;
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002432 if(info == NULL)
2433 {
2434 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2435 ASSERT(0);
2436 }
2437 info_buf = info;
Shashank Mittal162244e2011-08-08 19:01:25 -07002438 ptable = flash_get_ptable();
2439 if (ptable == NULL)
2440 {
2441 dprintf(CRITICAL, "ERROR: Partition table not found\n");
2442 return;
2443 }
2444
2445 ptn = ptable_find(ptable, "devinfo");
2446 if (ptn == NULL)
2447 {
Smita Ghosh670c8b82015-05-07 09:30:03 -07002448 dprintf(CRITICAL, "ERROR: No devinfo partition found\n");
Shashank Mittal162244e2011-08-08 19:01:25 -07002449 return;
2450 }
2451
Mayank Groverdedbc892017-10-24 13:41:34 +05302452 memset(info, 0, BOOT_IMG_MAX_PAGE_SIZE);
Shashank Mittal162244e2011-08-08 19:01:25 -07002453 memcpy(info, dev, sizeof(device_info));
2454
2455 if (flash_write(ptn, 0, (void *)info_buf, page_size))
2456 {
2457 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
2458 return;
2459 }
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002460 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002461}
2462
vijay kumarc65876c2015-04-24 13:29:16 +05302463static int read_allow_oem_unlock(device_info *dev)
2464{
vijay kumarc65876c2015-04-24 13:29:16 +05302465 unsigned offset;
2466 int index;
2467 unsigned long long ptn;
2468 unsigned long long ptn_size;
2469 unsigned blocksize = mmc_get_device_blocksize();
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002470 STACKBUF_DMA_ALIGN(buf, blocksize);
vijay kumarc65876c2015-04-24 13:29:16 +05302471
vijay kumarca2e6812015-07-08 20:28:25 +05302472 index = partition_get_index(frp_ptns[0]);
vijay kumarc65876c2015-04-24 13:29:16 +05302473 if (index == INVALID_PTN)
2474 {
vijay kumarca2e6812015-07-08 20:28:25 +05302475 index = partition_get_index(frp_ptns[1]);
2476 if (index == INVALID_PTN)
2477 {
2478 dprintf(CRITICAL, "Neither '%s' nor '%s' partition found\n", frp_ptns[0],frp_ptns[1]);
2479 return -1;
2480 }
vijay kumarc65876c2015-04-24 13:29:16 +05302481 }
2482
2483 ptn = partition_get_offset(index);
2484 ptn_size = partition_get_size(index);
2485 offset = ptn_size - blocksize;
2486
Mayank Grover48860402016-11-29 12:34:53 +05302487 /* Set Lun for partition */
2488 mmc_set_lun(partition_get_lun(index));
2489
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002490 if (mmc_read(ptn + offset, (void *)buf, blocksize))
vijay kumarc65876c2015-04-24 13:29:16 +05302491 {
2492 dprintf(CRITICAL, "Reading MMC failed\n");
2493 return -1;
2494 }
2495
2496 /*is_allow_unlock is a bool value stored at the LSB of last byte*/
2497 is_allow_unlock = buf[blocksize-1] & 0x01;
2498 return 0;
2499}
2500
2501static int write_allow_oem_unlock(bool allow_unlock)
2502{
vijay kumarc65876c2015-04-24 13:29:16 +05302503 unsigned offset;
vijay kumarc65876c2015-04-24 13:29:16 +05302504 int index;
2505 unsigned long long ptn;
2506 unsigned long long ptn_size;
2507 unsigned blocksize = mmc_get_device_blocksize();
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002508 STACKBUF_DMA_ALIGN(buf, blocksize);
vijay kumarc65876c2015-04-24 13:29:16 +05302509
vijay kumarca2e6812015-07-08 20:28:25 +05302510 index = partition_get_index(frp_ptns[0]);
vijay kumarc65876c2015-04-24 13:29:16 +05302511 if (index == INVALID_PTN)
2512 {
vijay kumarca2e6812015-07-08 20:28:25 +05302513 index = partition_get_index(frp_ptns[1]);
2514 if (index == INVALID_PTN)
2515 {
2516 dprintf(CRITICAL, "Neither '%s' nor '%s' partition found\n", frp_ptns[0],frp_ptns[1]);
2517 return -1;
2518 }
vijay kumarc65876c2015-04-24 13:29:16 +05302519 }
2520
2521 ptn = partition_get_offset(index);
2522 ptn_size = partition_get_size(index);
2523 offset = ptn_size - blocksize;
Mayank Grover48860402016-11-29 12:34:53 +05302524 mmc_set_lun(partition_get_lun(index));
vijay kumarc65876c2015-04-24 13:29:16 +05302525
Channagoud Kadabib1fe4062015-08-07 16:08:44 -07002526 if (mmc_read(ptn + offset, (void *)buf, blocksize))
vijay kumarc65876c2015-04-24 13:29:16 +05302527 {
2528 dprintf(CRITICAL, "Reading MMC failed\n");
2529 return -1;
2530 }
2531
2532 /*is_allow_unlock is a bool value stored at the LSB of last byte*/
2533 buf[blocksize-1] = allow_unlock;
2534 if (mmc_write(ptn + offset, blocksize, buf))
2535 {
2536 dprintf(CRITICAL, "Writing MMC failed\n");
2537 return -1;
2538 }
2539
2540 return 0;
2541}
2542
Shashank Mittal162244e2011-08-08 19:01:25 -07002543void read_device_info_flash(device_info *dev)
2544{
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002545 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
Shashank Mittal162244e2011-08-08 19:01:25 -07002546 struct ptentry *ptn;
2547 struct ptable *ptable;
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002548 if(info == NULL)
2549 {
2550 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2551 ASSERT(0);
2552 }
2553 info_buf = info;
Shashank Mittal162244e2011-08-08 19:01:25 -07002554 ptable = flash_get_ptable();
2555 if (ptable == NULL)
2556 {
2557 dprintf(CRITICAL, "ERROR: Partition table not found\n");
2558 return;
2559 }
2560
2561 ptn = ptable_find(ptable, "devinfo");
2562 if (ptn == NULL)
2563 {
Smita Ghosh670c8b82015-05-07 09:30:03 -07002564 dprintf(CRITICAL, "ERROR: No devinfo partition found\n");
Shashank Mittal162244e2011-08-08 19:01:25 -07002565 return;
2566 }
2567
2568 if (flash_read(ptn, 0, (void *)info_buf, page_size))
2569 {
2570 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
2571 return;
2572 }
2573
2574 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
2575 {
Shashank Mittal162244e2011-08-08 19:01:25 -07002576 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
2577 info->is_unlocked = 0;
Shashank Mittala0032282011-08-26 14:50:11 -07002578 info->is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002579 write_device_info_flash(info);
2580 }
2581 memcpy(dev, info, sizeof(device_info));
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002582 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002583}
2584
2585void write_device_info(device_info *dev)
2586{
2587 if(target_is_emmc_boot())
2588 {
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002589 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
2590 if(info == NULL)
2591 {
2592 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2593 ASSERT(0);
2594 }
2595 info_buf = info;
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002596 memcpy(info, dev, sizeof(struct device_info));
2597
2598#if USE_RPMB_FOR_DEVINFO
Mayank Grover912eaa62017-10-26 12:08:53 +05302599 if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05302600 is_secure_boot_enable()) {
2601 if((write_device_info_rpmb((void*) info, PAGE_SIZE)) < 0)
2602 ASSERT(0);
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002603 }
Channagoud Kadabic80cb492015-04-28 16:08:28 -07002604 else
2605 write_device_info_mmc(info);
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002606#else
2607 write_device_info_mmc(info);
2608#endif
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002609 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002610 }
2611 else
2612 {
2613 write_device_info_flash(dev);
2614 }
2615}
2616
Monika Singh94316462018-03-15 18:39:01 +05302617int read_rollback_index(uint32_t loc, uint64_t *roll_back_index)
2618{
2619 if (!devinfo_present) {
2620 dprintf(CRITICAL, "DeviceInfo not initalized \n");
2621 return -EINVAL;
2622 }
2623 if (loc >= ARRAY_SIZE(device.rollback_index)) {
2624 dprintf(CRITICAL, "%s() Loc out of range index: %d, array len: %d\n",
2625 __func__, loc, ARRAY_SIZE(device.rollback_index));
2626 ASSERT(0);
2627 }
2628
2629 *roll_back_index = device.rollback_index[loc];
2630 return 0;
2631}
2632
2633int write_rollback_index(uint32_t loc, uint64_t roll_back_index)
2634{
2635 if (!devinfo_present) {
2636 dprintf(CRITICAL, "DeviceInfo not initalized \n");
2637 return -EINVAL;
2638 }
2639 if (loc >= ARRAY_SIZE(device.rollback_index)) {
2640 dprintf(CRITICAL, "%s() Loc out of range index: %d, array len: %d\n",
2641 __func__, loc, ARRAY_SIZE(device.rollback_index));
2642 ASSERT(0);
2643 }
2644
2645 device.rollback_index[loc] = roll_back_index;
2646 write_device_info(&device);
2647 return 0;
2648}
2649
Monika Singhb0fad822018-03-15 18:50:55 +05302650int store_userkey(uint8_t *user_key, uint32_t user_key_size)
2651{
2652 if (!devinfo_present) {
2653 dprintf(CRITICAL, "DeviceInfo not initalized \n");
2654 return -EINVAL;
2655 }
2656
2657 if (user_key_size > ARRAY_SIZE(device.user_public_key)) {
2658 dprintf(CRITICAL, "StoreUserKey, UserKeySize too large!\n");
2659 return -ENODEV;
2660 }
2661
2662 memcpy(device.user_public_key, user_key, user_key_size);
2663 device.user_public_key_length = user_key_size;
2664 write_device_info(&device);
2665 return 0;
2666}
2667
2668int erase_userkey()
2669{
2670 if (!devinfo_present) {
2671 dprintf(CRITICAL, "DeviceInfo not initalized \n");
2672 return -EINVAL;
2673 }
2674 memset(device.user_public_key, 0, ARRAY_SIZE(device.user_public_key));
2675 device.user_public_key_length = 0;
2676 write_device_info(&device);
2677 return 0;
2678}
2679
2680int get_userkey(uint8_t **user_key, uint32_t *user_key_size)
2681{
2682 if (!devinfo_present) {
2683 dprintf(CRITICAL, "DeviceInfo not initalized \n");
2684 return -EINVAL;
2685 }
2686 *user_key = device.user_public_key;
2687 *user_key_size = device.user_public_key_length;
2688 return 0;
2689}
2690
Shashank Mittal162244e2011-08-08 19:01:25 -07002691void read_device_info(device_info *dev)
2692{
2693 if(target_is_emmc_boot())
2694 {
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002695 struct device_info *info = memalign(PAGE_SIZE, ROUNDUP(BOOT_IMG_MAX_PAGE_SIZE, PAGE_SIZE));
2696 if(info == NULL)
2697 {
2698 dprintf(CRITICAL, "Failed to allocate memory for device info struct\n");
2699 ASSERT(0);
2700 }
2701 info_buf = info;
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002702
2703#if USE_RPMB_FOR_DEVINFO
Mayank Grover912eaa62017-10-26 12:08:53 +05302704 if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05302705 is_secure_boot_enable()) {
2706 if((read_device_info_rpmb((void*) info, PAGE_SIZE)) < 0)
2707 ASSERT(0);
Sridhar Parasurame1a97922015-07-27 15:31:22 -07002708 }
Channagoud Kadabic80cb492015-04-28 16:08:28 -07002709 else
2710 read_device_info_mmc(info);
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002711#else
2712 read_device_info_mmc(info);
2713#endif
2714
2715 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
2716 {
2717 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
lijuang511a2b52015-08-14 20:50:51 +08002718 if (is_secure_boot_enable()) {
Channagoud Kadabi05f78ba2015-07-06 11:58:14 -07002719 info->is_unlocked = 0;
Monika Singh292b3e92018-03-17 22:40:23 +05302720#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05302721 if (VB_M <= target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05302722 info->is_unlock_critical = 0;
Parth Dixitddbc7352015-10-18 03:13:31 +05302723#endif
lijuang511a2b52015-08-14 20:50:51 +08002724 } else {
Channagoud Kadabi2fda4092015-07-07 13:34:11 -07002725 info->is_unlocked = 1;
Monika Singh292b3e92018-03-17 22:40:23 +05302726#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05302727 if (VB_M <= target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05302728 info->is_unlock_critical = 1;
Parth Dixitddbc7352015-10-18 03:13:31 +05302729#endif
lijuang511a2b52015-08-14 20:50:51 +08002730 }
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002731 info->is_tampered = 0;
2732 info->charger_screen_enabled = 0;
Monika Singh292b3e92018-03-17 22:40:23 +05302733#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05302734 if (VB_M <= target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05302735 info->verity_mode = 1; //enforcing by default
Parth Dixitddbc7352015-10-18 03:13:31 +05302736#endif
Channagoud Kadabi036c6052015-02-09 15:19:59 -08002737 write_device_info(info);
2738 }
2739 memcpy(dev, info, sizeof(device_info));
Sridhar Parasuram7e16d172015-07-05 11:35:23 -07002740 free(info);
Shashank Mittal162244e2011-08-08 19:01:25 -07002741 }
2742 else
2743 {
2744 read_device_info_flash(dev);
2745 }
2746}
2747
2748void reset_device_info()
2749{
2750 dprintf(ALWAYS, "reset_device_info called.");
Shashank Mittala0032282011-08-26 14:50:11 -07002751 device.is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07002752 write_device_info(&device);
2753}
2754
2755void set_device_root()
2756{
2757 dprintf(ALWAYS, "set_device_root called.");
Shashank Mittala0032282011-08-26 14:50:11 -07002758 device.is_tampered = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -07002759 write_device_info(&device);
2760}
2761
lijuang4ece1e72015-08-14 21:02:36 +08002762/* set device unlock value
2763 * Must check FRP before call this function
2764 * Need to wipe data when unlock status changed
2765 * type 0: oem unlock
2766 * type 1: unlock critical
2767 * status 0: unlock as false
2768 * status 1: lock as true
2769 */
2770void set_device_unlock_value(int type, bool status)
lijuang21f12f52015-08-22 16:22:19 +08002771{
lijuang4ece1e72015-08-14 21:02:36 +08002772 if (type == UNLOCK)
2773 device.is_unlocked = status;
Monika Singh292b3e92018-03-17 22:40:23 +05302774#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05302775 else if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05302776 type == UNLOCK_CRITICAL)
2777 device.is_unlock_critical = status;
Parth Dixitddbc7352015-10-18 03:13:31 +05302778#endif
lijuang4ece1e72015-08-14 21:02:36 +08002779 write_device_info(&device);
2780}
2781
2782static void set_device_unlock(int type, bool status)
2783{
2784 int is_unlocked = -1;
2785 char response[MAX_RSP_SIZE];
2786
2787 /* check device unlock status if it is as expected */
2788 if (type == UNLOCK)
2789 is_unlocked = device.is_unlocked;
Monika Singh292b3e92018-03-17 22:40:23 +05302790#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05302791 if(VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05302792 type == UNLOCK_CRITICAL)
2793 {
2794 is_unlocked = device.is_unlock_critical;
2795 }
Parth Dixitddbc7352015-10-18 03:13:31 +05302796#endif
lijuang4ece1e72015-08-14 21:02:36 +08002797 if (is_unlocked == status) {
2798 snprintf(response, sizeof(response), "\tDevice already : %s", (status ? "unlocked!" : "locked!"));
2799 fastboot_info(response);
2800 fastboot_okay("");
2801 return;
2802 }
2803
2804 /* status is true, it means to unlock device */
lijuang07c5d6e2018-04-23 18:32:13 +08002805 if (status && !is_allow_unlock) {
2806 fastboot_fail("oem unlock is not allowed");
2807 return;
2808 }
lijuang21f12f52015-08-22 16:22:19 +08002809
lijuang4ece1e72015-08-14 21:02:36 +08002810#if FBCON_DISPLAY_MSG
lijuang07c5d6e2018-04-23 18:32:13 +08002811 display_unlock_menu(type, status);
2812 fastboot_okay("");
2813 return;
lijuang4ece1e72015-08-14 21:02:36 +08002814#else
lijuang07c5d6e2018-04-23 18:32:13 +08002815 if (status && type == UNLOCK) {
2816 fastboot_fail("Need wipe userdata. Do 'fastboot oem unlock-go'");
2817 return;
lijuang21f12f52015-08-22 16:22:19 +08002818 }
lijuang07c5d6e2018-04-23 18:32:13 +08002819#endif
lijuang4ece1e72015-08-14 21:02:36 +08002820
2821 set_device_unlock_value(type, status);
2822
2823 /* wipe data */
2824 struct recovery_message msg;
Kishor PK60a68212017-05-08 16:55:57 +05302825 memset(&msg, 0, sizeof(msg));
lijuang4ece1e72015-08-14 21:02:36 +08002826 snprintf(msg.recovery, sizeof(msg.recovery), "recovery\n--wipe_data");
2827 write_misc(0, &msg, sizeof(msg));
2828
2829 fastboot_okay("");
2830 reboot_device(RECOVERY_MODE);
lijuang21f12f52015-08-22 16:22:19 +08002831}
2832
lijuang511a2b52015-08-14 20:50:51 +08002833static bool critical_flash_allowed(const char * entry)
2834{
2835 uint32_t i = 0;
2836 if (entry == NULL)
2837 return false;
2838
2839 for (i = 0; i < ARRAY_SIZE(critical_flash_allowed_ptn); i++) {
2840 if(!strcmp(entry, critical_flash_allowed_ptn[i]))
2841 return true;
2842 }
2843 return false;
Matthew Qin271927e2015-03-31 22:07:07 -04002844}
2845
2846#if DEVICE_TREE
Amol Jadicb524072012-08-09 16:40:18 -07002847int copy_dtb(uint8_t *boot_image_start, unsigned int scratch_offset)
2848{
2849 uint32 dt_image_offset = 0;
Amol Jadicb524072012-08-09 16:40:18 -07002850 uint32_t n;
Monika Singh292b3e92018-03-17 22:40:23 +05302851 struct dt_table *table = NULL;
Amol Jadicb524072012-08-09 16:40:18 -07002852 struct dt_entry dt_entry;
Monika Singh292b3e92018-03-17 22:40:23 +05302853 uint32_t dt_hdr_size = 0;
Amol Jadicb524072012-08-09 16:40:18 -07002854 unsigned int compressed_size = 0;
2855 unsigned int dtb_size = 0;
2856 unsigned int out_avai_len = 0;
2857 unsigned char *out_addr = NULL;
2858 unsigned char *best_match_dt_addr = NULL;
2859 int rc;
2860
Mayank Grovere1ab96c2018-09-04 20:31:31 +05302861 boot_img_hdr *hdr = (boot_img_hdr *) (boot_image_start);
Amol Jadicb524072012-08-09 16:40:18 -07002862
Parth Dixit4097b622016-03-15 14:42:27 +05302863#ifndef OSVERSION_IN_BOOTIMAGE
2864 dt_size = hdr->dt_size;
2865#endif
2866
2867 if(dt_size != 0) {
Amol Jadicb524072012-08-09 16:40:18 -07002868 /* add kernel offset */
2869 dt_image_offset += page_size;
2870 n = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
2871 dt_image_offset += n;
2872
2873 /* add ramdisk offset */
2874 n = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
2875 dt_image_offset += n;
2876
2877 /* add second offset */
2878 if(hdr->second_size != 0) {
2879 n = ROUND_TO_PAGE(hdr->second_size, page_mask);
2880 dt_image_offset += n;
2881 }
2882
2883 /* offset now point to start of dt.img */
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07002884 table = (struct dt_table*)(boot_image_start + dt_image_offset);
Amol Jadicb524072012-08-09 16:40:18 -07002885
Deepa Dinamani19648b42013-09-05 17:05:55 -07002886 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
Amol Jadicb524072012-08-09 16:40:18 -07002887 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
2888 return -1;
2889 }
P.V. Phani Kumar82916762016-03-09 09:20:19 +05302890
2891 /* Its Error if, dt_hdr_size (table->num_entries * dt_entry size + Dev_Tree Header)
2892 goes beyound hdr->dt_size*/
Parth Dixit4097b622016-03-15 14:42:27 +05302893 if (dt_hdr_size > ROUND_TO_PAGE(dt_size,hdr->page_size)) {
P.V. Phani Kumar82916762016-03-09 09:20:19 +05302894 dprintf(CRITICAL, "ERROR: Invalid Device Tree size \n");
2895 return -1;
2896 }
2897
Joel Kingaa335dc2013-06-03 16:11:08 -07002898 /* Find index of device tree within device tree table */
2899 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
Amol Jadicb524072012-08-09 16:40:18 -07002900 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
2901 return -1;
2902 }
2903
Matthew Qin271927e2015-03-31 22:07:07 -04002904 best_match_dt_addr = (unsigned char *)boot_image_start + dt_image_offset + dt_entry.offset;
2905 if (is_gzip_package(best_match_dt_addr, dt_entry.size))
2906 {
2907 out_addr = (unsigned char *)target_get_scratch_address() + scratch_offset;
2908 out_avai_len = target_get_max_flash_size() - scratch_offset;
Matthew Qin0b15b322015-05-19 05:20:54 -04002909 dprintf(INFO, "decompressing dtb: start\n");
Matthew Qin271927e2015-03-31 22:07:07 -04002910 rc = decompress(best_match_dt_addr,
2911 dt_entry.size, out_addr, out_avai_len,
2912 &compressed_size, &dtb_size);
2913 if (rc)
2914 {
Matthew Qin0b15b322015-05-19 05:20:54 -04002915 dprintf(CRITICAL, "decompressing dtb failed!!!\n");
Matthew Qin271927e2015-03-31 22:07:07 -04002916 ASSERT(0);
2917 }
2918
Matthew Qin0b15b322015-05-19 05:20:54 -04002919 dprintf(INFO, "decompressing dtb: done\n");
Matthew Qin271927e2015-03-31 22:07:07 -04002920 best_match_dt_addr = out_addr;
2921 } else {
2922 dtb_size = dt_entry.size;
2923 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002924 /* Validate and Read device device tree in the "tags_add */
Mayank Grovere559cec2017-10-17 15:12:03 +05302925 if (check_aboot_addr_range_overlap(hdr->tags_addr, dtb_size) ||
2926 check_ddr_addr_range_bound(hdr->tags_addr, dtb_size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002927 {
Mayank Grovere559cec2017-10-17 15:12:03 +05302928 dprintf(CRITICAL, "Device tree addresses are not valid.\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002929 return -1;
2930 }
2931
Amol Jadicb524072012-08-09 16:40:18 -07002932 /* Read device device tree in the "tags_add */
Matthew Qin271927e2015-03-31 22:07:07 -04002933 memmove((void*) hdr->tags_addr, (void *)best_match_dt_addr, dtb_size);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002934 } else
2935 return -1;
Amol Jadicb524072012-08-09 16:40:18 -07002936
2937 /* Everything looks fine. Return success. */
2938 return 0;
2939}
2940#endif
2941
Brian Swetland9c4c0752009-01-25 16:23:50 -08002942void cmd_boot(const char *arg, void *data, unsigned sz)
2943{
2944 unsigned kernel_actual;
2945 unsigned ramdisk_actual;
Kishor PKd8ddcad2017-07-27 13:53:57 +05302946 unsigned second_actual;
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07002947 uint32_t image_actual;
2948 uint32_t dt_actual = 0;
Mayank Grovere1ab96c2018-09-04 20:31:31 +05302949 boot_img_hdr *hdr = NULL;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002950 struct kernel64_hdr *kptr = NULL;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002951 char *ptr = ((char*) data);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07002952 int ret = 0;
2953 uint8_t dtb_copied = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08002954 unsigned int out_len = 0;
2955 unsigned int out_avai_len = 0;
2956 unsigned char *out_addr = NULL;
2957 uint32_t dtb_offset = 0;
2958 unsigned char *kernel_start_addr = NULL;
2959 unsigned int kernel_size = 0;
Matthew Qin271927e2015-03-31 22:07:07 -04002960 unsigned int scratch_offset = 0;
Saranya Chidurab4933332018-10-15 17:30:06 +05302961#if VERIFIED_BOOT_2
2962 void *dtbo_image_buf = NULL;
2963 uint32_t dtbo_image_sz = 0;
2964 void *vbmeta_image_buf = NULL;
2965 uint32_t vbmeta_image_sz = 0;
2966#endif
Monika Singh292b3e92018-03-17 22:40:23 +05302967#if !VERIFIED_BOOT_2
2968 uint32_t sig_actual = 0;
2969 uint32_t sig_size = 0;
2970#ifdef MDTP_SUPPORT
2971 static bool is_mdtp_activated = 0;
2972#endif /* MDTP_SUPPORT */
2973#endif
Matthew Qinbb7923d2015-02-09 10:56:09 +08002974
lijuang2008ff22016-03-07 17:56:27 +08002975#if FBCON_DISPLAY_MSG
2976 /* Exit keys' detection thread firstly */
2977 exit_menu_keys_detection();
2978#endif
2979
Monika Singh292b3e92018-03-17 22:40:23 +05302980#if VERIFIED_BOOT || VERIFIED_BOOT_2
Channagoud Kadabi6d5375e2015-06-23 17:15:42 -07002981 if(target_build_variant_user() && !device.is_unlocked)
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002982 {
2983 fastboot_fail("unlock device to use this command");
lijuang2008ff22016-03-07 17:56:27 +08002984 goto boot_failed;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002985 }
2986#endif
2987
Brian Swetland9c4c0752009-01-25 16:23:50 -08002988 if (sz < sizeof(hdr)) {
2989 fastboot_fail("invalid bootimage header");
lijuang2008ff22016-03-07 17:56:27 +08002990 goto boot_failed;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002991 }
2992
Mayank Grovere1ab96c2018-09-04 20:31:31 +05302993 hdr = (boot_img_hdr *)data;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002994
2995 /* ensure commandline is terminated */
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002996 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
Brian Swetland9c4c0752009-01-25 16:23:50 -08002997
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07002998 if(target_is_emmc_boot() && hdr->page_size) {
2999 page_size = hdr->page_size;
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07003000 page_mask = page_size - 1;
3001 }
3002
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07003003 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
3004 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Kishor PKd8ddcad2017-07-27 13:53:57 +05303005 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07003006#if DEVICE_TREE
Parth Dixit4097b622016-03-15 14:42:27 +05303007#ifndef OSVERSION_IN_BOOTIMAGE
3008 dt_size = hdr->dt_size;
3009#endif
3010 dt_actual = ROUND_TO_PAGE(dt_size, page_mask);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07003011#endif
3012
3013 image_actual = ADD_OF(page_size, kernel_actual);
3014 image_actual = ADD_OF(image_actual, ramdisk_actual);
Kishor PKd8ddcad2017-07-27 13:53:57 +05303015 image_actual = ADD_OF(image_actual, second_actual);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07003016 image_actual = ADD_OF(image_actual, dt_actual);
3017
Kishor PK5134b332017-05-09 17:50:08 +05303018 /* Checking to prevent oob access in read_der_message_length */
3019 if (image_actual > sz) {
3020 fastboot_fail("bootimage header fields are invalid");
3021 goto boot_failed;
3022 }
Saranya Chidurab4933332018-10-15 17:30:06 +05303023
Monika Singh292b3e92018-03-17 22:40:23 +05303024#if VERIFIED_BOOT_2
Mayank Grover1ceaee22019-04-01 17:54:32 +05303025 /* Pass size of boot partition, as imgsize, to avoid
3026 read fewer bytes error */
3027 image_actual = partition_get_size(partition_get_index("boot"));
Saranya Chidurab4933332018-10-15 17:30:06 +05303028
3029 /* load and validate dtbo partition */
3030 load_validate_dtbo_image(&dtbo_image_buf, &dtbo_image_sz);
3031
3032 /* load vbmeta partition */
3033 load_vbmeta_image(&vbmeta_image_buf, &vbmeta_image_sz);
3034
Monika Singh292b3e92018-03-17 22:40:23 +05303035 memset(&info, 0, sizeof(bootinfo));
Saranya Chidurab4933332018-10-15 17:30:06 +05303036
3037 info.images[IMG_BOOT].image_buffer = SUB_SALT_BUFF_OFFSET(data);
3038 info.images[IMG_BOOT].imgsize = image_actual;
3039 info.images[IMG_BOOT].name = "boot";
3040 ++info.num_loaded_images;
3041
3042 /* Pass loaded dtbo image */
3043 if (dtbo_image_buf != NULL) {
3044 info.images[IMG_DTBO].image_buffer = SUB_SALT_BUFF_OFFSET(dtbo_image_buf);
3045 info.images[IMG_DTBO].imgsize = dtbo_image_sz;
3046 info.images[IMG_DTBO].name = "dtbo";
3047 ++info.num_loaded_images;
3048 }
3049
3050 /* Pass loaded vbmeta image */
3051 if (vbmeta_image_buf != NULL) {
3052 info.images[IMG_VBMETA].image_buffer = vbmeta_image_buf;
3053 info.images[IMG_VBMETA].imgsize = vbmeta_image_sz;
3054 info.images[IMG_VBMETA].name = "vbmeta";
3055 ++info.num_loaded_images;
3056 }
3057
Monika Singh292b3e92018-03-17 22:40:23 +05303058 info.multi_slot_boot = partition_multislot_is_supported();
3059 if (load_image_and_auth(&info))
3060 goto boot_failed;
3061 vbcmdline = info.vbcmdline;
Saranya Chidurab4933332018-10-15 17:30:06 +05303062
3063 /* Free the buffer allocated to vbmeta post verification */
3064 if (vbmeta_image_buf != NULL) {
3065 free(vbmeta_image_buf);
3066 --info.num_loaded_images;
3067 }
Monika Singh292b3e92018-03-17 22:40:23 +05303068#else
Kishor PK5134b332017-05-09 17:50:08 +05303069 sig_size = sz - image_actual;
3070
P.V. Phani Kumareecfd822016-03-09 20:09:03 +05303071 if (target_use_signed_kernel() && (!device.is_unlocked)) {
Monika Singh292b3e92018-03-17 22:40:23 +05303072 unsigned chk;
P.V. Phani Kumareecfd822016-03-09 20:09:03 +05303073 /* Calculate the signature length from boot image */
3074 sig_actual = read_der_message_length(
Kishor PK5134b332017-05-09 17:50:08 +05303075 (unsigned char*)(data + image_actual), sig_size);
Monika Singh292b3e92018-03-17 22:40:23 +05303076 chk = ADD_OF(image_actual, sig_actual);
Channagoud Kadabi3d839012014-06-26 14:26:39 -07003077
Monika Singh292b3e92018-03-17 22:40:23 +05303078 if (chk > sz) {
Kishor PK5134b332017-05-09 17:50:08 +05303079 fastboot_fail("bootimage header fields are invalid");
3080 goto boot_failed;
3081 }
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07003082 }
3083
Sridhar Parasuram361e4cd2015-09-24 11:19:19 -07003084 // Initialize boot state before trying to verify boot.img
3085#if VERIFIED_BOOT
Channagoud Kadabi699466e2015-11-03 12:37:42 -08003086 boot_verifier_init();
Mayank Groverb337e932017-01-18 20:00:40 +05303087#endif
Channagoud Kadabibf6ce7d2015-09-17 13:25:35 -07003088 /* Handle overflow if the input image size is greater than
3089 * boot image buffer can hold
3090 */
Monika Singh292b3e92018-03-17 22:40:23 +05303091 if ((target_get_max_flash_size() - page_size) < image_actual)
Channagoud Kadabibf6ce7d2015-09-17 13:25:35 -07003092 {
3093 fastboot_fail("booimage: size is greater than boot image buffer can hold");
lijuang2008ff22016-03-07 17:56:27 +08003094 goto boot_failed;
Channagoud Kadabibf6ce7d2015-09-17 13:25:35 -07003095 }
Sridhar Parasuram361e4cd2015-09-24 11:19:19 -07003096
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07003097 /* Verify the boot image
3098 * device & page_size are initialized in aboot_init
3099 */
Sridhar Parasuram7ae9fbc2015-09-17 09:56:30 -07003100 if (target_use_signed_kernel() && (!device.is_unlocked)) {
Channagoud Kadabi3d839012014-06-26 14:26:39 -07003101 /* Pass size excluding signature size, otherwise we would try to
3102 * access signature beyond its length
3103 */
Monika Singh292b3e92018-03-17 22:40:23 +05303104 verify_signed_bootimg((uint32_t)data, image_actual);
Sridhar Parasuram7ae9fbc2015-09-17 09:56:30 -07003105 }
Amit Blay4aa292f2015-04-28 21:55:59 +03003106#ifdef MDTP_SUPPORT
3107 else
3108 {
Shay Nachmani062aa3f2015-05-17 17:28:44 +03003109 /* fastboot boot is not allowed when MDTP is activated */
Amit Blay4aa292f2015-04-28 21:55:59 +03003110 mdtp_ext_partition_verification_t ext_partition;
Amit Blay8a510302015-08-17 09:20:01 +03003111
3112 if (!is_mdtp_activated) {
3113 ext_partition.partition = MDTP_PARTITION_NONE;
3114 mdtp_fwlock_verify_lock(&ext_partition);
3115 }
Amit Blay4aa292f2015-04-28 21:55:59 +03003116 }
Shay Nachmani062aa3f2015-05-17 17:28:44 +03003117
Amir Kotzer7c768c02016-04-13 09:08:05 +03003118 /* If mdtp state cannot be validate, block fastboot boot*/
3119 if(mdtp_activated(&is_mdtp_activated)){
3120 dprintf(CRITICAL, "mdtp_activated cannot validate state.\n");
3121 dprintf(CRITICAL, "Can not proceed with fastboot boot command.\n");
3122 goto boot_failed;
3123 }
Shay Nachmani062aa3f2015-05-17 17:28:44 +03003124 if(is_mdtp_activated){
3125 dprintf(CRITICAL, "fastboot boot command is not available.\n");
lijuang2008ff22016-03-07 17:56:27 +08003126 goto boot_failed;
Shay Nachmani062aa3f2015-05-17 17:28:44 +03003127 }
Amit Blay4aa292f2015-04-28 21:55:59 +03003128#endif /* MDTP_SUPPORT */
Monika Singh292b3e92018-03-17 22:40:23 +05303129#endif /* VERIFIED_BOOT_2 else */
Amit Blay4aa292f2015-04-28 21:55:59 +03003130
Sridhar Parasuram361e4cd2015-09-24 11:19:19 -07003131#if VERIFIED_BOOT
Monika Singh292b3e92018-03-17 22:40:23 +05303132 if (VB_M == target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05303133 {
3134 /* set boot and system versions. */
3135 set_os_version((unsigned char *)data);
3136 // send root of trust
3137 if(!send_rot_command((uint32_t)device.is_unlocked))
3138 ASSERT(0);
3139 }
Parth Dixitbc9b6492015-10-18 00:41:38 +05303140#endif
Channagoud Kadabia22144f2013-03-20 11:49:01 -07003141 /*
Matthew Qinbb7923d2015-02-09 10:56:09 +08003142 * Check if the kernel image is a gzip package. If yes, need to decompress it.
3143 * If not, continue booting.
3144 */
3145 if (is_gzip_package((unsigned char *)(data + page_size), hdr->kernel_size))
3146 {
3147 out_addr = (unsigned char *)target_get_scratch_address();
3148 out_addr = (unsigned char *)(out_addr + image_actual + page_size);
3149 out_avai_len = target_get_max_flash_size() - image_actual - page_size;
Saranya Chidurab4933332018-10-15 17:30:06 +05303150#if VERIFIED_BOOT_2
3151 if (dtbo_image_sz)
3152 out_avai_len -= DTBO_IMG_BUF;
3153#endif
Matthew Qin0b15b322015-05-19 05:20:54 -04003154 dprintf(INFO, "decompressing kernel image: start\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08003155 ret = decompress((unsigned char *)(ptr + page_size),
3156 hdr->kernel_size, out_addr, out_avai_len,
3157 &dtb_offset, &out_len);
3158 if (ret)
3159 {
Matthew Qin0b15b322015-05-19 05:20:54 -04003160 dprintf(CRITICAL, "decompressing image failed!!!\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08003161 ASSERT(0);
3162 }
3163
Matthew Qin0b15b322015-05-19 05:20:54 -04003164 dprintf(INFO, "decompressing kernel image: done\n");
Matthew Qinbb7923d2015-02-09 10:56:09 +08003165 kptr = (struct kernel64_hdr *)out_addr;
3166 kernel_start_addr = out_addr;
3167 kernel_size = out_len;
3168 } else {
3169 kptr = (struct kernel64_hdr*)((char *)data + page_size);
3170 kernel_start_addr = (unsigned char *)((char *)data + page_size);
3171 kernel_size = hdr->kernel_size;
3172 }
3173
3174 /*
Channagoud Kadabia22144f2013-03-20 11:49:01 -07003175 * Update the kernel/ramdisk/tags address if the boot image header
3176 * has default values, these default values come from mkbootimg when
3177 * the boot image is flashed using fastboot flash:raw
3178 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08003179 update_ker_tags_rdisk_addr(hdr, IS_ARM64(kptr));
Dima Zavin3cadfff2013-03-21 14:30:48 -07003180
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07003181 /* Get virtual addresses since the hdr saves physical addresses. */
3182 hdr->kernel_addr = VA(hdr->kernel_addr);
3183 hdr->ramdisk_addr = VA(hdr->ramdisk_addr);
3184 hdr->tags_addr = VA(hdr->tags_addr);
Brian Swetland9c4c0752009-01-25 16:23:50 -08003185
Matthew Qinbb7923d2015-02-09 10:56:09 +08003186 kernel_size = ROUND_TO_PAGE(kernel_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07003187 /* Check if the addresses in the header are valid. */
Matthew Qinbb7923d2015-02-09 10:56:09 +08003188 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_size) ||
Mayank Grovere559cec2017-10-17 15:12:03 +05303189 check_ddr_addr_range_bound(hdr->kernel_addr, kernel_size) ||
3190 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual) ||
3191 check_ddr_addr_range_bound(hdr->ramdisk_addr, ramdisk_actual))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07003192 {
Mayank Grovere559cec2017-10-17 15:12:03 +05303193 dprintf(CRITICAL, "kernel/ramdisk addresses are not valid.\n");
lijuang2008ff22016-03-07 17:56:27 +08003194 goto boot_failed;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07003195 }
3196
Amol Jadicb524072012-08-09 16:40:18 -07003197#if DEVICE_TREE
Matthew Qin271927e2015-03-31 22:07:07 -04003198 scratch_offset = image_actual + page_size + out_len;
Amol Jadicb524072012-08-09 16:40:18 -07003199 /* find correct dtb and copy it to right location */
Matthew Qin271927e2015-03-31 22:07:07 -04003200 ret = copy_dtb(data, scratch_offset);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07003201
3202 dtb_copied = !ret ? 1 : 0;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07003203#else
Mayank Grovere559cec2017-10-17 15:12:03 +05303204 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE) ||
3205 check_ddr_addr_range_bound(hdr->tags_addr, MAX_TAGS_SIZE))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07003206 {
Mayank Grovere559cec2017-10-17 15:12:03 +05303207 dprintf(CRITICAL, "Tags addresses are not valid.\n");
lijuang2008ff22016-03-07 17:56:27 +08003208 goto boot_failed;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07003209 }
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07003210#endif
3211
3212 /* Load ramdisk & kernel */
3213 memmove((void*) hdr->ramdisk_addr, ptr + page_size + kernel_actual, hdr->ramdisk_size);
Matthew Qinbb7923d2015-02-09 10:56:09 +08003214 memmove((void*) hdr->kernel_addr, (char*) (kernel_start_addr), kernel_size);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07003215
3216#if DEVICE_TREE
Mayank Grovere559cec2017-10-17 15:12:03 +05303217 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual) ||
3218 check_ddr_addr_range_bound(hdr->tags_addr, kernel_actual))
Matthew Qinbb7923d2015-02-09 10:56:09 +08003219 {
Mayank Grovere559cec2017-10-17 15:12:03 +05303220 dprintf(CRITICAL, "Tags addresses are not valid.\n");
lijuang2008ff22016-03-07 17:56:27 +08003221 goto boot_failed;
Matthew Qinbb7923d2015-02-09 10:56:09 +08003222 }
3223
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07003224 /*
3225 * If dtb is not found look for appended DTB in the kernel.
3226 * If appended dev tree is found, update the atags with
3227 * memory address to the DTB appended location on RAM.
3228 * Else update with the atags address in the kernel header
3229 */
3230 if (!dtb_copied) {
3231 void *dtb;
Matthew Qinbb7923d2015-02-09 10:56:09 +08003232 dtb = dev_tree_appended((void*)(ptr + page_size),
3233 hdr->kernel_size, dtb_offset,
Dima Zavine63e5572013-05-03 12:23:06 -07003234 (void *)hdr->tags_addr);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07003235 if (!dtb) {
3236 fastboot_fail("dtb not found");
lijuang2008ff22016-03-07 17:56:27 +08003237 goto boot_failed;
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07003238 }
Amol Jadicb524072012-08-09 16:40:18 -07003239 }
3240#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -08003241
3242 fastboot_okay("");
Amol Jadi7c4316c2013-10-07 14:19:26 -07003243 fastboot_stop();
Brian Swetland9c4c0752009-01-25 16:23:50 -08003244
Dima Zavin77e41f32013-03-06 16:10:43 -08003245 boot_linux((void*) hdr->kernel_addr, (void*) hdr->tags_addr,
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07003246 (const char*) hdr->cmdline, board_machtype(),
3247 (void*) hdr->ramdisk_addr, hdr->ramdisk_size);
lijuang2008ff22016-03-07 17:56:27 +08003248
3249 /* fastboot already stop, it's no need to show fastboot menu */
3250 return;
3251boot_failed:
3252#if FBCON_DISPLAY_MSG
3253 /* revert to fastboot menu if boot failed */
3254 display_fastboot_menu();
3255#endif
3256 return;
Brian Swetland9c4c0752009-01-25 16:23:50 -08003257}
3258
Sridhar Parasurame94e8152014-10-24 14:06:03 -07003259void cmd_erase_nand(const char *arg, void *data, unsigned sz)
Dima Zavin214cc642009-01-26 11:16:21 -08003260{
3261 struct ptentry *ptn;
3262 struct ptable *ptable;
3263
3264 ptable = flash_get_ptable();
3265 if (ptable == NULL) {
3266 fastboot_fail("partition table doesn't exist");
3267 return;
3268 }
3269
3270 ptn = ptable_find(ptable, arg);
3271 if (ptn == NULL) {
3272 fastboot_fail("unknown partition name");
3273 return;
3274 }
3275
Monika Singh292b3e92018-03-17 22:40:23 +05303276 if (!strncmp(arg, "avb_custom_key", strlen("avb_custom_key"))) {
3277 dprintf(INFO, "erasing avb_custom_key\n");
3278 if (erase_userkey()) {
3279 fastboot_fail("Erasing avb_custom_key failed");
3280 } else {
3281 fastboot_okay("");
3282 }
3283 return;
3284 }
3285
Dima Zavin214cc642009-01-26 11:16:21 -08003286 if (flash_erase(ptn)) {
3287 fastboot_fail("failed to erase partition");
3288 return;
3289 }
3290 fastboot_okay("");
3291}
3292
Bikas Gurungd48bd242010-09-04 19:54:32 -07003293
3294void cmd_erase_mmc(const char *arg, void *data, unsigned sz)
3295{
3296 unsigned long long ptn = 0;
Oliver Wangcee448d2013-10-22 18:40:13 +08003297 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07003298 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003299 uint8_t lun = 0;
Vijay Kumar Pendoti0b21f462016-05-02 17:09:18 +05303300 char *footer = NULL;
Bikas Gurungd48bd242010-09-04 19:54:32 -07003301
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003302#if VERIFIED_BOOT
3303 if(!strcmp(arg, KEYSTORE_PTN_NAME))
3304 {
3305 if(!device.is_unlocked)
3306 {
3307 fastboot_fail("unlock device to erase keystore");
3308 return;
3309 }
3310 }
3311#endif
3312
Kinson Chikf1a43512011-07-14 11:28:39 -07003313 index = partition_get_index(arg);
3314 ptn = partition_get_offset(index);
Oliver Wangcee448d2013-10-22 18:40:13 +08003315 size = partition_get_size(index);
Neeti Desaica8c9602011-10-06 11:40:00 -07003316
Monika Singhc4778b72018-05-16 11:16:42 +05303317 if (!strncmp(arg, "avb_custom_key", strlen("avb_custom_key"))) {
3318 dprintf(INFO, "erasing avb_custom_key\n");
3319 if (erase_userkey()) {
3320 fastboot_fail("Erasing avb_custom_key failed");
3321 } else {
3322 fastboot_okay("");
3323 }
3324 return;
3325 }
3326
Kinson Chikf1a43512011-07-14 11:28:39 -07003327 if(ptn == 0) {
Neeti Desaica8c9602011-10-06 11:40:00 -07003328 fastboot_fail("Partition table doesn't exist\n");
Bikas Gurungd48bd242010-09-04 19:54:32 -07003329 return;
3330 }
Kun Liang2f1601a2013-08-12 16:29:54 +08003331
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003332 lun = partition_get_lun(index);
3333 mmc_set_lun(lun);
3334
Sridhar Parasuramd7957122015-02-27 11:33:40 -08003335 if (platform_boot_dev_isemmc())
3336 {
3337 if (mmc_erase_card(ptn, size)) {
3338 fastboot_fail("failed to erase partition\n");
3339 return;
3340 }
3341 } else {
3342 BUF_DMA_ALIGN(out, DEFAULT_ERASE_SIZE);
3343 size = partition_get_size(index);
3344 if (size > DEFAULT_ERASE_SIZE)
3345 size = DEFAULT_ERASE_SIZE;
Kun Liang2f1601a2013-08-12 16:29:54 +08003346
Sridhar Parasuramd7957122015-02-27 11:33:40 -08003347 /* Simple inefficient version of erase. Just writing
3348 0 in first several blocks */
3349 if (mmc_write(ptn , size, (unsigned int *)out)) {
3350 fastboot_fail("failed to erase partition");
3351 return;
3352 }
Vijay Kumar Pendoti0b21f462016-05-02 17:09:18 +05303353 /*Erase FDE metadata at the userdata footer*/
3354 if(!(strncmp(arg, "userdata", 8)))
3355 {
3356 footer = memalign(CACHE_LINE, FOOTER_SIZE);
3357 memset((void *)footer, 0, FOOTER_SIZE);
3358
3359 size = partition_get_size(index);
3360
3361 if (mmc_write((ptn + size) - FOOTER_SIZE , FOOTER_SIZE, (unsigned int *)footer)) {
3362 fastboot_fail("failed to erase userdata footer");
3363 free(footer);
3364 return;
3365 }
3366 free(footer);
3367 }
Bikas Gurungd48bd242010-09-04 19:54:32 -07003368 }
Monika Singh292b3e92018-03-17 22:40:23 +05303369#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05303370 if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05303371 !(strncmp(arg, "userdata", 8)) &&
3372 send_delete_keys_to_tz())
Sridhar Parasuram32b30662015-07-10 13:33:22 -07003373 ASSERT(0);
3374#endif
Bikas Gurungd48bd242010-09-04 19:54:32 -07003375 fastboot_okay("");
3376}
3377
Sridhar Parasurame94e8152014-10-24 14:06:03 -07003378void cmd_erase(const char *arg, void *data, unsigned sz)
3379{
Monika Singh292b3e92018-03-17 22:40:23 +05303380#if VERIFIED_BOOT || VERIFIED_BOOT_2
Channagoud Kadabi35297672015-06-13 11:09:49 -07003381 if (target_build_variant_user())
Channagoud Kadabice3cf422015-04-17 16:02:30 -07003382 {
Sridhar Parasuramc32d07d2015-07-12 10:57:48 -07003383 if(!device.is_unlocked)
Channagoud Kadabice3cf422015-04-17 16:02:30 -07003384 {
Channagoud Kadabi35297672015-06-13 11:09:49 -07003385 fastboot_fail("device is locked. Cannot erase");
Channagoud Kadabice3cf422015-04-17 16:02:30 -07003386 return;
3387 }
3388 }
3389#endif
3390
Sridhar Parasurame94e8152014-10-24 14:06:03 -07003391 if(target_is_emmc_boot())
3392 cmd_erase_mmc(arg, data, sz);
3393 else
3394 cmd_erase_nand(arg, data, sz);
3395}
Bikas Gurungd48bd242010-09-04 19:54:32 -07003396
Mayank Grover11ff9692018-01-11 11:54:49 +05303397/* Get the size from partiton name */
3398static void get_partition_size(const char *arg, char *response)
3399{
3400 uint64_t ptn = 0;
3401 uint64_t size;
3402 int index = INVALID_PTN;
3403
3404 index = partition_get_index(arg);
3405
3406 if (index == INVALID_PTN)
3407 {
3408 dprintf(CRITICAL, "Invalid partition index\n");
3409 return;
3410 }
3411
3412 ptn = partition_get_offset(index);
3413
3414 if(!ptn)
3415 {
3416 dprintf(CRITICAL, "Invalid partition name %s\n", arg);
3417 return;
3418 }
3419
3420 size = partition_get_size(index);
3421
3422 snprintf(response, MAX_RSP_SIZE, "\t 0x%llx", size);
3423 return;
3424}
3425
Mayank Grover52cd10a2018-03-15 12:57:54 +05303426/* Function to check partition type of a partition*/
3427static fs_signature_type
3428check_partition_fs_signature(const char *arg)
3429{
3430 fs_signature_type ret = NO_FS;
3431 int index;
3432 unsigned long long ptn;
Mayank Grover399826a2018-08-27 12:15:15 +05303433 char *buffer = memalign(CACHE_LINE, mmc_blocksize);
3434 uint32_t sb_blk_offset = 0;
3435 char *sb_buffer = buffer;
3436
Mayank Grover52cd10a2018-03-15 12:57:54 +05303437 if (!sb_buffer)
3438 {
3439 dprintf(CRITICAL, "ERROR: Failed to allocate buffer for superblock\n");
3440 goto out;
3441 }
3442
3443 /* Read super block */
3444 if ((index = partition_get_index(arg)) < 0)
3445 {
3446 dprintf(CRITICAL, "ERROR: %s() doesn't exsit\n", arg);
3447 goto out;
3448 }
3449 ptn = partition_get_offset(index);
3450 mmc_set_lun(partition_get_lun(index));
Mayank Grover399826a2018-08-27 12:15:15 +05303451 sb_blk_offset = (FS_SUPERBLOCK_OFFSET/mmc_blocksize);
3452
3453 if(mmc_read(ptn + (sb_blk_offset * mmc_blocksize),
Mayank Grover52cd10a2018-03-15 12:57:54 +05303454 (void *)sb_buffer, mmc_blocksize))
3455 {
3456 dprintf(CRITICAL, "ERROR: Failed to read Superblock\n");
3457 goto out;
3458 }
3459
Mayank Grover399826a2018-08-27 12:15:15 +05303460 if (sb_blk_offset == 0)
3461 sb_buffer += FS_SUPERBLOCK_OFFSET;
3462
3463 if (*((uint16 *)(&sb_buffer[EXT_MAGIC_OFFSET_SB])) == (uint16)EXT_MAGIC)
Mayank Grover52cd10a2018-03-15 12:57:54 +05303464 {
3465 dprintf(SPEW, "%s() Found EXT FS\n", arg);
3466 ret = EXT_FS_SIGNATURE;
3467 }
Mayank Grover399826a2018-08-27 12:15:15 +05303468 else if (*((uint32 *)(&sb_buffer[F2FS_MAGIC_OFFSET_SB])) == F2FS_MAGIC)
Mayank Grover52cd10a2018-03-15 12:57:54 +05303469 {
3470 dprintf(SPEW, "%s() Found F2FS FS\n", arg);
3471 ret = EXT_F2FS_SIGNATURE;
3472 }
3473 else
3474 {
3475 dprintf(SPEW, "%s() Reverting to default 0x%x\n",
3476 arg, *((uint16 *)(&sb_buffer[EXT_MAGIC_OFFSET_SB])));
3477 ret = NO_FS;
3478 }
3479
3480out:
Mayank Grover399826a2018-08-27 12:15:15 +05303481 if(buffer)
3482 free(buffer);
Mayank Grover52cd10a2018-03-15 12:57:54 +05303483 return ret;
3484}
3485
Mayank Groverd38fe012018-03-13 15:33:16 +05303486/* Function to get partition type */
3487static void get_partition_type(const char *arg, char *response)
3488{
3489 uint n = 0;
Mayank Grover52cd10a2018-03-15 12:57:54 +05303490 fs_signature_type fs_signature;
Mayank Groverd38fe012018-03-13 15:33:16 +05303491
3492 if (arg == NULL ||
3493 response == NULL)
3494 {
3495 dprintf(CRITICAL, "Invalid input parameter\n");
3496 return;
3497 }
3498
3499 /* By default copy raw to response */
Mayank Grover0e559042018-04-11 17:49:30 +05303500 strlcpy(response, RAW_STR, MAX_RSP_SIZE);
Mayank Groverd38fe012018-03-13 15:33:16 +05303501
3502 /* Mark partiton type for known paritions only */
3503 for (n=0; n < ARRAY_SIZE(part_type_known); n++)
3504 {
3505 if (!strncmp(part_type_known[n].part_name, arg, strlen(arg)))
3506 {
Mayank Grover52cd10a2018-03-15 12:57:54 +05303507 /* Check partition for FS signature */
3508 fs_signature = check_partition_fs_signature(arg);
3509 switch (fs_signature)
3510 {
3511 case EXT_FS_SIGNATURE:
Mayank Grover0e559042018-04-11 17:49:30 +05303512 strlcpy(response, EXT_STR, MAX_RSP_SIZE);
Mayank Grover52cd10a2018-03-15 12:57:54 +05303513 break;
3514 case EXT_F2FS_SIGNATURE:
Mayank Grover0e559042018-04-11 17:49:30 +05303515 strlcpy(response, F2FS_STR, MAX_RSP_SIZE);
Mayank Grover52cd10a2018-03-15 12:57:54 +05303516 break;
3517 case NO_FS:
Mayank Grover0e559042018-04-11 17:49:30 +05303518 strlcpy(response, part_type_known[n].type_response, MAX_RSP_SIZE);
Mayank Grover52cd10a2018-03-15 12:57:54 +05303519 }
Mayank Groverd38fe012018-03-13 15:33:16 +05303520 }
3521 }
3522 return;
3523}
3524
Mayank Grover11ff9692018-01-11 11:54:49 +05303525/*
3526 * Publish the partition type & size info
3527 * fastboot getvar will publish the required information.
3528 * fastboot getvar partition_size:<partition_name>: partition size in hex
3529 * fastboot getvar partition_type:<partition_name>: partition type (ext/fat)
3530 */
3531static void publish_getvar_partition_info(struct getvar_partition_info *info, uint8_t num_parts)
3532{
Mayank Groverd38fe012018-03-13 15:33:16 +05303533 uint8_t i;
Mayank Grover11ff9692018-01-11 11:54:49 +05303534 static bool published = false;
3535 struct partition_entry *ptn_entry =
3536 partition_get_partition_entries();
3537 memset(info, 0, sizeof(struct getvar_partition_info)* num_parts);
3538
3539 for (i = 0; i < num_parts; i++) {
3540 strlcat(info[i].part_name, (const char *)ptn_entry[i].name, MAX_RSP_SIZE);
3541 strlcat(info[i].getvar_size, "partition-size:", MAX_GET_VAR_NAME_SIZE);
3542 strlcat(info[i].getvar_type, "partition-type:", MAX_GET_VAR_NAME_SIZE);
3543
Mayank Groverd38fe012018-03-13 15:33:16 +05303544 get_partition_type(info[i].part_name, info[i].type_response);
Mayank Grover11ff9692018-01-11 11:54:49 +05303545 get_partition_size(info[i].part_name, info[i].size_response);
Mayank Grover11ff9692018-01-11 11:54:49 +05303546 if (strlcat(info[i].getvar_size, info[i].part_name, MAX_GET_VAR_NAME_SIZE) >= MAX_GET_VAR_NAME_SIZE)
3547 {
3548 dprintf(CRITICAL, "partition size name truncated\n");
3549 return;
3550 }
3551 if (strlcat(info[i].getvar_type, info[i].part_name, MAX_GET_VAR_NAME_SIZE) >= MAX_GET_VAR_NAME_SIZE)
3552 {
3553 dprintf(CRITICAL, "partition type name truncated\n");
3554 return;
3555 }
3556
3557 if (!published)
3558 {
3559 /* publish partition size & type info */
3560 fastboot_publish((const char *) info[i].getvar_size, (const char *) info[i].size_response);
3561 fastboot_publish((const char *) info[i].getvar_type, (const char *) info[i].type_response);
3562 }
3563 }
3564 if (!published)
3565 published = true;
3566}
3567
3568
Ajay Dudani5c761132011-04-07 20:19:04 -07003569void cmd_flash_mmc_img(const char *arg, void *data, unsigned sz)
Shashank Mittal23b8f422010-04-16 19:27:21 -07003570{
3571 unsigned long long ptn = 0;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07003572 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07003573 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003574 char *token = NULL;
3575 char *pname = NULL;
Sridhar Parasuramefc133f2015-05-04 13:35:41 -07003576 char *sp;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003577 uint8_t lun = 0;
3578 bool lun_set = false;
Mayank Grover351a75e2017-05-30 20:06:08 +05303579 int current_active_slot = INVALID;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07003580
Sridhar Parasuramefc133f2015-05-04 13:35:41 -07003581 token = strtok_r((char *)arg, ":", &sp);
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003582 pname = token;
Sridhar Parasuramefc133f2015-05-04 13:35:41 -07003583 token = strtok_r(NULL, ":", &sp);
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003584 if(token)
3585 {
3586 lun = atoi(token);
3587 mmc_set_lun(lun);
3588 lun_set = true;
3589 }
3590
Mao Jinlong226f33a2014-07-04 17:24:10 +08003591 if (pname)
Greg Grisco6e754772011-06-23 12:19:39 -07003592 {
Channagoud Kadabiad259832015-05-29 11:14:17 -07003593 if (!strncmp(pname, "frp-unlock", strlen("frp-unlock")))
3594 {
3595 if (!aboot_frp_unlock(pname, data, sz))
3596 {
3597 fastboot_info("FRP unlock successful");
3598 fastboot_okay("");
3599 }
3600 else
3601 fastboot_fail("Secret key is invalid, please update the bootloader with secret key");
3602
3603 return;
3604 }
3605
Mao Jinlong226f33a2014-07-04 17:24:10 +08003606 if (!strcmp(pname, "partition"))
3607 {
3608 dprintf(INFO, "Attempt to write partition image.\n");
3609 if (write_partition(sz, (unsigned char *) data)) {
3610 fastboot_fail("failed to write partition");
Greg Grisco6e754772011-06-23 12:19:39 -07003611 return;
3612 }
Mayank Grover11ff9692018-01-11 11:54:49 +05303613 /* Re-publish partition table */
3614 publish_getvar_partition_info(part_info, partition_get_partition_count());
Mayank Grover351a75e2017-05-30 20:06:08 +05303615
3616 /* Rescan partition table to ensure we have multislot support*/
3617 if (partition_scan_for_multislot())
3618 {
3619 current_active_slot = partition_find_active_slot();
3620 dprintf(INFO, "Multislot supported: Slot %s active",
3621 (SUFFIX_SLOT(current_active_slot)));
3622 }
3623 partition_mark_active_slot(current_active_slot);
Greg Grisco6e754772011-06-23 12:19:39 -07003624 }
Mao Jinlong226f33a2014-07-04 17:24:10 +08003625 else
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003626 {
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003627#if VERIFIED_BOOT
3628 if(!strcmp(pname, KEYSTORE_PTN_NAME))
3629 {
3630 if(!device.is_unlocked)
3631 {
3632 fastboot_fail("unlock device to flash keystore");
3633 return;
3634 }
Gaurav Nebhwanic7313cc2015-12-15 22:25:04 +05303635 if(!boot_verify_validate_keystore((unsigned char *)data,sz))
Shashank Mittald3e54dd2014-08-28 15:24:02 -07003636 {
3637 fastboot_fail("image is not a keystore file");
3638 return;
3639 }
3640 }
3641#endif
Mao Jinlong226f33a2014-07-04 17:24:10 +08003642 index = partition_get_index(pname);
3643 ptn = partition_get_offset(index);
3644 if(ptn == 0) {
3645 fastboot_fail("partition table doesn't exist");
3646 return;
3647 }
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003648
Mayank Grover351a75e2017-05-30 20:06:08 +05303649 if (!strncmp(pname, "boot", strlen("boot"))
3650 || !strcmp(pname, "recovery"))
3651 {
Mao Jinlong226f33a2014-07-04 17:24:10 +08003652 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
3653 fastboot_fail("image is not a boot image");
3654 return;
3655 }
Mayank Grover351a75e2017-05-30 20:06:08 +05303656
3657 /* Reset multislot_partition attributes in case of flashing boot */
3658 if (partition_multislot_is_supported())
3659 {
3660 partition_reset_attributes(index);
3661 }
Mao Jinlong226f33a2014-07-04 17:24:10 +08003662 }
3663
3664 if(!lun_set)
3665 {
3666 lun = partition_get_lun(index);
3667 mmc_set_lun(lun);
3668 }
3669
3670 size = partition_get_size(index);
Gaurav Nebhwani4d2389c2016-03-17 21:10:05 +05303671 if (ROUND_TO_PAGE(sz, mmc_blocksize_mask) > size) {
Mao Jinlong226f33a2014-07-04 17:24:10 +08003672 fastboot_fail("size too large");
3673 return;
3674 }
3675 else if (mmc_write(ptn , sz, (unsigned int *)data)) {
3676 fastboot_fail("flash write failure");
3677 return;
3678 }
Greg Grisco6e754772011-06-23 12:19:39 -07003679 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07003680 }
3681 fastboot_okay("");
3682 return;
3683}
3684
Ajay Dudanide984792015-03-02 09:57:41 -08003685void cmd_flash_meta_img(const char *arg, void *data, unsigned sz)
3686{
3687 int i, images;
3688 meta_header_t *meta_header;
3689 img_header_entry_t *img_header_entry;
Parth Dixit3e2d3032016-03-04 17:11:52 +05303690 /*End of the image address*/
3691 uintptr_t data_end;
3692
3693 if( (UINT_MAX - sz) > (uintptr_t)data )
3694 data_end = (uintptr_t)data + sz;
3695 else
3696 {
3697 fastboot_fail("Cannot flash: image header corrupt");
3698 return;
3699 }
3700
3701 if( data_end < ((uintptr_t)data + sizeof(meta_header_t)))
3702 {
3703 fastboot_fail("Cannot flash: image header corrupt");
3704 return;
3705 }
Ajay Dudanide984792015-03-02 09:57:41 -08003706
lijuang8ee21882016-04-19 16:57:11 +08003707 /* If device is locked:
3708 * Forbid to flash image to avoid the device to bypass the image
3709 * which with "any" name other than bootloader. Because it maybe
3710 * a meta package of all partitions.
3711 */
Monika Singh292b3e92018-03-17 22:40:23 +05303712#if VERIFIED_BOOT || VERIFIED_BOOT_2
lijuang8ee21882016-04-19 16:57:11 +08003713 if (target_build_variant_user()) {
3714 if (!device.is_unlocked) {
3715 fastboot_fail("Device is locked, meta image flashing is not allowed");
3716 return;
3717 }
Mayank Grover889be1b2017-09-12 20:12:23 +05303718
Mayank Grover912eaa62017-10-26 12:08:53 +05303719 if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05303720 !device.is_unlock_critical)
3721 {
lijuang8ee21882016-04-19 16:57:11 +08003722 fastboot_fail("Device is critical locked, Meta image flashing is not allowed");
3723 return;
3724 }
lijuang8ee21882016-04-19 16:57:11 +08003725 }
3726#endif
3727
Ajay Dudanide984792015-03-02 09:57:41 -08003728 meta_header = (meta_header_t*) data;
Parth Dixit3e2d3032016-03-04 17:11:52 +05303729 if( data_end < ((uintptr_t)data + meta_header->img_hdr_sz))
3730 {
3731 fastboot_fail("Cannot flash: image header corrupt");
3732 return;
3733 }
Ajay Dudanide984792015-03-02 09:57:41 -08003734 img_header_entry = (img_header_entry_t*) (data+sizeof(meta_header_t));
3735
3736 images = meta_header->img_hdr_sz / sizeof(img_header_entry_t);
3737
3738 for (i=0; i<images; i++) {
3739
3740 if((img_header_entry[i].ptn_name == NULL) ||
3741 (img_header_entry[i].start_offset == 0) ||
3742 (img_header_entry[i].size == 0))
3743 break;
Kishor PK49831502017-04-21 17:55:43 +05303744 if ((UINT_MAX - img_header_entry[i].start_offset) < (uintptr_t)data) {
3745 fastboot_fail("Integer overflow detected in start_offset of img");
3746 break;
3747 }
3748 else if ((UINT_MAX - (img_header_entry[i].start_offset + (uintptr_t)data)) < img_header_entry[i].size) {
3749 fastboot_fail("Integer overflow detected in size of img");
3750 break;
3751 }
Parth Dixit3e2d3032016-03-04 17:11:52 +05303752 if( data_end < ((uintptr_t)data + img_header_entry[i].start_offset
3753 + img_header_entry[i].size) )
3754 {
3755 fastboot_fail("Cannot flash: image size mismatch");
3756 break;
3757 }
3758
Ajay Dudanide984792015-03-02 09:57:41 -08003759 cmd_flash_mmc_img(img_header_entry[i].ptn_name,
3760 (void *) data + img_header_entry[i].start_offset,
3761 img_header_entry[i].size);
3762 }
3763
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -08003764 if (!strncmp(arg, "bootloader", strlen("bootloader")))
3765 {
3766 strlcpy(device.bootloader_version, TARGET(BOARD), MAX_VERSION_LEN);
3767 strlcat(device.bootloader_version, "-", MAX_VERSION_LEN);
3768 strlcat(device.bootloader_version, meta_header->img_version, MAX_VERSION_LEN);
3769 }
3770 else
3771 {
3772 strlcpy(device.radio_version, TARGET(BOARD), MAX_VERSION_LEN);
3773 strlcat(device.radio_version, "-", MAX_VERSION_LEN);
3774 strlcat(device.radio_version, meta_header->img_version, MAX_VERSION_LEN);
3775 }
3776
3777 write_device_info(&device);
Ajay Dudanide984792015-03-02 09:57:41 -08003778 fastboot_okay("");
3779 return;
3780}
3781
Ajay Dudani5c761132011-04-07 20:19:04 -07003782void cmd_flash_mmc_sparse_img(const char *arg, void *data, unsigned sz)
3783{
3784 unsigned int chunk;
wufeng.jiang813dc352015-06-02 23:02:46 -04003785 uint64_t chunk_data_sz;
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003786 uint32_t *fill_buf = NULL;
3787 uint32_t fill_val;
Mayank Grover4f50bba2017-07-19 18:17:08 +05303788 uint32_t blk_sz_actual = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07003789 sparse_header_t *sparse_header;
3790 chunk_header_t *chunk_header;
Ajay Dudaniab18f022011-05-12 14:39:22 -07003791 uint32_t total_blocks = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07003792 unsigned long long ptn = 0;
Channagoud Kadabi65b91002011-10-11 17:34:33 +05303793 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07003794 int index = INVALID_PTN;
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05303795 uint32_t i;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003796 uint8_t lun = 0;
vijay kumar800255e2015-04-24 20:26:19 +05303797 /*End of the sparse image address*/
Parth Dixit64b1a482016-03-07 16:31:26 +05303798 uintptr_t data_end = (uintptr_t)data + sz;
Ajay Dudani5c761132011-04-07 20:19:04 -07003799
Kinson Chikf1a43512011-07-14 11:28:39 -07003800 index = partition_get_index(arg);
3801 ptn = partition_get_offset(index);
3802 if(ptn == 0) {
Ajay Dudani5c761132011-04-07 20:19:04 -07003803 fastboot_fail("partition table doesn't exist");
3804 return;
3805 }
3806
Channagoud Kadabi65b91002011-10-11 17:34:33 +05303807 size = partition_get_size(index);
Channagoud Kadabi65b91002011-10-11 17:34:33 +05303808
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08003809 lun = partition_get_lun(index);
3810 mmc_set_lun(lun);
3811
vijay kumar800255e2015-04-24 20:26:19 +05303812 if (sz < sizeof(sparse_header_t)) {
3813 fastboot_fail("size too low");
3814 return;
3815 }
3816
Ajay Dudani5c761132011-04-07 20:19:04 -07003817 /* Read and skip over sparse image header */
3818 sparse_header = (sparse_header_t *) data;
vijay kumar800255e2015-04-24 20:26:19 +05303819
Mayank Grover48bd9bb2017-07-19 12:04:16 +05303820 if (!sparse_header->blk_sz || (sparse_header->blk_sz % 4)){
3821 fastboot_fail("Invalid block size\n");
3822 return;
3823 }
3824
vijay kumar1321f342015-03-27 12:13:42 +05303825 if (((uint64_t)sparse_header->total_blks * (uint64_t)sparse_header->blk_sz) > size) {
Ajay Dudani876b3282012-12-21 14:12:17 -08003826 fastboot_fail("size too large");
3827 return;
3828 }
3829
vijay kumarde4fcf62015-04-23 13:05:49 +05303830 data += sizeof(sparse_header_t);
vijay kumar800255e2015-04-24 20:26:19 +05303831
Parth Dixit64b1a482016-03-07 16:31:26 +05303832 if (data_end < (uintptr_t)data) {
vijay kumar800255e2015-04-24 20:26:19 +05303833 fastboot_fail("buffer overreads occured due to invalid sparse header");
3834 return;
3835 }
3836
vijay kumarde4fcf62015-04-23 13:05:49 +05303837 if(sparse_header->file_hdr_sz != sizeof(sparse_header_t))
Ajay Dudani5c761132011-04-07 20:19:04 -07003838 {
vijay kumarde4fcf62015-04-23 13:05:49 +05303839 fastboot_fail("sparse header size mismatch");
3840 return;
Ajay Dudani5c761132011-04-07 20:19:04 -07003841 }
3842
Ajay Dudanib06c05f2011-05-12 14:46:10 -07003843 dprintf (SPEW, "=== Sparse Image Header ===\n");
3844 dprintf (SPEW, "magic: 0x%x\n", sparse_header->magic);
3845 dprintf (SPEW, "major_version: 0x%x\n", sparse_header->major_version);
3846 dprintf (SPEW, "minor_version: 0x%x\n", sparse_header->minor_version);
3847 dprintf (SPEW, "file_hdr_sz: %d\n", sparse_header->file_hdr_sz);
3848 dprintf (SPEW, "chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz);
3849 dprintf (SPEW, "blk_sz: %d\n", sparse_header->blk_sz);
3850 dprintf (SPEW, "total_blks: %d\n", sparse_header->total_blks);
3851 dprintf (SPEW, "total_chunks: %d\n", sparse_header->total_chunks);
Ajay Dudani5c761132011-04-07 20:19:04 -07003852
3853 /* Start processing chunks */
3854 for (chunk=0; chunk<sparse_header->total_chunks; chunk++)
3855 {
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303856 /* Make sure the total image size does not exceed the partition size */
3857 if(((uint64_t)total_blocks * (uint64_t)sparse_header->blk_sz) >= size) {
3858 fastboot_fail("size too large");
3859 return;
3860 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003861 /* Read and skip over chunk header */
3862 chunk_header = (chunk_header_t *) data;
3863 data += sizeof(chunk_header_t);
3864
Parth Dixit64b1a482016-03-07 16:31:26 +05303865 if (data_end < (uintptr_t)data) {
vijay kumar800255e2015-04-24 20:26:19 +05303866 fastboot_fail("buffer overreads occured due to invalid sparse header");
3867 return;
3868 }
3869
Ajay Dudani5c761132011-04-07 20:19:04 -07003870 dprintf (SPEW, "=== Chunk Header ===\n");
3871 dprintf (SPEW, "chunk_type: 0x%x\n", chunk_header->chunk_type);
3872 dprintf (SPEW, "chunk_data_sz: 0x%x\n", chunk_header->chunk_sz);
3873 dprintf (SPEW, "total_size: 0x%x\n", chunk_header->total_sz);
3874
vijay kumar800255e2015-04-24 20:26:19 +05303875 if(sparse_header->chunk_hdr_sz != sizeof(chunk_header_t))
Ajay Dudani5c761132011-04-07 20:19:04 -07003876 {
vijay kumar800255e2015-04-24 20:26:19 +05303877 fastboot_fail("chunk header size mismatch");
3878 return;
Ajay Dudani5c761132011-04-07 20:19:04 -07003879 }
3880
wufeng.jiang813dc352015-06-02 23:02:46 -04003881 chunk_data_sz = (uint64_t)sparse_header->blk_sz * chunk_header->chunk_sz;
3882
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303883 /* Make sure that the chunk size calculated from sparse image does not
3884 * exceed partition size
3885 */
3886 if ((uint64_t)total_blocks * (uint64_t)sparse_header->blk_sz + chunk_data_sz > size)
3887 {
3888 fastboot_fail("Chunk data size exceeds partition size");
3889 return;
3890 }
3891
Ajay Dudani5c761132011-04-07 20:19:04 -07003892 switch (chunk_header->chunk_type)
3893 {
3894 case CHUNK_TYPE_RAW:
wufeng.jiang813dc352015-06-02 23:02:46 -04003895 if((uint64_t)chunk_header->total_sz != ((uint64_t)sparse_header->chunk_hdr_sz +
Ajay Dudani5c761132011-04-07 20:19:04 -07003896 chunk_data_sz))
3897 {
3898 fastboot_fail("Bogus chunk size for chunk type Raw");
3899 return;
3900 }
3901
Parth Dixit64b1a482016-03-07 16:31:26 +05303902 if (data_end < (uintptr_t)data + chunk_data_sz) {
vijay kumar800255e2015-04-24 20:26:19 +05303903 fastboot_fail("buffer overreads occured due to invalid sparse header");
3904 return;
3905 }
3906
wufeng.jiang813dc352015-06-02 23:02:46 -04003907 /* chunk_header->total_sz is uint32,So chunk_data_sz is now less than 2^32
3908 otherwise it will return in the line above
3909 */
Ajay Dudaniab18f022011-05-12 14:39:22 -07003910 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
wufeng.jiang813dc352015-06-02 23:02:46 -04003911 (uint32_t)chunk_data_sz,
Ajay Dudaniab18f022011-05-12 14:39:22 -07003912 (unsigned int*)data))
Ajay Dudani5c761132011-04-07 20:19:04 -07003913 {
3914 fastboot_fail("flash write failure");
3915 return;
3916 }
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303917 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz)) {
3918 fastboot_fail("Bogus size for RAW chunk type");
3919 return;
3920 }
Ajay Dudani5c761132011-04-07 20:19:04 -07003921 total_blocks += chunk_header->chunk_sz;
wufeng.jiang813dc352015-06-02 23:02:46 -04003922 data += (uint32_t)chunk_data_sz;
Ajay Dudani5c761132011-04-07 20:19:04 -07003923 break;
3924
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003925 case CHUNK_TYPE_FILL:
3926 if(chunk_header->total_sz != (sparse_header->chunk_hdr_sz +
3927 sizeof(uint32_t)))
3928 {
3929 fastboot_fail("Bogus chunk size for chunk type FILL");
3930 return;
3931 }
3932
Mayank Grover4f50bba2017-07-19 18:17:08 +05303933 blk_sz_actual = ROUNDUP(sparse_header->blk_sz, CACHE_LINE);
3934 /* Integer overflow detected */
3935 if (blk_sz_actual < sparse_header->blk_sz)
3936 {
3937 fastboot_fail("Invalid block size");
3938 return;
3939 }
3940
3941 fill_buf = (uint32_t *)memalign(CACHE_LINE, blk_sz_actual);
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003942 if (!fill_buf)
3943 {
3944 fastboot_fail("Malloc failed for: CHUNK_TYPE_FILL");
3945 return;
3946 }
3947
Parth Dixit64b1a482016-03-07 16:31:26 +05303948 if (data_end < (uintptr_t)data + sizeof(uint32_t)) {
vijay kumar800255e2015-04-24 20:26:19 +05303949 fastboot_fail("buffer overreads occured due to invalid sparse header");
Gaurav Nebhwani163cbf82016-03-17 21:21:27 +05303950 free(fill_buf);
vijay kumar800255e2015-04-24 20:26:19 +05303951 return;
3952 }
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003953 fill_val = *(uint32_t *)data;
3954 data = (char *) data + sizeof(uint32_t);
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003955
3956 for (i = 0; i < (sparse_header->blk_sz / sizeof(fill_val)); i++)
3957 {
3958 fill_buf[i] = fill_val;
3959 }
3960
Gaurav Nebhwanie94cbe12016-03-17 21:16:34 +05303961 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz))
3962 {
3963 fastboot_fail("bogus size for chunk FILL type");
3964 free(fill_buf);
3965 return;
3966 }
3967
wufeng.jiang813dc352015-06-02 23:02:46 -04003968 for (i = 0; i < chunk_header->chunk_sz; i++)
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003969 {
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303970 /* Make sure that the data written to partition does not exceed partition size */
3971 if ((uint64_t)total_blocks * (uint64_t)sparse_header->blk_sz + sparse_header->blk_sz > size)
3972 {
3973 fastboot_fail("Chunk data size for fill type exceeds partition size");
Gaurav Nebhwani163cbf82016-03-17 21:21:27 +05303974 free(fill_buf);
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303975 return;
3976 }
3977
Channagoud Kadabif627cf82013-09-09 14:08:20 -07003978 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
3979 sparse_header->blk_sz,
3980 fill_buf))
3981 {
3982 fastboot_fail("flash write failure");
3983 free(fill_buf);
3984 return;
3985 }
3986
3987 total_blocks++;
3988 }
3989
3990 free(fill_buf);
3991 break;
3992
Ajay Dudani5c761132011-04-07 20:19:04 -07003993 case CHUNK_TYPE_DONT_CARE:
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05303994 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz)) {
3995 fastboot_fail("bogus size for chunk DONT CARE type");
3996 return;
3997 }
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07003998 total_blocks += chunk_header->chunk_sz;
3999 break;
4000
Ajay Dudani5c761132011-04-07 20:19:04 -07004001 case CHUNK_TYPE_CRC:
4002 if(chunk_header->total_sz != sparse_header->chunk_hdr_sz)
4003 {
wufeng.jiang813dc352015-06-02 23:02:46 -04004004 fastboot_fail("Bogus chunk size for chunk type CRC");
Ajay Dudani5c761132011-04-07 20:19:04 -07004005 return;
4006 }
Aparna Mallavarapu2ae741a2015-03-28 01:41:08 +05304007 if(total_blocks > (UINT_MAX - chunk_header->chunk_sz)) {
4008 fastboot_fail("bogus size for chunk CRC type");
4009 return;
4010 }
Ajay Dudani5c761132011-04-07 20:19:04 -07004011 total_blocks += chunk_header->chunk_sz;
Parth Dixit64b1a482016-03-07 16:31:26 +05304012 if ((uintptr_t)data > UINT_MAX - chunk_data_sz) {
vijay kumar800255e2015-04-24 20:26:19 +05304013 fastboot_fail("integer overflow occured");
4014 return;
4015 }
wufeng.jiang813dc352015-06-02 23:02:46 -04004016 data += (uint32_t)chunk_data_sz;
Parth Dixit64b1a482016-03-07 16:31:26 +05304017 if (data_end < (uintptr_t)data) {
vijay kumar800255e2015-04-24 20:26:19 +05304018 fastboot_fail("buffer overreads occured due to invalid sparse header");
4019 return;
4020 }
Ajay Dudani5c761132011-04-07 20:19:04 -07004021 break;
4022
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07004023 default:
Channagoud Kadabif627cf82013-09-09 14:08:20 -07004024 dprintf(CRITICAL, "Unkown chunk type: %x\n",chunk_header->chunk_type);
Ajay Dudani5c761132011-04-07 20:19:04 -07004025 fastboot_fail("Unknown chunk type");
4026 return;
4027 }
4028 }
4029
Ajay Dudani0c6927b2011-05-18 11:12:16 -07004030 dprintf(INFO, "Wrote %d blocks, expected to write %d blocks\n",
4031 total_blocks, sparse_header->total_blks);
4032
4033 if(total_blocks != sparse_header->total_blks)
4034 {
4035 fastboot_fail("sparse image write failure");
4036 }
Ajay Dudani5c761132011-04-07 20:19:04 -07004037
4038 fastboot_okay("");
4039 return;
4040}
4041
4042void cmd_flash_mmc(const char *arg, void *data, unsigned sz)
4043{
4044 sparse_header_t *sparse_header;
Ajay Dudanide984792015-03-02 09:57:41 -08004045 meta_header_t *meta_header;
Ajay Dudani5c761132011-04-07 20:19:04 -07004046
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07004047#ifdef SSD_ENABLE
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -08004048 /* 8 Byte Magic + 2048 Byte xml + Encrypted Data */
4049 unsigned int *magic_number = (unsigned int *) data;
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08004050 int ret=0;
4051 uint32 major_version=0;
4052 uint32 minor_version=0;
4053
4054 ret = scm_svc_version(&major_version,&minor_version);
4055 if(!ret)
4056 {
4057 if(major_version >= 2)
4058 {
Amir Samuelovbb65ce02013-05-05 12:20:18 +03004059 if( !strcmp(arg, "ssd") || !strcmp(arg, "tqs") )
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08004060 {
4061 ret = encrypt_scm((uint32 **) &data, &sz);
4062 if (ret != 0) {
4063 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
4064 return;
4065 }
4066
Amir Samuelovbb65ce02013-05-05 12:20:18 +03004067 /* Protect only for SSD */
4068 if (!strcmp(arg, "ssd")) {
4069 ret = scm_protect_keystore((uint32 *) data, sz);
4070 if (ret != 0) {
4071 dprintf(CRITICAL, "ERROR: scm_protect_keystore Failed\n");
4072 return;
4073 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08004074 }
4075 }
4076 else
4077 {
4078 ret = decrypt_scm_v2((uint32 **) &data, &sz);
4079 if(ret != 0)
4080 {
4081 dprintf(CRITICAL,"ERROR: Decryption Failure\n");
4082 return;
4083 }
4084 }
4085 }
4086 else
4087 {
4088 if (magic_number[0] == DECRYPT_MAGIC_0 &&
4089 magic_number[1] == DECRYPT_MAGIC_1)
4090 {
4091 ret = decrypt_scm((uint32 **) &data, &sz);
4092 if (ret != 0) {
4093 dprintf(CRITICAL, "ERROR: Invalid secure image\n");
4094 return;
4095 }
4096 }
4097 else if (magic_number[0] == ENCRYPT_MAGIC_0 &&
4098 magic_number[1] == ENCRYPT_MAGIC_1)
4099 {
4100 ret = encrypt_scm((uint32 **) &data, &sz);
4101 if (ret != 0) {
4102 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
4103 return;
4104 }
4105 }
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07004106 }
4107 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08004108 else
Neeti Desai127b9e02012-03-20 16:11:23 -07004109 {
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08004110 dprintf(CRITICAL,"INVALID SVC Version\n");
4111 return;
Neeti Desai127b9e02012-03-20 16:11:23 -07004112 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08004113#endif /* SSD_ENABLE */
Neeti Desai127b9e02012-03-20 16:11:23 -07004114
Monika Singh292b3e92018-03-17 22:40:23 +05304115#if VERIFIED_BOOT || VERIFIED_BOOT_2
Channagoud Kadabi35297672015-06-13 11:09:49 -07004116 if (target_build_variant_user())
Shashank Mittald3e54dd2014-08-28 15:24:02 -07004117 {
lijuang511a2b52015-08-14 20:50:51 +08004118 /* if device is locked:
4119 * common partition will not allow to be flashed
4120 * critical partition will allow to flash image.
4121 */
4122 if(!device.is_unlocked && !critical_flash_allowed(arg)) {
4123 fastboot_fail("Partition flashing is not allowed");
4124 return;
4125 }
Mayank Grover889be1b2017-09-12 20:12:23 +05304126
lijuang511a2b52015-08-14 20:50:51 +08004127 /* if device critical is locked:
4128 * common partition will allow to be flashed
4129 * critical partition will not allow to flash image.
4130 */
Mayank Grover912eaa62017-10-26 12:08:53 +05304131 if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05304132 !device.is_unlock_critical &&
4133 critical_flash_allowed(arg)) {
4134 fastboot_fail("Critical partition flashing is not allowed");
4135 return;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07004136 }
4137 }
4138#endif
Monika Singh292b3e92018-03-17 22:40:23 +05304139 if (!strncmp(arg, "avb_custom_key", strlen("avb_custom_key"))) {
4140 dprintf(INFO, "flashing avb_custom_key\n");
4141 if (store_userkey(data, sz)) {
4142 fastboot_fail("Flashing avb_custom_key failed");
4143 } else {
4144 fastboot_okay("");
4145 }
4146 return;
4147 }
Shashank Mittald3e54dd2014-08-28 15:24:02 -07004148
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07004149 sparse_header = (sparse_header_t *) data;
Ajay Dudanide984792015-03-02 09:57:41 -08004150 meta_header = (meta_header_t *) data;
4151 if (sparse_header->magic == SPARSE_HEADER_MAGIC)
Ajay Dudani5c761132011-04-07 20:19:04 -07004152 cmd_flash_mmc_sparse_img(arg, data, sz);
Ajay Dudanide984792015-03-02 09:57:41 -08004153 else if (meta_header->magic == META_HEADER_MAGIC)
4154 cmd_flash_meta_img(arg, data, sz);
4155 else
4156 cmd_flash_mmc_img(arg, data, sz);
Sridhar Parasuramd69f7902015-07-10 13:31:17 -07004157
4158#if VERIFIED_BOOT
Mayank Grover912eaa62017-10-26 12:08:53 +05304159 if (VB_M <= target_get_vb_version() &&
Mayank Grover889be1b2017-09-12 20:12:23 +05304160 (!strncmp(arg, "system", 6)) &&
4161 !device.verity_mode)
Sridhar Parasuramd69f7902015-07-10 13:31:17 -07004162 // reset dm_verity mode to enforcing
4163 device.verity_mode = 1;
4164 write_device_info(&device);
Parth Dixitddbc7352015-10-18 03:13:31 +05304165#endif
Sridhar Parasuramd69f7902015-07-10 13:31:17 -07004166
Ajay Dudani5c761132011-04-07 20:19:04 -07004167 return;
4168}
4169
Tanya Brokhman84eaaf62015-02-24 21:57:06 +02004170void cmd_updatevol(const char *vol_name, void *data, unsigned sz)
4171{
4172 struct ptentry *sys_ptn;
4173 struct ptable *ptable;
4174
4175 ptable = flash_get_ptable();
4176 if (ptable == NULL) {
4177 fastboot_fail("partition table doesn't exist");
4178 return;
4179 }
4180
4181 sys_ptn = ptable_find(ptable, "system");
4182 if (sys_ptn == NULL) {
4183 fastboot_fail("system partition not found");
4184 return;
4185 }
4186
4187 sz = ROUND_TO_PAGE(sz, page_mask);
4188 if (update_ubi_vol(sys_ptn, vol_name, data, sz))
4189 fastboot_fail("update_ubi_vol failed");
4190 else
4191 fastboot_okay("");
4192}
4193
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004194void cmd_flash_nand(const char *arg, void *data, unsigned sz)
Dima Zavin214cc642009-01-26 11:16:21 -08004195{
4196 struct ptentry *ptn;
4197 struct ptable *ptable;
4198 unsigned extra = 0;
Gaurav Nebhwanid9730712016-05-06 14:28:29 +05304199 uint64_t partition_size = 0;
Vijay Kumar Pendotic6f22a72017-05-19 22:44:34 +05304200 unsigned bytes_to_round_page = 0;
4201 unsigned rounded_size = 0;
Dima Zavin214cc642009-01-26 11:16:21 -08004202
Kishor PK38ed93d2017-04-25 14:19:26 +05304203 if((uintptr_t)data > (UINT_MAX - sz)) {
4204 fastboot_fail("Cannot flash: image header corrupt");
4205 return;
4206 }
4207
Dima Zavin214cc642009-01-26 11:16:21 -08004208 ptable = flash_get_ptable();
4209 if (ptable == NULL) {
4210 fastboot_fail("partition table doesn't exist");
4211 return;
4212 }
4213
4214 ptn = ptable_find(ptable, arg);
4215 if (ptn == NULL) {
Tanya Brokhman84eaaf62015-02-24 21:57:06 +02004216 dprintf(INFO, "unknown partition name (%s). Trying updatevol\n",
4217 arg);
4218 cmd_updatevol(arg, data, sz);
Dima Zavin214cc642009-01-26 11:16:21 -08004219 return;
4220 }
4221
Monika Singh292b3e92018-03-17 22:40:23 +05304222 if (!strncmp(arg, "avb_custom_key", strlen("avb_custom_key"))) {
4223 dprintf(INFO, "flashing avb_custom_key\n");
4224 if (store_userkey(data, sz)) {
4225 fastboot_fail("Flashing avb_custom_key failed");
4226 } else {
4227 fastboot_okay("");
4228 }
4229 return;
4230 }
4231
Dima Zavin214cc642009-01-26 11:16:21 -08004232 if (!strcmp(ptn->name, "boot") || !strcmp(ptn->name, "recovery")) {
Kishor PK38ed93d2017-04-25 14:19:26 +05304233 if((sz > BOOT_MAGIC_SIZE) && (!memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE))) {
4234 dprintf(INFO, "Verified the BOOT_MAGIC in image header \n");
4235 } else {
4236 fastboot_fail("Image is not a boot image");
Dima Zavin214cc642009-01-26 11:16:21 -08004237 return;
4238 }
4239 }
4240
Amol Jadi5c61a952012-05-04 17:05:35 -07004241 if (!strcmp(ptn->name, "system")
Deepa Dinamani13e32c42012-03-12 14:34:17 -07004242 || !strcmp(ptn->name, "userdata")
4243 || !strcmp(ptn->name, "persist")
Sundarajan Srinivasanb063a852013-11-19 14:02:27 -08004244 || !strcmp(ptn->name, "recoveryfs")
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -08004245 || !strcmp(ptn->name, "modem"))
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02004246 extra = 1;
Kishor PK38ed93d2017-04-25 14:19:26 +05304247 else {
Vijay Kumar Pendotic6f22a72017-05-19 22:44:34 +05304248 rounded_size = ROUNDUP(sz, page_size);
4249 bytes_to_round_page = rounded_size - sz;
4250 if (bytes_to_round_page) {
4251 if (((uintptr_t)data + sz ) > (UINT_MAX - bytes_to_round_page)) {
4252 fastboot_fail("Integer overflow detected");
4253 return;
4254 }
4255 if (((uintptr_t)data + sz + bytes_to_round_page) >
4256 ((uintptr_t)target_get_scratch_address() + target_get_max_flash_size())) {
4257 fastboot_fail("Buffer size is not aligned to page_size");
4258 return;
4259 }
4260 else {
4261 memset(data + sz, 0, bytes_to_round_page);
4262 sz = rounded_size;
4263 }
Kishor PK38ed93d2017-04-25 14:19:26 +05304264 }
Gaurav Nebhwanid9730712016-05-06 14:28:29 +05304265 }
4266
Kishor PK38ed93d2017-04-25 14:19:26 +05304267 /*Checking partition_size for the possible integer overflow */
4268 partition_size = validate_partition_size(ptn);
4269
Gaurav Nebhwanid9730712016-05-06 14:28:29 +05304270 if (sz > partition_size) {
4271 fastboot_fail("Image size too large");
4272 return;
4273 }
4274
Dima Zavin214cc642009-01-26 11:16:21 -08004275 dprintf(INFO, "writing %d bytes to '%s'\n", sz, ptn->name);
Mayank Grover6cde9352017-06-06 18:45:23 +05304276 if ((sz > UBI_EC_HDR_SIZE) &&
4277 (!memcmp((void *)data, UBI_MAGIC, UBI_MAGIC_SIZE))) {
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02004278 if (flash_ubi_img(ptn, data, sz)) {
4279 fastboot_fail("flash write failure");
4280 return;
4281 }
4282 } else {
4283 if (flash_write(ptn, extra, data, sz)) {
4284 fastboot_fail("flash write failure");
4285 return;
4286 }
Dima Zavin214cc642009-01-26 11:16:21 -08004287 }
4288 dprintf(INFO, "partition '%s' updated\n", ptn->name);
4289 fastboot_okay("");
4290}
4291
Kishor PK38ed93d2017-04-25 14:19:26 +05304292
4293static inline uint64_t validate_partition_size(struct ptentry *ptn)
4294{
4295 if (ptn->length && flash_num_pages_per_blk() && page_size) {
4296 if ((ptn->length < ( UINT_MAX / flash_num_pages_per_blk())) && ((ptn->length * flash_num_pages_per_blk()) < ( UINT_MAX / page_size))) {
4297 return ptn->length * flash_num_pages_per_blk() * page_size;
4298 }
4299 }
4300 return 0;
4301}
4302
4303
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004304void cmd_flash(const char *arg, void *data, unsigned sz)
4305{
4306 if(target_is_emmc_boot())
4307 cmd_flash_mmc(arg, data, sz);
4308 else
4309 cmd_flash_nand(arg, data, sz);
4310}
4311
Dima Zavin214cc642009-01-26 11:16:21 -08004312void cmd_continue(const char *arg, void *data, unsigned sz)
4313{
4314 fastboot_okay("");
Amol Jadi7c4316c2013-10-07 14:19:26 -07004315 fastboot_stop();
Shashank Mittald3e54dd2014-08-28 15:24:02 -07004316
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004317 if (target_is_emmc_boot())
4318 {
lijuanga40d6302015-07-20 20:10:13 +08004319#if FBCON_DISPLAY_MSG
lijuangde34d502016-02-26 16:04:50 +08004320 /* Exit keys' detection thread firstly */
4321 exit_menu_keys_detection();
lijuanga40d6302015-07-20 20:10:13 +08004322#endif
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004323 boot_linux_from_mmc();
4324 }
4325 else
4326 {
4327 boot_linux_from_flash();
4328 }
Dima Zavin214cc642009-01-26 11:16:21 -08004329}
4330
Chandan Uddaraju94183c02010-01-15 15:13:59 -08004331void cmd_reboot(const char *arg, void *data, unsigned sz)
4332{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004333 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08004334 fastboot_okay("");
4335 reboot_device(0);
4336}
4337
Mayank Grover351a75e2017-05-30 20:06:08 +05304338void cmd_set_active(const char *arg, void *data, unsigned sz)
4339{
Mayank Grover6ccc1c92017-07-04 17:36:46 +05304340 char *p, *sp = NULL;
Mayank Grover351a75e2017-05-30 20:06:08 +05304341 unsigned i,current_active_slot;
4342 const char *current_slot_suffix;
4343
4344 if (!partition_multislot_is_supported())
4345 {
4346 fastboot_fail("Command not supported");
4347 return;
4348 }
4349
4350 if (arg)
4351 {
Mayank Grover6ccc1c92017-07-04 17:36:46 +05304352 p = strtok_r((char *)arg, ":", &sp);
Mayank Grover5eb5f692017-07-19 20:16:04 +05304353 if (p)
Mayank Grover351a75e2017-05-30 20:06:08 +05304354 {
4355 current_active_slot = partition_find_active_slot();
4356
4357 /* Check if trying to make curent slot active */
4358 current_slot_suffix = SUFFIX_SLOT(current_active_slot);
Mayank Grover6ccc1c92017-07-04 17:36:46 +05304359 current_slot_suffix = strtok_r((char *)current_slot_suffix,
4360 (char *)suffix_delimiter, &sp);
4361
Mayank Grover5eb5f692017-07-19 20:16:04 +05304362 if (current_slot_suffix &&
4363 !strncmp(p, current_slot_suffix, strlen(current_slot_suffix)))
Mayank Grover351a75e2017-05-30 20:06:08 +05304364 {
4365 fastboot_okay("Slot already set active");
4366 return;
4367 }
4368 else
4369 {
4370 for (i = 0; i < AB_SUPPORTED_SLOTS; i++)
4371 {
4372 current_slot_suffix = SUFFIX_SLOT(i);
Mayank Grover6ccc1c92017-07-04 17:36:46 +05304373 current_slot_suffix = strtok_r((char *)current_slot_suffix,
4374 (char *)suffix_delimiter, &sp);
Mayank Grover5eb5f692017-07-19 20:16:04 +05304375 if (current_slot_suffix &&
4376 !strncmp(p, current_slot_suffix, strlen(current_slot_suffix)))
Mayank Grover351a75e2017-05-30 20:06:08 +05304377 {
4378 partition_switch_slots(current_active_slot, i);
4379 publish_getvar_multislot_vars();
4380 fastboot_okay("");
4381 return;
4382 }
4383 }
4384 }
4385 }
4386 }
4387 fastboot_fail("Invalid slot suffix.");
4388 return;
4389}
4390
Mayank Grover98c4c742019-04-25 17:21:37 +05304391#if DYNAMIC_PARTITION_SUPPORT
4392void cmd_reboot_fastboot(const char *arg, void *data, unsigned sz)
4393{
4394 dprintf(INFO, "rebooting the device - userspace fastboot\n");
4395 if (send_recovery_cmd(RECOVERY_BOOT_FASTBOOT_CMD)) {
4396 dprintf(CRITICAL, "ERROR: Failed to update recovery commands\n");
4397 fastboot_fail("Failed to update recovery command");
4398 return;
4399 }
4400 fastboot_okay("");
4401 reboot_device(REBOOT_MODE_UNKNOWN);
4402
4403 //shouldn't come here.
4404 dprintf(CRITICAL, "ERROR: Failed to reboot device\n");
4405 return;
4406}
4407
4408void cmd_reboot_recovery(const char *arg, void *data, unsigned sz)
4409{
4410 dprintf(INFO, "rebooting the device - recovery\n");
4411 if (send_recovery_cmd(RECOVERY_BOOT_RECOVERY_CMD)) {
4412 dprintf(CRITICAL, "ERROR: Failed to update recovery commands\n");
4413 fastboot_fail("Failed to update recovery command");
4414 return;
4415 }
4416 fastboot_okay("");
4417 reboot_device(REBOOT_MODE_UNKNOWN);
4418
4419 //shouldn't come here.
4420 dprintf(CRITICAL, "ERROR: Failed to reboot device\n");
4421 return;
4422}
4423#endif
4424
Chandan Uddaraju94183c02010-01-15 15:13:59 -08004425void cmd_reboot_bootloader(const char *arg, void *data, unsigned sz)
4426{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07004427 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08004428 fastboot_okay("");
4429 reboot_device(FASTBOOT_MODE);
4430}
4431
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004432void cmd_oem_enable_charger_screen(const char *arg, void *data, unsigned size)
4433{
4434 dprintf(INFO, "Enabling charger screen check\n");
4435 device.charger_screen_enabled = 1;
4436 write_device_info(&device);
4437 fastboot_okay("");
4438}
4439
4440void cmd_oem_disable_charger_screen(const char *arg, void *data, unsigned size)
4441{
4442 dprintf(INFO, "Disabling charger screen check\n");
4443 device.charger_screen_enabled = 0;
4444 write_device_info(&device);
4445 fastboot_okay("");
4446}
4447
lijuanga25d8bb2015-09-16 13:11:52 +08004448void cmd_oem_off_mode_charger(const char *arg, void *data, unsigned size)
4449{
4450 char *p = NULL;
4451 const char *delim = " \t\n\r";
Parth Dixit407f15b2016-01-07 14:47:37 +05304452 char *sp;
lijuanga25d8bb2015-09-16 13:11:52 +08004453
4454 if (arg) {
Parth Dixit407f15b2016-01-07 14:47:37 +05304455 p = strtok_r((char *)arg, delim, &sp);
lijuanga25d8bb2015-09-16 13:11:52 +08004456 if (p) {
4457 if (!strncmp(p, "0", 1)) {
4458 device.charger_screen_enabled = 0;
4459 } else if (!strncmp(p, "1", 1)) {
4460 device.charger_screen_enabled = 1;
4461 }
4462 }
4463 }
4464
4465 /* update charger_screen_enabled value for getvar
4466 * command
4467 */
4468 snprintf(charger_screen_enabled, MAX_RSP_SIZE, "%d",
4469 device.charger_screen_enabled);
4470
4471 write_device_info(&device);
4472 fastboot_okay("");
4473}
4474
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05304475void cmd_oem_select_display_panel(const char *arg, void *data, unsigned size)
4476{
4477 dprintf(INFO, "Selecting display panel %s\n", arg);
4478 if (arg)
4479 strlcpy(device.display_panel, arg,
4480 sizeof(device.display_panel));
4481 write_device_info(&device);
4482 fastboot_okay("");
4483}
4484
Shashank Mittal162244e2011-08-08 19:01:25 -07004485void cmd_oem_unlock(const char *arg, void *data, unsigned sz)
4486{
lijuang4ece1e72015-08-14 21:02:36 +08004487 set_device_unlock(UNLOCK, TRUE);
vijay kumarc65876c2015-04-24 13:29:16 +05304488}
4489
4490void cmd_oem_unlock_go(const char *arg, void *data, unsigned sz)
4491{
lijuang4ece1e72015-08-14 21:02:36 +08004492 if(!device.is_unlocked) {
vijay kumarc65876c2015-04-24 13:29:16 +05304493 if(!is_allow_unlock) {
4494 fastboot_fail("oem unlock is not allowed");
4495 return;
4496 }
4497
lijuang4ece1e72015-08-14 21:02:36 +08004498 set_device_unlock_value(UNLOCK, TRUE);
vijay kumarc65876c2015-04-24 13:29:16 +05304499
lijuang4ece1e72015-08-14 21:02:36 +08004500 /* wipe data */
vijay kumarc65876c2015-04-24 13:29:16 +05304501 struct recovery_message msg;
Kishor PK60a68212017-05-08 16:55:57 +05304502 memset(&msg, 0, sizeof(msg));
vijay kumarc65876c2015-04-24 13:29:16 +05304503 snprintf(msg.recovery, sizeof(msg.recovery), "recovery\n--wipe_data");
4504 write_misc(0, &msg, sizeof(msg));
4505
4506 fastboot_okay("");
4507 reboot_device(RECOVERY_MODE);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07004508 }
4509 fastboot_okay("");
4510}
4511
Channagoud Kadabiad259832015-05-29 11:14:17 -07004512static int aboot_frp_unlock(char *pname, void *data, unsigned sz)
4513{
Mayank Grover70f8b0e2017-05-17 11:49:00 +05304514 int ret=1;
4515 bool authentication_success=false;
Channagoud Kadabiad259832015-05-29 11:14:17 -07004516
Mayank Grover70f8b0e2017-05-17 11:49:00 +05304517 /*
4518 Authentication method not implemented.
4519
4520 OEM to implement, authentication system which on successful validataion,
4521 calls write_allow_oem_unlock() with is_allow_unlock.
4522 */
4523#if 0
4524 authentication_success = oem_specific_auth_mthd();
4525#endif
4526
4527 if (authentication_success)
Channagoud Kadabiad259832015-05-29 11:14:17 -07004528 {
Mayank Grover70f8b0e2017-05-17 11:49:00 +05304529 is_allow_unlock = true;
4530 write_allow_oem_unlock(is_allow_unlock);
4531 ret = 0;
Channagoud Kadabiad259832015-05-29 11:14:17 -07004532 }
4533 return ret;
4534}
4535
Shashank Mittald3e54dd2014-08-28 15:24:02 -07004536void cmd_oem_lock(const char *arg, void *data, unsigned sz)
4537{
lijuang4ece1e72015-08-14 21:02:36 +08004538 set_device_unlock(UNLOCK, FALSE);
Shashank Mittal162244e2011-08-08 19:01:25 -07004539}
4540
Shashank Mittala0032282011-08-26 14:50:11 -07004541void cmd_oem_devinfo(const char *arg, void *data, unsigned sz)
4542{
lijuang511a2b52015-08-14 20:50:51 +08004543 char response[MAX_RSP_SIZE];
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004544 snprintf(response, sizeof(response), "\tDevice tampered: %s", (device.is_tampered ? "true" : "false"));
Shashank Mittala0032282011-08-26 14:50:11 -07004545 fastboot_info(response);
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004546 snprintf(response, sizeof(response), "\tDevice unlocked: %s", (device.is_unlocked ? "true" : "false"));
4547 fastboot_info(response);
Monika Singh292b3e92018-03-17 22:40:23 +05304548#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05304549 if (VB_M <= target_get_vb_version())
Mayank Grover889be1b2017-09-12 20:12:23 +05304550 {
4551 snprintf(response, sizeof(response), "\tDevice critical unlocked: %s",
4552 (device.is_unlock_critical ? "true" : "false"));
4553 fastboot_info(response);
4554 }
Parth Dixitddbc7352015-10-18 03:13:31 +05304555#endif
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004556 snprintf(response, sizeof(response), "\tCharger screen enabled: %s", (device.charger_screen_enabled ? "true" : "false"));
Shashank Mittala0032282011-08-26 14:50:11 -07004557 fastboot_info(response);
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05304558 snprintf(response, sizeof(response), "\tDisplay panel: %s", (device.display_panel));
4559 fastboot_info(response);
Shashank Mittala0032282011-08-26 14:50:11 -07004560 fastboot_okay("");
4561}
4562
lijuang511a2b52015-08-14 20:50:51 +08004563void cmd_flashing_get_unlock_ability(const char *arg, void *data, unsigned sz)
4564{
4565 char response[MAX_RSP_SIZE];
4566 snprintf(response, sizeof(response), "\tget_unlock_ability: %d", is_allow_unlock);
4567 fastboot_info(response);
4568 fastboot_okay("");
4569}
4570
4571void cmd_flashing_lock_critical(const char *arg, void *data, unsigned sz)
4572{
lijuang4ece1e72015-08-14 21:02:36 +08004573 set_device_unlock(UNLOCK_CRITICAL, FALSE);
lijuang511a2b52015-08-14 20:50:51 +08004574}
4575
4576void cmd_flashing_unlock_critical(const char *arg, void *data, unsigned sz)
4577{
lijuang4ece1e72015-08-14 21:02:36 +08004578 set_device_unlock(UNLOCK_CRITICAL, TRUE);
lijuang511a2b52015-08-14 20:50:51 +08004579}
4580
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07004581void cmd_preflash(const char *arg, void *data, unsigned sz)
4582{
4583 fastboot_okay("");
4584}
4585
Mao Flynn7b379f32015-04-20 00:28:30 +08004586static uint8_t logo_header[LOGO_IMG_HEADER_SIZE];
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304587
Mao Flynn7b379f32015-04-20 00:28:30 +08004588int splash_screen_check_header(logo_img_header *header)
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304589{
Mao Flynn7b379f32015-04-20 00:28:30 +08004590 if (memcmp(header->magic, LOGO_IMG_MAGIC, 8))
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304591 return -1;
Mao Flynn7b379f32015-04-20 00:28:30 +08004592 if (header->width == 0 || header->height == 0)
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304593 return -1;
4594 return 0;
4595}
4596
Mao Flynn7b379f32015-04-20 00:28:30 +08004597int splash_screen_flash()
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004598{
4599 struct ptentry *ptn;
4600 struct ptable *ptable;
Mao Flynn7b379f32015-04-20 00:28:30 +08004601 struct logo_img_header *header;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004602 struct fbcon_config *fb_display = NULL;
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08004603
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304604 ptable = flash_get_ptable();
4605 if (ptable == NULL) {
Mao Flynn7b379f32015-04-20 00:28:30 +08004606 dprintf(CRITICAL, "ERROR: Partition table not found\n");
4607 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304608 }
Mao Flynn7b379f32015-04-20 00:28:30 +08004609
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304610 ptn = ptable_find(ptable, "splash");
4611 if (ptn == NULL) {
4612 dprintf(CRITICAL, "ERROR: splash Partition not found\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004613 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304614 }
Mao Flynn7b379f32015-04-20 00:28:30 +08004615 if (flash_read(ptn, 0, (void *)logo_header, LOGO_IMG_HEADER_SIZE)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304616 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004617 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304618 }
4619
Mao Flynn7b379f32015-04-20 00:28:30 +08004620 header = (struct logo_img_header *)logo_header;
4621 if (splash_screen_check_header(header)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304622 dprintf(CRITICAL, "ERROR: Boot image header invalid\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004623 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304624 }
4625
4626 fb_display = fbcon_display();
4627 if (fb_display) {
raghavendra ambadas554f4fd2018-10-09 15:50:40 +05304628 if (header->type && (header->blocks != 0) &&
4629 (UINT_MAX >= header->blocks * 512) &&
4630 ((header->blocks * 512) <= (fb_display->width *
4631 fb_display->height * (fb_display->bpp / 8)))) {
4632 /* RLE24 compressed data */
Mao Flynn7b379f32015-04-20 00:28:30 +08004633 uint8_t *base = (uint8_t *) fb_display->base + LOGO_IMG_OFFSET;
4634
4635 /* if the logo is full-screen size, remove "fbcon_clear()" */
4636 if ((header->width != fb_display->width)
4637 || (header->height != fb_display->height))
4638 fbcon_clear();
4639
4640 if (flash_read(ptn + LOGO_IMG_HEADER_SIZE, 0,
4641 (uint32_t *)base,
4642 (header->blocks * 512))) {
4643 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
4644 return -1;
4645 }
4646 fbcon_extract_to_screen(header, base);
4647 return 0;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004648 }
Mao Flynn7b379f32015-04-20 00:28:30 +08004649
Veera Sundaram Sankaranc33416f2015-09-28 10:25:55 -07004650 if ((header->width > fb_display->width) || (header->height > fb_display->height)) {
4651 dprintf(CRITICAL, "Logo config greater than fb config. Fall back default logo\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004652 return -1;
4653 }
4654
Vineet Bajaj99291ed2014-09-09 12:29:46 +05304655 uint8_t *base = (uint8_t *) fb_display->base;
Sachin Bhayare619e9e42017-05-15 13:10:31 +05304656 uint32_t fb_size = ROUNDUP(fb_display->width *
4657 fb_display->height *
4658 (fb_display->bpp / 8), 4096);
4659 uint32_t splash_size = ((((header->width * header->height *
4660 fb_display->bpp/8) + 511) >> 9) << 9);
4661
4662 if (splash_size > fb_size) {
4663 dprintf(CRITICAL, "ERROR: Splash image size invalid\n");
4664 return -1;
4665 }
4666
Mao Flynn7b379f32015-04-20 00:28:30 +08004667 if (flash_read(ptn + LOGO_IMG_HEADER_SIZE, 0,
4668 (uint32_t *)base,
4669 ((((header->width * header->height * fb_display->bpp/8) + 511) >> 9) << 9))) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304670 fbcon_clear();
Vineet Bajaj99291ed2014-09-09 12:29:46 +05304671 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004672 return -1;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004673 }
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304674 }
4675
Mao Flynn7b379f32015-04-20 00:28:30 +08004676 return 0;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304677}
4678
Mao Flynn7b379f32015-04-20 00:28:30 +08004679int splash_screen_mmc()
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304680{
4681 int index = INVALID_PTN;
4682 unsigned long long ptn = 0;
4683 struct fbcon_config *fb_display = NULL;
Mao Flynn7b379f32015-04-20 00:28:30 +08004684 struct logo_img_header *header;
Mao Flynn1893a7f2015-06-03 12:03:36 +08004685 uint32_t blocksize, realsize, readsize;
4686 uint8_t *base;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304687
4688 index = partition_get_index("splash");
4689 if (index == 0) {
4690 dprintf(CRITICAL, "ERROR: splash Partition table not found\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004691 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304692 }
4693
4694 ptn = partition_get_offset(index);
4695 if (ptn == 0) {
4696 dprintf(CRITICAL, "ERROR: splash Partition invalid\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004697 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304698 }
4699
Mao Flynn1893a7f2015-06-03 12:03:36 +08004700 mmc_set_lun(partition_get_lun(index));
4701
4702 blocksize = mmc_get_device_blocksize();
4703 if (blocksize == 0) {
4704 dprintf(CRITICAL, "ERROR:splash Partition invalid blocksize\n");
4705 return -1;
4706 }
4707
4708 fb_display = fbcon_display();
Channagoud Kadabidaf10a62015-07-22 11:51:55 -07004709 if (!fb_display)
4710 {
4711 dprintf(CRITICAL, "ERROR: fb config is not allocated\n");
4712 return -1;
4713 }
4714
Mao Flynn1893a7f2015-06-03 12:03:36 +08004715 base = (uint8_t *) fb_display->base;
4716
Kishor PKee5c0a32018-03-06 16:49:46 +05304717 if (mmc_read(ptn + PLL_CODES_OFFSET, (uint32_t *)(base + LOGO_IMG_OFFSET), blocksize)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304718 dprintf(CRITICAL, "ERROR: Cannot read splash image header\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004719 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304720 }
4721
Mao Flynn1893a7f2015-06-03 12:03:36 +08004722 header = (struct logo_img_header *)(base + LOGO_IMG_OFFSET);
Mao Flynn7b379f32015-04-20 00:28:30 +08004723 if (splash_screen_check_header(header)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304724 dprintf(CRITICAL, "ERROR: Splash image header invalid\n");
Mao Flynn7b379f32015-04-20 00:28:30 +08004725 return -1;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304726 }
4727
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304728 if (fb_display) {
raghavendra ambadas554f4fd2018-10-09 15:50:40 +05304729 if (header->type && (header->blocks != 0) &&
4730 (UINT_MAX >= header->blocks * 512 + LOGO_IMG_HEADER_SIZE) &&
4731 ((header->blocks * 512) <= (fb_display->width *
4732 fb_display->height * (fb_display->bpp / 8)))) {
4733 /* 1 RLE24 compressed data */
Mao Flynn1893a7f2015-06-03 12:03:36 +08004734 base += LOGO_IMG_OFFSET;
Mao Flynn7b379f32015-04-20 00:28:30 +08004735
Mao Flynn1893a7f2015-06-03 12:03:36 +08004736 realsize = header->blocks * 512;
4737 readsize = ROUNDUP((realsize + LOGO_IMG_HEADER_SIZE), blocksize) - blocksize;
4738
4739 /* if the logo is not full-screen size, clean screen */
Mao Flynn7b379f32015-04-20 00:28:30 +08004740 if ((header->width != fb_display->width)
4741 || (header->height != fb_display->height))
4742 fbcon_clear();
4743
Sachin Bhayare619e9e42017-05-15 13:10:31 +05304744 uint32_t fb_size = ROUNDUP(fb_display->width *
4745 fb_display->height *
4746 (fb_display->bpp / 8), 4096);
4747
4748 if (readsize > fb_size) {
4749 dprintf(CRITICAL, "ERROR: Splash image size invalid\n");
4750 return -1;
4751 }
4752
Kishor PKee5c0a32018-03-06 16:49:46 +05304753 if (mmc_read(ptn + PLL_CODES_OFFSET + blocksize, (uint32_t *)(base + blocksize), readsize)) {
Mao Flynn7b379f32015-04-20 00:28:30 +08004754 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
4755 return -1;
4756 }
Mao Flynn7b379f32015-04-20 00:28:30 +08004757
Mao Flynn1893a7f2015-06-03 12:03:36 +08004758 fbcon_extract_to_screen(header, (base + LOGO_IMG_HEADER_SIZE));
4759 } else { /* 2 Raw BGR data */
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304760
Veera Sundaram Sankaranc33416f2015-09-28 10:25:55 -07004761 if ((header->width > fb_display->width) || (header->height > fb_display->height)) {
4762 dprintf(CRITICAL, "Logo config greater than fb config. Fall back default logo\n");
Mao Flynn1893a7f2015-06-03 12:03:36 +08004763 return -1;
4764 }
4765
4766 realsize = header->width * header->height * fb_display->bpp / 8;
4767 readsize = ROUNDUP((realsize + LOGO_IMG_HEADER_SIZE), blocksize) - blocksize;
4768
4769 if (blocksize == LOGO_IMG_HEADER_SIZE) { /* read the content directly */
Kishor PKee5c0a32018-03-06 16:49:46 +05304770 if (mmc_read((ptn + PLL_CODES_OFFSET + LOGO_IMG_HEADER_SIZE), (uint32_t *)base, readsize)) {
Mao Flynn1893a7f2015-06-03 12:03:36 +08004771 fbcon_clear();
4772 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
4773 return -1;
4774 }
4775 } else {
Kishor PKee5c0a32018-03-06 16:49:46 +05304776 if (mmc_read(ptn + PLL_CODES_OFFSET + blocksize ,
Mao Flynn1893a7f2015-06-03 12:03:36 +08004777 (uint32_t *)(base + LOGO_IMG_OFFSET + blocksize), readsize)) {
4778 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
4779 return -1;
4780 }
4781 memmove(base, (base + LOGO_IMG_OFFSET + LOGO_IMG_HEADER_SIZE), realsize);
4782 }
4783 }
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304784 }
4785
Mao Flynn7b379f32015-04-20 00:28:30 +08004786 return 0;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304787}
4788
Mao Flynn7b379f32015-04-20 00:28:30 +08004789int fetch_image_from_partition()
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05304790{
4791 if (target_is_emmc_boot()) {
4792 return splash_screen_mmc();
4793 } else {
4794 return splash_screen_flash();
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07004795 }
4796}
4797
Mayank Grover351a75e2017-05-30 20:06:08 +05304798void publish_getvar_multislot_vars()
4799{
4800 int i,count;
4801 static bool published = false;
4802 static char slot_count[MAX_RSP_SIZE];
4803 static struct ab_slot_info slot_info[AB_SUPPORTED_SLOTS];
4804 static char active_slot_suffix[MAX_RSP_SIZE];
4805 static char has_slot_pname[NUM_PARTITIONS][MAX_GET_VAR_NAME_SIZE];
4806 static char has_slot_reply[NUM_PARTITIONS][MAX_RSP_SIZE];
4807 const char *tmp;
4808 char tmpbuff[MAX_GET_VAR_NAME_SIZE];
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304809 signed active_slt;
Mayank Grover351a75e2017-05-30 20:06:08 +05304810
4811 if (!published)
4812 {
4813 /* Update slot meta info */
4814 count = partition_fill_partition_meta(has_slot_pname, has_slot_reply,
4815 partition_get_partition_count());
4816 for(i=0; i<count; i++)
4817 {
4818 memset(tmpbuff, 0, MAX_GET_VAR_NAME_SIZE);
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304819 snprintf(tmpbuff, MAX_GET_VAR_NAME_SIZE,"has-slot:%s",
4820 has_slot_pname[i]);
4821 strlcpy(has_slot_pname[i], tmpbuff, MAX_GET_VAR_NAME_SIZE);
Mayank Grover351a75e2017-05-30 20:06:08 +05304822 fastboot_publish(has_slot_pname[i], has_slot_reply[i]);
4823 }
4824
4825 for (i=0; i<AB_SUPPORTED_SLOTS; i++)
4826 {
4827 tmp = SUFFIX_SLOT(i);
Mayank Grover7b8a8f82017-10-27 13:07:59 +05304828 tmp++; // to remove "_" from slot_suffix.
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304829 snprintf(slot_info[i].slot_is_unbootable, sizeof(slot_info[i].slot_is_unbootable),
4830 "slot-unbootable:%s", tmp);
4831 snprintf(slot_info[i].slot_is_active, sizeof(slot_info[i].slot_is_active),
4832 "slot-active:%s", tmp);
4833 snprintf(slot_info[i].slot_is_succesful, sizeof(slot_info[i].slot_is_succesful),
4834 "slot-success:%s", tmp);
4835 snprintf(slot_info[i].slot_retry_count, sizeof(slot_info[i].slot_retry_count),
4836 "slot-retry-count:%s", tmp);
Mayank Grover351a75e2017-05-30 20:06:08 +05304837 fastboot_publish(slot_info[i].slot_is_unbootable,
4838 slot_info[i].slot_is_unbootable_rsp);
4839 fastboot_publish(slot_info[i].slot_is_active,
4840 slot_info[i].slot_is_active_rsp);
4841 fastboot_publish(slot_info[i].slot_is_succesful,
4842 slot_info[i].slot_is_succesful_rsp);
4843 fastboot_publish(slot_info[i].slot_retry_count,
4844 slot_info[i].slot_retry_count_rsp);
4845 }
4846 fastboot_publish("current-slot", active_slot_suffix);
4847 snprintf(slot_count, sizeof(slot_count),"%d", AB_SUPPORTED_SLOTS);
4848 fastboot_publish("slot-count", slot_count);
4849 published = true;
4850 }
4851
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304852 active_slt = partition_find_active_slot();
4853 if (active_slt != INVALID)
Mayank Grover7b8a8f82017-10-27 13:07:59 +05304854 {
4855 tmp = SUFFIX_SLOT(active_slt);
4856 tmp++; // to remove "_" from slot_suffix.
4857 snprintf(active_slot_suffix, sizeof(active_slot_suffix), "%s", tmp);
4858 }
Mayank Grover2bd84bb2017-06-20 11:06:07 +05304859 else
4860 strlcpy(active_slot_suffix, "INVALID", sizeof(active_slot_suffix));
4861
Mayank Grover351a75e2017-05-30 20:06:08 +05304862 /* Update partition meta information */
4863 partition_fill_slot_meta(slot_info);
4864 return;
4865}
4866
lijuang4ece1e72015-08-14 21:02:36 +08004867void get_product_name(unsigned char *buf)
4868{
4869 snprintf((char*)buf, MAX_RSP_SIZE, "%s", TARGET(BOARD));
4870 return;
4871}
4872
Mayank Grover7b8a8f82017-10-27 13:07:59 +05304873#if PRODUCT_IOT
4874void get_bootloader_version_iot(unsigned char *buf)
4875{
4876 if (buf != NULL)
4877 {
4878 strlcpy(buf, TARGET(BOARD), MAX_VERSION_LEN);
4879 strlcat(buf, "-", MAX_VERSION_LEN);
4880 strlcat(buf, PRODUCT_IOT_VERSION, MAX_VERSION_LEN);
4881 }
4882 return;
4883}
4884#endif
4885
lijuang4ece1e72015-08-14 21:02:36 +08004886void get_bootloader_version(unsigned char *buf)
4887{
4888 snprintf((char*)buf, MAX_RSP_SIZE, "%s", device.bootloader_version);
4889 return;
4890}
4891
4892void get_baseband_version(unsigned char *buf)
4893{
4894 snprintf((char*)buf, MAX_RSP_SIZE, "%s", device.radio_version);
4895 return;
4896}
4897
Monika Singh32a09f72018-03-14 13:08:29 +05304898bool is_device_locked_critical()
4899{
4900 return device.is_unlock_critical ? false:true;
4901}
4902
lijuang4ece1e72015-08-14 21:02:36 +08004903bool is_device_locked()
4904{
4905 return device.is_unlocked ? false:true;
4906}
4907
Monika Singh32a09f72018-03-14 13:08:29 +05304908bool is_verity_enforcing()
4909{
4910 return device.verity_mode ? true:false;
4911}
4912
Amol Jadi5edf3552013-07-23 14:15:34 -07004913/* register commands and variables for fastboot */
4914void aboot_fastboot_register_commands(void)
4915{
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004916 int i;
lijuangf16461c2015-08-03 17:09:34 +08004917 char hw_platform_buf[MAX_RSP_SIZE];
Amol Jadi5edf3552013-07-23 14:15:34 -07004918
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004919 struct fastboot_cmd_desc cmd_list[] = {
lijuang511a2b52015-08-14 20:50:51 +08004920 /* By default the enabled list is empty. */
4921 {"", NULL},
4922 /* move commands enclosed within the below ifndef to here
4923 * if they need to be enabled in user build.
4924 */
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004925#ifndef DISABLE_FASTBOOT_CMDS
lijuang511a2b52015-08-14 20:50:51 +08004926 /* Register the following commands only for non-user builds */
4927 {"flash:", cmd_flash},
4928 {"erase:", cmd_erase},
4929 {"boot", cmd_boot},
4930 {"continue", cmd_continue},
4931 {"reboot", cmd_reboot},
4932 {"reboot-bootloader", cmd_reboot_bootloader},
4933 {"oem unlock", cmd_oem_unlock},
4934 {"oem unlock-go", cmd_oem_unlock_go},
4935 {"oem lock", cmd_oem_lock},
4936 {"flashing unlock", cmd_oem_unlock},
4937 {"flashing lock", cmd_oem_lock},
4938 {"flashing lock_critical", cmd_flashing_lock_critical},
4939 {"flashing unlock_critical", cmd_flashing_unlock_critical},
4940 {"flashing get_unlock_ability", cmd_flashing_get_unlock_ability},
4941 {"oem device-info", cmd_oem_devinfo},
4942 {"preflash", cmd_preflash},
4943 {"oem enable-charger-screen", cmd_oem_enable_charger_screen},
4944 {"oem disable-charger-screen", cmd_oem_disable_charger_screen},
lijuanga25d8bb2015-09-16 13:11:52 +08004945 {"oem off-mode-charge", cmd_oem_off_mode_charger},
lijuang511a2b52015-08-14 20:50:51 +08004946 {"oem select-display-panel", cmd_oem_select_display_panel},
Mayank Grover6ccc1c92017-07-04 17:36:46 +05304947 {"set_active",cmd_set_active},
Mayank Grover98c4c742019-04-25 17:21:37 +05304948#if DYNAMIC_PARTITION_SUPPORT
4949 {"reboot-fastboot",cmd_reboot_fastboot},
4950 {"reboot-recovery",cmd_reboot_recovery},
4951#endif
Channagoud Kadabi736c4962015-08-21 11:56:52 -07004952#if UNITTEST_FW_SUPPORT
Channagoud Kadabid5ddf482015-09-28 10:31:35 -07004953 {"oem run-tests", cmd_oem_runtests},
Channagoud Kadabi736c4962015-08-21 11:56:52 -07004954#endif
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004955#endif
lijuang511a2b52015-08-14 20:50:51 +08004956 };
Sridhar Parasurame94e8152014-10-24 14:06:03 -07004957
4958 int fastboot_cmds_count = sizeof(cmd_list)/sizeof(cmd_list[0]);
4959 for (i = 1; i < fastboot_cmds_count; i++)
4960 fastboot_register(cmd_list[i].name,cmd_list[i].cb);
4961
Amol Jadi5edf3552013-07-23 14:15:34 -07004962 /* publish variables and their values */
4963 fastboot_publish("product", TARGET(BOARD));
4964 fastboot_publish("kernel", "lk");
4965 fastboot_publish("serialno", sn_buf);
4966
Mayank Grovera64dfbe2018-05-17 14:06:34 +05304967 /*publish hw-revision major(upper 16 bits) and minor(lower 16 bits)*/
4968 snprintf(soc_version_str, MAX_RSP_SIZE, "%x", board_soc_version());
4969 fastboot_publish("hw-revision", soc_version_str);
4970
Amol Jadi5edf3552013-07-23 14:15:34 -07004971 /*
4972 * partition info is supported only for emmc partitions
4973 * Calling this for NAND prints some error messages which
4974 * is harmless but misleading. Avoid calling this for NAND
4975 * devices.
4976 */
4977 if (target_is_emmc_boot())
Mayank Grover7b8a8f82017-10-27 13:07:59 +05304978 publish_getvar_partition_info(part_info, partition_get_partition_count());
Amol Jadi5edf3552013-07-23 14:15:34 -07004979
Mayank Grover351a75e2017-05-30 20:06:08 +05304980 if (partition_multislot_is_supported())
4981 publish_getvar_multislot_vars();
4982
Amol Jadi5edf3552013-07-23 14:15:34 -07004983 /* Max download size supported */
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004984 snprintf(max_download_size, MAX_RSP_SIZE, "\t0x%x",
4985 target_get_max_flash_size());
Amol Jadi5edf3552013-07-23 14:15:34 -07004986 fastboot_publish("max-download-size", (const char *) max_download_size);
Ameya Thakur11cf1a62013-08-05 12:44:48 -07004987 /* Is the charger screen check enabled */
4988 snprintf(charger_screen_enabled, MAX_RSP_SIZE, "%d",
4989 device.charger_screen_enabled);
4990 fastboot_publish("charger-screen-enabled",
4991 (const char *) charger_screen_enabled);
lijuanga25d8bb2015-09-16 13:11:52 +08004992 fastboot_publish("off-mode-charge", (const char *) charger_screen_enabled);
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05304993 snprintf(panel_display_mode, MAX_RSP_SIZE, "%s",
4994 device.display_panel);
4995 fastboot_publish("display-panel",
4996 (const char *) panel_display_mode);
Mukesh Ojhabb6e7f32018-03-02 15:04:06 +05304997
4998 if (target_is_emmc_boot())
4999 {
5000 mmc_blocksize = mmc_get_device_blocksize();
5001 }
5002 else
5003 {
5004 mmc_blocksize = flash_block_size();
5005 }
5006 snprintf(block_size_string, MAX_RSP_SIZE, "0x%x", mmc_blocksize);
5007 fastboot_publish("erase-block-size", (const char *) block_size_string);
5008 fastboot_publish("logical-block-size", (const char *) block_size_string);
Mayank Grover7b8a8f82017-10-27 13:07:59 +05305009#if PRODUCT_IOT
5010 get_bootloader_version_iot(&bootloader_version_string);
5011 fastboot_publish("version-bootloader", (const char *) bootloader_version_string);
5012
5013 /* Version baseband is n/a for apq iot devices */
5014 fastboot_publish("version-baseband", "N/A");
Mayank Grover7b8a8f82017-10-27 13:07:59 +05305015#else
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -08005016 fastboot_publish("version-bootloader", (const char *) device.bootloader_version);
5017 fastboot_publish("version-baseband", (const char *) device.radio_version);
Mayank Grover7b8a8f82017-10-27 13:07:59 +05305018#endif
lijuangf16461c2015-08-03 17:09:34 +08005019 fastboot_publish("secure", is_secure_boot_enable()? "yes":"no");
Mayank Grover7b8a8f82017-10-27 13:07:59 +05305020 fastboot_publish("unlocked", device.is_unlocked ? "yes":"no");
lijuangf16461c2015-08-03 17:09:34 +08005021 smem_get_hw_platform_name((unsigned char *) hw_platform_buf, sizeof(hw_platform_buf));
5022 snprintf(get_variant, MAX_RSP_SIZE, "%s %s", hw_platform_buf,
5023 target_is_emmc_boot()? "eMMC":"UFS");
5024 fastboot_publish("variant", (const char *) get_variant);
lijuang65c5a822015-08-29 16:35:36 +08005025#if CHECK_BAT_VOLTAGE
lijuang102dfa92015-10-09 18:31:03 +08005026 update_battery_status();
lijuang65c5a822015-08-29 16:35:36 +08005027 fastboot_publish("battery-voltage", (const char *) battery_voltage);
lijuang102dfa92015-10-09 18:31:03 +08005028 fastboot_publish("battery-soc-ok", (const char *) battery_soc_ok);
lijuang65c5a822015-08-29 16:35:36 +08005029#endif
Mayank Grover98c4c742019-04-25 17:21:37 +05305030 if (target_dynamic_partition_supported())
5031 fastboot_publish("is-userspace", "no");
Amol Jadi5edf3552013-07-23 14:15:34 -07005032}
5033
Brian Swetland9c4c0752009-01-25 16:23:50 -08005034void aboot_init(const struct app_descriptor *app)
5035{
Shashank Mittal4f99a882010-02-01 13:58:50 -08005036 unsigned reboot_mode = 0;
Mayank Grover351a75e2017-05-30 20:06:08 +05305037 int boot_err_type = 0;
5038 int boot_slot = INVALID;
Chandan Uddarajubedca152010-06-02 23:05:15 -07005039
lijuang39831732016-01-08 17:49:02 +08005040 /* Initialise wdog to catch early lk crashes */
5041#if WDOG_SUPPORT
5042 msm_wdog_init();
5043#endif
5044
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07005045 /* Setup page size information for nv storage */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005046 if (target_is_emmc_boot())
5047 {
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07005048 page_size = mmc_page_size();
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005049 page_mask = page_size - 1;
Gaurav Nebhwani4d2389c2016-03-17 21:10:05 +05305050 mmc_blocksize = mmc_get_device_blocksize();
5051 mmc_blocksize_mask = mmc_blocksize - 1;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005052 }
5053 else
5054 {
5055 page_size = flash_page_size();
5056 page_mask = page_size - 1;
5057 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07005058 ASSERT((MEMBASE + MEMSIZE) > MEMBASE);
5059
Ameya Thakur11cf1a62013-08-05 12:44:48 -07005060 read_device_info(&device);
vijay kumarc65876c2015-04-24 13:29:16 +05305061 read_allow_oem_unlock(&device);
Shashank Mittal162244e2011-08-08 19:01:25 -07005062
Mayank Grover351a75e2017-05-30 20:06:08 +05305063 /* Detect multi-slot support */
5064 if (partition_multislot_is_supported())
5065 {
5066 boot_slot = partition_find_active_slot();
5067 if (boot_slot == INVALID)
5068 {
5069 boot_into_fastboot = true;
5070 dprintf(INFO, "Active Slot: (INVALID)\n");
5071 }
5072 else
5073 {
5074 /* Setting the state of system to boot active slot */
5075 partition_mark_active_slot(boot_slot);
5076 dprintf(INFO, "Active Slot: (%s)\n", SUFFIX_SLOT(boot_slot));
5077 }
5078 }
5079
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08005080 /* Display splash screen if enabled */
5081#if DISPLAY_SPLASH_SCREEN
lijuang99c02d82015-02-13 19:04:34 +08005082#if NO_ALARM_DISPLAY
5083 if (!check_alarm_boot()) {
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08005084#endif
lijuang99c02d82015-02-13 19:04:34 +08005085 dprintf(SPEW, "Display Init: Start\n");
Ajay Singh Parmara7865a82015-04-16 21:27:52 -07005086#if DISPLAY_HDMI_PRIMARY
5087 if (!strlen(device.display_panel))
5088 strlcpy(device.display_panel, DISPLAY_PANEL_HDMI,
5089 sizeof(device.display_panel));
5090#endif
Channagoud Kadabi90869ce2015-04-27 11:15:14 -07005091#if ENABLE_WBC
Channagoud Kadabid801ac72015-08-26 11:21:51 -07005092 /* Wait if the display shutdown is in progress */
5093 while(pm_app_display_shutdown_in_prgs());
Channagoud Kadabi90869ce2015-04-27 11:15:14 -07005094 if (!pm_appsbl_display_init_done())
5095 target_display_init(device.display_panel);
5096 else
5097 display_image_on_screen();
5098#else
lijuang99c02d82015-02-13 19:04:34 +08005099 target_display_init(device.display_panel);
Channagoud Kadabi90869ce2015-04-27 11:15:14 -07005100#endif
lijuang99c02d82015-02-13 19:04:34 +08005101 dprintf(SPEW, "Display Init: Done\n");
5102#if NO_ALARM_DISPLAY
5103 }
5104#endif
5105#endif
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08005106
Greg Griscod6250552011-06-29 14:40:23 -07005107 target_serialno((unsigned char *) sn_buf);
Ajay Dudanib06c05f2011-05-12 14:46:10 -07005108 dprintf(SPEW,"serial number: %s\n",sn_buf);
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -08005109
Dhaval Patel223ec952013-07-18 14:49:44 -07005110 memset(display_panel_buf, '\0', MAX_PANEL_BUF_SIZE);
5111
Matthew Qindefd5562014-07-11 18:02:40 +08005112 /*
5113 * Check power off reason if user force reset,
5114 * if yes phone will do normal boot.
5115 */
5116 if (is_user_force_reset())
5117 goto normal_boot;
5118
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07005119 /* Check if we should do something other than booting up */
Ameya Thakur0b9c2442013-05-10 13:22:56 -07005120 if (keys_get_state(KEY_VOLUMEUP) && keys_get_state(KEY_VOLUMEDOWN))
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07005121 {
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +03005122 dprintf(ALWAYS,"dload mode key sequence detected\n");
lijuang395b5e62015-11-19 17:39:44 +08005123 reboot_device(EMERGENCY_DLOAD);
5124 dprintf(CRITICAL,"Failed to reboot into dload mode\n");
5125
Ameya Thakur0b9c2442013-05-10 13:22:56 -07005126 boot_into_fastboot = true;
5127 }
5128 if (!boot_into_fastboot)
5129 {
5130 if (keys_get_state(KEY_HOME) || keys_get_state(KEY_VOLUMEUP))
5131 boot_into_recovery = 1;
5132 if (!boot_into_recovery &&
5133 (keys_get_state(KEY_BACK) || keys_get_state(KEY_VOLUMEDOWN)))
Pavel Nedev5d91d412013-04-29 11:34:24 +03005134 boot_into_fastboot = true;
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07005135 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005136 #if NO_KEYPAD_DRIVER
Kinson Chik0b1c8162011-08-31 16:31:57 -07005137 if (fastboot_trigger())
Pavel Nedev5d91d412013-04-29 11:34:24 +03005138 boot_into_fastboot = true;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005139 #endif
Chandan Uddarajubedca152010-06-02 23:05:15 -07005140
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005141#if USE_PON_REBOOT_REG
5142 reboot_mode = check_hard_reboot_mode();
5143#else
Ajay Dudani77421292010-10-27 19:34:06 -07005144 reboot_mode = check_reboot_mode();
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005145#endif
5146 if (reboot_mode == RECOVERY_MODE)
5147 {
Ajay Dudani77421292010-10-27 19:34:06 -07005148 boot_into_recovery = 1;
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005149 }
5150 else if(reboot_mode == FASTBOOT_MODE)
5151 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03005152 boot_into_fastboot = true;
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005153 }
5154 else if(reboot_mode == ALARM_BOOT)
5155 {
Matthew Qind886f3c2014-01-17 16:52:01 +08005156 boot_reason_alarm = true;
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005157 }
Monika Singhb0db4b82018-09-26 12:18:02 +05305158#if VERIFIED_BOOT || VERIFIED_BOOT_2
Mayank Grover912eaa62017-10-26 12:08:53 +05305159 else if (VB_M <= target_get_vb_version())
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005160 {
Mayank Grover889be1b2017-09-12 20:12:23 +05305161 if (reboot_mode == DM_VERITY_ENFORCING)
5162 {
5163 device.verity_mode = 1;
5164 write_device_info(&device);
5165 }
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07005166#if ENABLE_VB_ATTEST
Mayank Grover889be1b2017-09-12 20:12:23 +05305167 else if (reboot_mode == DM_VERITY_EIO)
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07005168#else
Mayank Grover889be1b2017-09-12 20:12:23 +05305169 else if (reboot_mode == DM_VERITY_LOGGING)
Channagoud Kadabi86b0c112016-03-16 19:23:16 -07005170#endif
Mayank Grover889be1b2017-09-12 20:12:23 +05305171 {
5172 device.verity_mode = 0;
5173 write_device_info(&device);
5174 }
5175 else if (reboot_mode == DM_VERITY_KEYSCLEAR)
5176 {
5177 if(send_delete_keys_to_tz())
5178 ASSERT(0);
5179 }
Channagoud Kadabicfcfcc52015-08-05 16:23:42 -07005180 }
Parth Dixitddbc7352015-10-18 03:13:31 +05305181#endif
Ajay Dudani77421292010-10-27 19:34:06 -07005182
Matthew Qindefd5562014-07-11 18:02:40 +08005183normal_boot:
Pavel Nedev5d91d412013-04-29 11:34:24 +03005184 if (!boot_into_fastboot)
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005185 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03005186 if (target_is_emmc_boot())
Shashank Mittala0032282011-08-26 14:50:11 -07005187 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03005188 if(emmc_recovery_init())
5189 dprintf(ALWAYS,"error in emmc_recovery_init\n");
5190 if(target_use_signed_kernel())
Shashank Mittala0032282011-08-26 14:50:11 -07005191 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03005192 if((device.is_unlocked) || (device.is_tampered))
5193 {
5194 #ifdef TZ_TAMPER_FUSE
Monika Singh98257462018-06-06 11:28:49 +05305195 set_tamper_fuse_cmd(HLOS_IMG_TAMPER_FUSE);
Pavel Nedev5d91d412013-04-29 11:34:24 +03005196 #endif
5197 #if USE_PCOM_SECBOOT
5198 set_tamper_flag(device.is_tampered);
5199 #endif
5200 }
Shashank Mittala0032282011-08-26 14:50:11 -07005201 }
Amit Blay6281ebc2015-01-11 14:44:08 +02005202
Mayank Grover351a75e2017-05-30 20:06:08 +05305203retry_boot:
5204 /* Trying to boot active partition */
5205 if (partition_multislot_is_supported())
5206 {
5207 boot_slot = partition_find_boot_slot();
5208 partition_mark_active_slot(boot_slot);
5209 if (boot_slot == INVALID)
5210 goto fastboot;
5211 }
5212
5213 boot_err_type = boot_linux_from_mmc();
5214 switch (boot_err_type)
5215 {
5216 case ERR_INVALID_PAGE_SIZE:
5217 case ERR_DT_PARSE:
5218 case ERR_ABOOT_ADDR_OVERLAP:
Mayank Grover10cabbe2017-10-30 19:11:05 +05305219 case ERR_INVALID_BOOT_MAGIC:
Mayank Grover351a75e2017-05-30 20:06:08 +05305220 if(partition_multislot_is_supported())
Mayank Grover10cabbe2017-10-30 19:11:05 +05305221 {
5222 /*
5223 * Deactivate current slot, as it failed to
5224 * boot, and retry next slot.
5225 */
5226 partition_deactivate_slot(boot_slot);
Mayank Grover351a75e2017-05-30 20:06:08 +05305227 goto retry_boot;
Mayank Grover10cabbe2017-10-30 19:11:05 +05305228 }
Mayank Grover351a75e2017-05-30 20:06:08 +05305229 else
5230 break;
Mayank Grover351a75e2017-05-30 20:06:08 +05305231 default:
5232 break;
5233 /* going to fastboot menu */
5234 }
Shashank Mittala0032282011-08-26 14:50:11 -07005235 }
Pavel Nedev5d91d412013-04-29 11:34:24 +03005236 else
5237 {
5238 recovery_init();
5239 #if USE_PCOM_SECBOOT
5240 if((device.is_unlocked) || (device.is_tampered))
5241 set_tamper_flag(device.is_tampered);
5242 #endif
5243 boot_linux_from_flash();
5244 }
5245 dprintf(CRITICAL, "ERROR: Could not do normal boot. Reverting "
5246 "to fastboot mode.\n");
Shashank Mittald8c42bf2010-06-09 15:44:28 -07005247 }
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07005248
Mayank Grover351a75e2017-05-30 20:06:08 +05305249fastboot:
Amol Jadi5edf3552013-07-23 14:15:34 -07005250 /* We are here means regular boot did not happen. Start fastboot. */
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07005251
Amol Jadi5edf3552013-07-23 14:15:34 -07005252 /* register aboot specific fastboot commands */
5253 aboot_fastboot_register_commands();
Amol Jadi57abe4c2011-05-24 15:47:27 -07005254
Amol Jadi5edf3552013-07-23 14:15:34 -07005255 /* dump partition table for debug info */
Kinson Chikf1a43512011-07-14 11:28:39 -07005256 partition_dump();
Amol Jadi5edf3552013-07-23 14:15:34 -07005257
5258 /* initialize and start fastboot */
Saranya Chidura41b34532018-10-16 12:29:52 +05305259#if !VERIFIED_BOOT_2
Amol Jadi5edf3552013-07-23 14:15:34 -07005260 fastboot_init(target_get_scratch_address(), target_get_max_flash_size());
Saranya Chidura41b34532018-10-16 12:29:52 +05305261#else
5262 /* Add salt buffer offset at start of image address to copy VB salt */
5263 fastboot_init(ADD_SALT_BUFF_OFFSET(target_get_scratch_address()),
5264 SUB_SALT_BUFF_OFFSET(target_get_max_flash_size()));
5265#endif
lijuang4ece1e72015-08-14 21:02:36 +08005266#if FBCON_DISPLAY_MSG
lijuang9a7d3b92015-11-30 14:41:24 +08005267 display_fastboot_menu();
lijuang4ece1e72015-08-14 21:02:36 +08005268#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -08005269}
5270
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07005271uint32_t get_page_size()
5272{
5273 return page_size;
5274}
5275
Amir Samuelov57a6fa22013-06-05 16:36:43 +03005276/*
5277 * Calculated and save hash (SHA256) for non-signed boot image.
5278 *
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07005279 * @param image_addr - Boot image address
5280 * @param image_size - Size of the boot image
Amir Samuelov57a6fa22013-06-05 16:36:43 +03005281 *
5282 * @return int - 0 on success, negative value on failure.
5283 */
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07005284static int aboot_save_boot_hash_mmc(uint32_t image_addr, uint32_t image_size)
Amir Samuelov57a6fa22013-06-05 16:36:43 +03005285{
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07005286 unsigned int digest[8];
5287#if IMAGE_VERIF_ALGO_SHA1
5288 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA1;
5289#else
5290 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA256;
5291#endif
Amir Samuelov57a6fa22013-06-05 16:36:43 +03005292
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07005293 target_crypto_init_params();
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -08005294 hash_find((unsigned char *) image_addr, image_size, (unsigned char *)&digest, auth_algo);
Amir Samuelov57a6fa22013-06-05 16:36:43 +03005295
5296 save_kernel_hash_cmd(digest);
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07005297 dprintf(INFO, "aboot_save_boot_hash_mmc: imagesize_actual size %d bytes.\n", (int) image_size);
Amir Samuelov57a6fa22013-06-05 16:36:43 +03005298
5299 return 0;
5300}
5301
Mayank Grover351a75e2017-05-30 20:06:08 +05305302
Brian Swetland9c4c0752009-01-25 16:23:50 -08005303APP_START(aboot)
5304 .init = aboot_init,
5305APP_END