San Mehat | bf04185 | 2010-01-04 10:09:16 -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 | |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 17 | #include <dirent.h> |
| 18 | #include <errno.h> |
| 19 | #include <fcntl.h> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
| 23 | #include <unistd.h> |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 24 | |
Ken Sumrall | 9caab76 | 2013-06-11 19:10:20 -0700 | [diff] [blame] | 25 | #include <linux/fs.h> |
| 26 | #include <sys/ioctl.h> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 27 | #include <sys/mman.h> |
| 28 | #include <sys/mount.h> |
| 29 | #include <sys/stat.h> |
| 30 | #include <sys/types.h> |
| 31 | #include <sys/wait.h> |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 32 | |
| 33 | #include <linux/kdev_t.h> |
| 34 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 35 | #include <android-base/logging.h> |
| 36 | #include <android-base/stringprintf.h> |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 37 | #include <selinux/selinux.h> |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 38 | |
Rom Lemarchand | 2ba45aa | 2013-01-16 12:29:28 -0800 | [diff] [blame] | 39 | #include <logwrap/logwrap.h> |
| 40 | |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 41 | #include "Utils.h" |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 42 | #include "Vfat.h" |
Rom Lemarchand | 5593c85 | 2012-12-21 12:41:43 -0800 | [diff] [blame] | 43 | #include "VoldUtil.h" |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 44 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 45 | using android::base::StringPrintf; |
| 46 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 47 | namespace android { |
| 48 | namespace vold { |
| 49 | namespace vfat { |
| 50 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 51 | static const char* kMkfsPath = "/system/bin/newfs_msdos"; |
| 52 | static const char* kFsckPath = "/system/bin/fsck_msdos"; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 53 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 54 | bool IsSupported() { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 55 | return access(kMkfsPath, X_OK) == 0 && access(kFsckPath, X_OK) == 0 && |
| 56 | IsFilesystemSupported("vfat"); |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | status_t Check(const std::string& source) { |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 60 | int pass = 1; |
| 61 | int rc = 0; |
| 62 | do { |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 63 | std::vector<std::string> cmd; |
| 64 | cmd.push_back(kFsckPath); |
| 65 | cmd.push_back("-p"); |
| 66 | cmd.push_back("-f"); |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 67 | cmd.push_back(source); |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 68 | |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 69 | // Fat devices are currently always untrusted |
Paul Crowley | de2d620 | 2018-11-30 11:43:47 -0800 | [diff] [blame] | 70 | rc = ForkExecvp(cmd, nullptr, sFsckUntrustedContext); |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 71 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 72 | if (rc < 0) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 73 | LOG(ERROR) << "Filesystem check failed due to logwrap error"; |
Rom Lemarchand | 2ba45aa | 2013-01-16 12:29:28 -0800 | [diff] [blame] | 74 | errno = EIO; |
| 75 | return -1; |
| 76 | } |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 77 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 78 | switch (rc) { |
| 79 | case 0: |
| 80 | LOG(INFO) << "Filesystem check completed OK"; |
| 81 | return 0; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 82 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 83 | case 2: |
| 84 | LOG(ERROR) << "Filesystem check failed (not a FAT filesystem)"; |
| 85 | errno = ENODATA; |
| 86 | return -1; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 87 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 88 | case 4: |
| 89 | if (pass++ <= 3) { |
| 90 | LOG(WARNING) << "Filesystem modified - rechecking (pass " << pass << ")"; |
| 91 | continue; |
| 92 | } |
| 93 | LOG(ERROR) << "Failing check after too many rechecks"; |
| 94 | errno = EIO; |
| 95 | return -1; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 96 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 97 | case 8: |
| 98 | LOG(ERROR) << "Filesystem check failed (no filesystem)"; |
| 99 | errno = ENODATA; |
| 100 | return -1; |
Mateusz Nowak | 3dd3930 | 2015-08-03 15:48:52 +0200 | [diff] [blame] | 101 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 102 | default: |
| 103 | LOG(ERROR) << "Filesystem check failed (unknown exit code " << rc << ")"; |
| 104 | errno = EIO; |
| 105 | return -1; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 106 | } |
| 107 | } while (0); |
| 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 112 | status_t Mount(const std::string& source, const std::string& target, bool ro, bool remount, |
| 113 | bool executable, int ownerUid, int ownerGid, int permMask, bool createLost) { |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 114 | int rc; |
| 115 | unsigned long flags; |
| 116 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 117 | const char* c_source = source.c_str(); |
| 118 | const char* c_target = target.c_str(); |
| 119 | |
Ravisankar Reddy | 4cc6baf | 2017-07-03 11:25:33 +0900 | [diff] [blame] | 120 | flags = MS_NODEV | MS_NOSUID | MS_DIRSYNC | MS_NOATIME; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 121 | |
Kenny Root | a3e0608 | 2010-08-27 08:31:35 -0700 | [diff] [blame] | 122 | flags |= (executable ? 0 : MS_NOEXEC); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 123 | flags |= (ro ? MS_RDONLY : 0); |
| 124 | flags |= (remount ? MS_REMOUNT : 0); |
| 125 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 126 | auto mountData = |
| 127 | android::base::StringPrintf("utf8,uid=%d,gid=%d,fmask=%o,dmask=%o,shortname=mixed", |
| 128 | ownerUid, ownerGid, permMask, permMask); |
San Mehat | fff0b47 | 2010-01-06 19:19:46 -0800 | [diff] [blame] | 129 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 130 | rc = mount(c_source, c_target, "vfat", flags, mountData.c_str()); |
San Mehat | fff0b47 | 2010-01-06 19:19:46 -0800 | [diff] [blame] | 131 | |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 132 | if (rc && errno == EROFS) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 133 | LOG(ERROR) << source << " appears to be a read only filesystem - retrying mount RO"; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 134 | flags |= MS_RDONLY; |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 135 | rc = mount(c_source, c_target, "vfat", flags, mountData.c_str()); |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 136 | } |
| 137 | |
San Mehat | fff0b47 | 2010-01-06 19:19:46 -0800 | [diff] [blame] | 138 | if (rc == 0 && createLost) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 139 | auto lost_path = android::base::StringPrintf("%s/LOST.DIR", target.c_str()); |
| 140 | if (access(lost_path.c_str(), F_OK)) { |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 141 | /* |
| 142 | * Create a LOST.DIR in the root so we have somewhere to put |
| 143 | * lost cluster chains (fsck_msdos doesn't currently do this) |
| 144 | */ |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 145 | if (mkdir(lost_path.c_str(), 0755)) { |
| 146 | PLOG(ERROR) << "Unable to create LOST.DIR"; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 147 | } |
| 148 | } |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | return rc; |
| 152 | } |
| 153 | |
Mateusz Nowak | a4f48d0 | 2015-08-03 18:06:39 +0200 | [diff] [blame] | 154 | status_t Format(const std::string& source, unsigned long numSectors) { |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 155 | std::vector<std::string> cmd; |
| 156 | cmd.push_back(kMkfsPath); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 157 | cmd.push_back("-O"); |
| 158 | cmd.push_back("android"); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 159 | cmd.push_back("-A"); |
San Mehat | fcf24fe | 2010-03-03 12:37:32 -0800 | [diff] [blame] | 160 | |
| 161 | if (numSectors) { |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 162 | cmd.push_back("-s"); |
Mateusz Nowak | a4f48d0 | 2015-08-03 18:06:39 +0200 | [diff] [blame] | 163 | cmd.push_back(StringPrintf("%lu", numSectors)); |
San Mehat | fcf24fe | 2010-03-03 12:37:32 -0800 | [diff] [blame] | 164 | } |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 165 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 166 | cmd.push_back(source); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 167 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 168 | int rc = ForkExecvp(cmd); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 169 | if (rc < 0) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 170 | LOG(ERROR) << "Filesystem format failed due to logwrap error"; |
Rom Lemarchand | 2ba45aa | 2013-01-16 12:29:28 -0800 | [diff] [blame] | 171 | errno = EIO; |
| 172 | return -1; |
| 173 | } |
| 174 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 175 | if (rc == 0) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 176 | LOG(INFO) << "Filesystem formatted OK"; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 177 | return 0; |
| 178 | } else { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 179 | LOG(ERROR) << "Format failed (unknown exit code " << rc << ")"; |
San Mehat | bf04185 | 2010-01-04 10:09:16 -0800 | [diff] [blame] | 180 | errno = EIO; |
| 181 | return -1; |
| 182 | } |
| 183 | return 0; |
| 184 | } |
Ken Sumrall | 9caab76 | 2013-06-11 19:10:20 -0700 | [diff] [blame] | 185 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 186 | } // namespace vfat |
| 187 | } // namespace vold |
| 188 | } // namespace android |