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) { |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 105 | if (mount(v->blk_device, mount_point, v->fs_type, v->flags, v->fs_options) == -1) { |
| 106 | LOGE("failed to mount %s (%s)\n", mount_point, strerror(errno)); |
| 107 | return -1; |
| 108 | } |
| 109 | return 0; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 112 | 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] | 113 | return -1; |
| 114 | } |
| 115 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 116 | int ensure_path_mounted(const char* path) { |
| 117 | // Mount at the default mount point. |
| 118 | return ensure_path_mounted_at(path, nullptr); |
| 119 | } |
| 120 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 121 | int ensure_path_unmounted(const char* path) { |
| 122 | Volume* v = volume_for_path(path); |
| 123 | if (v == NULL) { |
| 124 | LOGE("unknown volume for path [%s]\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 125 | return -1; |
| 126 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 127 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 128 | // the ramdisk is always mounted; you can't unmount it. |
| 129 | return -1; |
| 130 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 131 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 132 | if (!scan_mounted_volumes()) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 133 | LOGE("failed to scan mounted volumes\n"); |
| 134 | return -1; |
| 135 | } |
| 136 | |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 137 | MountedVolume* mv = find_mounted_volume_by_mount_point(v->mount_point); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 138 | if (mv == NULL) { |
| 139 | // volume is already unmounted |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 140 | return 0; |
| 141 | } |
| 142 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 143 | return unmount_mounted_volume(mv); |
| 144 | } |
| 145 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 146 | static int exec_cmd(const char* path, char* const argv[]) { |
| 147 | int status; |
| 148 | pid_t child; |
| 149 | if ((child = vfork()) == 0) { |
| 150 | execv(path, argv); |
| 151 | _exit(-1); |
| 152 | } |
| 153 | waitpid(child, &status, 0); |
| 154 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 155 | LOGE("%s failed with status %d\n", path, WEXITSTATUS(status)); |
| 156 | } |
| 157 | return WEXITSTATUS(status); |
| 158 | } |
| 159 | |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 160 | int format_volume(const char* volume, const char* directory) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 161 | Volume* v = volume_for_path(volume); |
| 162 | if (v == NULL) { |
| 163 | LOGE("unknown volume \"%s\"\n", volume); |
| 164 | return -1; |
| 165 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 166 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 167 | // you can't format the ramdisk. |
| 168 | LOGE("can't format_volume \"%s\"", volume); |
| 169 | return -1; |
| 170 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 171 | if (strcmp(v->mount_point, volume) != 0) { |
| 172 | LOGE("can't give path \"%s\" to format_volume\n", volume); |
| 173 | return -1; |
| 174 | } |
| 175 | |
| 176 | if (ensure_path_unmounted(volume) != 0) { |
| 177 | LOGE("format_volume failed to unmount \"%s\"\n", v->mount_point); |
| 178 | return -1; |
| 179 | } |
| 180 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 181 | 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] | 182 | // if there's a key_loc that looks like a path, it should be a |
| 183 | // block device for storing encryption metadata. wipe it too. |
| 184 | if (v->key_loc != NULL && v->key_loc[0] == '/') { |
| 185 | LOGI("wiping %s\n", v->key_loc); |
| 186 | int fd = open(v->key_loc, O_WRONLY | O_CREAT, 0644); |
| 187 | if (fd < 0) { |
| 188 | LOGE("format_volume: failed to open %s\n", v->key_loc); |
| 189 | return -1; |
| 190 | } |
| 191 | wipe_block_device(fd, get_file_size(fd)); |
| 192 | close(fd); |
| 193 | } |
| 194 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 195 | ssize_t length = 0; |
| 196 | if (v->length != 0) { |
| 197 | length = v->length; |
| 198 | } else if (v->key_loc != NULL && strcmp(v->key_loc, "footer") == 0) { |
| 199 | length = -CRYPT_FOOTER_OFFSET; |
| 200 | } |
| 201 | int result; |
| 202 | if (strcmp(v->fs_type, "ext4") == 0) { |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 203 | result = make_ext4fs_directory(v->blk_device, length, volume, sehandle, directory); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 204 | } else { /* Has to be f2fs because we checked earlier. */ |
| 205 | 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] | 206 | 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] | 207 | return -1; |
| 208 | } |
| 209 | if (length < 0) { |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 210 | 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] | 211 | return -1; |
| 212 | } |
| 213 | char *num_sectors; |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 214 | if (asprintf(&num_sectors, "%zd", length / 512) <= 0) { |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 215 | LOGE("format_volume: failed to create %s command for %s\n", v->fs_type, v->blk_device); |
| 216 | return -1; |
| 217 | } |
| 218 | const char *f2fs_path = "/sbin/mkfs.f2fs"; |
| 219 | const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", v->blk_device, num_sectors, NULL}; |
| 220 | |
| 221 | result = exec_cmd(f2fs_path, (char* const*)f2fs_argv); |
| 222 | free(num_sectors); |
| 223 | } |
| 224 | if (result != 0) { |
| 225 | LOGE("format_volume: make %s failed on %s with %d(%s)\n", v->fs_type, v->blk_device, result, strerror(errno)); |
| 226 | return -1; |
| 227 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 228 | return 0; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 229 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 230 | |
| 231 | 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] | 232 | return -1; |
| 233 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 234 | |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 235 | int format_volume(const char* volume) { |
| 236 | return format_volume(volume, NULL); |
| 237 | } |
| 238 | |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 239 | int setup_install_mounts() { |
| 240 | if (fstab == NULL) { |
| 241 | LOGE("can't set up install mounts: no fstab loaded\n"); |
| 242 | return -1; |
| 243 | } |
| 244 | for (int i = 0; i < fstab->num_entries; ++i) { |
| 245 | Volume* v = fstab->recs + i; |
| 246 | |
| 247 | if (strcmp(v->mount_point, "/tmp") == 0 || |
| 248 | strcmp(v->mount_point, "/cache") == 0) { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 249 | if (ensure_path_mounted(v->mount_point) != 0) { |
| 250 | LOGE("failed to mount %s\n", v->mount_point); |
| 251 | return -1; |
| 252 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 253 | |
| 254 | } else { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 255 | if (ensure_path_unmounted(v->mount_point) != 0) { |
| 256 | LOGE("failed to unmount %s\n", v->mount_point); |
| 257 | return -1; |
| 258 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 259 | } |
| 260 | } |
| 261 | return 0; |
| 262 | } |