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 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 17 | #include "roots.h" |
| 18 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 19 | #include <errno.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <sys/mount.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/types.h> |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 24 | #include <sys/wait.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 25 | #include <unistd.h> |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 26 | #include <ctype.h> |
Doug Zongker | f39989a | 2013-12-11 15:40:28 -0800 | [diff] [blame] | 27 | #include <fcntl.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 28 | |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 29 | #include <fs_mgr.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 30 | #include "common.h" |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 31 | #include "make_ext4fs.h" |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 32 | #include "mounts.h" |
Doug Zongker | f39989a | 2013-12-11 15:40:28 -0800 | [diff] [blame] | 33 | #include "wipe.h" |
| 34 | #include "cryptfs.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 35 | |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 36 | static struct fstab *fstab = NULL; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 37 | |
Kenny Root | 41dda82 | 2012-03-30 20:48:34 -0700 | [diff] [blame] | 38 | extern struct selabel_handle *sehandle; |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 39 | |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 40 | void load_volume_table() |
| 41 | { |
| 42 | int i; |
| 43 | int ret; |
Doug Zongker | 2810ced | 2011-02-17 15:55:21 -0800 | [diff] [blame] | 44 | |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 45 | fstab = fs_mgr_read_fstab("/etc/recovery.fstab"); |
| 46 | if (!fstab) { |
| 47 | LOGE("failed to read /etc/recovery.fstab\n"); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 48 | return; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 50 | |
Sasha Levitskiy | 85ef47d | 2014-04-10 17:11:34 -0700 | [diff] [blame] | 51 | ret = fs_mgr_add_entry(fstab, "/tmp", "ramdisk", "ramdisk"); |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 52 | if (ret < 0 ) { |
| 53 | LOGE("failed to add /tmp entry to fstab\n"); |
| 54 | fs_mgr_free_fstab(fstab); |
| 55 | fstab = NULL; |
| 56 | return; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 57 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 58 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 59 | printf("recovery filesystem table\n"); |
| 60 | printf("=========================\n"); |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 61 | for (i = 0; i < fstab->num_entries; ++i) { |
| 62 | Volume* v = &fstab->recs[i]; |
| 63 | printf(" %d %s %s %s %lld\n", i, v->mount_point, v->fs_type, |
| 64 | v->blk_device, v->length); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 65 | } |
| 66 | printf("\n"); |
| 67 | } |
| 68 | |
| 69 | Volume* volume_for_path(const char* path) { |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 70 | return fs_mgr_get_entry_for_mount_point(fstab, path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 73 | // Mount the volume specified by path at the given mount_point. |
| 74 | int ensure_path_mounted_at(const char* path, const char* mount_point) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 75 | Volume* v = volume_for_path(path); |
| 76 | if (v == NULL) { |
| 77 | LOGE("unknown volume for path [%s]\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 78 | return -1; |
| 79 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 80 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 81 | // the ramdisk is always mounted. |
| 82 | return 0; |
| 83 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 84 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 85 | if (!scan_mounted_volumes()) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 86 | LOGE("failed to scan mounted volumes\n"); |
| 87 | return -1; |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 88 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 89 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 90 | if (!mount_point) { |
| 91 | mount_point = v->mount_point; |
| 92 | } |
| 93 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 94 | MountedVolume* mv = find_mounted_volume_by_mount_point(mount_point); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 95 | if (mv) { |
| 96 | // volume is already mounted |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 97 | return 0; |
| 98 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 99 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 100 | mkdir(mount_point, 0755); // in case it doesn't already exist |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 101 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 102 | if (strcmp(v->fs_type, "ext4") == 0 || |
Mohamad Ayyash | 522ea72 | 2015-06-29 18:57:14 -0700 | [diff] [blame] | 103 | strcmp(v->fs_type, "squashfs") == 0 || |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 104 | strcmp(v->fs_type, "vfat") == 0) { |
Johan Harvyl | 29dd6b6 | 2016-08-08 12:37:56 +0200 | [diff] [blame] | 105 | int result = mount(v->blk_device, mount_point, v->fs_type, v->flags, v->fs_options); |
| 106 | if (result == -1 && fs_mgr_is_formattable(v)) { |
| 107 | LOGE("failed to mount %s (%s), formatting ...\n", |
| 108 | mount_point, strerror(errno)); |
| 109 | bool crypt_footer = fs_mgr_is_encryptable(v) && !strcmp(v->key_loc, "footer"); |
| 110 | if (fs_mgr_do_format(v, crypt_footer) == 0) { |
| 111 | result = mount(v->blk_device, mount_point, v->fs_type, v->flags, v->fs_options); |
| 112 | } else { |
| 113 | LOGE("failed to format %s (%s)\n", mount_point, strerror(errno)); |
| 114 | return -1; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | if (result == -1) { |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 119 | LOGE("failed to mount %s (%s)\n", mount_point, strerror(errno)); |
| 120 | return -1; |
| 121 | } |
| 122 | return 0; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 125 | LOGE("unknown fs_type \"%s\" for %s\n", v->fs_type, mount_point); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 126 | return -1; |
| 127 | } |
| 128 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 129 | int ensure_path_mounted(const char* path) { |
| 130 | // Mount at the default mount point. |
| 131 | return ensure_path_mounted_at(path, nullptr); |
| 132 | } |
| 133 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 134 | int ensure_path_unmounted(const char* path) { |
| 135 | Volume* v = volume_for_path(path); |
| 136 | if (v == NULL) { |
| 137 | LOGE("unknown volume for path [%s]\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 138 | return -1; |
| 139 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 140 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 141 | // the ramdisk is always mounted; you can't unmount it. |
| 142 | return -1; |
| 143 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 144 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 145 | if (!scan_mounted_volumes()) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 146 | LOGE("failed to scan mounted volumes\n"); |
| 147 | return -1; |
| 148 | } |
| 149 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 150 | MountedVolume* mv = find_mounted_volume_by_mount_point(v->mount_point); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 151 | if (mv == NULL) { |
| 152 | // volume is already unmounted |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 153 | return 0; |
| 154 | } |
| 155 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 156 | return unmount_mounted_volume(mv); |
| 157 | } |
| 158 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 159 | static int exec_cmd(const char* path, char* const argv[]) { |
| 160 | int status; |
| 161 | pid_t child; |
| 162 | if ((child = vfork()) == 0) { |
| 163 | execv(path, argv); |
| 164 | _exit(-1); |
| 165 | } |
| 166 | waitpid(child, &status, 0); |
| 167 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 168 | LOGE("%s failed with status %d\n", path, WEXITSTATUS(status)); |
| 169 | } |
| 170 | return WEXITSTATUS(status); |
| 171 | } |
| 172 | |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 173 | int format_volume(const char* volume, const char* directory) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 174 | Volume* v = volume_for_path(volume); |
| 175 | if (v == NULL) { |
| 176 | LOGE("unknown volume \"%s\"\n", volume); |
| 177 | return -1; |
| 178 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 179 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 180 | // you can't format the ramdisk. |
| 181 | LOGE("can't format_volume \"%s\"", volume); |
| 182 | return -1; |
| 183 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 184 | if (strcmp(v->mount_point, volume) != 0) { |
| 185 | LOGE("can't give path \"%s\" to format_volume\n", volume); |
| 186 | return -1; |
| 187 | } |
| 188 | |
| 189 | if (ensure_path_unmounted(volume) != 0) { |
| 190 | LOGE("format_volume failed to unmount \"%s\"\n", v->mount_point); |
| 191 | return -1; |
| 192 | } |
| 193 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 194 | if (strcmp(v->fs_type, "ext4") == 0 || strcmp(v->fs_type, "f2fs") == 0) { |
Doug Zongker | f39989a | 2013-12-11 15:40:28 -0800 | [diff] [blame] | 195 | // if there's a key_loc that looks like a path, it should be a |
| 196 | // block device for storing encryption metadata. wipe it too. |
| 197 | if (v->key_loc != NULL && v->key_loc[0] == '/') { |
| 198 | LOGI("wiping %s\n", v->key_loc); |
| 199 | int fd = open(v->key_loc, O_WRONLY | O_CREAT, 0644); |
| 200 | if (fd < 0) { |
| 201 | LOGE("format_volume: failed to open %s\n", v->key_loc); |
| 202 | return -1; |
| 203 | } |
| 204 | wipe_block_device(fd, get_file_size(fd)); |
| 205 | close(fd); |
| 206 | } |
| 207 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 208 | ssize_t length = 0; |
| 209 | if (v->length != 0) { |
| 210 | length = v->length; |
| 211 | } else if (v->key_loc != NULL && strcmp(v->key_loc, "footer") == 0) { |
| 212 | length = -CRYPT_FOOTER_OFFSET; |
| 213 | } |
| 214 | int result; |
| 215 | if (strcmp(v->fs_type, "ext4") == 0) { |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 216 | result = make_ext4fs_directory(v->blk_device, length, volume, sehandle, directory); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 217 | } else { /* Has to be f2fs because we checked earlier. */ |
| 218 | if (v->key_loc != NULL && strcmp(v->key_loc, "footer") == 0 && length < 0) { |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 219 | LOGE("format_volume: crypt footer + negative length (%zd) not supported on %s\n", length, v->fs_type); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 220 | return -1; |
| 221 | } |
| 222 | if (length < 0) { |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 223 | LOGE("format_volume: negative length (%zd) not supported on %s\n", length, v->fs_type); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 224 | return -1; |
| 225 | } |
| 226 | char *num_sectors; |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 227 | if (asprintf(&num_sectors, "%zd", length / 512) <= 0) { |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 228 | LOGE("format_volume: failed to create %s command for %s\n", v->fs_type, v->blk_device); |
| 229 | return -1; |
| 230 | } |
| 231 | const char *f2fs_path = "/sbin/mkfs.f2fs"; |
| 232 | const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", v->blk_device, num_sectors, NULL}; |
| 233 | |
| 234 | result = exec_cmd(f2fs_path, (char* const*)f2fs_argv); |
| 235 | free(num_sectors); |
| 236 | } |
| 237 | if (result != 0) { |
| 238 | LOGE("format_volume: make %s failed on %s with %d(%s)\n", v->fs_type, v->blk_device, result, strerror(errno)); |
| 239 | return -1; |
| 240 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 241 | return 0; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 242 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 243 | |
| 244 | LOGE("format_volume: fs_type \"%s\" unsupported\n", v->fs_type); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 245 | return -1; |
| 246 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 247 | |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 248 | int format_volume(const char* volume) { |
| 249 | return format_volume(volume, NULL); |
| 250 | } |
| 251 | |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 252 | int setup_install_mounts() { |
| 253 | if (fstab == NULL) { |
| 254 | LOGE("can't set up install mounts: no fstab loaded\n"); |
| 255 | return -1; |
| 256 | } |
| 257 | for (int i = 0; i < fstab->num_entries; ++i) { |
| 258 | Volume* v = fstab->recs + i; |
| 259 | |
| 260 | if (strcmp(v->mount_point, "/tmp") == 0 || |
| 261 | strcmp(v->mount_point, "/cache") == 0) { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 262 | if (ensure_path_mounted(v->mount_point) != 0) { |
| 263 | LOGE("failed to mount %s\n", v->mount_point); |
| 264 | return -1; |
| 265 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 266 | |
| 267 | } else { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 268 | if (ensure_path_unmounted(v->mount_point) != 0) { |
| 269 | LOGE("failed to unmount %s\n", v->mount_point); |
| 270 | return -1; |
| 271 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 272 | } |
| 273 | } |
| 274 | return 0; |
| 275 | } |