blob: e4cf09b22e621f537cd14e8cefefeb914629fb28 [file] [log] [blame]
Yabin Cui2f272c02016-06-24 18:22:02 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _BOOTLOADER_MESSAGE_H
18#define _BOOTLOADER_MESSAGE_H
19
Yabin Cui9b15ba82016-06-30 14:36:59 -070020#include <assert.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070021#include <stddef.h>
Yabin Cui9b15ba82016-06-30 14:36:59 -070022#include <stdint.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070023
24// Spaces used by misc partition are as below:
Yabin Cui9b15ba82016-06-30 14:36:59 -070025// 0 - 2K For bootloader_message
26// 2K - 16K Used by Vendor's bootloader (the 2K - 4K range may be optionally used
27// as bootloader_message_ab struct)
David Anderson4ff4cbd2019-11-04 13:09:38 -080028// 16K - 32K Used by uncrypt and recovery to store wipe_package for A/B devices
29// 32K - 64K System space, used for miscellanious AOSP features. See below.
Yabin Cui2f272c02016-06-24 18:22:02 -070030// Note that these offsets are admitted by bootloader,recovery and uncrypt, so they
31// are not configurable without changing all of them.
Tao Bao7ae01692019-05-16 14:42:42 -070032constexpr size_t BOOTLOADER_MESSAGE_OFFSET_IN_MISC = 0;
33constexpr size_t VENDOR_SPACE_OFFSET_IN_MISC = 2 * 1024;
34constexpr size_t WIPE_PACKAGE_OFFSET_IN_MISC = 16 * 1024;
David Anderson4ff4cbd2019-11-04 13:09:38 -080035constexpr size_t SYSTEM_SPACE_OFFSET_IN_MISC = 32 * 1024;
36constexpr size_t SYSTEM_SPACE_SIZE_IN_MISC = 32 * 1024;
Yabin Cui2f272c02016-06-24 18:22:02 -070037
Yabin Cui9b15ba82016-06-30 14:36:59 -070038/* Bootloader Message (2-KiB)
Yabin Cui2f272c02016-06-24 18:22:02 -070039 *
40 * This structure describes the content of a block in flash
41 * that is used for recovery and the bootloader to talk to
42 * each other.
43 *
44 * The command field is updated by linux when it wants to
45 * reboot into recovery or to update radio or bootloader firmware.
46 * It is also updated by the bootloader when firmware update
47 * is complete (to boot into recovery for any final cleanup)
48 *
Tao Baoc0336392016-12-13 22:29:49 -080049 * The status field was used by the bootloader after the completion
50 * of an "update-radio" or "update-hboot" command, which has been
51 * deprecated since Froyo.
Yabin Cui2f272c02016-06-24 18:22:02 -070052 *
53 * The recovery field is only written by linux and used
54 * for the system to send a message to recovery or the
55 * other way around.
56 *
57 * The stage field is written by packages which restart themselves
58 * multiple times, so that the UI can reflect which invocation of the
59 * package it is. If the value is of the format "#/#" (eg, "1/3"),
60 * the UI will add a simple indicator of that status.
61 *
Yabin Cui9b15ba82016-06-30 14:36:59 -070062 * We used to have slot_suffix field for A/B boot control metadata in
63 * this struct, which gets unintentionally cleared by recovery or
64 * uncrypt. Move it into struct bootloader_message_ab to avoid the
65 * issue.
Yabin Cui2f272c02016-06-24 18:22:02 -070066 */
67struct bootloader_message {
68 char command[32];
69 char status[32];
70 char recovery[768];
71
72 // The 'recovery' field used to be 1024 bytes. It has only ever
73 // been used to store the recovery command line, so 768 bytes
74 // should be plenty. We carve off the last 256 bytes to store the
75 // stage string (for multistage packages) and possible future
76 // expansion.
77 char stage[32];
Yabin Cui9b15ba82016-06-30 14:36:59 -070078
79 // The 'reserved' field used to be 224 bytes when it was initially
80 // carved off from the 1024-byte recovery field. Bump it up to
81 // 1184-byte so that the entire bootloader_message struct rounds up
82 // to 2048-byte.
83 char reserved[1184];
Yabin Cui2f272c02016-06-24 18:22:02 -070084};
85
David Andersoncf8427a2019-11-04 14:08:11 -080086// Holds Virtual A/B merge status information. Current version is 1. New fields
87// must be added to the end.
88struct misc_virtual_ab_message {
89 uint8_t version;
David Anderson682d2a52019-11-20 15:47:07 -080090 uint32_t magic;
David Andersoncf8427a2019-11-04 14:08:11 -080091 uint8_t merge_status; // IBootControl 1.1, MergeStatus enum.
92 uint8_t source_slot; // Slot number when merge_status was written.
David Anderson682d2a52019-11-20 15:47:07 -080093 uint8_t reserved[57];
David Andersoncf8427a2019-11-04 14:08:11 -080094} __attribute__((packed));
95
David Anderson682d2a52019-11-20 15:47:07 -080096#define MISC_VIRTUAL_AB_MESSAGE_VERSION 2
97#define MISC_VIRTUAL_AB_MAGIC_HEADER 0x56740AB0
David Andersoncf8427a2019-11-04 14:08:11 -080098
99#if (__STDC_VERSION__ >= 201112L) || defined(__cplusplus)
100static_assert(sizeof(struct misc_virtual_ab_message) == 64,
101 "struct misc_virtual_ab_message has wrong size");
102#endif
103
104// This struct is not meant to be used directly, rather, it is to make
105// computation of offsets easier. New fields must be added to the end.
106struct misc_system_space_layout {
107 misc_virtual_ab_message virtual_ab_message;
108} __attribute__((packed));
109
Yabin Cui2f272c02016-06-24 18:22:02 -0700110#ifdef __cplusplus
111
112#include <string>
113#include <vector>
114
Tianjie Xu3d57c842019-11-09 22:07:20 -0800115// Gets the block device name of /misc partition.
116std::string get_misc_blk_device(std::string* err);
Alex Deymofb00d822016-11-08 15:46:07 -0800117// Return the block device name for the bootloader message partition and waits
118// for the device for up to 10 seconds. In case of error returns the empty
119// string.
120std::string get_bootloader_message_blk_device(std::string* err);
121
Tianjie Xu3d57c842019-11-09 22:07:20 -0800122// Writes |size| bytes of data from buffer |p| to |misc_blk_device| at |offset|. If the write fails,
123// sets the error message in |err|.
124bool write_misc_partition(const void* p, size_t size, const std::string& misc_blk_device,
125 size_t offset, std::string* err);
126
Tao Baobedf5fc2016-11-18 12:01:26 -0800127// Read bootloader message into boot. Error message will be set in err.
Yabin Cui2f272c02016-06-24 18:22:02 -0700128bool read_bootloader_message(bootloader_message* boot, std::string* err);
Tao Baobedf5fc2016-11-18 12:01:26 -0800129
130// Read bootloader message from the specified misc device into boot.
131bool read_bootloader_message_from(bootloader_message* boot, const std::string& misc_blk_device,
132 std::string* err);
133
134// Write bootloader message to BCB.
Yabin Cui2f272c02016-06-24 18:22:02 -0700135bool write_bootloader_message(const bootloader_message& boot, std::string* err);
Tao Baobedf5fc2016-11-18 12:01:26 -0800136
137// Write bootloader message to the specified BCB device.
138bool write_bootloader_message_to(const bootloader_message& boot,
139 const std::string& misc_blk_device, std::string* err);
140
Tao Bao2292db82016-12-13 21:53:31 -0800141// Write bootloader message (boots into recovery with the options) to BCB. Will
142// set the command and recovery fields, and reset the rest.
Yabin Cui2f272c02016-06-24 18:22:02 -0700143bool write_bootloader_message(const std::vector<std::string>& options, std::string* err);
Tao Baobedf5fc2016-11-18 12:01:26 -0800144
Yifan Hongc784ce52019-05-01 13:13:58 -0700145// Write bootloader message (boots into recovery with the options) to the specific BCB device. Will
146// set the command and recovery fields, and reset the rest.
147bool write_bootloader_message_to(const std::vector<std::string>& options,
148 const std::string& misc_blk_device, std::string* err);
149
Tao Bao2292db82016-12-13 21:53:31 -0800150// Update bootloader message (boots into recovery with the options) to BCB. Will
151// only update the command and recovery fields.
152bool update_bootloader_message(const std::vector<std::string>& options, std::string* err);
153
Tianjie Xua88cc542017-10-25 13:16:54 -0700154// Update bootloader message (boots into recovery with the |options|) in |boot|. Will only update
155// the command and recovery fields.
156bool update_bootloader_message_in_struct(bootloader_message* boot,
157 const std::vector<std::string>& options);
158
Tao Baobedf5fc2016-11-18 12:01:26 -0800159// Clear BCB.
Yabin Cui2f272c02016-06-24 18:22:02 -0700160bool clear_bootloader_message(std::string* err);
161
Vineela Tummalapallicba7fa82016-10-28 19:44:40 -0700162// Writes the reboot-bootloader reboot reason to the bootloader_message.
163bool write_reboot_bootloader(std::string* err);
164
Tao Baobedf5fc2016-11-18 12:01:26 -0800165// Read the wipe package from BCB (from offset WIPE_PACKAGE_OFFSET_IN_MISC).
Yabin Cui2f272c02016-06-24 18:22:02 -0700166bool read_wipe_package(std::string* package_data, size_t size, std::string* err);
Tao Baobedf5fc2016-11-18 12:01:26 -0800167
168// Write the wipe package into BCB (to offset WIPE_PACKAGE_OFFSET_IN_MISC).
Yabin Cui2f272c02016-06-24 18:22:02 -0700169bool write_wipe_package(const std::string& package_data, std::string* err);
170
David Andersoncf8427a2019-11-04 14:08:11 -0800171// Read or write the Virtual A/B message from system space in /misc.
172bool ReadMiscVirtualAbMessage(misc_virtual_ab_message* message, std::string* err);
173bool WriteMiscVirtualAbMessage(const misc_virtual_ab_message& message, std::string* err);
174
Yabin Cui2f272c02016-06-24 18:22:02 -0700175#else
176
177#include <stdbool.h>
178
179// C Interface.
180bool write_bootloader_message(const char* options);
Vineela Tummalapallicba7fa82016-10-28 19:44:40 -0700181bool write_reboot_bootloader(void);
Yabin Cui2f272c02016-06-24 18:22:02 -0700182
183#endif // ifdef __cplusplus
184
185#endif // _BOOTLOADER_MESSAGE_H