| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2008 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 |  | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 17 | #define TRACE_TAG ADB | 
| Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 18 |  | 
|  | 19 | #include "sysdeps.h" | 
|  | 20 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 21 | #include <errno.h> | 
| Mark Salyzyn | 60299df | 2014-04-30 09:10:31 -0700 | [diff] [blame] | 22 | #include <fcntl.h> | 
| Yabin Cui | d6bd9bf | 2015-01-02 14:02:14 -0800 | [diff] [blame] | 23 | #include <mntent.h> | 
| Mark Salyzyn | 60299df | 2014-04-30 09:10:31 -0700 | [diff] [blame] | 24 | #include <stdio.h> | 
|  | 25 | #include <stdlib.h> | 
|  | 26 | #include <string.h> | 
|  | 27 | #include <sys/mount.h> | 
|  | 28 | #include <unistd.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 29 |  | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 30 | #include <string> | 
|  | 31 |  | 
| Elliott Hughes | ffdec18 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 32 | #include <android-base/properties.h> | 
|  | 33 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 34 | #include "adb.h" | 
| Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 35 | #include "adb_io.h" | 
| Elliott Hughes | 5830577 | 2015-04-17 13:57:15 -0700 | [diff] [blame] | 36 | #include "adb_utils.h" | 
| Daniel Rosenberg | d6eba89 | 2015-06-29 17:30:28 -0700 | [diff] [blame] | 37 | #include "fs_mgr.h" | 
|  | 38 |  | 
| Elliott Hughes | 5677c23 | 2015-05-07 23:37:40 -0700 | [diff] [blame] | 39 | // Returns the device used to mount a directory in /proc/mounts. | 
| Daniel Rosenberg | d6eba89 | 2015-06-29 17:30:28 -0700 | [diff] [blame] | 40 | static std::string find_proc_mount(const char* dir) { | 
| Elliott Hughes | 5677c23 | 2015-05-07 23:37:40 -0700 | [diff] [blame] | 41 | std::unique_ptr<FILE, int(*)(FILE*)> fp(setmntent("/proc/mounts", "r"), endmntent); | 
|  | 42 | if (!fp) { | 
|  | 43 | return ""; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 44 | } | 
| Elliott Hughes | 5677c23 | 2015-05-07 23:37:40 -0700 | [diff] [blame] | 45 |  | 
|  | 46 | mntent* e; | 
|  | 47 | while ((e = getmntent(fp.get())) != nullptr) { | 
|  | 48 | if (strcmp(dir, e->mnt_dir) == 0) { | 
|  | 49 | return e->mnt_fsname; | 
| Yabin Cui | d6bd9bf | 2015-01-02 14:02:14 -0800 | [diff] [blame] | 50 | } | 
|  | 51 | } | 
| Elliott Hughes | 5677c23 | 2015-05-07 23:37:40 -0700 | [diff] [blame] | 52 | return ""; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 53 | } | 
|  | 54 |  | 
| Daniel Rosenberg | d6eba89 | 2015-06-29 17:30:28 -0700 | [diff] [blame] | 55 | // Returns the device used to mount a directory in the fstab. | 
|  | 56 | static std::string find_fstab_mount(const char* dir) { | 
| Bowgo Tsai | 66ee277 | 2017-03-10 16:43:02 +0800 | [diff] [blame] | 57 | std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(), | 
|  | 58 | fs_mgr_free_fstab); | 
|  | 59 | struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab.get(), dir); | 
|  | 60 | return rec ? rec->blk_device : ""; | 
| Daniel Rosenberg | d6eba89 | 2015-06-29 17:30:28 -0700 | [diff] [blame] | 61 | } | 
|  | 62 |  | 
|  | 63 | // The proc entry for / is full of lies, so check fstab instead. | 
|  | 64 | // /proc/mounts lists rootfs and /dev/root, neither of which is what we want. | 
|  | 65 | static std::string find_mount(const char* dir) { | 
|  | 66 | if (strcmp(dir, "/") == 0) { | 
|  | 67 | return find_fstab_mount(dir); | 
|  | 68 | } else { | 
|  | 69 | return find_proc_mount(dir); | 
|  | 70 | } | 
|  | 71 | } | 
|  | 72 |  | 
| Elliott Hughes | 9aa4fda | 2015-05-11 11:55:25 -0700 | [diff] [blame] | 73 | bool make_block_device_writable(const std::string& dev) { | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 74 | int fd = unix_open(dev.c_str(), O_RDONLY | O_CLOEXEC); | 
|  | 75 | if (fd == -1) { | 
| Elliott Hughes | 9aa4fda | 2015-05-11 11:55:25 -0700 | [diff] [blame] | 76 | return false; | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 77 | } | 
|  | 78 |  | 
| Paul Lawrence | 982089d | 2014-12-03 15:31:57 -0800 | [diff] [blame] | 79 | int OFF = 0; | 
| Elliott Hughes | 9aa4fda | 2015-05-11 11:55:25 -0700 | [diff] [blame] | 80 | bool result = (ioctl(fd, BLKROSET, &OFF) != -1); | 
| Spencer Low | 6ac5d7d | 2015-05-22 20:09:06 -0700 | [diff] [blame] | 81 | unix_close(fd); | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 82 | return result; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 83 | } | 
|  | 84 |  | 
| Elliott Hughes | 9aa4fda | 2015-05-11 11:55:25 -0700 | [diff] [blame] | 85 | static bool remount_partition(int fd, const char* dir) { | 
|  | 86 | if (!directory_exists(dir)) { | 
| Elliott Hughes | 5677c23 | 2015-05-07 23:37:40 -0700 | [diff] [blame] | 87 | return true; | 
|  | 88 | } | 
| Elliott Hughes | 9aa4fda | 2015-05-11 11:55:25 -0700 | [diff] [blame] | 89 | std::string dev = find_mount(dir); | 
|  | 90 | if (dev.empty()) { | 
|  | 91 | return true; | 
|  | 92 | } | 
|  | 93 | if (!make_block_device_writable(dev)) { | 
|  | 94 | WriteFdFmt(fd, "remount of %s failed; couldn't make block device %s writable: %s\n", | 
|  | 95 | dir, dev.c_str(), strerror(errno)); | 
|  | 96 | return false; | 
|  | 97 | } | 
|  | 98 | if (mount(dev.c_str(), dir, "none", MS_REMOUNT, nullptr) == -1) { | 
|  | 99 | WriteFdFmt(fd, "remount of %s failed: %s\n", dir, strerror(errno)); | 
| Elliott Hughes | 5677c23 | 2015-05-07 23:37:40 -0700 | [diff] [blame] | 100 | return false; | 
|  | 101 | } | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 102 | return true; | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 103 | } | 
|  | 104 |  | 
|  | 105 | void remount_service(int fd, void* cookie) { | 
| Nick Kralevich | 268eb4f | 2015-02-25 15:48:06 -0800 | [diff] [blame] | 106 | if (getuid() != 0) { | 
| Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 107 | WriteFdExactly(fd, "Not running as root. Try \"adb root\" first.\n"); | 
| Nick Kralevich | 268eb4f | 2015-02-25 15:48:06 -0800 | [diff] [blame] | 108 | adb_close(fd); | 
|  | 109 | return; | 
|  | 110 | } | 
|  | 111 |  | 
| Elliott Hughes | ffdec18 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 112 | bool system_verified = !(android::base::GetProperty("partition.system.verified", "").empty()); | 
|  | 113 | bool vendor_verified = !(android::base::GetProperty("partition.vendor.verified", "").empty()); | 
| Paul Lawrence | 3463755 | 2014-10-27 10:37:59 -0700 | [diff] [blame] | 114 |  | 
|  | 115 | if (system_verified || vendor_verified) { | 
|  | 116 | // Allow remount but warn of likely bad effects | 
|  | 117 | bool both = system_verified && vendor_verified; | 
| Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 118 | WriteFdFmt(fd, | 
|  | 119 | "dm_verity is enabled on the %s%s%s partition%s.\n", | 
|  | 120 | system_verified ? "system" : "", | 
|  | 121 | both ? " and " : "", | 
|  | 122 | vendor_verified ? "vendor" : "", | 
|  | 123 | both ? "s" : ""); | 
| Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 124 | WriteFdExactly(fd, | 
|  | 125 | "Use \"adb disable-verity\" to disable verity.\n" | 
|  | 126 | "If you do not, remount may succeed, however, you will still " | 
|  | 127 | "not be able to write to these volumes.\n"); | 
| Paul Lawrence | 3463755 | 2014-10-27 10:37:59 -0700 | [diff] [blame] | 128 | } | 
|  | 129 |  | 
| Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 130 | bool success = true; | 
| Elliott Hughes | ffdec18 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 131 | if (android::base::GetBoolProperty("ro.build.system_root_image", false)) { | 
| Daniel Rosenberg | d6eba89 | 2015-06-29 17:30:28 -0700 | [diff] [blame] | 132 | success &= remount_partition(fd, "/"); | 
|  | 133 | } else { | 
|  | 134 | success &= remount_partition(fd, "/system"); | 
|  | 135 | } | 
| Elliott Hughes | 9aa4fda | 2015-05-11 11:55:25 -0700 | [diff] [blame] | 136 | success &= remount_partition(fd, "/vendor"); | 
|  | 137 | success &= remount_partition(fd, "/oem"); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 138 |  | 
| Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 139 | WriteFdExactly(fd, success ? "remount succeeded\n" : "remount failed\n"); | 
| Daniel Rosenberg | 686bce6 | 2014-06-30 20:29:40 -0700 | [diff] [blame] | 140 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 141 | adb_close(fd); | 
|  | 142 | } |