Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 1 | /* |
| 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 Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 20 | #include "KeyBuffer.h" |
| 21 | |
Jeff Sharkey | 814e9d3 | 2017-09-13 11:49:44 -0600 | [diff] [blame] | 22 | #include <android-base/macros.h> |
Nandana Dutt | a914cc7 | 2019-08-29 15:22:42 +0100 | [diff] [blame] | 23 | #include <android-base/unique_fd.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 24 | #include <cutils/multiuser.h> |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 25 | #include <selinux/selinux.h> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 26 | #include <utils/Errors.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 27 | |
Paul Crowley | 298fa32 | 2018-10-30 15:59:24 -0700 | [diff] [blame] | 28 | #include <chrono> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 29 | #include <string> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 30 | #include <vector> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 31 | |
Daichi Hirono | 10d3488 | 2016-01-29 14:33:51 +0900 | [diff] [blame] | 32 | struct DIR; |
| 33 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 34 | namespace android { |
| 35 | namespace vold { |
| 36 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 37 | static const char* kVoldAppDataIsolationEnabled = "persist.sys.vold_app_data_isolation_enabled"; |
Daniel Rosenberg | f36bddd | 2020-05-11 22:58:42 -0700 | [diff] [blame] | 38 | static const char* kExternalStorageSdcardfs = "external_storage.sdcardfs.enabled"; |
Zim | 3623a21 | 2019-07-19 16:46:53 +0100 | [diff] [blame] | 39 | |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 40 | /* SELinux contexts used depending on the block device type */ |
ThiƩbaud Weksteen | ae8550f | 2021-09-10 10:51:08 +0200 | [diff] [blame^] | 41 | extern char* sBlkidContext; |
| 42 | extern char* sBlkidUntrustedContext; |
| 43 | extern char* sFsckContext; |
| 44 | extern char* sFsckUntrustedContext; |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 45 | |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 46 | // TODO remove this with better solution, b/64143519 |
| 47 | extern bool sSleepOnUnmount; |
| 48 | |
Nikita Ioffe | dcee5c1 | 2020-06-12 12:59:45 +0100 | [diff] [blame] | 49 | std::string GetFuseMountPathForUser(userid_t user_id, const std::string& relative_upper_path); |
| 50 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 51 | status_t CreateDeviceNode(const std::string& path, dev_t dev); |
| 52 | status_t DestroyDeviceNode(const std::string& path); |
| 53 | |
Martijn Coenen | 5adf92a | 2021-02-01 07:57:02 +0000 | [diff] [blame] | 54 | status_t SetDefaultAcl(const std::string& path, mode_t mode, uid_t uid, gid_t gid, |
| 55 | std::vector<gid_t> additionalGids); |
| 56 | |
Martijn Coenen | 23c0445 | 2020-04-29 07:49:41 +0200 | [diff] [blame] | 57 | status_t AbortFuseConnections(); |
| 58 | |
Martijn Coenen | 5fe1b16 | 2020-02-06 18:57:47 +0100 | [diff] [blame] | 59 | int SetQuotaInherit(const std::string& path); |
| 60 | int SetQuotaProjectId(const std::string& path, long projectId); |
Martijn Coenen | 13ff668 | 2019-12-24 12:57:16 +0100 | [diff] [blame] | 61 | /* |
Martijn Coenen | 04bb17f | 2020-02-10 23:48:11 +0100 | [diff] [blame] | 62 | * Creates and sets up an application-specific path on external |
| 63 | * storage with the correct ACL and project ID (if needed). |
Martijn Coenen | ba9868b | 2020-01-31 15:49:24 +0100 | [diff] [blame] | 64 | * |
Martijn Coenen | 62a4b27 | 2020-01-31 15:23:09 +0100 | [diff] [blame] | 65 | * ONLY for use with app-specific data directories on external storage! |
| 66 | * (eg, /Android/data/com.foo, /Android/obb/com.foo, etc.) |
Martijn Coenen | 13ff668 | 2019-12-24 12:57:16 +0100 | [diff] [blame] | 67 | */ |
Martijn Coenen | 816f4d9 | 2020-02-18 15:06:37 +0100 | [diff] [blame] | 68 | int PrepareAppDirFromRoot(const std::string& path, const std::string& root, int appUid, |
| 69 | bool fixupExisting); |
Martijn Coenen | 13ff668 | 2019-12-24 12:57:16 +0100 | [diff] [blame] | 70 | |
Jeff Sharkey | f0121c5 | 2015-04-06 14:08:45 -0700 | [diff] [blame] | 71 | /* fs_prepare_dir wrapper that creates with SELinux context */ |
Daniel Rosenberg | cc87480 | 2020-08-12 18:31:43 -0700 | [diff] [blame] | 72 | status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid, |
| 73 | unsigned int attrs = 0); |
Jeff Sharkey | f0121c5 | 2015-04-06 14:08:45 -0700 | [diff] [blame] | 74 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 75 | /* Really unmounts the path, killing active processes along the way */ |
| 76 | status_t ForceUnmount(const std::string& path); |
| 77 | |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 78 | /* Kills any processes using given path */ |
| 79 | status_t KillProcessesUsingPath(const std::string& path); |
| 80 | |
Ricky Wai | 2335637 | 2021-04-30 09:53:07 +0100 | [diff] [blame] | 81 | /* Kills any processes using given tmpfs mount prifix */ |
| 82 | status_t KillProcessesWithTmpfsMountPrefix(const std::string& path); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 83 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 84 | /* Creates bind mount from source to target */ |
| 85 | status_t BindMount(const std::string& source, const std::string& target); |
| 86 | |
Sudheer Shanka | 023b539 | 2019-02-06 12:39:19 -0800 | [diff] [blame] | 87 | /** Creates a symbolic link to target */ |
| 88 | status_t Symlink(const std::string& target, const std::string& linkpath); |
| 89 | |
| 90 | /** Calls unlink(2) at linkpath */ |
| 91 | status_t Unlink(const std::string& linkpath); |
| 92 | |
Sudheer Shanka | f9b38a5 | 2019-02-14 19:09:51 +0000 | [diff] [blame] | 93 | /** Creates the given directory if it is not already available */ |
| 94 | status_t CreateDir(const std::string& dir, mode_t mode); |
| 95 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 96 | bool FindValue(const std::string& raw, const std::string& key, std::string* value); |
| 97 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 98 | /* Reads filesystem metadata from device at path */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 99 | status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, |
| 100 | std::string* fsLabel); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 101 | |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 102 | /* Reads filesystem metadata from untrusted device at path */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 103 | status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid, |
| 104 | std::string* fsLabel); |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 105 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 106 | /* Returns either WEXITSTATUS() status, or a negative errno */ |
ThiƩbaud Weksteen | ae8550f | 2021-09-10 10:51:08 +0200 | [diff] [blame^] | 107 | status_t ForkExecvp(const std::vector<std::string>& args, |
| 108 | std::vector<std::string>* output = nullptr, char* context = nullptr); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 109 | |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 110 | pid_t ForkExecvpAsync(const std::vector<std::string>& args); |
| 111 | |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 112 | /* Gets block device size in bytes */ |
| 113 | status_t GetBlockDevSize(int fd, uint64_t* size); |
| 114 | status_t GetBlockDevSize(const std::string& path, uint64_t* size); |
| 115 | /* Gets block device size in 512 byte sectors */ |
| 116 | status_t GetBlockDev512Sectors(const std::string& path, uint64_t* nr_sec); |
| 117 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 118 | status_t ReadRandomBytes(size_t bytes, std::string& out); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 119 | status_t ReadRandomBytes(size_t bytes, char* buffer); |
Jeff Sharkey | 46bb69f | 2017-06-21 13:52:23 -0600 | [diff] [blame] | 120 | status_t GenerateRandomUuid(std::string& out); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 121 | |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 122 | /* Converts hex string to raw bytes, ignoring [ :-] */ |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 123 | status_t HexToStr(const std::string& hex, std::string& str); |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 124 | /* Converts raw bytes to hex string */ |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 125 | status_t StrToHex(const std::string& str, std::string& hex); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 126 | /* Converts raw key bytes to hex string */ |
| 127 | status_t StrToHex(const KeyBuffer& str, KeyBuffer& hex); |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 128 | /* Normalize given hex string into consistent format */ |
| 129 | status_t NormalizeHex(const std::string& in, std::string& out); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 130 | |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 131 | uint64_t GetFreeBytes(const std::string& path); |
| 132 | uint64_t GetTreeBytes(const std::string& path); |
| 133 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 134 | bool IsFilesystemSupported(const std::string& fsType); |
Daniel Rosenberg | f36bddd | 2020-05-11 22:58:42 -0700 | [diff] [blame] | 135 | bool IsSdcardfsUsed(); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 136 | bool IsFuseDaemon(const pid_t pid); |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 137 | |
| 138 | /* Wipes contents of block device at given path */ |
| 139 | status_t WipeBlockDevice(const std::string& path); |
| 140 | |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 141 | std::string BuildKeyPath(const std::string& partGuid); |
| 142 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 143 | std::string BuildDataSystemLegacyPath(userid_t userid); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 144 | std::string BuildDataSystemCePath(userid_t userid); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 145 | std::string BuildDataSystemDePath(userid_t userid); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 146 | std::string BuildDataMiscLegacyPath(userid_t userid); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 147 | std::string BuildDataMiscCePath(userid_t userid); |
| 148 | std::string BuildDataMiscDePath(userid_t userid); |
Calin Juravle | 79f55a4 | 2016-02-17 20:14:46 +0000 | [diff] [blame] | 149 | std::string BuildDataProfilesDePath(userid_t userid); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 150 | std::string BuildDataVendorCePath(userid_t userid); |
| 151 | std::string BuildDataVendorDePath(userid_t userid); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 152 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 153 | std::string BuildDataPath(const std::string& volumeUuid); |
| 154 | std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userid); |
| 155 | std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userid); |
| 156 | std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userid); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 157 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 158 | dev_t GetDevice(const std::string& path); |
| 159 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 160 | bool IsSameFile(const std::string& path1, const std::string& path2); |
| 161 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 162 | status_t EnsureDirExists(const std::string& path, mode_t mode, uid_t uid, gid_t gid); |
| 163 | |
Jeff Sharkey | d24aeda | 2016-07-15 16:20:22 -0600 | [diff] [blame] | 164 | status_t RestoreconRecursive(const std::string& path); |
| 165 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 166 | // TODO: promote to android::base |
| 167 | bool Readlinkat(int dirfd, const std::string& path, std::string* result); |
Daichi Hirono | 10d3488 | 2016-01-29 14:33:51 +0900 | [diff] [blame] | 168 | |
Alistair Delva | ff1fc9b | 2020-05-14 16:35:03 -0700 | [diff] [blame] | 169 | // Handles dynamic major assignment for virtio-block |
| 170 | bool IsVirtioBlkDevice(unsigned int major); |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 171 | |
Sudheer Shanka | 295fb24 | 2019-01-16 23:04:07 -0800 | [diff] [blame] | 172 | status_t UnmountTreeWithPrefix(const std::string& prefix); |
| 173 | status_t UnmountTree(const std::string& mountPoint); |
Sudheer Shanka | 89ddf99 | 2018-09-25 14:22:07 -0700 | [diff] [blame] | 174 | |
Eric Biggers | 7bcf427 | 2020-11-02 15:31:56 -0800 | [diff] [blame] | 175 | bool IsDotOrDotDot(const struct dirent& ent); |
| 176 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 177 | status_t DeleteDirContentsAndDir(const std::string& pathname); |
Sudheer Shanka | 30df1c6 | 2019-02-22 17:03:02 -0800 | [diff] [blame] | 178 | status_t DeleteDirContents(const std::string& pathname); |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 179 | |
Paul Crowley | 298fa32 | 2018-10-30 15:59:24 -0700 | [diff] [blame] | 180 | status_t WaitForFile(const char* filename, std::chrono::nanoseconds timeout); |
| 181 | |
Eric Biggers | bd138dd | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 182 | bool pathExists(const std::string& path); |
| 183 | |
Paul Crowley | 621d9b9 | 2018-12-07 15:36:09 -0800 | [diff] [blame] | 184 | bool FsyncDirectory(const std::string& dirname); |
| 185 | |
Eric Biggers | 3345a2a | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 186 | bool FsyncParentDirectory(const std::string& path); |
| 187 | |
Eric Biggers | fec0c0e | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 188 | bool MkdirsSync(const std::string& path, mode_t mode); |
| 189 | |
Tommy Chiu | 0bd2d11 | 2019-03-26 17:18:09 +0800 | [diff] [blame] | 190 | bool writeStringToFile(const std::string& payload, const std::string& filename); |
Zim | 3623a21 | 2019-07-19 16:46:53 +0100 | [diff] [blame] | 191 | |
Martijn Coenen | a485006 | 2020-06-29 11:53:34 +0200 | [diff] [blame] | 192 | void ConfigureMaxDirtyRatioForFuse(const std::string& fuse_mount, unsigned int max_ratio); |
| 193 | |
Nikita Ioffe | dcee5c1 | 2020-06-12 12:59:45 +0100 | [diff] [blame] | 194 | void ConfigureReadAheadForFuse(const std::string& fuse_mount, size_t read_ahead_kb); |
| 195 | |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 196 | status_t MountUserFuse(userid_t user_id, const std::string& absolute_lower_path, |
| 197 | const std::string& relative_upper_path, android::base::unique_fd* fuse_fd); |
| 198 | |
Martijn Coenen | 6f5802e | 2019-11-28 11:53:53 +0100 | [diff] [blame] | 199 | status_t UnmountUserFuse(userid_t userId, const std::string& absolute_lower_path, |
| 200 | const std::string& relative_upper_path); |
Zim | 3623a21 | 2019-07-19 16:46:53 +0100 | [diff] [blame] | 201 | |
Martijn Coenen | 62a4b27 | 2020-01-31 15:23:09 +0100 | [diff] [blame] | 202 | status_t PrepareAndroidDirs(const std::string& volumeRoot); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 203 | } // namespace vold |
| 204 | } // namespace android |
| 205 | |
| 206 | #endif |