blob: 8c1d63bdda1126b62d5d47b24cfb5d1e5e941a92 [file] [log] [blame]
Yabin Cui8b309f62016-06-24 18:22:02 -07001/*
2 * Copyright (C) 2016 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#include <bootloader_message/bootloader_message.h>
18
19#include <errno.h>
20#include <fcntl.h>
21#include <string.h>
22
23#include <string>
24#include <vector>
25
26#include <android-base/file.h>
27#include <android-base/properties.h>
28#include <android-base/stringprintf.h>
29#include <android-base/unique_fd.h>
Tom Cherry772c93c2018-12-04 09:37:39 -080030#include <fstab/fstab.h>
Yabin Cui8b309f62016-06-24 18:22:02 -070031
Tom Cherry72a114a2019-01-30 15:59:53 -080032using android::fs_mgr::Fstab;
33using android::fs_mgr::ReadDefaultFstab;
34
Yabin Cui8b309f62016-06-24 18:22:02 -070035static std::string get_misc_blk_device(std::string* err) {
Tom Cherry772c93c2018-12-04 09:37:39 -080036 Fstab fstab;
37 if (!ReadDefaultFstab(&fstab)) {
Bowgo Tsaid13b6cf2017-03-10 16:00:40 +080038 *err = "failed to read default fstab";
Yabin Cui8b309f62016-06-24 18:22:02 -070039 return "";
40 }
Tom Cherry772c93c2018-12-04 09:37:39 -080041 for (const auto& entry : fstab) {
42 if (entry.mount_point == "/misc") {
43 return entry.blk_device;
44 }
Yabin Cui8b309f62016-06-24 18:22:02 -070045 }
Tom Cherry772c93c2018-12-04 09:37:39 -080046
47 *err = "failed to find /misc partition";
48 return "";
Yabin Cui8b309f62016-06-24 18:22:02 -070049}
50
51// In recovery mode, recovery can get started and try to access the misc
52// device before the kernel has actually created it.
53static bool wait_for_device(const std::string& blk_device, std::string* err) {
54 int tries = 0;
55 int ret;
56 err->clear();
57 do {
58 ++tries;
59 struct stat buf;
60 ret = stat(blk_device.c_str(), &buf);
61 if (ret == -1) {
62 *err += android::base::StringPrintf("failed to stat %s try %d: %s\n",
63 blk_device.c_str(), tries, strerror(errno));
64 sleep(1);
65 }
66 } while (ret && tries < 10);
67
68 if (ret) {
69 *err += android::base::StringPrintf("failed to stat %s\n", blk_device.c_str());
70 }
71 return ret == 0;
72}
73
Tao Baobedf5fc2016-11-18 12:01:26 -080074static bool read_misc_partition(void* p, size_t size, const std::string& misc_blk_device,
75 size_t offset, std::string* err) {
Yabin Cui8b309f62016-06-24 18:22:02 -070076 if (!wait_for_device(misc_blk_device, err)) {
77 return false;
78 }
Yabin Cui0d5b8592016-07-06 11:47:23 -070079 android::base::unique_fd fd(open(misc_blk_device.c_str(), O_RDONLY));
Tao Baobedf5fc2016-11-18 12:01:26 -080080 if (fd == -1) {
Yabin Cui8b309f62016-06-24 18:22:02 -070081 *err = android::base::StringPrintf("failed to open %s: %s", misc_blk_device.c_str(),
82 strerror(errno));
83 return false;
84 }
Tao Baobedf5fc2016-11-18 12:01:26 -080085 if (lseek(fd, static_cast<off_t>(offset), SEEK_SET) != static_cast<off_t>(offset)) {
Yabin Cui8b309f62016-06-24 18:22:02 -070086 *err = android::base::StringPrintf("failed to lseek %s: %s", misc_blk_device.c_str(),
87 strerror(errno));
88 return false;
89 }
Tao Baobedf5fc2016-11-18 12:01:26 -080090 if (!android::base::ReadFully(fd, p, size)) {
Yabin Cui8b309f62016-06-24 18:22:02 -070091 *err = android::base::StringPrintf("failed to read %s: %s", misc_blk_device.c_str(),
92 strerror(errno));
93 return false;
94 }
95 return true;
96}
97
Tao Baobedf5fc2016-11-18 12:01:26 -080098static bool write_misc_partition(const void* p, size_t size, const std::string& misc_blk_device,
99 size_t offset, std::string* err) {
100 android::base::unique_fd fd(open(misc_blk_device.c_str(), O_WRONLY));
101 if (fd == -1) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700102 *err = android::base::StringPrintf("failed to open %s: %s", misc_blk_device.c_str(),
103 strerror(errno));
104 return false;
105 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800106 if (lseek(fd, static_cast<off_t>(offset), SEEK_SET) != static_cast<off_t>(offset)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700107 *err = android::base::StringPrintf("failed to lseek %s: %s", misc_blk_device.c_str(),
108 strerror(errno));
109 return false;
110 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800111 if (!android::base::WriteFully(fd, p, size)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700112 *err = android::base::StringPrintf("failed to write %s: %s", misc_blk_device.c_str(),
113 strerror(errno));
114 return false;
115 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800116 if (fsync(fd) == -1) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700117 *err = android::base::StringPrintf("failed to fsync %s: %s", misc_blk_device.c_str(),
118 strerror(errno));
119 return false;
120 }
121 return true;
122}
123
Alex Deymofb00d822016-11-08 15:46:07 -0800124std::string get_bootloader_message_blk_device(std::string* err) {
125 std::string misc_blk_device = get_misc_blk_device(err);
126 if (misc_blk_device.empty()) return "";
127 if (!wait_for_device(misc_blk_device, err)) return "";
128 return misc_blk_device;
129}
130
Tao Baobedf5fc2016-11-18 12:01:26 -0800131bool read_bootloader_message_from(bootloader_message* boot, const std::string& misc_blk_device,
132 std::string* err) {
133 return read_misc_partition(boot, sizeof(*boot), misc_blk_device,
134 BOOTLOADER_MESSAGE_OFFSET_IN_MISC, err);
135}
136
Yabin Cui8b309f62016-06-24 18:22:02 -0700137bool read_bootloader_message(bootloader_message* boot, std::string* err) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800138 std::string misc_blk_device = get_misc_blk_device(err);
139 if (misc_blk_device.empty()) {
140 return false;
141 }
142 return read_bootloader_message_from(boot, misc_blk_device, err);
143}
144
145bool write_bootloader_message_to(const bootloader_message& boot, const std::string& misc_blk_device,
146 std::string* err) {
147 return write_misc_partition(&boot, sizeof(boot), misc_blk_device,
148 BOOTLOADER_MESSAGE_OFFSET_IN_MISC, err);
Yabin Cui8b309f62016-06-24 18:22:02 -0700149}
150
151bool write_bootloader_message(const bootloader_message& boot, std::string* err) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800152 std::string misc_blk_device = get_misc_blk_device(err);
153 if (misc_blk_device.empty()) {
154 return false;
155 }
156 return write_bootloader_message_to(boot, misc_blk_device, err);
Yabin Cui8b309f62016-06-24 18:22:02 -0700157}
158
159bool clear_bootloader_message(std::string* err) {
160 bootloader_message boot = {};
161 return write_bootloader_message(boot, err);
162}
163
164bool write_bootloader_message(const std::vector<std::string>& options, std::string* err) {
Tao Bao26d5ae72016-12-13 01:06:24 +0000165 bootloader_message boot = {};
Tianjie Xua88cc542017-10-25 13:16:54 -0700166 update_bootloader_message_in_struct(&boot, options);
167
Yabin Cui8b309f62016-06-24 18:22:02 -0700168 return write_bootloader_message(boot, err);
169}
170
Tao Bao2292db82016-12-13 21:53:31 -0800171bool update_bootloader_message(const std::vector<std::string>& options, std::string* err) {
172 bootloader_message boot;
173 if (!read_bootloader_message(&boot, err)) {
174 return false;
175 }
Tianjie Xua88cc542017-10-25 13:16:54 -0700176 update_bootloader_message_in_struct(&boot, options);
Tao Bao2292db82016-12-13 21:53:31 -0800177
Tianjie Xua88cc542017-10-25 13:16:54 -0700178 return write_bootloader_message(boot, err);
179}
Tao Bao2292db82016-12-13 21:53:31 -0800180
Tianjie Xua88cc542017-10-25 13:16:54 -0700181bool update_bootloader_message_in_struct(bootloader_message* boot,
182 const std::vector<std::string>& options) {
183 if (!boot) return false;
184 // Replace the command & recovery fields.
185 memset(boot->command, 0, sizeof(boot->command));
186 memset(boot->recovery, 0, sizeof(boot->recovery));
187
188 strlcpy(boot->command, "boot-recovery", sizeof(boot->command));
189 strlcpy(boot->recovery, "recovery\n", sizeof(boot->recovery));
Tao Bao2292db82016-12-13 21:53:31 -0800190 for (const auto& s : options) {
Tianjie Xua88cc542017-10-25 13:16:54 -0700191 strlcat(boot->recovery, s.c_str(), sizeof(boot->recovery));
Tao Bao2292db82016-12-13 21:53:31 -0800192 if (s.back() != '\n') {
Tianjie Xua88cc542017-10-25 13:16:54 -0700193 strlcat(boot->recovery, "\n", sizeof(boot->recovery));
Tao Bao2292db82016-12-13 21:53:31 -0800194 }
195 }
Tianjie Xua88cc542017-10-25 13:16:54 -0700196 return true;
Tao Bao2292db82016-12-13 21:53:31 -0800197}
198
Vineela Tummalapallicba7fa82016-10-28 19:44:40 -0700199bool write_reboot_bootloader(std::string* err) {
200 bootloader_message boot;
201 if (!read_bootloader_message(&boot, err)) {
202 return false;
203 }
204 if (boot.command[0] != '\0') {
205 *err = "Bootloader command pending.";
206 return false;
207 }
208 strlcpy(boot.command, "bootonce-bootloader", sizeof(boot.command));
209 return write_bootloader_message(boot, err);
210}
211
Yabin Cui8b309f62016-06-24 18:22:02 -0700212bool read_wipe_package(std::string* package_data, size_t size, std::string* err) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800213 std::string misc_blk_device = get_misc_blk_device(err);
214 if (misc_blk_device.empty()) {
215 return false;
216 }
Yabin Cui8b309f62016-06-24 18:22:02 -0700217 package_data->resize(size);
Tao Baobedf5fc2016-11-18 12:01:26 -0800218 return read_misc_partition(&(*package_data)[0], size, misc_blk_device,
219 WIPE_PACKAGE_OFFSET_IN_MISC, err);
Yabin Cui8b309f62016-06-24 18:22:02 -0700220}
221
222bool write_wipe_package(const std::string& package_data, std::string* err) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800223 std::string misc_blk_device = get_misc_blk_device(err);
224 if (misc_blk_device.empty()) {
225 return false;
226 }
227 return write_misc_partition(package_data.data(), package_data.size(), misc_blk_device,
Yabin Cui8b309f62016-06-24 18:22:02 -0700228 WIPE_PACKAGE_OFFSET_IN_MISC, err);
229}
230
Vineela Tummalapallicba7fa82016-10-28 19:44:40 -0700231extern "C" bool write_reboot_bootloader(void) {
232 std::string err;
233 return write_reboot_bootloader(&err);
234}
235
Yabin Cui8b309f62016-06-24 18:22:02 -0700236extern "C" bool write_bootloader_message(const char* options) {
237 std::string err;
238 return write_bootloader_message({options}, &err);
239}