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