blob: 17921e8eefb04bb3350a1a50be417a1ead188d80 [file] [log] [blame]
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001/*
2 * Copyright (C) 2015 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
Jeff Sharkeydeb24052015-03-02 21:01:40 -080017#include "Utils.h"
Paul Crowley56292ef2017-10-20 08:07:53 -070018
Jeff Sharkeydeb24052015-03-02 21:01:40 -080019#include "Process.h"
Paul Crowley56292ef2017-10-20 08:07:53 -070020#include "sehandle.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080021
Paul Crowley298fa322018-10-30 15:59:24 -070022#include <android-base/chrono_utils.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080023#include <android-base/file.h>
24#include <android-base/logging.h>
Tom Cherryd6127ef2017-06-15 17:13:56 -070025#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080026#include <android-base/stringprintf.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070027#include <android-base/strings.h>
Sudheer Shanka40ab6742018-09-18 13:07:45 -070028#include <android-base/unique_fd.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080029#include <cutils/fs.h>
Jeff Sharkey9c484982015-03-31 10:35:33 -070030#include <logwrap/logwrap.h>
Tom Cherryd6127ef2017-06-15 17:13:56 -070031#include <private/android_filesystem_config.h>
Martijn Coenenaee40512020-02-18 16:29:25 +010032#include <private/android_projectid_config.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080033
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070034#include <dirent.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080035#include <fcntl.h>
36#include <linux/fs.h>
Martijn Coenen879fa802020-02-11 12:37:25 +010037#include <linux/posix_acl.h>
38#include <linux/posix_acl_xattr.h>
Sudheer Shanka89ddf992018-09-25 14:22:07 -070039#include <mntent.h>
40#include <stdio.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080041#include <stdlib.h>
42#include <sys/mount.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080043#include <sys/stat.h>
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070044#include <sys/statvfs.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070045#include <sys/sysmacros.h>
46#include <sys/types.h>
47#include <sys/wait.h>
Martijn Coenen879fa802020-02-11 12:37:25 +010048#include <sys/xattr.h>
Paul Crowley747b4212019-04-05 04:09:57 -070049#include <unistd.h>
Paul Crowley298fa322018-10-30 15:59:24 -070050
Martijn Coenen816f4d92020-02-18 15:06:37 +010051#include <filesystem>
Sudheer Shanka89ddf992018-09-25 14:22:07 -070052#include <list>
Paul Crowley14c8c072018-09-18 13:30:21 -070053#include <mutex>
Martijn Coenen04bb17f2020-02-10 23:48:11 +010054#include <regex>
Paul Crowley298fa322018-10-30 15:59:24 -070055#include <thread>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080056
57#ifndef UMOUNT_NOFOLLOW
Paul Crowley14c8c072018-09-18 13:30:21 -070058#define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */
Jeff Sharkeydeb24052015-03-02 21:01:40 -080059#endif
60
Paul Crowley298fa322018-10-30 15:59:24 -070061using namespace std::chrono_literals;
Martijn Coenenba9868b2020-01-31 15:49:24 +010062using android::base::EndsWith;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070063using android::base::ReadFileToString;
Martijn Coenen13ff6682019-12-24 12:57:16 +010064using android::base::StartsWith;
Jeff Sharkey9c484982015-03-31 10:35:33 -070065using android::base::StringPrintf;
Nikita Ioffedcee5c12020-06-12 12:59:45 +010066using android::base::unique_fd;
Jeff Sharkey9c484982015-03-31 10:35:33 -070067
Jeff Sharkeydeb24052015-03-02 21:01:40 -080068namespace android {
69namespace vold {
70
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070071security_context_t sBlkidContext = nullptr;
72security_context_t sBlkidUntrustedContext = nullptr;
73security_context_t sFsckContext = nullptr;
74security_context_t sFsckUntrustedContext = nullptr;
75
Paul Crowley56292ef2017-10-20 08:07:53 -070076bool sSleepOnUnmount = true;
77
Jeff Sharkey9c484982015-03-31 10:35:33 -070078static const char* kBlkidPath = "/system/bin/blkid";
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070079static const char* kKeyPath = "/data/misc/vold";
Jeff Sharkey9c484982015-03-31 10:35:33 -070080
Alistair Delvaff1fc9b2020-05-14 16:35:03 -070081static const char* kProcDevices = "/proc/devices";
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070082static const char* kProcFilesystems = "/proc/filesystems";
83
Martijn Coenen04bb17f2020-02-10 23:48:11 +010084static const char* kAndroidDir = "/Android/";
85static const char* kAppDataDir = "/Android/data/";
86static const char* kAppMediaDir = "/Android/media/";
87static const char* kAppObbDir = "/Android/obb/";
88
Ricky Wai07e64a42020-02-11 14:31:24 +000089static const char* kMediaProviderCtx = "u:r:mediaprovider:";
90static const char* kMediaProviderAppCtx = "u:r:mediaprovider_app:";
91
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -060092// Lock used to protect process-level SELinux changes from racing with each
93// other between multiple threads.
94static std::mutex kSecurityLock;
95
Nikita Ioffedcee5c12020-06-12 12:59:45 +010096std::string GetFuseMountPathForUser(userid_t user_id, const std::string& relative_upper_path) {
97 return StringPrintf("/mnt/user/%d/%s", user_id, relative_upper_path.c_str());
98}
99
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800100status_t CreateDeviceNode(const std::string& path, dev_t dev) {
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -0600101 std::lock_guard<std::mutex> lock(kSecurityLock);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800102 const char* cpath = path.c_str();
103 status_t res = 0;
104
105 char* secontext = nullptr;
106 if (sehandle) {
107 if (!selabel_lookup(sehandle, &secontext, cpath, S_IFBLK)) {
108 setfscreatecon(secontext);
109 }
110 }
111
112 mode_t mode = 0660 | S_IFBLK;
113 if (mknod(cpath, mode, dev) < 0) {
114 if (errno != EEXIST) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700115 PLOG(ERROR) << "Failed to create device node for " << major(dev) << ":" << minor(dev)
116 << " at " << path;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800117 res = -errno;
118 }
119 }
120
121 if (secontext) {
122 setfscreatecon(nullptr);
123 freecon(secontext);
124 }
125
126 return res;
127}
128
129status_t DestroyDeviceNode(const std::string& path) {
130 const char* cpath = path.c_str();
131 if (TEMP_FAILURE_RETRY(unlink(cpath))) {
132 return -errno;
133 } else {
134 return OK;
135 }
136}
137
Martijn Coenen442bb832020-02-18 13:44:59 +0100138// Sets a default ACL on the directory.
Martijn Coenen1129b812020-06-16 14:58:52 +0200139int SetDefaultAcl(const std::string& path, mode_t mode, uid_t uid, gid_t gid,
140 std::vector<gid_t> additionalGids) {
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700141 if (IsSdcardfsUsed()) {
Martijn Coenen879fa802020-02-11 12:37:25 +0100142 // sdcardfs magically takes care of this
143 return OK;
144 }
145
Martijn Coenen1129b812020-06-16 14:58:52 +0200146 size_t num_entries = 3 + (additionalGids.size() > 0 ? additionalGids.size() + 1 : 0);
147 size_t size = sizeof(posix_acl_xattr_header) + num_entries * sizeof(posix_acl_xattr_entry);
Martijn Coenen879fa802020-02-11 12:37:25 +0100148 auto buf = std::make_unique<uint8_t[]>(size);
149
150 posix_acl_xattr_header* acl_header = reinterpret_cast<posix_acl_xattr_header*>(buf.get());
151 acl_header->a_version = POSIX_ACL_XATTR_VERSION;
152
153 posix_acl_xattr_entry* entry =
154 reinterpret_cast<posix_acl_xattr_entry*>(buf.get() + sizeof(posix_acl_xattr_header));
155
Martijn Coenen1129b812020-06-16 14:58:52 +0200156 int tag_index = 0;
157
158 entry[tag_index].e_tag = ACL_USER_OBJ;
Martijn Coenen442bb832020-02-18 13:44:59 +0100159 // The existing mode_t mask has the ACL in the lower 9 bits:
160 // the lowest 3 for "other", the next 3 the group, the next 3 for the owner
161 // Use the mode_t masks to get these bits out, and shift them to get the
162 // correct value per entity.
163 //
164 // Eg if mode_t = 0700, rwx for the owner, then & S_IRWXU >> 6 results in 7
Martijn Coenen1129b812020-06-16 14:58:52 +0200165 entry[tag_index].e_perm = (mode & S_IRWXU) >> 6;
166 entry[tag_index].e_id = uid;
167 tag_index++;
Martijn Coenen879fa802020-02-11 12:37:25 +0100168
Martijn Coenen1129b812020-06-16 14:58:52 +0200169 entry[tag_index].e_tag = ACL_GROUP_OBJ;
170 entry[tag_index].e_perm = (mode & S_IRWXG) >> 3;
171 entry[tag_index].e_id = gid;
172 tag_index++;
Martijn Coenen879fa802020-02-11 12:37:25 +0100173
Martijn Coenen1129b812020-06-16 14:58:52 +0200174 if (additionalGids.size() > 0) {
175 for (gid_t additional_gid : additionalGids) {
176 entry[tag_index].e_tag = ACL_GROUP;
177 entry[tag_index].e_perm = (mode & S_IRWXG) >> 3;
178 entry[tag_index].e_id = additional_gid;
179 tag_index++;
180 }
181
182 entry[tag_index].e_tag = ACL_MASK;
183 entry[tag_index].e_perm = (mode & S_IRWXG) >> 3;
184 entry[tag_index].e_id = 0;
185 tag_index++;
186 }
187
188 entry[tag_index].e_tag = ACL_OTHER;
189 entry[tag_index].e_perm = mode & S_IRWXO;
190 entry[tag_index].e_id = 0;
Martijn Coenen879fa802020-02-11 12:37:25 +0100191
192 int ret = setxattr(path.c_str(), XATTR_NAME_POSIX_ACL_DEFAULT, acl_header, size, 0);
193
194 if (ret != 0) {
195 PLOG(ERROR) << "Failed to set default ACL on " << path;
196 }
197
198 return ret;
199}
200
Martijn Coenen5fe1b162020-02-06 18:57:47 +0100201int SetQuotaInherit(const std::string& path) {
202 unsigned long flags;
203
204 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), O_RDONLY | O_CLOEXEC)));
205 if (fd == -1) {
206 PLOG(ERROR) << "Failed to open " << path << " to set project id inheritance.";
207 return -1;
208 }
209
210 int ret = ioctl(fd, FS_IOC_GETFLAGS, &flags);
211 if (ret == -1) {
212 PLOG(ERROR) << "Failed to get flags for " << path << " to set project id inheritance.";
213 return ret;
214 }
215
216 flags |= FS_PROJINHERIT_FL;
217
218 ret = ioctl(fd, FS_IOC_SETFLAGS, &flags);
219 if (ret == -1) {
220 PLOG(ERROR) << "Failed to set flags for " << path << " to set project id inheritance.";
221 return ret;
222 }
223
224 return 0;
225}
226
227int SetQuotaProjectId(const std::string& path, long projectId) {
Martijn Coenenfb42bc42020-01-16 01:25:27 +0100228 struct fsxattr fsx;
229
230 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(path.c_str(), O_RDONLY | O_CLOEXEC)));
231 if (fd == -1) {
232 PLOG(ERROR) << "Failed to open " << path << " to set project id.";
233 return -1;
234 }
235
236 int ret = ioctl(fd, FS_IOC_FSGETXATTR, &fsx);
237 if (ret == -1) {
238 PLOG(ERROR) << "Failed to get extended attributes for " << path << " to get project id.";
239 return ret;
240 }
241
242 fsx.fsx_projid = projectId;
243 return ioctl(fd, FS_IOC_FSSETXATTR, &fsx);
244}
245
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100246int PrepareDirWithProjectId(const std::string& path, mode_t mode, uid_t uid, gid_t gid,
247 long projectId) {
248 int ret = fs_prepare_dir(path.c_str(), mode, uid, gid);
249
250 if (ret != 0) {
251 return ret;
Martijn Coenen13ff6682019-12-24 12:57:16 +0100252 }
Martijn Coenenba9868b2020-01-31 15:49:24 +0100253
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700254 if (!IsSdcardfsUsed()) {
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100255 ret = SetQuotaProjectId(path, projectId);
Martijn Coenen13ff6682019-12-24 12:57:16 +0100256 }
257
258 return ret;
259}
260
Martijn Coenen816f4d92020-02-18 15:06:37 +0100261static int FixupAppDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid, long projectId) {
262 namespace fs = std::filesystem;
263
264 // Setup the directory itself correctly
265 int ret = PrepareDirWithProjectId(path, mode, uid, gid, projectId);
266 if (ret != OK) {
267 return ret;
268 }
269
270 // Fixup all of its file entries
271 for (const auto& itEntry : fs::directory_iterator(path)) {
272 ret = lchown(itEntry.path().c_str(), uid, gid);
273 if (ret != 0) {
274 return ret;
275 }
276
277 ret = chmod(itEntry.path().c_str(), mode);
278 if (ret != 0) {
279 return ret;
280 }
281
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700282 if (!IsSdcardfsUsed()) {
Martijn Coenen816f4d92020-02-18 15:06:37 +0100283 ret = SetQuotaProjectId(itEntry.path(), projectId);
284 if (ret != 0) {
285 return ret;
286 }
287 }
288 }
289
290 return OK;
291}
292
293int PrepareAppDirFromRoot(const std::string& path, const std::string& root, int appUid,
294 bool fixupExisting) {
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100295 long projectId;
296 size_t pos;
297 int ret = 0;
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700298 bool sdcardfsSupport = IsSdcardfsUsed();
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100299
300 // Make sure the Android/ directories exist and are setup correctly
301 ret = PrepareAndroidDirs(root);
302 if (ret != 0) {
303 LOG(ERROR) << "Failed to prepare Android/ directories.";
304 return ret;
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100305 }
306
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100307 // Now create the application-specific subdir(s)
308 // path is something like /data/media/0/Android/data/com.foo/files
309 // First, chop off the volume root, eg /data/media/0
310 std::string pathFromRoot = path.substr(root.length());
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100311
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100312 uid_t uid = appUid;
313 gid_t gid = AID_MEDIA_RW;
Martijn Coenen1129b812020-06-16 14:58:52 +0200314 std::vector<gid_t> additionalGids;
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100315 std::string appDir;
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100316
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100317 // Check that the next part matches one of the allowed Android/ dirs
318 if (StartsWith(pathFromRoot, kAppDataDir)) {
319 appDir = kAppDataDir;
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700320 if (!sdcardfsSupport) {
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100321 gid = AID_EXT_DATA_RW;
Martijn Coenen1129b812020-06-16 14:58:52 +0200322 // Also add the app's own UID as a group; since apps belong to a group
323 // that matches their UID, this ensures that they will always have access to
324 // the files created in these dirs, even if they are created by other processes
325 additionalGids.push_back(uid);
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100326 }
327 } else if (StartsWith(pathFromRoot, kAppMediaDir)) {
328 appDir = kAppMediaDir;
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700329 if (!sdcardfsSupport) {
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100330 gid = AID_MEDIA_RW;
331 }
Ricky Waie50ddb72020-02-17 18:57:01 +0000332 } else if (StartsWith(pathFromRoot, kAppObbDir)) {
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100333 appDir = kAppObbDir;
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700334 if (!sdcardfsSupport) {
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100335 gid = AID_EXT_OBB_RW;
Martijn Coenen1129b812020-06-16 14:58:52 +0200336 // See comments for kAppDataDir above
337 additionalGids.push_back(uid);
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100338 }
339 } else {
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100340 LOG(ERROR) << "Invalid application directory: " << path;
341 return -EINVAL;
342 }
343
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100344 // mode = 770, plus sticky bit on directory to inherit GID when apps
345 // create subdirs
346 mode_t mode = S_IRWXU | S_IRWXG | S_ISGID;
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100347 // the project ID for application-specific directories is directly
348 // derived from their uid
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100349
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100350 // Chop off the generic application-specific part, eg /Android/data/
351 // this leaves us with something like com.foo/files/
352 std::string leftToCreate = pathFromRoot.substr(appDir.length());
353 if (!EndsWith(leftToCreate, "/")) {
354 leftToCreate += "/";
355 }
356 std::string pathToCreate = root + appDir;
357 int depth = 0;
Martijn Coenenaee40512020-02-18 16:29:25 +0100358 // Derive initial project ID
359 if (appDir == kAppDataDir || appDir == kAppMediaDir) {
360 projectId = uid - AID_APP_START + PROJECT_ID_EXT_DATA_START;
361 } else if (appDir == kAppObbDir) {
362 projectId = uid - AID_APP_START + PROJECT_ID_EXT_OBB_START;
363 }
364
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100365 while ((pos = leftToCreate.find('/')) != std::string::npos) {
366 std::string component = leftToCreate.substr(0, pos + 1);
367 leftToCreate = leftToCreate.erase(0, pos + 1);
368 pathToCreate = pathToCreate + component;
369
370 if (appDir == kAppDataDir && depth == 1 && component == "cache/") {
371 // All dirs use the "app" project ID, except for the cache dirs in
372 // Android/data, eg Android/data/com.foo/cache
373 // Note that this "sticks" - eg subdirs of this dir need the same
374 // project ID.
Martijn Coenenaee40512020-02-18 16:29:25 +0100375 projectId = uid - AID_APP_START + PROJECT_ID_EXT_CACHE_START;
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100376 }
Martijn Coenen816f4d92020-02-18 15:06:37 +0100377
378 if (fixupExisting && access(pathToCreate.c_str(), F_OK) == 0) {
379 // Fixup all files in this existing directory with the correct UID/GID
380 // and project ID.
381 ret = FixupAppDir(pathToCreate, mode, uid, gid, projectId);
382 } else {
383 ret = PrepareDirWithProjectId(pathToCreate, mode, uid, gid, projectId);
384 }
385
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100386 if (ret != 0) {
387 return ret;
388 }
389
390 if (depth == 0) {
391 // Set the default ACL on the top-level application-specific directories,
392 // to ensure that even if applications run with a umask of 0077,
393 // new directories within these directories will allow the GID
394 // specified here to write; this is necessary for apps like
395 // installers and MTP, that require access here.
396 //
397 // See man (5) acl for more details.
Martijn Coenen1129b812020-06-16 14:58:52 +0200398 ret = SetDefaultAcl(pathToCreate, mode, uid, gid, additionalGids);
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100399 if (ret != 0) {
400 return ret;
401 }
Martijn Coenen9171fcc2020-03-11 11:51:45 +0100402
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700403 if (!sdcardfsSupport) {
Martijn Coenen9171fcc2020-03-11 11:51:45 +0100404 // Set project ID inheritance, so that future subdirectories inherit the
405 // same project ID
406 ret = SetQuotaInherit(pathToCreate);
407 if (ret != 0) {
408 return ret;
409 }
410 }
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100411 }
412
413 depth++;
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100414 }
415
Martijn Coenenb5a31c92020-02-13 23:30:38 +0100416 return OK;
Martijn Coenen04bb17f2020-02-10 23:48:11 +0100417}
418
Daniel Rosenberg14a4b972020-08-12 18:31:43 -0700419int SetAttrs(const std::string& path, unsigned int attrs) {
420 unsigned long flags;
421 android::base::unique_fd fd(
422 TEMP_FAILURE_RETRY(open(path.c_str(), O_RDONLY | O_NONBLOCK | O_CLOEXEC)));
423
424 if (fd == -1) {
425 PLOG(ERROR) << "Failed to open " << path;
426 return -1;
427 }
428
429 if (ioctl(fd, FS_IOC_GETFLAGS, (void*)&flags)) {
430 PLOG(ERROR) << "Failed to get flags for " << path;
431 return -1;
432 }
433
434 if ((flags & attrs) == attrs) return 0;
435 flags |= attrs;
436 if (ioctl(fd, FS_IOC_SETFLAGS, (void*)&flags)) {
437 PLOG(ERROR) << "Failed to set flags for " << path << "(0x" << std::hex << attrs << ")";
438 return -1;
439 }
440 return 0;
441}
442
443status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid,
444 unsigned int attrs) {
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -0600445 std::lock_guard<std::mutex> lock(kSecurityLock);
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700446 const char* cpath = path.c_str();
447
448 char* secontext = nullptr;
449 if (sehandle) {
450 if (!selabel_lookup(sehandle, &secontext, cpath, S_IFDIR)) {
451 setfscreatecon(secontext);
452 }
453 }
454
455 int res = fs_prepare_dir(cpath, mode, uid, gid);
456
457 if (secontext) {
458 setfscreatecon(nullptr);
459 freecon(secontext);
460 }
461
Daniel Rosenberg14a4b972020-08-12 18:31:43 -0700462 if (res) return -errno;
463 if (attrs) res = SetAttrs(path, attrs);
464
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700465 if (res == 0) {
466 return OK;
467 } else {
468 return -errno;
469 }
470}
471
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800472status_t ForceUnmount(const std::string& path) {
473 const char* cpath = path.c_str();
474 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
475 return OK;
476 }
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700477 // Apps might still be handling eject request, so wait before
478 // we start sending signals
Paul Crowley56292ef2017-10-20 08:07:53 -0700479 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700480
Jeff Sharkey3472e522017-10-06 18:02:53 -0600481 KillProcessesWithOpenFiles(path, SIGINT);
Paul Crowley56292ef2017-10-20 08:07:53 -0700482 if (sSleepOnUnmount) sleep(5);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700483 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
484 return OK;
485 }
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700486
Jeff Sharkey3472e522017-10-06 18:02:53 -0600487 KillProcessesWithOpenFiles(path, SIGTERM);
Paul Crowley56292ef2017-10-20 08:07:53 -0700488 if (sSleepOnUnmount) sleep(5);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800489 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
490 return OK;
491 }
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700492
Jeff Sharkey3472e522017-10-06 18:02:53 -0600493 KillProcessesWithOpenFiles(path, SIGKILL);
Paul Crowley56292ef2017-10-20 08:07:53 -0700494 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700495 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
496 return OK;
497 }
Zim3623a212019-07-19 16:46:53 +0100498 PLOG(INFO) << "ForceUnmount failed";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800499 return -errno;
500}
501
Ricky Wai07e64a42020-02-11 14:31:24 +0000502status_t KillProcessesWithMountPrefix(const std::string& path) {
503 if (KillProcessesWithMounts(path, SIGINT) == 0) {
504 return OK;
505 }
506 if (sSleepOnUnmount) sleep(5);
507
508 if (KillProcessesWithMounts(path, SIGTERM) == 0) {
509 return OK;
510 }
511 if (sSleepOnUnmount) sleep(5);
512
513 if (KillProcessesWithMounts(path, SIGKILL) == 0) {
514 return OK;
515 }
516 if (sSleepOnUnmount) sleep(5);
517
518 // Send SIGKILL a second time to determine if we've
519 // actually killed everyone mount
520 if (KillProcessesWithMounts(path, SIGKILL) == 0) {
521 return OK;
522 }
523 PLOG(ERROR) << "Failed to kill processes using " << path;
524 return -EBUSY;
525}
526
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700527status_t KillProcessesUsingPath(const std::string& path) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600528 if (KillProcessesWithOpenFiles(path, SIGINT) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700529 return OK;
530 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700531 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700532
Jeff Sharkey3472e522017-10-06 18:02:53 -0600533 if (KillProcessesWithOpenFiles(path, SIGTERM) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700534 return OK;
535 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700536 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700537
Jeff Sharkey3472e522017-10-06 18:02:53 -0600538 if (KillProcessesWithOpenFiles(path, SIGKILL) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700539 return OK;
540 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700541 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700542
543 // Send SIGKILL a second time to determine if we've
544 // actually killed everyone with open files
Jeff Sharkey3472e522017-10-06 18:02:53 -0600545 if (KillProcessesWithOpenFiles(path, SIGKILL) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700546 return OK;
547 }
548 PLOG(ERROR) << "Failed to kill processes using " << path;
549 return -EBUSY;
550}
551
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700552status_t BindMount(const std::string& source, const std::string& target) {
Sudheer Shanka023b5392019-02-06 12:39:19 -0800553 if (UnmountTree(target) < 0) {
554 return -errno;
555 }
556 if (TEMP_FAILURE_RETRY(mount(source.c_str(), target.c_str(), nullptr, MS_BIND, nullptr)) < 0) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700557 PLOG(ERROR) << "Failed to bind mount " << source << " to " << target;
558 return -errno;
559 }
560 return OK;
561}
562
Sudheer Shanka023b5392019-02-06 12:39:19 -0800563status_t Symlink(const std::string& target, const std::string& linkpath) {
564 if (Unlink(linkpath) < 0) {
565 return -errno;
566 }
567 if (TEMP_FAILURE_RETRY(symlink(target.c_str(), linkpath.c_str())) < 0) {
568 PLOG(ERROR) << "Failed to create symlink " << linkpath << " to " << target;
569 return -errno;
570 }
571 return OK;
572}
573
574status_t Unlink(const std::string& linkpath) {
575 if (TEMP_FAILURE_RETRY(unlink(linkpath.c_str())) < 0 && errno != EINVAL && errno != ENOENT) {
576 PLOG(ERROR) << "Failed to unlink " << linkpath;
577 return -errno;
578 }
579 return OK;
580}
581
Sudheer Shankaf9b38a52019-02-14 19:09:51 +0000582status_t CreateDir(const std::string& dir, mode_t mode) {
583 struct stat sb;
584 if (TEMP_FAILURE_RETRY(stat(dir.c_str(), &sb)) == 0) {
585 if (S_ISDIR(sb.st_mode)) {
586 return OK;
587 } else if (TEMP_FAILURE_RETRY(unlink(dir.c_str())) == -1) {
588 PLOG(ERROR) << "Failed to unlink " << dir;
589 return -errno;
590 }
591 } else if (errno != ENOENT) {
592 PLOG(ERROR) << "Failed to stat " << dir;
593 return -errno;
594 }
Sudheer Shanka6d285ce2019-02-19 14:12:20 -0800595 if (TEMP_FAILURE_RETRY(mkdir(dir.c_str(), mode)) == -1 && errno != EEXIST) {
Sudheer Shankaf9b38a52019-02-14 19:09:51 +0000596 PLOG(ERROR) << "Failed to mkdir " << dir;
597 return -errno;
598 }
599 return OK;
600}
601
Jeff Sharkey3472e522017-10-06 18:02:53 -0600602bool FindValue(const std::string& raw, const std::string& key, std::string* value) {
603 auto qual = key + "=\"";
Paul Crowley95abfa02019-02-05 15:33:34 -0800604 size_t start = 0;
605 while (true) {
606 start = raw.find(qual, start);
607 if (start == std::string::npos) return false;
608 if (start == 0 || raw[start - 1] == ' ') {
609 break;
610 }
611 start += 1;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600612 }
Jeff Sharkey3472e522017-10-06 18:02:53 -0600613 start += qual.length();
614
615 auto end = raw.find("\"", start);
616 if (end == std::string::npos) return false;
617
618 *value = raw.substr(start, end - start);
619 return true;
620}
621
Paul Crowley14c8c072018-09-18 13:30:21 -0700622static status_t readMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
623 std::string* fsLabel, bool untrusted) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600624 fsType->clear();
625 fsUuid->clear();
626 fsLabel->clear();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700627
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700628 std::vector<std::string> cmd;
629 cmd.push_back(kBlkidPath);
630 cmd.push_back("-c");
631 cmd.push_back("/dev/null");
Jeff Sharkeyeddf9bd2015-08-12 16:04:35 -0700632 cmd.push_back("-s");
633 cmd.push_back("TYPE");
634 cmd.push_back("-s");
635 cmd.push_back("UUID");
636 cmd.push_back("-s");
637 cmd.push_back("LABEL");
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700638 cmd.push_back(path);
639
640 std::vector<std::string> output;
Paul Crowleyde2d6202018-11-30 11:43:47 -0800641 status_t res = ForkExecvp(cmd, &output, untrusted ? sBlkidUntrustedContext : sBlkidContext);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700642 if (res != OK) {
643 LOG(WARNING) << "blkid failed to identify " << path;
644 return res;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700645 }
646
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700647 for (const auto& line : output) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700648 // Extract values from blkid output, if defined
Jeff Sharkey3472e522017-10-06 18:02:53 -0600649 FindValue(line, "TYPE", fsType);
650 FindValue(line, "UUID", fsUuid);
651 FindValue(line, "LABEL", fsLabel);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700652 }
653
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700654 return OK;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700655}
656
Paul Crowley14c8c072018-09-18 13:30:21 -0700657status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
658 std::string* fsLabel) {
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700659 return readMetadata(path, fsType, fsUuid, fsLabel, false);
660}
661
Paul Crowley14c8c072018-09-18 13:30:21 -0700662status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid,
663 std::string* fsLabel) {
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700664 return readMetadata(path, fsType, fsUuid, fsLabel, true);
665}
666
Paul Crowleyde2d6202018-11-30 11:43:47 -0800667static std::vector<const char*> ConvertToArgv(const std::vector<std::string>& args) {
668 std::vector<const char*> argv;
669 argv.reserve(args.size() + 1);
670 for (const auto& arg : args) {
671 if (argv.empty()) {
672 LOG(DEBUG) << arg;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700673 } else {
Paul Crowleyde2d6202018-11-30 11:43:47 -0800674 LOG(DEBUG) << " " << arg;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700675 }
Paul Crowleyde2d6202018-11-30 11:43:47 -0800676 argv.emplace_back(arg.data());
Jeff Sharkey9c484982015-03-31 10:35:33 -0700677 }
Paul Crowleyde2d6202018-11-30 11:43:47 -0800678 argv.emplace_back(nullptr);
679 return argv;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700680}
681
Paul Crowleyde2d6202018-11-30 11:43:47 -0800682static status_t ReadLinesFromFdAndLog(std::vector<std::string>* output,
683 android::base::unique_fd ufd) {
684 std::unique_ptr<FILE, int (*)(FILE*)> fp(android::base::Fdopen(std::move(ufd), "r"), fclose);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700685 if (!fp) {
Paul Crowleyde2d6202018-11-30 11:43:47 -0800686 PLOG(ERROR) << "fdopen in ReadLinesFromFdAndLog";
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700687 return -errno;
688 }
Paul Crowleyde2d6202018-11-30 11:43:47 -0800689 if (output) output->clear();
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700690 char line[1024];
Paul Crowleyde2d6202018-11-30 11:43:47 -0800691 while (fgets(line, sizeof(line), fp.get()) != nullptr) {
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -0700692 LOG(DEBUG) << line;
Paul Crowleyde2d6202018-11-30 11:43:47 -0800693 if (output) output->emplace_back(line);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700694 }
Paul Crowleyde2d6202018-11-30 11:43:47 -0800695 return OK;
696}
697
698status_t ForkExecvp(const std::vector<std::string>& args, std::vector<std::string>* output,
699 security_context_t context) {
700 auto argv = ConvertToArgv(args);
701
Paul Crowleye6d76632018-11-30 11:43:47 -0800702 android::base::unique_fd pipe_read, pipe_write;
703 if (!android::base::Pipe(&pipe_read, &pipe_write)) {
704 PLOG(ERROR) << "Pipe in ForkExecvp";
Paul Crowleyde2d6202018-11-30 11:43:47 -0800705 return -errno;
706 }
Paul Crowleyde2d6202018-11-30 11:43:47 -0800707
708 pid_t pid = fork();
709 if (pid == 0) {
710 if (context) {
711 if (setexeccon(context)) {
Paul Crowleye6d76632018-11-30 11:43:47 -0800712 LOG(ERROR) << "Failed to setexeccon in ForkExecvp";
Paul Crowleyde2d6202018-11-30 11:43:47 -0800713 abort();
714 }
715 }
716 pipe_read.reset();
Paul Crowleybe857bf2018-12-07 12:23:25 -0800717 if (dup2(pipe_write.get(), STDOUT_FILENO) == -1) {
718 PLOG(ERROR) << "dup2 in ForkExecvp";
719 _exit(EXIT_FAILURE);
720 }
Paul Crowleye6d76632018-11-30 11:43:47 -0800721 pipe_write.reset();
Paul Crowleyde2d6202018-11-30 11:43:47 -0800722 execvp(argv[0], const_cast<char**>(argv.data()));
Paul Crowleye6d76632018-11-30 11:43:47 -0800723 PLOG(ERROR) << "exec in ForkExecvp";
Paul Crowleyde2d6202018-11-30 11:43:47 -0800724 _exit(EXIT_FAILURE);
725 }
726 if (pid == -1) {
727 PLOG(ERROR) << "fork in ForkExecvp";
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700728 return -errno;
729 }
730
Paul Crowleyde2d6202018-11-30 11:43:47 -0800731 pipe_write.reset();
732 auto st = ReadLinesFromFdAndLog(output, std::move(pipe_read));
733 if (st != 0) return st;
734
735 int status;
736 if (waitpid(pid, &status, 0) == -1) {
737 PLOG(ERROR) << "waitpid in ForkExecvp";
738 return -errno;
739 }
740 if (!WIFEXITED(status)) {
741 LOG(ERROR) << "Process did not exit normally, status: " << status;
742 return -ECHILD;
743 }
744 if (WEXITSTATUS(status)) {
745 LOG(ERROR) << "Process exited with code: " << WEXITSTATUS(status);
746 return WEXITSTATUS(status);
747 }
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700748 return OK;
749}
750
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700751pid_t ForkExecvpAsync(const std::vector<std::string>& args) {
Paul Crowleyde2d6202018-11-30 11:43:47 -0800752 auto argv = ConvertToArgv(args);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700753
754 pid_t pid = fork();
755 if (pid == 0) {
756 close(STDIN_FILENO);
757 close(STDOUT_FILENO);
758 close(STDERR_FILENO);
759
Paul Crowleyde2d6202018-11-30 11:43:47 -0800760 execvp(argv[0], const_cast<char**>(argv.data()));
761 PLOG(ERROR) << "exec in ForkExecvpAsync";
762 _exit(EXIT_FAILURE);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700763 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700764 if (pid == -1) {
Paul Crowleyde2d6202018-11-30 11:43:47 -0800765 PLOG(ERROR) << "fork in ForkExecvpAsync";
766 return -1;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700767 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700768 return pid;
769}
770
Jeff Sharkey9c484982015-03-31 10:35:33 -0700771status_t ReadRandomBytes(size_t bytes, std::string& out) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100772 out.resize(bytes);
773 return ReadRandomBytes(bytes, &out[0]);
774}
Jeff Sharkey9c484982015-03-31 10:35:33 -0700775
Pavel Grafove2e2d302017-08-01 17:15:53 +0100776status_t ReadRandomBytes(size_t bytes, char* buf) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700777 int fd = TEMP_FAILURE_RETRY(open("/dev/urandom", O_RDONLY | O_CLOEXEC | O_NOFOLLOW));
778 if (fd == -1) {
779 return -errno;
780 }
781
Eric Biggers0ef7bfd2019-01-16 13:05:34 -0800782 ssize_t n;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100783 while ((n = TEMP_FAILURE_RETRY(read(fd, &buf[0], bytes))) > 0) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700784 bytes -= n;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100785 buf += n;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700786 }
Elliott Hughesa6231082015-05-15 18:34:24 -0700787 close(fd);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700788
789 if (bytes == 0) {
790 return OK;
791 } else {
792 return -EIO;
793 }
794}
795
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600796status_t GenerateRandomUuid(std::string& out) {
797 status_t res = ReadRandomBytes(16, out);
798 if (res == OK) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700799 out[6] &= 0x0f; /* clear version */
800 out[6] |= 0x40; /* set to version 4 */
801 out[8] &= 0x3f; /* clear variant */
802 out[8] |= 0x80; /* set to IETF variant */
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600803 }
804 return res;
805}
806
Jeff Sharkey9c484982015-03-31 10:35:33 -0700807status_t HexToStr(const std::string& hex, std::string& str) {
808 str.clear();
809 bool even = true;
810 char cur = 0;
811 for (size_t i = 0; i < hex.size(); i++) {
812 int val = 0;
813 switch (hex[i]) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700814 // clang-format off
815 case ' ': case '-': case ':': continue;
816 case 'f': case 'F': val = 15; break;
817 case 'e': case 'E': val = 14; break;
818 case 'd': case 'D': val = 13; break;
819 case 'c': case 'C': val = 12; break;
820 case 'b': case 'B': val = 11; break;
821 case 'a': case 'A': val = 10; break;
822 case '9': val = 9; break;
823 case '8': val = 8; break;
824 case '7': val = 7; break;
825 case '6': val = 6; break;
826 case '5': val = 5; break;
827 case '4': val = 4; break;
828 case '3': val = 3; break;
829 case '2': val = 2; break;
830 case '1': val = 1; break;
831 case '0': val = 0; break;
832 default: return -EINVAL;
833 // clang-format on
Jeff Sharkey9c484982015-03-31 10:35:33 -0700834 }
835
836 if (even) {
837 cur = val << 4;
838 } else {
839 cur += val;
840 str.push_back(cur);
841 cur = 0;
842 }
843 even = !even;
844 }
845 return even ? OK : -EINVAL;
846}
847
848static const char* kLookup = "0123456789abcdef";
849
850status_t StrToHex(const std::string& str, std::string& hex) {
851 hex.clear();
852 for (size_t i = 0; i < str.size(); i++) {
Jeff Sharkeyef369752015-04-29 15:57:48 -0700853 hex.push_back(kLookup[(str[i] & 0xF0) >> 4]);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700854 hex.push_back(kLookup[str[i] & 0x0F]);
855 }
856 return OK;
857}
858
Pavel Grafove2e2d302017-08-01 17:15:53 +0100859status_t StrToHex(const KeyBuffer& str, KeyBuffer& hex) {
860 hex.clear();
861 for (size_t i = 0; i < str.size(); i++) {
862 hex.push_back(kLookup[(str.data()[i] & 0xF0) >> 4]);
863 hex.push_back(kLookup[str.data()[i] & 0x0F]);
864 }
865 return OK;
866}
867
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700868status_t NormalizeHex(const std::string& in, std::string& out) {
869 std::string tmp;
870 if (HexToStr(in, tmp)) {
871 return -EINVAL;
872 }
873 return StrToHex(tmp, out);
874}
875
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200876status_t GetBlockDevSize(int fd, uint64_t* size) {
877 if (ioctl(fd, BLKGETSIZE64, size)) {
878 return -errno;
879 }
880
881 return OK;
882}
883
884status_t GetBlockDevSize(const std::string& path, uint64_t* size) {
885 int fd = open(path.c_str(), O_RDONLY | O_CLOEXEC);
886 status_t res = OK;
887
888 if (fd < 0) {
889 return -errno;
890 }
891
892 res = GetBlockDevSize(fd, size);
893
894 close(fd);
895
896 return res;
897}
898
899status_t GetBlockDev512Sectors(const std::string& path, uint64_t* nr_sec) {
900 uint64_t size;
901 status_t res = GetBlockDevSize(path, &size);
902
903 if (res != OK) {
904 return res;
905 }
906
907 *nr_sec = size / 512;
908
909 return OK;
910}
911
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700912uint64_t GetFreeBytes(const std::string& path) {
913 struct statvfs sb;
914 if (statvfs(path.c_str(), &sb) == 0) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700915 return (uint64_t)sb.f_bavail * sb.f_frsize;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700916 } else {
917 return -1;
918 }
919}
920
921// TODO: borrowed from frameworks/native/libs/diskusage/ which should
922// eventually be migrated into system/
Paul Crowley14c8c072018-09-18 13:30:21 -0700923static int64_t stat_size(struct stat* s) {
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700924 int64_t blksize = s->st_blksize;
925 // count actual blocks used instead of nominal file size
926 int64_t size = s->st_blocks * 512;
927
928 if (blksize) {
929 /* round up to filesystem block size */
930 size = (size + blksize - 1) & (~(blksize - 1));
931 }
932
933 return size;
934}
935
936// TODO: borrowed from frameworks/native/libs/diskusage/ which should
937// eventually be migrated into system/
938int64_t calculate_dir_size(int dfd) {
939 int64_t size = 0;
940 struct stat s;
Paul Crowley14c8c072018-09-18 13:30:21 -0700941 DIR* d;
942 struct dirent* de;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700943
944 d = fdopendir(dfd);
945 if (d == NULL) {
946 close(dfd);
947 return 0;
948 }
949
950 while ((de = readdir(d))) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700951 const char* name = de->d_name;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700952 if (fstatat(dfd, name, &s, AT_SYMLINK_NOFOLLOW) == 0) {
953 size += stat_size(&s);
954 }
955 if (de->d_type == DT_DIR) {
956 int subfd;
957
958 /* always skip "." and ".." */
959 if (name[0] == '.') {
Paul Crowley14c8c072018-09-18 13:30:21 -0700960 if (name[1] == 0) continue;
961 if ((name[1] == '.') && (name[2] == 0)) continue;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700962 }
963
Jeff Sharkeyfd3dc3c2017-03-27 10:49:21 -0600964 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700965 if (subfd >= 0) {
966 size += calculate_dir_size(subfd);
967 }
968 }
969 }
970 closedir(d);
971 return size;
972}
973
974uint64_t GetTreeBytes(const std::string& path) {
Jeff Sharkeyfd3dc3c2017-03-27 10:49:21 -0600975 int dirfd = open(path.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700976 if (dirfd < 0) {
977 PLOG(WARNING) << "Failed to open " << path;
978 return -1;
979 } else {
Josh Gao72fb1a62018-05-29 19:05:16 -0700980 return calculate_dir_size(dirfd);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700981 }
982}
983
Ricky Wai07e64a42020-02-11 14:31:24 +0000984// TODO: Use a better way to determine if it's media provider app.
985bool IsFuseDaemon(const pid_t pid) {
986 auto path = StringPrintf("/proc/%d/mounts", pid);
987 char* tmp;
988 if (lgetfilecon(path.c_str(), &tmp) < 0) {
989 return false;
990 }
991 bool result = android::base::StartsWith(tmp, kMediaProviderAppCtx)
992 || android::base::StartsWith(tmp, kMediaProviderCtx);
993 freecon(tmp);
994 return result;
995}
996
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700997bool IsFilesystemSupported(const std::string& fsType) {
998 std::string supported;
999 if (!ReadFileToString(kProcFilesystems, &supported)) {
1000 PLOG(ERROR) << "Failed to read supported filesystems";
1001 return false;
1002 }
1003 return supported.find(fsType + "\n") != std::string::npos;
1004}
1005
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -07001006bool IsSdcardfsUsed() {
1007 return IsFilesystemSupported("sdcardfs") &&
1008 base::GetBoolProperty(kExternalStorageSdcardfs, true);
1009}
1010
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001011status_t WipeBlockDevice(const std::string& path) {
1012 status_t res = -1;
1013 const char* c_path = path.c_str();
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +02001014 uint64_t range[2] = {0, 0};
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001015
1016 int fd = TEMP_FAILURE_RETRY(open(c_path, O_RDWR | O_CLOEXEC));
1017 if (fd == -1) {
1018 PLOG(ERROR) << "Failed to open " << path;
1019 goto done;
1020 }
1021
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +02001022 if (GetBlockDevSize(fd, &range[1]) != OK) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001023 PLOG(ERROR) << "Failed to determine size of " << path;
1024 goto done;
1025 }
1026
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001027 LOG(INFO) << "About to discard " << range[1] << " on " << path;
1028 if (ioctl(fd, BLKDISCARD, &range) == 0) {
1029 LOG(INFO) << "Discard success on " << path;
1030 res = 0;
1031 } else {
1032 PLOG(ERROR) << "Discard failure on " << path;
1033 }
1034
1035done:
1036 close(fd);
1037 return res;
1038}
1039
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001040static bool isValidFilename(const std::string& name) {
Paul Crowley14c8c072018-09-18 13:30:21 -07001041 if (name.empty() || (name == ".") || (name == "..") || (name.find('/') != std::string::npos)) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001042 return false;
1043 } else {
1044 return true;
1045 }
1046}
1047
Jeff Sharkeybc40cc82015-06-18 14:25:08 -07001048std::string BuildKeyPath(const std::string& partGuid) {
1049 return StringPrintf("%s/expand_%s.key", kKeyPath, partGuid.c_str());
1050}
1051
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001052std::string BuildDataSystemLegacyPath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001053 return StringPrintf("%s/system/users/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001054}
1055
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001056std::string BuildDataSystemCePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001057 return StringPrintf("%s/system_ce/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkey47695b22016-02-01 17:02:29 -07001058}
1059
1060std::string BuildDataSystemDePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001061 return StringPrintf("%s/system_de/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkey47695b22016-02-01 17:02:29 -07001062}
1063
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001064std::string BuildDataMiscLegacyPath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001065 return StringPrintf("%s/misc/user/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001066}
1067
Jeff Sharkey47695b22016-02-01 17:02:29 -07001068std::string BuildDataMiscCePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001069 return StringPrintf("%s/misc_ce/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkey47695b22016-02-01 17:02:29 -07001070}
1071
1072std::string BuildDataMiscDePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001073 return StringPrintf("%s/misc_de/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001074}
1075
Calin Juravle79f55a42016-02-17 20:14:46 +00001076// Keep in sync with installd (frameworks/native/cmds/installd/utils.h)
1077std::string BuildDataProfilesDePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -07001078 return StringPrintf("%s/misc/profiles/cur/%u", BuildDataPath("").c_str(), userId);
Calin Juravle79f55a42016-02-17 20:14:46 +00001079}
1080
Andreas Huber71cd43f2018-01-22 11:25:29 -08001081std::string BuildDataVendorCePath(userid_t userId) {
1082 return StringPrintf("%s/vendor_ce/%u", BuildDataPath("").c_str(), userId);
1083}
1084
1085std::string BuildDataVendorDePath(userid_t userId) {
1086 return StringPrintf("%s/vendor_de/%u", BuildDataPath("").c_str(), userId);
1087}
1088
Paul Crowley3b71fc52017-10-09 10:55:21 -07001089std::string BuildDataPath(const std::string& volumeUuid) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001090 // TODO: unify with installd path generation logic
Paul Crowley3b71fc52017-10-09 10:55:21 -07001091 if (volumeUuid.empty()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001092 return "/data";
1093 } else {
1094 CHECK(isValidFilename(volumeUuid));
Paul Crowley3b71fc52017-10-09 10:55:21 -07001095 return StringPrintf("/mnt/expand/%s", volumeUuid.c_str());
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001096 }
1097}
1098
Paul Crowley3b71fc52017-10-09 10:55:21 -07001099std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userId) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -07001100 // TODO: unify with installd path generation logic
1101 std::string data(BuildDataPath(volumeUuid));
1102 return StringPrintf("%s/media/%u", data.c_str(), userId);
1103}
1104
Paul Crowley3b71fc52017-10-09 10:55:21 -07001105std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userId) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001106 // TODO: unify with installd path generation logic
1107 std::string data(BuildDataPath(volumeUuid));
Paul Crowley3b71fc52017-10-09 10:55:21 -07001108 if (volumeUuid.empty() && userId == 0) {
cjbaoeb501142017-04-12 00:09:00 +08001109 std::string legacy = StringPrintf("%s/data", data.c_str());
1110 struct stat sb;
1111 if (lstat(legacy.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) {
1112 /* /data/data is dir, return /data/data for legacy system */
1113 return legacy;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001114 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001115 }
cjbaoeb501142017-04-12 00:09:00 +08001116 return StringPrintf("%s/user/%u", data.c_str(), userId);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001117}
1118
Paul Crowley3b71fc52017-10-09 10:55:21 -07001119std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userId) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001120 // TODO: unify with installd path generation logic
1121 std::string data(BuildDataPath(volumeUuid));
1122 return StringPrintf("%s/user_de/%u", data.c_str(), userId);
1123}
1124
Jeff Sharkey66270a22015-06-24 11:49:24 -07001125dev_t GetDevice(const std::string& path) {
1126 struct stat sb;
1127 if (stat(path.c_str(), &sb)) {
1128 PLOG(WARNING) << "Failed to stat " << path;
1129 return 0;
1130 } else {
1131 return sb.st_dev;
1132 }
1133}
1134
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -06001135status_t RestoreconRecursive(const std::string& path) {
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -07001136 LOG(DEBUG) << "Starting restorecon of " << path;
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -06001137
Tom Cherryd6127ef2017-06-15 17:13:56 -07001138 static constexpr const char* kRestoreconString = "selinux.restorecon_recursive";
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -06001139
Tom Cherryd6127ef2017-06-15 17:13:56 -07001140 android::base::SetProperty(kRestoreconString, "");
1141 android::base::SetProperty(kRestoreconString, path);
1142
1143 android::base::WaitForProperty(kRestoreconString, path);
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -06001144
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -07001145 LOG(DEBUG) << "Finished restorecon of " << path;
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -06001146 return OK;
1147}
1148
Jeff Sharkey3472e522017-10-06 18:02:53 -06001149bool Readlinkat(int dirfd, const std::string& path, std::string* result) {
1150 // Shamelessly borrowed from android::base::Readlink()
1151 result->clear();
1152
1153 // Most Linux file systems (ext2 and ext4, say) limit symbolic links to
1154 // 4095 bytes. Since we'll copy out into the string anyway, it doesn't
1155 // waste memory to just start there. We add 1 so that we can recognize
1156 // whether it actually fit (rather than being truncated to 4095).
1157 std::vector<char> buf(4095 + 1);
1158 while (true) {
1159 ssize_t size = readlinkat(dirfd, path.c_str(), &buf[0], buf.size());
1160 // Unrecoverable error?
Paul Crowley14c8c072018-09-18 13:30:21 -07001161 if (size == -1) return false;
Jeff Sharkey3472e522017-10-06 18:02:53 -06001162 // It fit! (If size == buf.size(), it may have been truncated.)
1163 if (static_cast<size_t>(size) < buf.size()) {
1164 result->assign(&buf[0], size);
1165 return true;
1166 }
1167 // Double our buffer and try again.
1168 buf.resize(buf.size() * 2);
Daichi Hirono10d34882016-01-29 14:33:51 +09001169 }
1170}
1171
Alistair Delvaff1fc9b2020-05-14 16:35:03 -07001172static unsigned int GetMajorBlockVirtioBlk() {
1173 std::string devices;
1174 if (!ReadFileToString(kProcDevices, &devices)) {
1175 PLOG(ERROR) << "Unable to open /proc/devices";
1176 return 0;
1177 }
1178
1179 bool blockSection = false;
1180 for (auto line : android::base::Split(devices, "\n")) {
1181 if (line == "Block devices:") {
1182 blockSection = true;
1183 } else if (line == "Character devices:") {
1184 blockSection = false;
1185 } else if (blockSection) {
1186 auto tokens = android::base::Split(line, " ");
1187 if (tokens.size() == 2 && tokens[1] == "virtblk") {
1188 return std::stoul(tokens[0]);
1189 }
1190 }
1191 }
1192
1193 return 0;
1194}
1195
1196bool IsVirtioBlkDevice(unsigned int major) {
1197 // Most virtualized platforms expose block devices with the virtio-blk
1198 // block device driver. Unfortunately, this driver does not use a fixed
1199 // major number, but relies on the kernel to assign one from a specific
1200 // range of block majors, which are allocated for "LOCAL/EXPERIMENAL USE"
1201 // per Documentation/devices.txt. This is true even for the latest Linux
1202 // kernel (4.4; see init() in drivers/block/virtio_blk.c).
1203 static unsigned int kMajorBlockVirtioBlk = GetMajorBlockVirtioBlk();
1204 return kMajorBlockVirtioBlk && major == kMajorBlockVirtioBlk;
Yu Ning942d4e82016-01-08 17:36:47 +08001205}
1206
Sudheer Shanka295fb242019-01-16 23:04:07 -08001207static status_t findMountPointsWithPrefix(const std::string& prefix,
1208 std::list<std::string>& mountPoints) {
1209 // Add a trailing slash if the client didn't provide one so that we don't match /foo/barbaz
1210 // when the prefix is /foo/bar
1211 std::string prefixWithSlash(prefix);
1212 if (prefix.back() != '/') {
1213 android::base::StringAppendF(&prefixWithSlash, "/");
1214 }
1215
1216 std::unique_ptr<FILE, int (*)(FILE*)> mnts(setmntent("/proc/mounts", "re"), endmntent);
1217 if (!mnts) {
1218 PLOG(ERROR) << "Unable to open /proc/mounts";
1219 return -errno;
1220 }
1221
1222 // Some volumes can be stacked on each other, so force unmount in
1223 // reverse order to give us the best chance of success.
1224 struct mntent* mnt; // getmntent returns a thread local, so it's safe.
1225 while ((mnt = getmntent(mnts.get())) != nullptr) {
1226 auto mountPoint = std::string(mnt->mnt_dir) + "/";
1227 if (android::base::StartsWith(mountPoint, prefixWithSlash)) {
1228 mountPoints.push_front(mountPoint);
1229 }
1230 }
1231 return OK;
1232}
1233
1234// Unmount all mountpoints that start with prefix. prefix itself doesn't need to be a mountpoint.
1235status_t UnmountTreeWithPrefix(const std::string& prefix) {
1236 std::list<std::string> toUnmount;
1237 status_t result = findMountPointsWithPrefix(prefix, toUnmount);
1238 if (result < 0) {
1239 return result;
1240 }
1241 for (const auto& path : toUnmount) {
1242 if (umount2(path.c_str(), MNT_DETACH)) {
1243 PLOG(ERROR) << "Failed to unmount " << path;
1244 result = -errno;
1245 }
1246 }
1247 return result;
1248}
1249
1250status_t UnmountTree(const std::string& mountPoint) {
Sudheer Shanka023b5392019-02-06 12:39:19 -08001251 if (TEMP_FAILURE_RETRY(umount2(mountPoint.c_str(), MNT_DETACH)) < 0 && errno != EINVAL &&
1252 errno != ENOENT) {
Sudheer Shanka295fb242019-01-16 23:04:07 -08001253 PLOG(ERROR) << "Failed to unmount " << mountPoint;
Sudheer Shanka89ddf992018-09-25 14:22:07 -07001254 return -errno;
1255 }
Sudheer Shanka89ddf992018-09-25 14:22:07 -07001256 return OK;
1257}
1258
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001259static status_t delete_dir_contents(DIR* dir) {
1260 // Shamelessly borrowed from android::installd
1261 int dfd = dirfd(dir);
1262 if (dfd < 0) {
1263 return -errno;
1264 }
1265
Sudheer Shanka6bf14802019-01-17 13:38:10 -08001266 status_t result = OK;
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001267 struct dirent* de;
1268 while ((de = readdir(dir))) {
1269 const char* name = de->d_name;
1270 if (de->d_type == DT_DIR) {
1271 /* always skip "." and ".." */
1272 if (name[0] == '.') {
1273 if (name[1] == 0) continue;
1274 if ((name[1] == '.') && (name[2] == 0)) continue;
1275 }
1276
1277 android::base::unique_fd subfd(
1278 openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC));
1279 if (subfd.get() == -1) {
1280 PLOG(ERROR) << "Couldn't openat " << name;
1281 result = -errno;
1282 continue;
1283 }
Josh Gaoe3c32e02018-11-05 13:47:28 -08001284 std::unique_ptr<DIR, decltype(&closedir)> subdirp(
1285 android::base::Fdopendir(std::move(subfd)), closedir);
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001286 if (!subdirp) {
1287 PLOG(ERROR) << "Couldn't fdopendir " << name;
1288 result = -errno;
1289 continue;
1290 }
1291 result = delete_dir_contents(subdirp.get());
1292 if (unlinkat(dfd, name, AT_REMOVEDIR) < 0) {
1293 PLOG(ERROR) << "Couldn't unlinkat " << name;
1294 result = -errno;
1295 }
1296 } else {
1297 if (unlinkat(dfd, name, 0) < 0) {
1298 PLOG(ERROR) << "Couldn't unlinkat " << name;
1299 result = -errno;
1300 }
1301 }
1302 }
1303 return result;
1304}
1305
1306status_t DeleteDirContentsAndDir(const std::string& pathname) {
Sudheer Shanka30df1c62019-02-22 17:03:02 -08001307 status_t res = DeleteDirContents(pathname);
1308 if (res < 0) {
1309 return res;
1310 }
Sudheer Shanka8255a2b2019-02-25 12:21:23 -08001311 if (TEMP_FAILURE_RETRY(rmdir(pathname.c_str())) < 0 && errno != ENOENT) {
Sudheer Shanka30df1c62019-02-22 17:03:02 -08001312 PLOG(ERROR) << "rmdir failed on " << pathname;
1313 return -errno;
1314 }
1315 LOG(VERBOSE) << "Success: rmdir on " << pathname;
1316 return OK;
1317}
1318
1319status_t DeleteDirContents(const std::string& pathname) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001320 // Shamelessly borrowed from android::installd
1321 std::unique_ptr<DIR, decltype(&closedir)> dirp(opendir(pathname.c_str()), closedir);
1322 if (!dirp) {
1323 if (errno == ENOENT) {
1324 return OK;
1325 }
1326 PLOG(ERROR) << "Failed to opendir " << pathname;
1327 return -errno;
1328 }
Sudheer Shanka30df1c62019-02-22 17:03:02 -08001329 return delete_dir_contents(dirp.get());
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001330}
1331
Paul Crowley298fa322018-10-30 15:59:24 -07001332// TODO(118708649): fix duplication with init/util.h
1333status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout) {
1334 android::base::Timer t;
1335 while (t.duration() < timeout) {
1336 struct stat sb;
1337 if (stat(filename, &sb) != -1) {
1338 LOG(INFO) << "wait for '" << filename << "' took " << t;
1339 return 0;
1340 }
1341 std::this_thread::sleep_for(10ms);
1342 }
1343 LOG(WARNING) << "wait for '" << filename << "' timed out and took " << t;
1344 return -1;
1345}
1346
Paul Crowley621d9b92018-12-07 15:36:09 -08001347bool FsyncDirectory(const std::string& dirname) {
1348 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(dirname.c_str(), O_RDONLY | O_CLOEXEC)));
1349 if (fd == -1) {
1350 PLOG(ERROR) << "Failed to open " << dirname;
1351 return false;
1352 }
1353 if (fsync(fd) == -1) {
1354 if (errno == EROFS || errno == EINVAL) {
1355 PLOG(WARNING) << "Skip fsync " << dirname
1356 << " on a file system does not support synchronization";
1357 } else {
1358 PLOG(ERROR) << "Failed to fsync " << dirname;
1359 return false;
1360 }
1361 }
1362 return true;
1363}
1364
Tommy Chiu0bd2d112019-03-26 17:18:09 +08001365bool writeStringToFile(const std::string& payload, const std::string& filename) {
1366 android::base::unique_fd fd(TEMP_FAILURE_RETRY(
1367 open(filename.c_str(), O_WRONLY | O_CREAT | O_NOFOLLOW | O_TRUNC | O_CLOEXEC, 0666)));
1368 if (fd == -1) {
1369 PLOG(ERROR) << "Failed to open " << filename;
1370 return false;
1371 }
1372 if (!android::base::WriteStringToFd(payload, fd)) {
1373 PLOG(ERROR) << "Failed to write to " << filename;
1374 unlink(filename.c_str());
1375 return false;
1376 }
1377 // fsync as close won't guarantee flush data
1378 // see close(2), fsync(2) and b/68901441
1379 if (fsync(fd) == -1) {
1380 if (errno == EROFS || errno == EINVAL) {
1381 PLOG(WARNING) << "Skip fsync " << filename
1382 << " on a file system does not support synchronization";
1383 } else {
1384 PLOG(ERROR) << "Failed to fsync " << filename;
1385 unlink(filename.c_str());
1386 return false;
1387 }
1388 }
1389 return true;
1390}
1391
Martijn Coenen23c04452020-04-29 07:49:41 +02001392status_t AbortFuseConnections() {
1393 namespace fs = std::filesystem;
1394
1395 for (const auto& itEntry : fs::directory_iterator("/sys/fs/fuse/connections")) {
1396 std::string abortPath = itEntry.path().string() + "/abort";
1397 LOG(DEBUG) << "Aborting fuse connection entry " << abortPath;
1398 bool ret = writeStringToFile("1", abortPath);
1399 if (!ret) {
1400 LOG(WARNING) << "Failed to write to " << abortPath;
1401 }
1402 }
1403
1404 return OK;
1405}
1406
Ricky Wai07e64a42020-02-11 14:31:24 +00001407status_t EnsureDirExists(const std::string& path, mode_t mode, uid_t uid, gid_t gid) {
1408 if (access(path.c_str(), F_OK) != 0) {
1409 PLOG(WARNING) << "Dir does not exist: " << path;
1410 if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) {
1411 return -errno;
1412 }
1413 }
1414 return OK;
1415}
1416
Martijn Coenena4850062020-06-29 11:53:34 +02001417// Gets the sysfs path for parameters of the backing device info (bdi)
1418static std::string getBdiPathForMount(const std::string& mount) {
1419 // First figure out MAJOR:MINOR of mount. Simplest way is to stat the path.
1420 struct stat info;
1421 if (stat(mount.c_str(), &info) != 0) {
1422 PLOG(ERROR) << "Failed to stat " << mount;
1423 return "";
1424 }
1425 unsigned int maj = major(info.st_dev);
1426 unsigned int min = minor(info.st_dev);
1427
1428 return StringPrintf("/sys/class/bdi/%u:%u", maj, min);
1429}
1430
1431// Configures max_ratio for the FUSE filesystem.
1432void ConfigureMaxDirtyRatioForFuse(const std::string& fuse_mount, unsigned int max_ratio) {
1433 LOG(INFO) << "Configuring max_ratio of " << fuse_mount << " fuse filesystem to " << max_ratio;
1434 if (max_ratio > 100) {
1435 LOG(ERROR) << "Invalid max_ratio: " << max_ratio;
1436 return;
1437 }
1438 std::string fuseBdiPath = getBdiPathForMount(fuse_mount);
1439 if (fuseBdiPath == "") {
1440 return;
1441 }
1442 std::string max_ratio_file = StringPrintf("%s/max_ratio", fuseBdiPath.c_str());
1443 unique_fd fd(TEMP_FAILURE_RETRY(open(max_ratio_file.c_str(), O_WRONLY | O_CLOEXEC)));
1444 if (fd.get() == -1) {
1445 PLOG(ERROR) << "Failed to open " << max_ratio_file;
1446 return;
1447 }
1448 LOG(INFO) << "Writing " << max_ratio << " to " << max_ratio_file;
1449 if (!WriteStringToFd(std::to_string(max_ratio), fd)) {
1450 PLOG(ERROR) << "Failed to write to " << max_ratio_file;
1451 }
1452}
1453
Nikita Ioffedcee5c12020-06-12 12:59:45 +01001454// Configures read ahead property of the fuse filesystem with the mount point |fuse_mount| by
1455// writing |read_ahead_kb| to the /sys/class/bdi/MAJOR:MINOR/read_ahead_kb.
1456void ConfigureReadAheadForFuse(const std::string& fuse_mount, size_t read_ahead_kb) {
1457 LOG(INFO) << "Configuring read_ahead of " << fuse_mount << " fuse filesystem to "
1458 << read_ahead_kb << "kb";
Martijn Coenena4850062020-06-29 11:53:34 +02001459 std::string fuseBdiPath = getBdiPathForMount(fuse_mount);
1460 if (fuseBdiPath == "") {
Nikita Ioffedcee5c12020-06-12 12:59:45 +01001461 return;
1462 }
Martijn Coenena4850062020-06-29 11:53:34 +02001463 // We found the bdi path for our filesystem, time to configure read ahead!
1464 std::string read_ahead_file = StringPrintf("%s/read_ahead_kb", fuseBdiPath.c_str());
Nikita Ioffedcee5c12020-06-12 12:59:45 +01001465 unique_fd fd(TEMP_FAILURE_RETRY(open(read_ahead_file.c_str(), O_WRONLY | O_CLOEXEC)));
1466 if (fd.get() == -1) {
1467 PLOG(ERROR) << "Failed to open " << read_ahead_file;
1468 return;
1469 }
1470 LOG(INFO) << "Writing " << read_ahead_kb << " to " << read_ahead_file;
1471 if (!WriteStringToFd(std::to_string(read_ahead_kb), fd)) {
1472 PLOG(ERROR) << "Failed to write to " << read_ahead_file;
1473 }
1474}
1475
Zima438b242019-09-25 14:37:38 +01001476status_t MountUserFuse(userid_t user_id, const std::string& absolute_lower_path,
1477 const std::string& relative_upper_path, android::base::unique_fd* fuse_fd) {
1478 std::string pre_fuse_path(StringPrintf("/mnt/user/%d", user_id));
1479 std::string fuse_path(
1480 StringPrintf("%s/%s", pre_fuse_path.c_str(), relative_upper_path.c_str()));
1481
1482 std::string pre_pass_through_path(StringPrintf("/mnt/pass_through/%d", user_id));
1483 std::string pass_through_path(
1484 StringPrintf("%s/%s", pre_pass_through_path.c_str(), relative_upper_path.c_str()));
Zim3623a212019-07-19 16:46:53 +01001485
Zim1242be82020-01-22 18:22:29 +00001486 // Ensure that /mnt/user is 0700. With FUSE, apps don't need access to /mnt/user paths directly.
1487 // Without FUSE however, apps need /mnt/user access so /mnt/user in init.rc is 0755 until here
Zim4dd47092020-01-29 02:44:46 +00001488 auto result = PrepareDir("/mnt/user", 0750, AID_ROOT, AID_MEDIA_RW);
Zim1242be82020-01-22 18:22:29 +00001489 if (result != android::OK) {
1490 PLOG(ERROR) << "Failed to prepare directory /mnt/user";
1491 return -1;
1492 }
1493
Zim06b0caf2020-01-05 02:11:47 +00001494 // Shell is neither AID_ROOT nor AID_EVERYBODY. Since it equally needs 'execute' access to
1495 // /mnt/user/0 to 'adb shell ls /sdcard' for instance, we set the uid bit of /mnt/user/0 to
1496 // AID_SHELL. This gives shell access along with apps running as group everybody (user 0 apps)
1497 // These bits should be consistent with what is set in zygote in
1498 // com_android_internal_os_Zygote#MountEmulatedStorage on volume bind mount during app fork
Zim1242be82020-01-22 18:22:29 +00001499 result = PrepareDir(pre_fuse_path, 0710, user_id ? AID_ROOT : AID_SHELL,
Zim06b0caf2020-01-05 02:11:47 +00001500 multiuser_get_uid(user_id, AID_EVERYBODY));
Zim3623a212019-07-19 16:46:53 +01001501 if (result != android::OK) {
Zima438b242019-09-25 14:37:38 +01001502 PLOG(ERROR) << "Failed to prepare directory " << pre_fuse_path;
Zim3623a212019-07-19 16:46:53 +01001503 return -1;
1504 }
1505
Zima438b242019-09-25 14:37:38 +01001506 result = PrepareDir(fuse_path, 0700, AID_ROOT, AID_ROOT);
1507 if (result != android::OK) {
1508 PLOG(ERROR) << "Failed to prepare directory " << fuse_path;
1509 return -1;
1510 }
1511
Zim26eec702020-01-31 16:00:58 +00001512 result = PrepareDir(pre_pass_through_path, 0710, AID_ROOT, AID_MEDIA_RW);
Zima438b242019-09-25 14:37:38 +01001513 if (result != android::OK) {
1514 PLOG(ERROR) << "Failed to prepare directory " << pre_pass_through_path;
1515 return -1;
1516 }
1517
Zim26eec702020-01-31 16:00:58 +00001518 result = PrepareDir(pass_through_path, 0710, AID_ROOT, AID_MEDIA_RW);
Zima438b242019-09-25 14:37:38 +01001519 if (result != android::OK) {
1520 PLOG(ERROR) << "Failed to prepare directory " << pass_through_path;
1521 return -1;
1522 }
1523
1524 if (relative_upper_path == "emulated") {
Zime5393d42019-11-15 11:44:12 +00001525 std::string linkpath(StringPrintf("/mnt/user/%d/self", user_id));
1526 result = PrepareDir(linkpath, 0755, AID_ROOT, AID_ROOT);
Zima438b242019-09-25 14:37:38 +01001527 if (result != android::OK) {
Zime5393d42019-11-15 11:44:12 +00001528 PLOG(ERROR) << "Failed to prepare directory " << linkpath;
Zima438b242019-09-25 14:37:38 +01001529 return -1;
1530 }
Zime5393d42019-11-15 11:44:12 +00001531 linkpath += "/primary";
Zim53d16d32020-01-17 01:21:24 +00001532 Symlink("/storage/emulated/" + std::to_string(user_id), linkpath);
Zimaea12472020-01-08 11:09:47 +00001533
1534 std::string pass_through_linkpath(StringPrintf("/mnt/pass_through/%d/self", user_id));
Zim26eec702020-01-31 16:00:58 +00001535 result = PrepareDir(pass_through_linkpath, 0710, AID_ROOT, AID_MEDIA_RW);
Zimaea12472020-01-08 11:09:47 +00001536 if (result != android::OK) {
1537 PLOG(ERROR) << "Failed to prepare directory " << pass_through_linkpath;
1538 return -1;
1539 }
1540 pass_through_linkpath += "/primary";
Zim53d16d32020-01-17 01:21:24 +00001541 Symlink("/storage/emulated/" + std::to_string(user_id), pass_through_linkpath);
Zima438b242019-09-25 14:37:38 +01001542 }
1543
Nandana Dutta914cc72019-08-29 15:22:42 +01001544 // Open fuse fd.
1545 fuse_fd->reset(open("/dev/fuse", O_RDWR | O_CLOEXEC));
1546 if (fuse_fd->get() == -1) {
Zim3623a212019-07-19 16:46:53 +01001547 PLOG(ERROR) << "Failed to open /dev/fuse";
1548 return -1;
1549 }
1550
1551 // Note: leaving out default_permissions since we don't want kernel to do lower filesystem
1552 // permission checks before routing to FUSE daemon.
1553 const auto opts = StringPrintf(
1554 "fd=%i,"
1555 "rootmode=40000,"
1556 "allow_other,"
1557 "user_id=0,group_id=0,",
Nandana Dutta914cc72019-08-29 15:22:42 +01001558 fuse_fd->get());
Zim3623a212019-07-19 16:46:53 +01001559
Zima438b242019-09-25 14:37:38 +01001560 result = TEMP_FAILURE_RETRY(mount("/dev/fuse", fuse_path.c_str(), "fuse",
1561 MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_NOATIME | MS_LAZYTIME,
1562 opts.c_str()));
1563 if (result != 0) {
1564 PLOG(ERROR) << "Failed to mount " << fuse_path;
Zim3623a212019-07-19 16:46:53 +01001565 return -errno;
1566 }
Martijn Coenen6f5802e2019-11-28 11:53:53 +01001567
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -07001568 if (IsSdcardfsUsed()) {
Martijn Coenen86f21a22020-01-06 09:48:14 +01001569 std::string sdcardfs_path(
1570 StringPrintf("/mnt/runtime/full/%s", relative_upper_path.c_str()));
1571
1572 LOG(INFO) << "Bind mounting " << sdcardfs_path << " to " << pass_through_path;
1573 return BindMount(sdcardfs_path, pass_through_path);
1574 } else {
1575 LOG(INFO) << "Bind mounting " << absolute_lower_path << " to " << pass_through_path;
1576 return BindMount(absolute_lower_path, pass_through_path);
1577 }
Zima438b242019-09-25 14:37:38 +01001578}
1579
Martijn Coenen6f5802e2019-11-28 11:53:53 +01001580status_t UnmountUserFuse(userid_t user_id, const std::string& absolute_lower_path,
1581 const std::string& relative_upper_path) {
1582 std::string fuse_path(StringPrintf("/mnt/user/%d/%s", user_id, relative_upper_path.c_str()));
1583 std::string pass_through_path(
1584 StringPrintf("/mnt/pass_through/%d/%s", user_id, relative_upper_path.c_str()));
1585
Zima438b242019-09-25 14:37:38 +01001586 // Best effort unmount pass_through path
1587 sSleepOnUnmount = false;
Martijn Coenen6f5802e2019-11-28 11:53:53 +01001588 LOG(INFO) << "Unmounting pass_through_path " << pass_through_path;
1589 auto status = ForceUnmount(pass_through_path);
1590 if (status != android::OK) {
1591 LOG(ERROR) << "Failed to unmount " << pass_through_path;
1592 }
Martijn Coenen57002612019-11-28 11:56:13 +01001593 rmdir(pass_through_path.c_str());
Martijn Coenen6f5802e2019-11-28 11:53:53 +01001594
1595 LOG(INFO) << "Unmounting fuse path " << fuse_path;
Zima438b242019-09-25 14:37:38 +01001596 android::status_t result = ForceUnmount(fuse_path);
1597 sSleepOnUnmount = true;
1598 if (result != android::OK) {
1599 // TODO(b/135341433): MNT_DETACH is needed for fuse because umount2 can fail with EBUSY.
1600 // Figure out why we get EBUSY and remove this special casing if possible.
1601 PLOG(ERROR) << "Failed to unmount. Trying MNT_DETACH " << fuse_path << " ...";
1602 if (umount2(fuse_path.c_str(), UMOUNT_NOFOLLOW | MNT_DETACH) && errno != EINVAL &&
1603 errno != ENOENT) {
1604 PLOG(ERROR) << "Failed to unmount with MNT_DETACH " << fuse_path;
1605 return -errno;
1606 }
Martijn Coenen57002612019-11-28 11:56:13 +01001607 result = android::OK;
Zima438b242019-09-25 14:37:38 +01001608 }
Martijn Coenen57002612019-11-28 11:56:13 +01001609 rmdir(fuse_path.c_str());
1610
Zima438b242019-09-25 14:37:38 +01001611 return result;
Zim3623a212019-07-19 16:46:53 +01001612}
1613
Martijn Coenen62a4b272020-01-31 15:23:09 +01001614status_t PrepareAndroidDirs(const std::string& volumeRoot) {
1615 std::string androidDir = volumeRoot + kAndroidDir;
1616 std::string androidDataDir = volumeRoot + kAppDataDir;
1617 std::string androidObbDir = volumeRoot + kAppObbDir;
Zima13d81b2020-02-07 16:39:31 +00001618 std::string androidMediaDir = volumeRoot + kAppMediaDir;
Martijn Coenen62a4b272020-01-31 15:23:09 +01001619
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -07001620 bool useSdcardFs = IsSdcardfsUsed();
Martijn Coenen62a4b272020-01-31 15:23:09 +01001621
Martijn Coenen10570c02020-02-18 10:41:37 +01001622 // mode 0771 + sticky bit for inheriting GIDs
1623 mode_t mode = S_IRWXU | S_IRWXG | S_IXOTH | S_ISGID;
1624 if (fs_prepare_dir(androidDir.c_str(), mode, AID_MEDIA_RW, AID_MEDIA_RW) != 0) {
Martijn Coenen62a4b272020-01-31 15:23:09 +01001625 PLOG(ERROR) << "Failed to create " << androidDir;
1626 return -errno;
1627 }
1628
1629 gid_t dataGid = useSdcardFs ? AID_MEDIA_RW : AID_EXT_DATA_RW;
Martijn Coenen10570c02020-02-18 10:41:37 +01001630 if (fs_prepare_dir(androidDataDir.c_str(), mode, AID_MEDIA_RW, dataGid) != 0) {
Martijn Coenen62a4b272020-01-31 15:23:09 +01001631 PLOG(ERROR) << "Failed to create " << androidDataDir;
1632 return -errno;
1633 }
1634
1635 gid_t obbGid = useSdcardFs ? AID_MEDIA_RW : AID_EXT_OBB_RW;
Martijn Coenen10570c02020-02-18 10:41:37 +01001636 if (fs_prepare_dir(androidObbDir.c_str(), mode, AID_MEDIA_RW, obbGid) != 0) {
Martijn Coenen62a4b272020-01-31 15:23:09 +01001637 PLOG(ERROR) << "Failed to create " << androidObbDir;
1638 return -errno;
1639 }
Martijn Coenen442bb832020-02-18 13:44:59 +01001640 // Some other apps, like installers, have write access to the OBB directory
1641 // to pre-download them. To make sure newly created folders in this directory
1642 // have the right permissions, set a default ACL.
Martijn Coenen1129b812020-06-16 14:58:52 +02001643 SetDefaultAcl(androidObbDir, mode, AID_MEDIA_RW, obbGid, {});
Martijn Coenen62a4b272020-01-31 15:23:09 +01001644
Martijn Coenen10570c02020-02-18 10:41:37 +01001645 if (fs_prepare_dir(androidMediaDir.c_str(), mode, AID_MEDIA_RW, AID_MEDIA_RW) != 0) {
Zima13d81b2020-02-07 16:39:31 +00001646 PLOG(ERROR) << "Failed to create " << androidMediaDir;
1647 return -errno;
1648 }
1649
Martijn Coenen62a4b272020-01-31 15:23:09 +01001650 return OK;
1651}
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001652} // namespace vold
1653} // namespace android