The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
Tao Bao | e3f09a7 | 2019-10-01 11:55:36 -0700 | [diff] [blame] | 17 | #include "recovery_utils/roots.h" |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 18 | |
Tao Bao | bb10e58 | 2017-07-22 16:30:34 -0700 | [diff] [blame] | 19 | #include <fcntl.h> |
Abhishek Arpure | 4fec8e9 | 2017-08-24 15:27:16 +0530 | [diff] [blame] | 20 | #include <stdint.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 21 | #include <stdlib.h> |
Tao Bao | ad774b2 | 2017-09-29 10:39:08 -0700 | [diff] [blame] | 22 | #include <string.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 25 | #include <sys/wait.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 26 | #include <unistd.h> |
| 27 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 28 | #include <iostream> |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 29 | #include <string> |
| 30 | #include <vector> |
| 31 | |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 32 | #include <android-base/logging.h> |
Daniel Rosenberg | f25b977 | 2019-12-16 18:32:00 -0800 | [diff] [blame] | 33 | #include <android-base/properties.h> |
Jin Qian | ded2dac | 2017-04-21 14:36:12 -0700 | [diff] [blame] | 34 | #include <android-base/stringprintf.h> |
Jin Qian | f3ccad5 | 2017-07-24 10:34:35 -0700 | [diff] [blame] | 35 | #include <android-base/unique_fd.h> |
Eric Biggers | a762e14 | 2021-11-08 16:45:49 -0800 | [diff] [blame] | 36 | #include <ext4_utils/ext4_utils.h> |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 37 | #include <fs_mgr.h> |
Yifan Hong | 0f339e2 | 2018-12-03 13:44:01 -0800 | [diff] [blame] | 38 | #include <fs_mgr/roots.h> |
Tao Bao | de40ba5 | 2016-10-05 23:17:01 -0700 | [diff] [blame] | 39 | |
Tao Bao | 3d69f0d | 2018-12-20 09:44:06 -0800 | [diff] [blame] | 40 | #include "otautil/sysutil.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | |
Tom Cherry | 72a114a | 2019-01-30 15:59:53 -0800 | [diff] [blame] | 42 | using android::fs_mgr::Fstab; |
| 43 | using android::fs_mgr::FstabEntry; |
| 44 | using android::fs_mgr::ReadDefaultFstab; |
| 45 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 46 | static Fstab fstab; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 47 | |
Tianjie Xu | 164c60a | 2019-05-15 13:59:39 -0700 | [diff] [blame] | 48 | constexpr const char* CACHE_ROOT = "/cache"; |
| 49 | |
Tao Bao | bb10e58 | 2017-07-22 16:30:34 -0700 | [diff] [blame] | 50 | void load_volume_table() { |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 51 | if (!ReadDefaultFstab(&fstab)) { |
Tao Bao | bb10e58 | 2017-07-22 16:30:34 -0700 | [diff] [blame] | 52 | LOG(ERROR) << "Failed to read default fstab"; |
| 53 | return; |
| 54 | } |
Doug Zongker | 2810ced | 2011-02-17 15:55:21 -0800 | [diff] [blame] | 55 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 56 | fstab.emplace_back(FstabEntry{ |
Nick Desaulniers | 1cb510d | 2019-10-10 16:33:58 -0700 | [diff] [blame] | 57 | .blk_device = "ramdisk", |
| 58 | .mount_point = "/tmp", |
| 59 | .fs_type = "ramdisk", |
| 60 | .length = 0, |
| 61 | }); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 62 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 63 | std::cout << "recovery filesystem table" << std::endl << "=========================" << std::endl; |
| 64 | for (size_t i = 0; i < fstab.size(); ++i) { |
| 65 | const auto& entry = fstab[i]; |
| 66 | std::cout << " " << i << " " << entry.mount_point << " " |
| 67 | << " " << entry.fs_type << " " << entry.blk_device << " " << entry.length |
| 68 | << std::endl; |
Tao Bao | bb10e58 | 2017-07-22 16:30:34 -0700 | [diff] [blame] | 69 | } |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 70 | std::cout << std::endl; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Tao Bao | 3e18f2b | 2017-09-29 17:11:13 -0700 | [diff] [blame] | 73 | Volume* volume_for_mount_point(const std::string& mount_point) { |
Tom Cherry | 72a114a | 2019-01-30 15:59:53 -0800 | [diff] [blame] | 74 | return android::fs_mgr::GetEntryForMountPoint(&fstab, mount_point); |
Tao Bao | 3e18f2b | 2017-09-29 17:11:13 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 77 | // Mount the volume specified by path at the given mount_point. |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 78 | int ensure_path_mounted_at(const std::string& path, const std::string& mount_point) { |
| 79 | return android::fs_mgr::EnsurePathMounted(&fstab, path, mount_point) ? 0 : -1; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 80 | } |
| 81 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 82 | int ensure_path_mounted(const std::string& path) { |
Tao Bao | bb10e58 | 2017-07-22 16:30:34 -0700 | [diff] [blame] | 83 | // Mount at the default mount point. |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 84 | return android::fs_mgr::EnsurePathMounted(&fstab, path) ? 0 : -1; |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 87 | int ensure_path_unmounted(const std::string& path) { |
| 88 | return android::fs_mgr::EnsurePathUnmounted(&fstab, path) ? 0 : -1; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 91 | static int exec_cmd(const std::vector<std::string>& args) { |
Tao Bao | 3d69f0d | 2018-12-20 09:44:06 -0800 | [diff] [blame] | 92 | CHECK(!args.empty()); |
| 93 | auto argv = StringVectorToNullTerminatedArray(args); |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 94 | |
| 95 | pid_t child; |
George Burgess IV | 1cfb361 | 2018-02-17 17:48:45 -0800 | [diff] [blame] | 96 | if ((child = fork()) == 0) { |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 97 | execv(argv[0], argv.data()); |
| 98 | _exit(EXIT_FAILURE); |
| 99 | } |
| 100 | |
| 101 | int status; |
| 102 | waitpid(child, &status, 0); |
| 103 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 104 | LOG(ERROR) << args[0] << " failed with status " << WEXITSTATUS(status); |
| 105 | } |
| 106 | return WEXITSTATUS(status); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Abhishek Arpure | 4fec8e9 | 2017-08-24 15:27:16 +0530 | [diff] [blame] | 109 | static int64_t get_file_size(int fd, uint64_t reserve_len) { |
Jin Qian | f3ccad5 | 2017-07-24 10:34:35 -0700 | [diff] [blame] | 110 | struct stat buf; |
| 111 | int ret = fstat(fd, &buf); |
| 112 | if (ret) return 0; |
| 113 | |
Abhishek Arpure | 4fec8e9 | 2017-08-24 15:27:16 +0530 | [diff] [blame] | 114 | int64_t computed_size; |
Jin Qian | f3ccad5 | 2017-07-24 10:34:35 -0700 | [diff] [blame] | 115 | if (S_ISREG(buf.st_mode)) { |
| 116 | computed_size = buf.st_size - reserve_len; |
| 117 | } else if (S_ISBLK(buf.st_mode)) { |
Abhishek Arpure | 4fec8e9 | 2017-08-24 15:27:16 +0530 | [diff] [blame] | 118 | uint64_t block_device_size = get_block_device_size(fd); |
| 119 | if (block_device_size < reserve_len || |
| 120 | block_device_size > std::numeric_limits<int64_t>::max()) { |
| 121 | computed_size = 0; |
| 122 | } else { |
| 123 | computed_size = block_device_size - reserve_len; |
| 124 | } |
Jin Qian | f3ccad5 | 2017-07-24 10:34:35 -0700 | [diff] [blame] | 125 | } else { |
| 126 | computed_size = 0; |
| 127 | } |
| 128 | |
| 129 | return computed_size; |
| 130 | } |
| 131 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 132 | int format_volume(const std::string& volume, const std::string& directory) { |
| 133 | const FstabEntry* v = android::fs_mgr::GetEntryForPath(&fstab, volume); |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 134 | if (v == nullptr) { |
| 135 | LOG(ERROR) << "unknown volume \"" << volume << "\""; |
| 136 | return -1; |
| 137 | } |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 138 | if (v->fs_type == "ramdisk") { |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 139 | LOG(ERROR) << "can't format_volume \"" << volume << "\""; |
| 140 | return -1; |
| 141 | } |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 142 | if (v->mount_point != volume) { |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 143 | LOG(ERROR) << "can't give path \"" << volume << "\" to format_volume"; |
| 144 | return -1; |
| 145 | } |
| 146 | if (ensure_path_unmounted(volume) != 0) { |
| 147 | LOG(ERROR) << "format_volume: Failed to unmount \"" << v->mount_point << "\""; |
| 148 | return -1; |
| 149 | } |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 150 | if (v->fs_type != "ext4" && v->fs_type != "f2fs") { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 151 | LOG(ERROR) << "format_volume: fs_type \"" << v->fs_type << "\" unsupported"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 152 | return -1; |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Daniel Rosenberg | f25b977 | 2019-12-16 18:32:00 -0800 | [diff] [blame] | 155 | bool needs_casefold = false; |
| 156 | bool needs_projid = false; |
| 157 | |
| 158 | if (volume == "/data") { |
Martijn Coenen | 5a4a7ff | 2020-04-15 11:52:21 +0200 | [diff] [blame] | 159 | needs_casefold = android::base::GetBoolProperty("external_storage.casefold.enabled", false); |
| 160 | needs_projid = android::base::GetBoolProperty("external_storage.projid.enabled", false); |
Daniel Rosenberg | f25b977 | 2019-12-16 18:32:00 -0800 | [diff] [blame] | 161 | } |
| 162 | |
Abhishek Arpure | 4fec8e9 | 2017-08-24 15:27:16 +0530 | [diff] [blame] | 163 | int64_t length = 0; |
Jin Qian | cc10008 | 2017-11-17 23:53:22 -0800 | [diff] [blame] | 164 | if (v->length > 0) { |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 165 | length = v->length; |
Eric Biggers | a762e14 | 2021-11-08 16:45:49 -0800 | [diff] [blame] | 166 | } else if (v->length < 0) { |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 167 | android::base::unique_fd fd(open(v->blk_device.c_str(), O_RDONLY)); |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 168 | if (fd == -1) { |
Abhishek Arpure | 4fec8e9 | 2017-08-24 15:27:16 +0530 | [diff] [blame] | 169 | PLOG(ERROR) << "format_volume: failed to open " << v->blk_device; |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 170 | return -1; |
| 171 | } |
Eric Biggers | a762e14 | 2021-11-08 16:45:49 -0800 | [diff] [blame] | 172 | length = get_file_size(fd.get(), -v->length); |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 173 | if (length <= 0) { |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 174 | LOG(ERROR) << "get_file_size: invalid size " << length << " for " << v->blk_device; |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 175 | return -1; |
| 176 | } |
| 177 | } |
| 178 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 179 | if (v->fs_type == "ext4") { |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 180 | static constexpr int kBlockSize = 4096; |
| 181 | std::vector<std::string> mke2fs_args = { |
Jiyong Park | 69364fe | 2018-06-20 14:18:18 +0900 | [diff] [blame] | 182 | "/system/bin/mke2fs", "-F", "-t", "ext4", "-b", std::to_string(kBlockSize), |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 183 | }; |
| 184 | |
Daniel Rosenberg | f25b977 | 2019-12-16 18:32:00 -0800 | [diff] [blame] | 185 | // Project ID's require wider inodes. The Quotas themselves are enabled by tune2fs on boot. |
| 186 | if (needs_projid) { |
| 187 | mke2fs_args.push_back("-I"); |
| 188 | mke2fs_args.push_back("512"); |
| 189 | } |
| 190 | |
Jaegeuk Kim | a8d36e1 | 2020-02-11 15:24:54 -0800 | [diff] [blame] | 191 | if (v->fs_mgr_flags.ext_meta_csum) { |
| 192 | mke2fs_args.push_back("-O"); |
| 193 | mke2fs_args.push_back("metadata_csum"); |
| 194 | mke2fs_args.push_back("-O"); |
| 195 | mke2fs_args.push_back("64bit"); |
| 196 | mke2fs_args.push_back("-O"); |
| 197 | mke2fs_args.push_back("extent"); |
| 198 | } |
| 199 | |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 200 | int raid_stride = v->logical_blk_size / kBlockSize; |
| 201 | int raid_stripe_width = v->erase_blk_size / kBlockSize; |
| 202 | // stride should be the max of 8KB and logical block size |
| 203 | if (v->logical_blk_size != 0 && v->logical_blk_size < 8192) { |
| 204 | raid_stride = 8192 / kBlockSize; |
| 205 | } |
| 206 | if (v->erase_blk_size != 0 && v->logical_blk_size != 0) { |
| 207 | mke2fs_args.push_back("-E"); |
| 208 | mke2fs_args.push_back( |
| 209 | android::base::StringPrintf("stride=%d,stripe-width=%d", raid_stride, raid_stripe_width)); |
| 210 | } |
| 211 | mke2fs_args.push_back(v->blk_device); |
| 212 | if (length != 0) { |
| 213 | mke2fs_args.push_back(std::to_string(length / kBlockSize)); |
| 214 | } |
| 215 | |
| 216 | int result = exec_cmd(mke2fs_args); |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 217 | if (result == 0 && !directory.empty()) { |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 218 | std::vector<std::string> e2fsdroid_args = { |
Jiyong Park | 69364fe | 2018-06-20 14:18:18 +0900 | [diff] [blame] | 219 | "/system/bin/e2fsdroid", "-e", "-f", directory, "-a", volume, v->blk_device, |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 220 | }; |
| 221 | result = exec_cmd(e2fsdroid_args); |
| 222 | } |
| 223 | |
| 224 | if (result != 0) { |
| 225 | PLOG(ERROR) << "format_volume: Failed to make ext4 on " << v->blk_device; |
| 226 | return -1; |
| 227 | } |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | // Has to be f2fs because we checked earlier. |
Jaegeuk Kim | 4358262 | 2018-04-02 13:37:35 -0700 | [diff] [blame] | 232 | static constexpr int kSectorSize = 4096; |
Jaegeuk Kim | 4358262 | 2018-04-02 13:37:35 -0700 | [diff] [blame] | 233 | std::vector<std::string> make_f2fs_cmd = { |
Tao Bao | c674dfb | 2018-12-20 14:25:15 -0800 | [diff] [blame] | 234 | "/system/bin/make_f2fs", |
| 235 | "-g", |
| 236 | "android", |
Jaegeuk Kim | 4358262 | 2018-04-02 13:37:35 -0700 | [diff] [blame] | 237 | }; |
Daniel Rosenberg | f25b977 | 2019-12-16 18:32:00 -0800 | [diff] [blame] | 238 | if (needs_projid) { |
| 239 | make_f2fs_cmd.push_back("-O"); |
| 240 | make_f2fs_cmd.push_back("project_quota,extra_attr"); |
| 241 | } |
| 242 | if (needs_casefold) { |
| 243 | make_f2fs_cmd.push_back("-O"); |
| 244 | make_f2fs_cmd.push_back("casefold"); |
| 245 | make_f2fs_cmd.push_back("-C"); |
| 246 | make_f2fs_cmd.push_back("utf8"); |
| 247 | } |
Jaegeuk Kim | 3210600 | 2020-01-14 11:00:37 -0800 | [diff] [blame] | 248 | if (v->fs_mgr_flags.fs_compress) { |
| 249 | make_f2fs_cmd.push_back("-O"); |
| 250 | make_f2fs_cmd.push_back("compression"); |
| 251 | make_f2fs_cmd.push_back("-O"); |
| 252 | make_f2fs_cmd.push_back("extra_attr"); |
| 253 | } |
Daniel Rosenberg | f25b977 | 2019-12-16 18:32:00 -0800 | [diff] [blame] | 254 | make_f2fs_cmd.push_back(v->blk_device); |
Jaegeuk Kim | 4358262 | 2018-04-02 13:37:35 -0700 | [diff] [blame] | 255 | if (length >= kSectorSize) { |
| 256 | make_f2fs_cmd.push_back(std::to_string(length / kSectorSize)); |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Tao Bao | c674dfb | 2018-12-20 14:25:15 -0800 | [diff] [blame] | 259 | if (exec_cmd(make_f2fs_cmd) != 0) { |
| 260 | PLOG(ERROR) << "format_volume: Failed to make_f2fs on " << v->blk_device; |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 261 | return -1; |
| 262 | } |
Tao Bao | c674dfb | 2018-12-20 14:25:15 -0800 | [diff] [blame] | 263 | if (!directory.empty()) { |
| 264 | std::vector<std::string> sload_f2fs_cmd = { |
| 265 | "/system/bin/sload_f2fs", "-f", directory, "-t", volume, v->blk_device, |
| 266 | }; |
| 267 | if (exec_cmd(sload_f2fs_cmd) != 0) { |
| 268 | PLOG(ERROR) << "format_volume: Failed to sload_f2fs on " << v->blk_device; |
| 269 | return -1; |
| 270 | } |
| 271 | } |
Tao Bao | 3c00fac | 2017-07-22 16:46:54 -0700 | [diff] [blame] | 272 | return 0; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 273 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 274 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 275 | int format_volume(const std::string& volume) { |
| 276 | return format_volume(volume, ""); |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 277 | } |
| 278 | |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 279 | int setup_install_mounts() { |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 280 | if (fstab.empty()) { |
Tao Bao | 57130c4 | 2017-05-10 12:11:21 -0700 | [diff] [blame] | 281 | LOG(ERROR) << "can't set up install mounts: no fstab loaded"; |
| 282 | return -1; |
| 283 | } |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 284 | for (const FstabEntry& entry : fstab) { |
Tao Bao | 57130c4 | 2017-05-10 12:11:21 -0700 | [diff] [blame] | 285 | // We don't want to do anything with "/". |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 286 | if (entry.mount_point == "/") { |
Tao Bao | 57130c4 | 2017-05-10 12:11:21 -0700 | [diff] [blame] | 287 | continue; |
| 288 | } |
| 289 | |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 290 | if (entry.mount_point == "/tmp" || entry.mount_point == "/cache") { |
| 291 | if (ensure_path_mounted(entry.mount_point) != 0) { |
| 292 | LOG(ERROR) << "Failed to mount " << entry.mount_point; |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 293 | return -1; |
Tao Bao | 57130c4 | 2017-05-10 12:11:21 -0700 | [diff] [blame] | 294 | } |
| 295 | } else { |
Yifan Hong | d81b8e3 | 2018-12-17 14:29:06 -0800 | [diff] [blame] | 296 | if (ensure_path_unmounted(entry.mount_point) != 0) { |
| 297 | LOG(ERROR) << "Failed to unmount " << entry.mount_point; |
Tao Bao | 57130c4 | 2017-05-10 12:11:21 -0700 | [diff] [blame] | 298 | return -1; |
| 299 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 300 | } |
Tao Bao | 57130c4 | 2017-05-10 12:11:21 -0700 | [diff] [blame] | 301 | } |
| 302 | return 0; |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 303 | } |
Tianjie Xu | 164c60a | 2019-05-15 13:59:39 -0700 | [diff] [blame] | 304 | |
| 305 | bool HasCache() { |
| 306 | CHECK(!fstab.empty()); |
| 307 | static bool has_cache = volume_for_mount_point(CACHE_ROOT) != nullptr; |
| 308 | return has_cache; |
| 309 | } |