blob: e988da0a8b0a39de471024d5e531efaa45bfac1e [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 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
Elliott Hughes63a31922016-06-09 17:41:22 -070017#include "roots.h"
18
Tao Baobb10e582017-07-22 16:30:34 -070019#include <ctype.h>
20#include <fcntl.h>
Tom Cherry45e505a2018-11-29 13:33:07 -080021#include <inttypes.h>
Abhishek Arpure4fec8e92017-08-24 15:27:16 +053022#include <stdint.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <stdlib.h>
Tao Baoad774b22017-09-29 10:39:08 -070024#include <string.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <sys/mount.h>
26#include <sys/stat.h>
27#include <sys/types.h>
JP Abgrall37aedb32014-06-16 19:07:39 -070028#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080029#include <unistd.h>
30
Tao Bao3c00fac2017-07-22 16:46:54 -070031#include <algorithm>
Yifan Hongd81b8e32018-12-17 14:29:06 -080032#include <iostream>
Tao Bao3c00fac2017-07-22 16:46:54 -070033#include <string>
34#include <vector>
35
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070036#include <android-base/logging.h>
Jin Qianded2dac2017-04-21 14:36:12 -070037#include <android-base/properties.h>
38#include <android-base/stringprintf.h>
Jin Qianf3ccad52017-07-24 10:34:35 -070039#include <android-base/unique_fd.h>
Tao Baobb10e582017-07-22 16:30:34 -070040#include <cryptfs.h>
Tao Baode40ba52016-10-05 23:17:01 -070041#include <ext4_utils/wipe.h>
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080042#include <fs_mgr.h>
Yifan Hong0f339e22018-12-03 13:44:01 -080043#include <fs_mgr/roots.h>
David Anderson2b2f4232018-10-29 18:48:56 -070044#include <fs_mgr_dm_linear.h>
Tao Baode40ba52016-10-05 23:17:01 -070045
Tao Bao9a319f02018-01-04 13:19:11 -080046#include "otautil/mounts.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080047
Yifan Hongd81b8e32018-12-17 14:29:06 -080048static Fstab fstab;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080049
Tao Baobb10e582017-07-22 16:30:34 -070050extern struct selabel_handle* sehandle;
Stephen Smalley779701d2012-02-09 14:13:23 -050051
Tao Baobb10e582017-07-22 16:30:34 -070052void load_volume_table() {
Yifan Hongd81b8e32018-12-17 14:29:06 -080053 if (!ReadDefaultFstab(&fstab)) {
Tao Baobb10e582017-07-22 16:30:34 -070054 LOG(ERROR) << "Failed to read default fstab";
55 return;
56 }
Doug Zongker2810ced2011-02-17 15:55:21 -080057
Yifan Hongd81b8e32018-12-17 14:29:06 -080058 fstab.emplace_back(FstabEntry{
59 .mount_point = "/tmp", .fs_type = "ramdisk", .blk_device = "ramdisk", .length = 0 });
Doug Zongkerd4208f92010-09-20 12:16:13 -070060
Yifan Hongd81b8e32018-12-17 14:29:06 -080061 std::cout << "recovery filesystem table" << std::endl << "=========================" << std::endl;
62 for (size_t i = 0; i < fstab.size(); ++i) {
63 const auto& entry = fstab[i];
64 std::cout << " " << i << " " << entry.mount_point << " "
65 << " " << entry.fs_type << " " << entry.blk_device << " " << entry.length
66 << std::endl;
Tao Baobb10e582017-07-22 16:30:34 -070067 }
Yifan Hongd81b8e32018-12-17 14:29:06 -080068 std::cout << std::endl;
Doug Zongkerd4208f92010-09-20 12:16:13 -070069}
70
Tao Bao3e18f2b2017-09-29 17:11:13 -070071Volume* volume_for_mount_point(const std::string& mount_point) {
Yifan Hongd81b8e32018-12-17 14:29:06 -080072 auto it = std::find_if(fstab.begin(), fstab.end(), [&mount_point](const auto& entry) {
73 return entry.mount_point == mount_point;
74 });
75 return it == fstab.end() ? nullptr : &*it;
Tao Bao3e18f2b2017-09-29 17:11:13 -070076}
77
Tao Baoabb8f772015-07-30 14:43:27 -070078// Mount the volume specified by path at the given mount_point.
Yifan Hongd81b8e32018-12-17 14:29:06 -080079int ensure_path_mounted_at(const std::string& path, const std::string& mount_point) {
80 return android::fs_mgr::EnsurePathMounted(&fstab, path, mount_point) ? 0 : -1;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080081}
82
Yifan Hongd81b8e32018-12-17 14:29:06 -080083int ensure_path_mounted(const std::string& path) {
Tao Baobb10e582017-07-22 16:30:34 -070084 // Mount at the default mount point.
Yifan Hongd81b8e32018-12-17 14:29:06 -080085 return android::fs_mgr::EnsurePathMounted(&fstab, path) ? 0 : -1;
Tao Baoabb8f772015-07-30 14:43:27 -070086}
87
Yifan Hongd81b8e32018-12-17 14:29:06 -080088int ensure_path_unmounted(const std::string& path) {
89 return android::fs_mgr::EnsurePathUnmounted(&fstab, path) ? 0 : -1;
Doug Zongkerd4208f92010-09-20 12:16:13 -070090}
91
Tao Bao3c00fac2017-07-22 16:46:54 -070092static int exec_cmd(const std::vector<std::string>& args) {
93 CHECK_NE(static_cast<size_t>(0), args.size());
94
95 std::vector<char*> argv(args.size());
96 std::transform(args.cbegin(), args.cend(), argv.begin(),
97 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
98 argv.push_back(nullptr);
99
100 pid_t child;
George Burgess IV1cfb3612018-02-17 17:48:45 -0800101 if ((child = fork()) == 0) {
Tao Bao3c00fac2017-07-22 16:46:54 -0700102 execv(argv[0], argv.data());
103 _exit(EXIT_FAILURE);
104 }
105
106 int status;
107 waitpid(child, &status, 0);
108 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
109 LOG(ERROR) << args[0] << " failed with status " << WEXITSTATUS(status);
110 }
111 return WEXITSTATUS(status);
JP Abgrall37aedb32014-06-16 19:07:39 -0700112}
113
Abhishek Arpure4fec8e92017-08-24 15:27:16 +0530114static int64_t get_file_size(int fd, uint64_t reserve_len) {
Jin Qianf3ccad52017-07-24 10:34:35 -0700115 struct stat buf;
116 int ret = fstat(fd, &buf);
117 if (ret) return 0;
118
Abhishek Arpure4fec8e92017-08-24 15:27:16 +0530119 int64_t computed_size;
Jin Qianf3ccad52017-07-24 10:34:35 -0700120 if (S_ISREG(buf.st_mode)) {
121 computed_size = buf.st_size - reserve_len;
122 } else if (S_ISBLK(buf.st_mode)) {
Abhishek Arpure4fec8e92017-08-24 15:27:16 +0530123 uint64_t block_device_size = get_block_device_size(fd);
124 if (block_device_size < reserve_len ||
125 block_device_size > std::numeric_limits<int64_t>::max()) {
126 computed_size = 0;
127 } else {
128 computed_size = block_device_size - reserve_len;
129 }
Jin Qianf3ccad52017-07-24 10:34:35 -0700130 } else {
131 computed_size = 0;
132 }
133
134 return computed_size;
135}
136
Yifan Hongd81b8e32018-12-17 14:29:06 -0800137int format_volume(const std::string& volume, const std::string& directory) {
138 const FstabEntry* v = android::fs_mgr::GetEntryForPath(&fstab, volume);
Tao Bao3c00fac2017-07-22 16:46:54 -0700139 if (v == nullptr) {
140 LOG(ERROR) << "unknown volume \"" << volume << "\"";
141 return -1;
142 }
Yifan Hongd81b8e32018-12-17 14:29:06 -0800143 if (v->fs_type == "ramdisk") {
Tao Bao3c00fac2017-07-22 16:46:54 -0700144 LOG(ERROR) << "can't format_volume \"" << volume << "\"";
145 return -1;
146 }
Yifan Hongd81b8e32018-12-17 14:29:06 -0800147 if (v->mount_point != volume) {
Tao Bao3c00fac2017-07-22 16:46:54 -0700148 LOG(ERROR) << "can't give path \"" << volume << "\" to format_volume";
149 return -1;
150 }
151 if (ensure_path_unmounted(volume) != 0) {
152 LOG(ERROR) << "format_volume: Failed to unmount \"" << v->mount_point << "\"";
153 return -1;
154 }
Yifan Hongd81b8e32018-12-17 14:29:06 -0800155 if (v->fs_type != "ext4" && v->fs_type != "f2fs") {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700156 LOG(ERROR) << "format_volume: fs_type \"" << v->fs_type << "\" unsupported";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800157 return -1;
Tao Bao3c00fac2017-07-22 16:46:54 -0700158 }
159
160 // If there's a key_loc that looks like a path, it should be a block device for storing encryption
161 // metadata. Wipe it too.
Yifan Hongd81b8e32018-12-17 14:29:06 -0800162 if (!v->key_loc.empty() && v->key_loc[0] == '/') {
Tao Bao3c00fac2017-07-22 16:46:54 -0700163 LOG(INFO) << "Wiping " << v->key_loc;
Yifan Hongd81b8e32018-12-17 14:29:06 -0800164 int fd = open(v->key_loc.c_str(), O_WRONLY | O_CREAT, 0644);
Tao Bao3c00fac2017-07-22 16:46:54 -0700165 if (fd == -1) {
166 PLOG(ERROR) << "format_volume: Failed to open " << v->key_loc;
167 return -1;
168 }
169 wipe_block_device(fd, get_file_size(fd));
170 close(fd);
171 }
172
Abhishek Arpure4fec8e92017-08-24 15:27:16 +0530173 int64_t length = 0;
Jin Qiancc100082017-11-17 23:53:22 -0800174 if (v->length > 0) {
Tao Bao3c00fac2017-07-22 16:46:54 -0700175 length = v->length;
Yifan Hongd81b8e32018-12-17 14:29:06 -0800176 } else if (v->length < 0 || v->key_loc == "footer") {
177 android::base::unique_fd fd(open(v->blk_device.c_str(), O_RDONLY));
Tao Bao3c00fac2017-07-22 16:46:54 -0700178 if (fd == -1) {
Abhishek Arpure4fec8e92017-08-24 15:27:16 +0530179 PLOG(ERROR) << "format_volume: failed to open " << v->blk_device;
Tao Bao3c00fac2017-07-22 16:46:54 -0700180 return -1;
181 }
Jin Qiancc100082017-11-17 23:53:22 -0800182 length =
183 get_file_size(fd.get(), v->length ? -v->length : CRYPT_FOOTER_OFFSET);
Tao Bao3c00fac2017-07-22 16:46:54 -0700184 if (length <= 0) {
Jin Qiancc100082017-11-17 23:53:22 -0800185 LOG(ERROR) << "get_file_size: invalid size " << length << " for "
186 << v->blk_device;
Tao Bao3c00fac2017-07-22 16:46:54 -0700187 return -1;
188 }
189 }
190
Yifan Hongd81b8e32018-12-17 14:29:06 -0800191 if (v->fs_type == "ext4") {
Tao Bao3c00fac2017-07-22 16:46:54 -0700192 static constexpr int kBlockSize = 4096;
193 std::vector<std::string> mke2fs_args = {
Jiyong Park69364fe2018-06-20 14:18:18 +0900194 "/system/bin/mke2fs", "-F", "-t", "ext4", "-b", std::to_string(kBlockSize),
Tao Bao3c00fac2017-07-22 16:46:54 -0700195 };
196
197 int raid_stride = v->logical_blk_size / kBlockSize;
198 int raid_stripe_width = v->erase_blk_size / kBlockSize;
199 // stride should be the max of 8KB and logical block size
200 if (v->logical_blk_size != 0 && v->logical_blk_size < 8192) {
201 raid_stride = 8192 / kBlockSize;
202 }
203 if (v->erase_blk_size != 0 && v->logical_blk_size != 0) {
204 mke2fs_args.push_back("-E");
205 mke2fs_args.push_back(
206 android::base::StringPrintf("stride=%d,stripe-width=%d", raid_stride, raid_stripe_width));
207 }
208 mke2fs_args.push_back(v->blk_device);
209 if (length != 0) {
210 mke2fs_args.push_back(std::to_string(length / kBlockSize));
211 }
212
213 int result = exec_cmd(mke2fs_args);
Yifan Hongd81b8e32018-12-17 14:29:06 -0800214 if (result == 0 && !directory.empty()) {
Tao Bao3c00fac2017-07-22 16:46:54 -0700215 std::vector<std::string> e2fsdroid_args = {
Jiyong Park69364fe2018-06-20 14:18:18 +0900216 "/system/bin/e2fsdroid", "-e", "-f", directory, "-a", volume, v->blk_device,
Tao Bao3c00fac2017-07-22 16:46:54 -0700217 };
218 result = exec_cmd(e2fsdroid_args);
219 }
220
221 if (result != 0) {
222 PLOG(ERROR) << "format_volume: Failed to make ext4 on " << v->blk_device;
223 return -1;
224 }
225 return 0;
226 }
227
228 // Has to be f2fs because we checked earlier.
Jaegeuk Kim43582622018-04-02 13:37:35 -0700229 static constexpr int kSectorSize = 4096;
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800230 std::string cmd("/sbin/mkfs.f2fs");
Jaegeuk Kim43582622018-04-02 13:37:35 -0700231 // clang-format off
232 std::vector<std::string> make_f2fs_cmd = {
233 cmd,
Jaegeuk Kim91e631d2018-11-21 11:12:54 -0800234 "-g", "android",
Jaegeuk Kim43582622018-04-02 13:37:35 -0700235 v->blk_device,
236 };
237 // clang-format on
238 if (length >= kSectorSize) {
239 make_f2fs_cmd.push_back(std::to_string(length / kSectorSize));
Tao Bao3c00fac2017-07-22 16:46:54 -0700240 }
241
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800242 int result = exec_cmd(make_f2fs_cmd);
Yifan Hongd81b8e32018-12-17 14:29:06 -0800243 if (result == 0 && !directory.empty()) {
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800244 cmd = "/sbin/sload.f2fs";
Jaegeuk Kim43582622018-04-02 13:37:35 -0700245 // clang-format off
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800246 std::vector<std::string> sload_f2fs_cmd = {
Jaegeuk Kim43582622018-04-02 13:37:35 -0700247 cmd,
248 "-f", directory,
249 "-t", volume,
250 v->blk_device,
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800251 };
Jaegeuk Kim43582622018-04-02 13:37:35 -0700252 // clang-format on
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800253 result = exec_cmd(sload_f2fs_cmd);
254 }
Tao Bao3c00fac2017-07-22 16:46:54 -0700255 if (result != 0) {
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800256 PLOG(ERROR) << "format_volume: Failed " << cmd << " on " << v->blk_device;
Tao Bao3c00fac2017-07-22 16:46:54 -0700257 return -1;
258 }
259 return 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800260}
Doug Zongker239ac6a2013-08-20 16:03:25 -0700261
Yifan Hongd81b8e32018-12-17 14:29:06 -0800262int format_volume(const std::string& volume) {
263 return format_volume(volume, "");
Paul Lawrenced0db3372015-11-05 13:38:40 -0800264}
265
Doug Zongker239ac6a2013-08-20 16:03:25 -0700266int setup_install_mounts() {
Yifan Hongd81b8e32018-12-17 14:29:06 -0800267 if (fstab.empty()) {
Tao Bao57130c42017-05-10 12:11:21 -0700268 LOG(ERROR) << "can't set up install mounts: no fstab loaded";
269 return -1;
270 }
Yifan Hongd81b8e32018-12-17 14:29:06 -0800271 for (const FstabEntry& entry : fstab) {
Tao Bao57130c42017-05-10 12:11:21 -0700272 // We don't want to do anything with "/".
Yifan Hongd81b8e32018-12-17 14:29:06 -0800273 if (entry.mount_point == "/") {
Tao Bao57130c42017-05-10 12:11:21 -0700274 continue;
275 }
276
Yifan Hongd81b8e32018-12-17 14:29:06 -0800277 if (entry.mount_point == "/tmp" || entry.mount_point == "/cache") {
278 if (ensure_path_mounted(entry.mount_point) != 0) {
279 LOG(ERROR) << "Failed to mount " << entry.mount_point;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700280 return -1;
Tao Bao57130c42017-05-10 12:11:21 -0700281 }
282 } else {
Yifan Hongd81b8e32018-12-17 14:29:06 -0800283 if (ensure_path_unmounted(entry.mount_point) != 0) {
284 LOG(ERROR) << "Failed to unmount " << entry.mount_point;
Tao Bao57130c42017-05-10 12:11:21 -0700285 return -1;
286 }
Doug Zongker239ac6a2013-08-20 16:03:25 -0700287 }
Tao Bao57130c42017-05-10 12:11:21 -0700288 }
289 return 0;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700290}
David Anderson2b2f4232018-10-29 18:48:56 -0700291
292bool logical_partitions_mapped() {
Yifan Hong0f339e22018-12-03 13:44:01 -0800293 return android::fs_mgr::LogicalPartitionsMapped();
David Anderson2b2f4232018-10-29 18:48:56 -0700294}
Yifan Hong49327802018-11-26 14:59:09 -0800295
296std::string get_system_root() {
Yifan Hong0f339e22018-12-03 13:44:01 -0800297 return android::fs_mgr::GetSystemRoot();
Yifan Hong49327802018-11-26 14:59:09 -0800298}