blob: 38681c9bb7d2ba4b6ae96eed942b8f2a407736f6 [file] [log] [blame]
San Mehatbf041852010-01-04 10:09:16 -08001/*
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
17#include <stdio.h>
Olivier Bailly37dcda62010-11-16 10:41:53 -080018#include <stdlib.h>
San Mehatbf041852010-01-04 10:09:16 -080019#include <fcntl.h>
20#include <unistd.h>
21#include <errno.h>
22#include <string.h>
23#include <dirent.h>
24#include <errno.h>
25#include <fcntl.h>
26
27#include <sys/types.h>
28#include <sys/stat.h>
29#include <sys/types.h>
30#include <sys/mman.h>
31#include <sys/mount.h>
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080032#include <sys/wait.h>
Ken Sumrall9caab762013-06-11 19:10:20 -070033#include <linux/fs.h>
34#include <sys/ioctl.h>
San Mehatbf041852010-01-04 10:09:16 -080035
36#include <linux/kdev_t.h>
37
38#define LOG_TAG "Vold"
39
Elliott Hughes7e128fb2015-12-04 15:50:53 -080040#include <android-base/logging.h>
41#include <android-base/stringprintf.h>
San Mehatbf041852010-01-04 10:09:16 -080042#include <cutils/log.h>
43#include <cutils/properties.h>
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070044#include <selinux/selinux.h>
San Mehatbf041852010-01-04 10:09:16 -080045
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080046#include <logwrap/logwrap.h>
47
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070048#include "Vfat.h"
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070049#include "Utils.h"
Rom Lemarchand5593c852012-12-21 12:41:43 -080050#include "VoldUtil.h"
San Mehatbf041852010-01-04 10:09:16 -080051
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070052using android::base::StringPrintf;
53
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070054namespace android {
55namespace vold {
56namespace vfat {
57
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070058static const char* kMkfsPath = "/system/bin/newfs_msdos";
59static const char* kFsckPath = "/system/bin/fsck_msdos";
San Mehatbf041852010-01-04 10:09:16 -080060
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070061bool IsSupported() {
62 return access(kMkfsPath, X_OK) == 0
63 && access(kFsckPath, X_OK) == 0
64 && IsFilesystemSupported("vfat");
65}
66
67status_t Check(const std::string& source) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070068 if (access(kFsckPath, X_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -070069 SLOGW("Skipping fs checks\n");
San Mehatbf041852010-01-04 10:09:16 -080070 return 0;
71 }
72
73 int pass = 1;
74 int rc = 0;
75 do {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070076 std::vector<std::string> cmd;
77 cmd.push_back(kFsckPath);
78 cmd.push_back("-p");
79 cmd.push_back("-f");
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070080 cmd.push_back(source);
San Mehatbf041852010-01-04 10:09:16 -080081
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070082 // Fat devices are currently always untrusted
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070083 rc = ForkExecvp(cmd, sFsckUntrustedContext);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070084
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070085 if (rc < 0) {
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -080086 SLOGE("Filesystem check failed due to logwrap error");
87 errno = EIO;
88 return -1;
89 }
San Mehatbf041852010-01-04 10:09:16 -080090
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070091 switch(rc) {
San Mehatbf041852010-01-04 10:09:16 -080092 case 0:
San Mehat97ac40e2010-03-24 10:24:19 -070093 SLOGI("Filesystem check completed OK");
San Mehatbf041852010-01-04 10:09:16 -080094 return 0;
95
96 case 2:
San Mehat97ac40e2010-03-24 10:24:19 -070097 SLOGE("Filesystem check failed (not a FAT filesystem)");
San Mehatbf041852010-01-04 10:09:16 -080098 errno = ENODATA;
99 return -1;
100
101 case 4:
102 if (pass++ <= 3) {
San Mehat97ac40e2010-03-24 10:24:19 -0700103 SLOGW("Filesystem modified - rechecking (pass %d)",
San Mehatbf041852010-01-04 10:09:16 -0800104 pass);
105 continue;
106 }
San Mehat97ac40e2010-03-24 10:24:19 -0700107 SLOGE("Failing check after too many rechecks");
San Mehatbf041852010-01-04 10:09:16 -0800108 errno = EIO;
109 return -1;
110
Mateusz Nowak3dd39302015-08-03 15:48:52 +0200111 case 8:
112 SLOGE("Filesystem check failed (no filesystem)");
113 errno = ENODATA;
114 return -1;
115
San Mehatbf041852010-01-04 10:09:16 -0800116 default:
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700117 SLOGE("Filesystem check failed (unknown exit code %d)", rc);
San Mehatbf041852010-01-04 10:09:16 -0800118 errno = EIO;
119 return -1;
120 }
121 } while (0);
122
123 return 0;
124}
125
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700126status_t Mount(const std::string& source, const std::string& target, bool ro,
127 bool remount, bool executable, int ownerUid, int ownerGid, int permMask,
128 bool createLost) {
San Mehatbf041852010-01-04 10:09:16 -0800129 int rc;
130 unsigned long flags;
San Mehatfff0b472010-01-06 19:19:46 -0800131 char mountData[255];
San Mehatbf041852010-01-04 10:09:16 -0800132
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700133 const char* c_source = source.c_str();
134 const char* c_target = target.c_str();
135
Kenny Roota3e06082010-08-27 08:31:35 -0700136 flags = MS_NODEV | MS_NOSUID | MS_DIRSYNC;
San Mehatbf041852010-01-04 10:09:16 -0800137
Kenny Roota3e06082010-08-27 08:31:35 -0700138 flags |= (executable ? 0 : MS_NOEXEC);
San Mehata19b2502010-01-06 10:33:53 -0800139 flags |= (ro ? MS_RDONLY : 0);
140 flags |= (remount ? MS_REMOUNT : 0);
141
San Mehatfff0b472010-01-06 19:19:46 -0800142 sprintf(mountData,
143 "utf8,uid=%d,gid=%d,fmask=%o,dmask=%o,shortname=mixed",
144 ownerUid, ownerGid, permMask, permMask);
145
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700146 rc = mount(c_source, c_target, "vfat", flags, mountData);
San Mehatfff0b472010-01-06 19:19:46 -0800147
San Mehatbf041852010-01-04 10:09:16 -0800148 if (rc && errno == EROFS) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700149 SLOGE("%s appears to be a read only filesystem - retrying mount RO", c_source);
San Mehatbf041852010-01-04 10:09:16 -0800150 flags |= MS_RDONLY;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700151 rc = mount(c_source, c_target, "vfat", flags, mountData);
San Mehatbf041852010-01-04 10:09:16 -0800152 }
153
San Mehatfff0b472010-01-06 19:19:46 -0800154 if (rc == 0 && createLost) {
San Mehatbf041852010-01-04 10:09:16 -0800155 char *lost_path;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700156 asprintf(&lost_path, "%s/LOST.DIR", c_target);
San Mehatbf041852010-01-04 10:09:16 -0800157 if (access(lost_path, F_OK)) {
158 /*
159 * Create a LOST.DIR in the root so we have somewhere to put
160 * lost cluster chains (fsck_msdos doesn't currently do this)
161 */
162 if (mkdir(lost_path, 0755)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700163 SLOGE("Unable to create LOST.DIR (%s)", strerror(errno));
San Mehatbf041852010-01-04 10:09:16 -0800164 }
165 }
166 free(lost_path);
167 }
168
169 return rc;
170}
171
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200172status_t Format(const std::string& source, unsigned long numSectors) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700173 std::vector<std::string> cmd;
174 cmd.push_back(kMkfsPath);
175 cmd.push_back("-F");
176 cmd.push_back("32");
177 cmd.push_back("-O");
178 cmd.push_back("android");
179 cmd.push_back("-c");
180 cmd.push_back("64");
181 cmd.push_back("-A");
San Mehatfcf24fe2010-03-03 12:37:32 -0800182
183 if (numSectors) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700184 cmd.push_back("-s");
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200185 cmd.push_back(StringPrintf("%lu", numSectors));
San Mehatfcf24fe2010-03-03 12:37:32 -0800186 }
San Mehatbf041852010-01-04 10:09:16 -0800187
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700188 cmd.push_back(source);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700189
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700190 int rc = ForkExecvp(cmd);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700191 if (rc < 0) {
Rom Lemarchand2ba45aa2013-01-16 12:29:28 -0800192 SLOGE("Filesystem format failed due to logwrap error");
193 errno = EIO;
194 return -1;
195 }
196
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700197 if (rc == 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700198 SLOGI("Filesystem formatted OK");
San Mehatbf041852010-01-04 10:09:16 -0800199 return 0;
200 } else {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700201 SLOGE("Format failed (unknown exit code %d)", rc);
San Mehatbf041852010-01-04 10:09:16 -0800202 errno = EIO;
203 return -1;
204 }
205 return 0;
206}
Ken Sumrall9caab762013-06-11 19:10:20 -0700207
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700208} // namespace vfat
209} // namespace vold
210} // namespace android