| 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 |  | 
|  | 20 | #include <utils/Errors.h> | 
| Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 21 | #include <cutils/multiuser.h> | 
| Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 22 | #include <selinux/selinux.h> | 
| Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 23 |  | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 24 | #include <vector> | 
| Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 25 | #include <string> | 
|  | 26 |  | 
|  | 27 | // DISALLOW_COPY_AND_ASSIGN disallows the copy and operator= functions. It goes in the private: | 
|  | 28 | // declarations in a class. | 
|  | 29 | #if !defined(DISALLOW_COPY_AND_ASSIGN) | 
|  | 30 | #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ | 
|  | 31 | TypeName(const TypeName&) = delete;  \ | 
|  | 32 | void operator=(const TypeName&) = delete | 
|  | 33 | #endif | 
|  | 34 |  | 
| Daichi Hirono | 10d3488 | 2016-01-29 14:33:51 +0900 | [diff] [blame] | 35 | struct DIR; | 
|  | 36 |  | 
| Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 37 | namespace android { | 
|  | 38 | namespace vold { | 
|  | 39 |  | 
| Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 40 | /* SELinux contexts used depending on the block device type */ | 
|  | 41 | extern security_context_t sBlkidContext; | 
|  | 42 | extern security_context_t sBlkidUntrustedContext; | 
|  | 43 | extern security_context_t sFsckContext; | 
|  | 44 | extern security_context_t sFsckUntrustedContext; | 
|  | 45 |  | 
| Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 46 | status_t CreateDeviceNode(const std::string& path, dev_t dev); | 
|  | 47 | status_t DestroyDeviceNode(const std::string& path); | 
|  | 48 |  | 
| Jeff Sharkey | f0121c5 | 2015-04-06 14:08:45 -0700 | [diff] [blame] | 49 | /* fs_prepare_dir wrapper that creates with SELinux context */ | 
|  | 50 | status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid); | 
|  | 51 |  | 
| Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 52 | /* Really unmounts the path, killing active processes along the way */ | 
|  | 53 | status_t ForceUnmount(const std::string& path); | 
|  | 54 |  | 
| Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 55 | /* Kills any processes using given path */ | 
|  | 56 | status_t KillProcessesUsingPath(const std::string& path); | 
|  | 57 |  | 
| Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 58 | /* Creates bind mount from source to target */ | 
|  | 59 | status_t BindMount(const std::string& source, const std::string& target); | 
|  | 60 |  | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 61 | /* Reads filesystem metadata from device at path */ | 
|  | 62 | status_t ReadMetadata(const std::string& path, std::string& fsType, | 
|  | 63 | std::string& fsUuid, std::string& fsLabel); | 
|  | 64 |  | 
| Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 65 | /* Reads filesystem metadata from untrusted device at path */ | 
|  | 66 | status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType, | 
|  | 67 | std::string& fsUuid, std::string& fsLabel); | 
|  | 68 |  | 
| Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 69 | /* Returns either WEXITSTATUS() status, or a negative errno */ | 
|  | 70 | status_t ForkExecvp(const std::vector<std::string>& args); | 
|  | 71 | status_t ForkExecvp(const std::vector<std::string>& args, security_context_t context); | 
|  | 72 |  | 
|  | 73 | status_t ForkExecvp(const std::vector<std::string>& args, | 
|  | 74 | std::vector<std::string>& output); | 
|  | 75 | status_t ForkExecvp(const std::vector<std::string>& args, | 
|  | 76 | std::vector<std::string>& output, security_context_t context); | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 77 |  | 
| Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 78 | pid_t ForkExecvpAsync(const std::vector<std::string>& args); | 
|  | 79 |  | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 80 | status_t ReadRandomBytes(size_t bytes, std::string& out); | 
|  | 81 |  | 
| Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 82 | /* Converts hex string to raw bytes, ignoring [ :-] */ | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 83 | status_t HexToStr(const std::string& hex, std::string& str); | 
| Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 84 | /* Converts raw bytes to hex string */ | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 85 | status_t StrToHex(const std::string& str, std::string& hex); | 
| Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 86 | /* Normalize given hex string into consistent format */ | 
|  | 87 | status_t NormalizeHex(const std::string& in, std::string& out); | 
| Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 88 |  | 
| Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 89 | uint64_t GetFreeBytes(const std::string& path); | 
|  | 90 | uint64_t GetTreeBytes(const std::string& path); | 
|  | 91 |  | 
| Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 92 | bool IsFilesystemSupported(const std::string& fsType); | 
|  | 93 |  | 
|  | 94 | /* Wipes contents of block device at given path */ | 
|  | 95 | status_t WipeBlockDevice(const std::string& path); | 
|  | 96 |  | 
| Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 97 | std::string BuildKeyPath(const std::string& partGuid); | 
|  | 98 |  | 
| Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 99 | std::string BuildDataSystemLegacyPath(userid_t userid); | 
| Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 100 | std::string BuildDataSystemCePath(userid_t userid); | 
| Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 101 | std::string BuildDataSystemDePath(userid_t userid); | 
| Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 102 | std::string BuildDataMiscLegacyPath(userid_t userid); | 
| Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 103 | std::string BuildDataMiscCePath(userid_t userid); | 
|  | 104 | std::string BuildDataMiscDePath(userid_t userid); | 
| Calin Juravle | 79f55a4 | 2016-02-17 20:14:46 +0000 | [diff] [blame] | 105 | std::string BuildDataProfilesDePath(userid_t userid); | 
| Calin Juravle | 493f5aa | 2016-02-24 16:27:19 +0000 | [diff] [blame] | 106 | std::string BuildDataProfilesForeignDexDePath(userid_t userid); | 
| Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 107 |  | 
|  | 108 | std::string BuildDataPath(const char* volumeUuid); | 
| Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 109 | std::string BuildDataMediaCePath(const char* volumeUuid, userid_t userid); | 
|  | 110 | std::string BuildDataUserCePath(const char* volumeUuid, userid_t userid); | 
| Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 111 | std::string BuildDataUserDePath(const char* volumeUuid, userid_t userid); | 
|  | 112 |  | 
| Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 113 | dev_t GetDevice(const std::string& path); | 
|  | 114 |  | 
| Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 115 | std::string DefaultFstabPath(); | 
|  | 116 |  | 
| Jeff Sharkey | d24aeda | 2016-07-15 16:20:22 -0600 | [diff] [blame] | 117 | status_t RestoreconRecursive(const std::string& path); | 
|  | 118 |  | 
| Daichi Hirono | 10d3488 | 2016-01-29 14:33:51 +0900 | [diff] [blame] | 119 | status_t SaneReadLinkAt(int dirfd, const char* path, char* buf, size_t bufsiz); | 
|  | 120 |  | 
|  | 121 | class ScopedFd { | 
|  | 122 | const int fd_; | 
|  | 123 | public: | 
|  | 124 | ScopedFd(int fd); | 
|  | 125 | ~ScopedFd(); | 
|  | 126 | int get() const { return fd_; } | 
|  | 127 |  | 
|  | 128 | DISALLOW_COPY_AND_ASSIGN(ScopedFd); | 
|  | 129 | }; | 
|  | 130 |  | 
|  | 131 | class ScopedDir { | 
|  | 132 | DIR* const dir_; | 
|  | 133 | public: | 
|  | 134 | ScopedDir(DIR* dir); | 
|  | 135 | ~ScopedDir(); | 
|  | 136 | DIR* get() const { return dir_; } | 
|  | 137 |  | 
|  | 138 | DISALLOW_COPY_AND_ASSIGN(ScopedDir); | 
|  | 139 | }; | 
|  | 140 |  | 
| Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 141 | /* Checks if Android is running in QEMU */ | 
|  | 142 | bool IsRunningInEmulator(); | 
|  | 143 |  | 
| Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 144 | }  // namespace vold | 
|  | 145 | }  // namespace android | 
|  | 146 |  | 
|  | 147 | #endif |