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 | |
| 17 | #include <errno.h> |
| 18 | #include <stdlib.h> |
| 19 | #include <sys/mount.h> |
| 20 | #include <sys/stat.h> |
| 21 | #include <sys/types.h> |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 22 | #include <sys/wait.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 23 | #include <unistd.h> |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 24 | #include <ctype.h> |
Doug Zongker | f39989a | 2013-12-11 15:40:28 -0800 | [diff] [blame] | 25 | #include <fcntl.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 26 | |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 27 | #include <fs_mgr.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 28 | #include "mtdutils/mtdutils.h" |
| 29 | #include "mtdutils/mounts.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 30 | #include "roots.h" |
| 31 | #include "common.h" |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 32 | #include "make_ext4fs.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 | |
| 85 | int result; |
| 86 | result = scan_mounted_volumes(); |
| 87 | if (result < 0) { |
| 88 | LOGE("failed to scan mounted volumes\n"); |
| 89 | return -1; |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 90 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 91 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 92 | if (!mount_point) { |
| 93 | mount_point = v->mount_point; |
| 94 | } |
| 95 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 96 | const MountedVolume* mv = |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 97 | find_mounted_volume_by_mount_point(mount_point); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 98 | if (mv) { |
| 99 | // volume is already mounted |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 100 | return 0; |
| 101 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 102 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 103 | mkdir(mount_point, 0755); // in case it doesn't already exist |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 104 | |
| 105 | if (strcmp(v->fs_type, "yaffs2") == 0) { |
| 106 | // mount an MTD partition as a YAFFS2 filesystem. |
| 107 | mtd_scan_partitions(); |
| 108 | const MtdPartition* partition; |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 109 | partition = mtd_find_partition_by_name(v->blk_device); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 110 | if (partition == NULL) { |
| 111 | LOGE("failed to find \"%s\" partition to mount at \"%s\"\n", |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 112 | v->blk_device, mount_point); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 113 | return -1; |
| 114 | } |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 115 | return mtd_mount_partition(partition, mount_point, v->fs_type, 0); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 116 | } else if (strcmp(v->fs_type, "ext4") == 0 || |
Mohamad Ayyash | 522ea72 | 2015-06-29 18:57:14 -0700 | [diff] [blame] | 117 | strcmp(v->fs_type, "squashfs") == 0 || |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 118 | strcmp(v->fs_type, "vfat") == 0) { |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 119 | result = mount(v->blk_device, mount_point, v->fs_type, |
Gaelle Nassiet | e853e96 | 2015-03-23 17:51:53 +0100 | [diff] [blame] | 120 | v->flags, v->fs_options); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 121 | if (result == 0) return 0; |
| 122 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 123 | LOGE("failed to mount %s (%s)\n", mount_point, strerror(errno)); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 124 | return -1; |
| 125 | } |
| 126 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 127 | 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] | 128 | return -1; |
| 129 | } |
| 130 | |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 131 | int ensure_path_mounted(const char* path) { |
| 132 | // Mount at the default mount point. |
| 133 | return ensure_path_mounted_at(path, nullptr); |
| 134 | } |
| 135 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 136 | int ensure_path_unmounted(const char* path) { |
| 137 | Volume* v = volume_for_path(path); |
| 138 | if (v == NULL) { |
| 139 | LOGE("unknown volume for path [%s]\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 140 | return -1; |
| 141 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 142 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 143 | // the ramdisk is always mounted; you can't unmount it. |
| 144 | return -1; |
| 145 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 146 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 147 | int result; |
| 148 | result = scan_mounted_volumes(); |
| 149 | if (result < 0) { |
| 150 | LOGE("failed to scan mounted volumes\n"); |
| 151 | return -1; |
| 152 | } |
| 153 | |
| 154 | const MountedVolume* mv = |
| 155 | find_mounted_volume_by_mount_point(v->mount_point); |
| 156 | if (mv == NULL) { |
| 157 | // volume is already unmounted |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 158 | return 0; |
| 159 | } |
| 160 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 161 | return unmount_mounted_volume(mv); |
| 162 | } |
| 163 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 164 | static int exec_cmd(const char* path, char* const argv[]) { |
| 165 | int status; |
| 166 | pid_t child; |
| 167 | if ((child = vfork()) == 0) { |
| 168 | execv(path, argv); |
| 169 | _exit(-1); |
| 170 | } |
| 171 | waitpid(child, &status, 0); |
| 172 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 173 | LOGE("%s failed with status %d\n", path, WEXITSTATUS(status)); |
| 174 | } |
| 175 | return WEXITSTATUS(status); |
| 176 | } |
| 177 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 178 | int format_volume(const char* volume) { |
| 179 | Volume* v = volume_for_path(volume); |
| 180 | if (v == NULL) { |
| 181 | LOGE("unknown volume \"%s\"\n", volume); |
| 182 | return -1; |
| 183 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 184 | if (strcmp(v->fs_type, "ramdisk") == 0) { |
| 185 | // you can't format the ramdisk. |
| 186 | LOGE("can't format_volume \"%s\"", volume); |
| 187 | return -1; |
| 188 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 189 | if (strcmp(v->mount_point, volume) != 0) { |
| 190 | LOGE("can't give path \"%s\" to format_volume\n", volume); |
| 191 | return -1; |
| 192 | } |
| 193 | |
| 194 | if (ensure_path_unmounted(volume) != 0) { |
| 195 | LOGE("format_volume failed to unmount \"%s\"\n", v->mount_point); |
| 196 | return -1; |
| 197 | } |
| 198 | |
| 199 | if (strcmp(v->fs_type, "yaffs2") == 0 || strcmp(v->fs_type, "mtd") == 0) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 200 | mtd_scan_partitions(); |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 201 | const MtdPartition* partition = mtd_find_partition_by_name(v->blk_device); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 202 | if (partition == NULL) { |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 203 | LOGE("format_volume: no MTD partition \"%s\"\n", v->blk_device); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 204 | return -1; |
| 205 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 206 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 207 | MtdWriteContext *write = mtd_write_partition(partition); |
| 208 | if (write == NULL) { |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 209 | LOGW("format_volume: can't open MTD \"%s\"\n", v->blk_device); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 210 | return -1; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 211 | } else if (mtd_erase_blocks(write, -1) == (off_t) -1) { |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 212 | LOGW("format_volume: can't erase MTD \"%s\"\n", v->blk_device); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 213 | mtd_write_close(write); |
| 214 | return -1; |
| 215 | } else if (mtd_write_close(write)) { |
Ken Sumrall | f35d1ce | 2013-02-13 12:59:35 -0800 | [diff] [blame] | 216 | LOGW("format_volume: can't close MTD \"%s\"\n", v->blk_device); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 217 | return -1; |
| 218 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 219 | return 0; |
| 220 | } |
| 221 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 222 | 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] | 223 | // if there's a key_loc that looks like a path, it should be a |
| 224 | // block device for storing encryption metadata. wipe it too. |
| 225 | if (v->key_loc != NULL && v->key_loc[0] == '/') { |
| 226 | LOGI("wiping %s\n", v->key_loc); |
| 227 | int fd = open(v->key_loc, O_WRONLY | O_CREAT, 0644); |
| 228 | if (fd < 0) { |
| 229 | LOGE("format_volume: failed to open %s\n", v->key_loc); |
| 230 | return -1; |
| 231 | } |
| 232 | wipe_block_device(fd, get_file_size(fd)); |
| 233 | close(fd); |
| 234 | } |
| 235 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 236 | ssize_t length = 0; |
| 237 | if (v->length != 0) { |
| 238 | length = v->length; |
| 239 | } else if (v->key_loc != NULL && strcmp(v->key_loc, "footer") == 0) { |
| 240 | length = -CRYPT_FOOTER_OFFSET; |
| 241 | } |
| 242 | int result; |
| 243 | if (strcmp(v->fs_type, "ext4") == 0) { |
| 244 | result = make_ext4fs(v->blk_device, length, volume, sehandle); |
| 245 | } else { /* Has to be f2fs because we checked earlier. */ |
| 246 | 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] | 247 | 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] | 248 | return -1; |
| 249 | } |
| 250 | if (length < 0) { |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 251 | 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] | 252 | return -1; |
| 253 | } |
| 254 | char *num_sectors; |
JP Abgrall | 78d458c | 2014-08-04 16:44:33 -0700 | [diff] [blame] | 255 | if (asprintf(&num_sectors, "%zd", length / 512) <= 0) { |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 256 | LOGE("format_volume: failed to create %s command for %s\n", v->fs_type, v->blk_device); |
| 257 | return -1; |
| 258 | } |
| 259 | const char *f2fs_path = "/sbin/mkfs.f2fs"; |
| 260 | const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", v->blk_device, num_sectors, NULL}; |
| 261 | |
| 262 | result = exec_cmd(f2fs_path, (char* const*)f2fs_argv); |
| 263 | free(num_sectors); |
| 264 | } |
| 265 | if (result != 0) { |
| 266 | LOGE("format_volume: make %s failed on %s with %d(%s)\n", v->fs_type, v->blk_device, result, strerror(errno)); |
| 267 | return -1; |
| 268 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 269 | return 0; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 270 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 271 | |
| 272 | 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] | 273 | return -1; |
| 274 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 275 | |
| 276 | int setup_install_mounts() { |
| 277 | if (fstab == NULL) { |
| 278 | LOGE("can't set up install mounts: no fstab loaded\n"); |
| 279 | return -1; |
| 280 | } |
| 281 | for (int i = 0; i < fstab->num_entries; ++i) { |
| 282 | Volume* v = fstab->recs + i; |
| 283 | |
| 284 | if (strcmp(v->mount_point, "/tmp") == 0 || |
| 285 | strcmp(v->mount_point, "/cache") == 0) { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 286 | if (ensure_path_mounted(v->mount_point) != 0) { |
| 287 | LOGE("failed to mount %s\n", v->mount_point); |
| 288 | return -1; |
| 289 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 290 | |
| 291 | } else { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 292 | if (ensure_path_unmounted(v->mount_point) != 0) { |
| 293 | LOGE("failed to unmount %s\n", v->mount_point); |
| 294 | return -1; |
| 295 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 296 | } |
| 297 | } |
| 298 | return 0; |
| 299 | } |