blob: 7733152039286a8346eff461adf99eb5c1d98216 [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
17#ifndef ANDROID_VOLD_UTILS_H
18#define ANDROID_VOLD_UTILS_H
19
Pavel Grafove2e2d302017-08-01 17:15:53 +010020#include "KeyBuffer.h"
21
Jeff Sharkey814e9d32017-09-13 11:49:44 -060022#include <android-base/macros.h>
Nandana Dutta914cc72019-08-29 15:22:42 +010023#include <android-base/unique_fd.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080024#include <cutils/multiuser.h>
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070025#include <selinux/selinux.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070026#include <utils/Errors.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080027
Paul Crowley298fa322018-10-30 15:59:24 -070028#include <chrono>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080029#include <string>
Yurii Zubrytskyi18eb8772021-10-18 22:33:15 -070030#include <string_view>
Paul Crowley14c8c072018-09-18 13:30:21 -070031#include <vector>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080032
Daichi Hirono10d34882016-01-29 14:33:51 +090033struct DIR;
34
Jeff Sharkeydeb24052015-03-02 21:01:40 -080035namespace android {
36namespace vold {
37
Ricky Wai07e64a42020-02-11 14:31:24 +000038static const char* kVoldAppDataIsolationEnabled = "persist.sys.vold_app_data_isolation_enabled";
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -070039static const char* kExternalStorageSdcardfs = "external_storage.sdcardfs.enabled";
Paul Lawrenced88e4682022-03-11 21:12:44 +000040static const char* kFuseBpfEnabled = "persist.sys.fuse.bpf.override";
Zim3623a212019-07-19 16:46:53 +010041
Daniel Rosenbergd9261b12021-09-14 17:32:06 -070042static constexpr std::chrono::seconds kUntrustedFsckSleepTime(45);
43
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070044/* SELinux contexts used depending on the block device type */
ThiƩbaud Weksteenae8550f2021-09-10 10:51:08 +020045extern char* sBlkidContext;
46extern char* sBlkidUntrustedContext;
47extern char* sFsckContext;
48extern char* sFsckUntrustedContext;
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070049
Paul Crowley56292ef2017-10-20 08:07:53 -070050// TODO remove this with better solution, b/64143519
51extern bool sSleepOnUnmount;
52
Nikita Ioffedcee5c12020-06-12 12:59:45 +010053std::string GetFuseMountPathForUser(userid_t user_id, const std::string& relative_upper_path);
54
Jeff Sharkeydeb24052015-03-02 21:01:40 -080055status_t CreateDeviceNode(const std::string& path, dev_t dev);
56status_t DestroyDeviceNode(const std::string& path);
57
Martijn Coenen5adf92a2021-02-01 07:57:02 +000058status_t SetDefaultAcl(const std::string& path, mode_t mode, uid_t uid, gid_t gid,
59 std::vector<gid_t> additionalGids);
60
Martijn Coenen23c04452020-04-29 07:49:41 +020061status_t AbortFuseConnections();
62
Martijn Coenen5fe1b162020-02-06 18:57:47 +010063int SetQuotaInherit(const std::string& path);
64int SetQuotaProjectId(const std::string& path, long projectId);
Martijn Coenen13ff6682019-12-24 12:57:16 +010065/*
Martijn Coenen04bb17f2020-02-10 23:48:11 +010066 * Creates and sets up an application-specific path on external
67 * storage with the correct ACL and project ID (if needed).
Martijn Coenenba9868b2020-01-31 15:49:24 +010068 *
Martijn Coenen62a4b272020-01-31 15:23:09 +010069 * ONLY for use with app-specific data directories on external storage!
70 * (eg, /Android/data/com.foo, /Android/obb/com.foo, etc.)
Martijn Coenen13ff6682019-12-24 12:57:16 +010071 */
Martijn Coenen816f4d92020-02-18 15:06:37 +010072int PrepareAppDirFromRoot(const std::string& path, const std::string& root, int appUid,
73 bool fixupExisting);
Martijn Coenen13ff6682019-12-24 12:57:16 +010074
Jeff Sharkeyf0121c52015-04-06 14:08:45 -070075/* fs_prepare_dir wrapper that creates with SELinux context */
Daniel Rosenbergcc874802020-08-12 18:31:43 -070076status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid,
77 unsigned int attrs = 0);
Jeff Sharkeyf0121c52015-04-06 14:08:45 -070078
Jeff Sharkeydeb24052015-03-02 21:01:40 -080079/* Really unmounts the path, killing active processes along the way */
80status_t ForceUnmount(const std::string& path);
81
Jeff Sharkey89f74fb2015-10-21 12:16:12 -070082/* Kills any processes using given path */
83status_t KillProcessesUsingPath(const std::string& path);
84
Ricky Wai23356372021-04-30 09:53:07 +010085/* Kills any processes using given tmpfs mount prifix */
86status_t KillProcessesWithTmpfsMountPrefix(const std::string& path);
Ricky Wai07e64a42020-02-11 14:31:24 +000087
Jeff Sharkey36801cc2015-03-13 16:09:20 -070088/* Creates bind mount from source to target */
89status_t BindMount(const std::string& source, const std::string& target);
90
Sudheer Shanka023b5392019-02-06 12:39:19 -080091/** Creates a symbolic link to target */
92status_t Symlink(const std::string& target, const std::string& linkpath);
93
94/** Calls unlink(2) at linkpath */
95status_t Unlink(const std::string& linkpath);
96
Sudheer Shankaf9b38a52019-02-14 19:09:51 +000097/** Creates the given directory if it is not already available */
98status_t CreateDir(const std::string& dir, mode_t mode);
99
Jeff Sharkey3472e522017-10-06 18:02:53 -0600100bool FindValue(const std::string& raw, const std::string& key, std::string* value);
101
Jeff Sharkey9c484982015-03-31 10:35:33 -0700102/* Reads filesystem metadata from device at path */
Paul Crowley14c8c072018-09-18 13:30:21 -0700103status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
104 std::string* fsLabel);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700105
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700106/* Reads filesystem metadata from untrusted device at path */
Paul Crowley14c8c072018-09-18 13:30:21 -0700107status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid,
108 std::string* fsLabel);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700109
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700110/* Returns either WEXITSTATUS() status, or a negative errno */
ThiƩbaud Weksteenae8550f2021-09-10 10:51:08 +0200111status_t ForkExecvp(const std::vector<std::string>& args,
112 std::vector<std::string>* output = nullptr, char* context = nullptr);
Daniel Rosenbergd9261b12021-09-14 17:32:06 -0700113status_t ForkExecvpTimeout(const std::vector<std::string>& args, std::chrono::seconds timeout,
114 char* context = nullptr);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700115
Daniel Rosenbergd9261b12021-09-14 17:32:06 -0700116pid_t ForkExecvpAsync(const std::vector<std::string>& args, char* context = nullptr);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700117
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200118/* Gets block device size in bytes */
119status_t GetBlockDevSize(int fd, uint64_t* size);
120status_t GetBlockDevSize(const std::string& path, uint64_t* size);
121/* Gets block device size in 512 byte sectors */
122status_t GetBlockDev512Sectors(const std::string& path, uint64_t* nr_sec);
123
Jeff Sharkey9c484982015-03-31 10:35:33 -0700124status_t ReadRandomBytes(size_t bytes, std::string& out);
Pavel Grafove2e2d302017-08-01 17:15:53 +0100125status_t ReadRandomBytes(size_t bytes, char* buffer);
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600126status_t GenerateRandomUuid(std::string& out);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700127
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700128/* Converts hex string to raw bytes, ignoring [ :-] */
Jeff Sharkey9c484982015-03-31 10:35:33 -0700129status_t HexToStr(const std::string& hex, std::string& str);
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700130/* Converts raw bytes to hex string */
Jeff Sharkey9c484982015-03-31 10:35:33 -0700131status_t StrToHex(const std::string& str, std::string& hex);
Pavel Grafove2e2d302017-08-01 17:15:53 +0100132/* Converts raw key bytes to hex string */
133status_t StrToHex(const KeyBuffer& str, KeyBuffer& hex);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700134/* Normalize given hex string into consistent format */
135status_t NormalizeHex(const std::string& in, std::string& out);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700136
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700137uint64_t GetFreeBytes(const std::string& path);
138uint64_t GetTreeBytes(const std::string& path);
139
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700140bool IsFilesystemSupported(const std::string& fsType);
Daniel Rosenbergf36bddd2020-05-11 22:58:42 -0700141bool IsSdcardfsUsed();
Ricky Wai07e64a42020-02-11 14:31:24 +0000142bool IsFuseDaemon(const pid_t pid);
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700143
144/* Wipes contents of block device at given path */
145status_t WipeBlockDevice(const std::string& path);
146
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700147std::string BuildKeyPath(const std::string& partGuid);
148
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600149std::string BuildDataSystemLegacyPath(userid_t userid);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800150std::string BuildDataSystemCePath(userid_t userid);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700151std::string BuildDataSystemDePath(userid_t userid);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600152std::string BuildDataMiscLegacyPath(userid_t userid);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700153std::string BuildDataMiscCePath(userid_t userid);
154std::string BuildDataMiscDePath(userid_t userid);
Calin Juravle79f55a42016-02-17 20:14:46 +0000155std::string BuildDataProfilesDePath(userid_t userid);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800156std::string BuildDataVendorCePath(userid_t userid);
157std::string BuildDataVendorDePath(userid_t userid);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800158
Paul Crowley3b71fc52017-10-09 10:55:21 -0700159std::string BuildDataPath(const std::string& volumeUuid);
160std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userid);
161std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userid);
162std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userid);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800163
Jeff Sharkey66270a22015-06-24 11:49:24 -0700164dev_t GetDevice(const std::string& path);
165
Eric Biggersf74373b2020-11-05 19:58:26 -0800166bool IsSameFile(const std::string& path1, const std::string& path2);
167
Ricky Wai07e64a42020-02-11 14:31:24 +0000168status_t EnsureDirExists(const std::string& path, mode_t mode, uid_t uid, gid_t gid);
169
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600170status_t RestoreconRecursive(const std::string& path);
171
Jeff Sharkey3472e522017-10-06 18:02:53 -0600172// TODO: promote to android::base
173bool Readlinkat(int dirfd, const std::string& path, std::string* result);
Daichi Hirono10d34882016-01-29 14:33:51 +0900174
Alistair Delvaff1fc9b2020-05-14 16:35:03 -0700175// Handles dynamic major assignment for virtio-block
176bool IsVirtioBlkDevice(unsigned int major);
Yu Ning942d4e82016-01-08 17:36:47 +0800177
Sudheer Shanka295fb242019-01-16 23:04:07 -0800178status_t UnmountTree(const std::string& mountPoint);
Sudheer Shanka89ddf992018-09-25 14:22:07 -0700179
Eric Biggers7bcf4272020-11-02 15:31:56 -0800180bool IsDotOrDotDot(const struct dirent& ent);
181
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700182status_t DeleteDirContentsAndDir(const std::string& pathname);
Sudheer Shanka30df1c62019-02-22 17:03:02 -0800183status_t DeleteDirContents(const std::string& pathname);
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700184
Paul Crowley298fa322018-10-30 15:59:24 -0700185status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout);
186
Eric Biggersbd138dd2021-02-16 15:59:17 -0800187bool pathExists(const std::string& path);
188
Paul Crowley621d9b92018-12-07 15:36:09 -0800189bool FsyncDirectory(const std::string& dirname);
190
Eric Biggers3345a2a2021-02-16 15:59:17 -0800191bool FsyncParentDirectory(const std::string& path);
192
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800193bool MkdirsSync(const std::string& path, mode_t mode);
194
Tommy Chiu0bd2d112019-03-26 17:18:09 +0800195bool writeStringToFile(const std::string& payload, const std::string& filename);
Zim3623a212019-07-19 16:46:53 +0100196
Martijn Coenena4850062020-06-29 11:53:34 +0200197void ConfigureMaxDirtyRatioForFuse(const std::string& fuse_mount, unsigned int max_ratio);
198
Nikita Ioffedcee5c12020-06-12 12:59:45 +0100199void ConfigureReadAheadForFuse(const std::string& fuse_mount, size_t read_ahead_kb);
200
Zima438b242019-09-25 14:37:38 +0100201status_t MountUserFuse(userid_t user_id, const std::string& absolute_lower_path,
202 const std::string& relative_upper_path, android::base::unique_fd* fuse_fd);
203
Martijn Coenen6f5802e2019-11-28 11:53:53 +0100204status_t UnmountUserFuse(userid_t userId, const std::string& absolute_lower_path,
205 const std::string& relative_upper_path);
Zim3623a212019-07-19 16:46:53 +0100206
Martijn Coenen62a4b272020-01-31 15:23:09 +0100207status_t PrepareAndroidDirs(const std::string& volumeRoot);
Yurii Zubrytskyi18eb8772021-10-18 22:33:15 -0700208
209// Open a given directory as an FD, and return that and the corresponding procfs virtual
210// symlink path that can be used in any API that accepts a path string. Path stays valid until
211// the directory FD is closed.
212//
213// This may be useful when an API wants to restrict a path passed from an untrusted process,
214// and do it without any TOCTOU attacks possible (e.g. where an attacker replaces one of
215// the components with a symlink after the check passed). In that case opening a path through
216// this function guarantees that the target directory stays the same, and that it can be
217// referenced inside the current process via the virtual procfs symlink returned here.
218std::pair<android::base::unique_fd, std::string> OpenDirInProcfs(std::string_view path);
219
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800220} // namespace vold
221} // namespace android
222
223#endif